:root {
  --ink: #081018;
  --ink-2: #101820;
  --charcoal: #1d2327;
  --red: #c72b3a;
  --red-bright: #ff4054;
  --gold: #e4c37a;
  --sage: #91c7ad;
  --sage-bright: #a7f0cd;
  --blue: #9bd7ff;
  --white: #fbf8f1;
  --mist: #eff3ed;
  --muted: #bac5c1;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--ink);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 43, 58, 0.28), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(145, 199, 173, 0.2), transparent 30rem),
    radial-gradient(circle at 62% 52%, rgba(228, 195, 122, 0.12), transparent 34rem),
    linear-gradient(180deg, #081018 0%, #101820 48%, #0b1117 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(255, 64, 84, 0.14), rgba(145, 199, 173, 0.08), rgba(155, 215, 255, 0.12));
  filter: blur(34px);
  animation: aurora 12s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 242, 200, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.hero-actions,
.signal-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 64, 84, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle, rgba(255, 64, 84, 0.34), rgba(11, 17, 23, 0.65));
  box-shadow: 0 0 30px rgba(255, 64, 84, 0.32);
  font-size: 0.78rem;
}

.nav-links {
  gap: 1.05rem;
  color: rgba(251, 248, 241, 0.74);
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: var(--red-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.25rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(4.5rem, 8vw, 8rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6.5vw, 6.65rem);
  font-weight: 820;
}

h1 span,
.accent {
  color: var(--red-bright);
  text-shadow: 0 0 26px rgba(255, 64, 84, 0.36);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
}

.hero-subheadline,
.section-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero-subheadline {
  margin-bottom: 2rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  box-shadow: 0 0 34px rgba(255, 64, 84, 0.3), 0 22px 54px rgba(0, 0, 0, 0.32);
}

.button-secondary {
  border-color: rgba(228, 195, 122, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.signal-strip {
  flex-wrap: wrap;
  gap: 0.65rem;
}

.signal-strip span {
  padding: 0.56rem 0.76rem;
  border: 1px solid rgba(145, 199, 173, 0.22);
  border-radius: 999px;
  color: rgba(251, 248, 241, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(255, 64, 84, 0.2);
  border-radius: 2rem;
  overflow: hidden;
  background: #0b1117;
  box-shadow: var(--shadow), inset 0 0 80px rgba(255, 64, 84, 0.06);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 1;
  background: conic-gradient(from 100deg, transparent, rgba(255, 64, 84, 0.16), transparent, rgba(228, 195, 122, 0.13), transparent);
  animation: rotateGlow 16s linear infinite;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 64, 84, 0.18), transparent 16rem),
    radial-gradient(circle at 80% 78%, rgba(145, 199, 173, 0.2), transparent 17rem),
    linear-gradient(145deg, rgba(8, 16, 24, 0.22), rgba(8, 16, 24, 0.72));
}

.dashboard-shell {
  position: absolute;
  inset: 5rem 4rem 6rem;
  z-index: 2;
  border: 1px solid rgba(155, 215, 255, 0.25);
  border-radius: 1.6rem;
  background: rgba(8, 16, 24, 0.42);
  box-shadow: inset 0 0 60px rgba(255, 64, 84, 0.08), 0 0 50px rgba(145, 199, 173, 0.13);
  backdrop-filter: blur(12px);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(155, 215, 255, 0.15);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.dashboard-top i {
  width: 0.7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 18px var(--red-bright);
}

.face-scan {
  position: absolute;
  inset: 4.6rem 2.2rem 7.3rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background:
    linear-gradient(90deg, rgba(155, 215, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(145, 199, 173, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow: hidden;
}

.face-outline {
  position: relative;
  width: min(58%, 230px);
  aspect-ratio: 0.72;
  border: 2px solid rgba(145, 199, 173, 0.72);
  border-radius: 48% 48% 44% 44%;
  box-shadow: 0 0 34px rgba(145, 199, 173, 0.32), inset 0 0 28px rgba(155, 215, 255, 0.12);
}

.face-outline::before,
.face-outline::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 34%;
  height: 1px;
  background: rgba(228, 195, 122, 0.75);
  transform: translateX(-50%);
}

.face-outline::before {
  top: 45%;
}

.face-outline::after {
  top: 61%;
  width: 24%;
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), var(--sage-bright), transparent);
  box-shadow: 0 0 24px rgba(255, 64, 84, 0.9);
  animation: scan 3.2s ease-in-out infinite;
}

.scan-node {
  position: absolute;
  width: 0.72rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(228, 195, 122, 0.9);
}

.node-one { top: 28%; left: 28%; }
.node-two { top: 38%; right: 26%; }
.node-three { bottom: 26%; left: 38%; }

.funnel-map {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.funnel-map span {
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 199, 173, 0.18);
  border-radius: 0.9rem;
  color: rgba(251, 248, 241, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 850;
}

.floating-panel {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2rem;
  background: rgba(8, 16, 24, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.floating-panel span,
.trend-card span,
.report-dashboard span,
.video-card span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-leads {
  top: 1.35rem;
  left: 1.3rem;
  padding: 1.1rem;
  max-width: 220px;
}

.panel-leads strong {
  display: block;
  font-size: 3.3rem;
  line-height: 1;
  color: var(--red-bright);
}

.panel-leads small {
  color: var(--muted);
}

.panel-speed {
  right: 1.2rem;
  top: 8.2rem;
  width: 210px;
  padding: 1rem;
}

.panel-speed strong,
.panel-retention strong {
  display: block;
  margin-top: 0.4rem;
}

.pulse-bars {
  display: flex;
  gap: 0.45rem;
  align-items: end;
  height: 72px;
  margin-top: 0.8rem;
}

.pulse-bars i {
  flex: 1;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, var(--red-bright), var(--gold));
}

.pulse-bars i:nth-child(1) { height: 45%; }
.pulse-bars i:nth-child(2) { height: 82%; }
.pulse-bars i:nth-child(3) { height: 62%; }

.panel-retention {
  right: 1.2rem;
  bottom: 1.3rem;
  padding: 1rem;
  width: 245px;
}

.intelligence-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: linear-gradient(90deg, rgba(199, 43, 58, 0.14), rgba(145, 199, 173, 0.08), rgba(228, 195, 122, 0.1));
  color: var(--muted);
}

.intelligence-band strong {
  color: var(--white);
}

.section-spaced {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2rem;
}

.problem-grid,
.trend-grid,
.watchlist-grid,
.report-dashboard,
.video-grid {
  display: grid;
  gap: 1rem;
}

.problem-grid {
  grid-template-columns: repeat(4, 1fr);
}

.glass-card,
.watch-card,
.booking-card,
.never-card,
.portrait-system,
.video-card {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.glass-card {
  min-height: 250px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.glass-card span {
  display: block;
  width: 2.4rem;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 84, 0.95), rgba(228, 195, 122, 0.2));
  box-shadow: 0 0 30px rgba(255, 64, 84, 0.35);
}

.glass-card p,
.watch-card p,
.watch-card small,
.trend-card p,
.video-card p {
  color: var(--muted);
  line-height: 1.65;
}

.light-section {
  color: var(--charcoal);
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 43, 58, 0.16), transparent 26rem),
    radial-gradient(circle at 90% 20%, rgba(145, 199, 173, 0.2), transparent 26rem),
    linear-gradient(180deg, var(--white), var(--mist));
}

.light-section .eyebrow,
.light-section .trend-card span {
  color: var(--red);
}

.light-section .section-copy,
.light-section .trend-card p {
  color: rgba(29, 35, 39, 0.72);
}

.solution-layout,
.about-section,
.report-layout,
.booking-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.solution-list span {
  min-height: 4rem;
  padding: 1rem;
  border: 1px solid rgba(29, 35, 39, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 45px rgba(29, 35, 39, 0.08);
  font-weight: 850;
}

.never-card {
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 64, 84, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.08);
}

.never-card p:last-child {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.portrait-system {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 64, 84, 0.18), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.portrait-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(42%, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(228, 195, 122, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 248, 241, 0.16), rgba(8, 16, 24, 0.65));
  box-shadow: 0 0 90px rgba(255, 64, 84, 0.23), inset 0 0 48px rgba(145, 199, 173, 0.12);
}

.portrait-core span {
  color: var(--white);
  font-size: 4rem;
  font-weight: 900;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(145, 199, 173, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(155, 215, 255, 0.08);
}

.ring-one {
  width: 70%;
  aspect-ratio: 1;
  animation: rotateGlow 18s linear infinite;
}

.ring-two {
  width: 48%;
  aspect-ratio: 1;
  border-color: rgba(255, 64, 84, 0.28);
  animation: rotateGlow 14s linear infinite reverse;
}

.portrait-tag {
  position: absolute;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  min-width: 7.5rem;
  min-height: 3.2rem;
  padding: 0.8rem;
  border: 1px solid rgba(228, 195, 122, 0.24);
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.68);
  color: var(--white);
  font-weight: 850;
}

.tag-one { top: 18%; left: 12%; }
.tag-two { right: 10%; top: 46%; }
.tag-three { left: 18%; bottom: 16%; }

.trend-grid {
  grid-template-columns: repeat(5, 1fr);
}

.trend-card {
  min-height: 225px;
  padding: 1rem;
  border: 1px solid rgba(29, 35, 39, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(29, 35, 39, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.trend-card:hover,
.watch-card:hover,
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 84, 0.42);
}

.trend-card h3 {
  margin-top: 2.2rem;
}

.watchlist-grid {
  grid-template-columns: repeat(3, 1fr);
}

.watch-card {
  position: relative;
  min-height: 275px;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.watch-card::before,
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(155, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(145, 199, 173, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.watch-card h3,
.watch-card p,
.watch-card span,
.watch-card small,
.video-card h3,
.video-card p,
.video-card span,
.video-card .play-core {
  position: relative;
  z-index: 1;
}

.watch-card p {
  margin-bottom: 0.45rem;
}

.watch-card span,
.watch-card small {
  display: block;
  margin-top: 0.75rem;
}

.watch-card span {
  color: var(--gold);
  font-weight: 850;
}

.video-grid {
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  position: relative;
  min-height: 310px;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
  box-shadow: 0 0 60px rgba(255, 64, 84, 0.18), 0 24px 80px rgba(0, 0, 0, 0.3);
}

.play-core {
  width: 5.2rem;
  aspect-ratio: 1;
  margin-bottom: 2.2rem;
  border: 1px solid rgba(255, 64, 84, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 84, 0.46), rgba(8, 16, 24, 0.62));
  box-shadow: 0 0 46px rgba(255, 64, 84, 0.3);
}

.play-core::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: 1.82rem 0 0 2.1rem;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.05rem solid var(--white);
}

.report-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 64, 84, 0.17), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.report-dashboard {
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  border: 1px solid rgba(255, 64, 84, 0.22);
  border-radius: 1.6rem;
  background: rgba(8, 16, 24, 0.62);
  box-shadow: var(--shadow), inset 0 0 70px rgba(255, 64, 84, 0.05);
}

.report-dashboard article {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.report-dashboard strong {
  display: block;
  margin: 0.7rem 0 1.5rem;
  font-size: 1.05rem;
}

.report-dashboard i {
  display: block;
  width: 100%;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--sage-bright));
  box-shadow: 0 0 20px rgba(255, 64, 84, 0.25);
}

.booking-section {
  background: linear-gradient(180deg, transparent, rgba(199, 43, 58, 0.07));
}

.booking-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(228, 195, 122, 0.15), transparent 22rem),
    rgba(255, 255, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: rgba(251, 248, 241, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(228, 195, 122, 0.2);
  border-radius: 0.9rem;
  color: var(--white);
  background: rgba(8, 16, 24, 0.56);
  font: inherit;
  outline: none;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 64, 84, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 64, 84, 0.14);
}

::placeholder {
  color: rgba(251, 248, 241, 0.38);
}

.success-message {
  display: none;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(145, 199, 173, 0.3);
  border-radius: 0.9rem;
  color: var(--sage-bright);
  background: rgba(145, 199, 173, 0.1);
  font-weight: 850;
  animation: successPulse 480ms ease both;
}

.success-message.is-visible {
  display: block;
}

.site-footer {
  display: grid;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 0.35rem;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a:hover {
  color: var(--red-bright);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aurora {
  from { opacity: 0.65; transform: translate3d(-2%, -1%, 0) scale(1); }
  to { opacity: 1; transform: translate3d(2%, 1%, 0) scale(1.05); }
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

@keyframes scan {
  0%, 100% { top: 16%; opacity: 0.5; }
  50% { top: 82%; opacity: 1; }
}

@keyframes successPulse {
  0% { opacity: 0; transform: translateY(8px) scale(0.98); }
  60% { opacity: 1; transform: translateY(0) scale(1.015); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .problem-grid,
  .trend-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .watchlist-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    border-radius: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .solution-layout,
  .about-section,
  .report-layout,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .intelligence-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.05rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions .button,
  .lead-form .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    border-radius: 1.3rem;
  }

  .dashboard-shell {
    inset: 4.4rem 1rem 5.9rem;
  }

  .panel-speed {
    display: none;
  }

  .panel-leads {
    top: 0.85rem;
    left: 0.85rem;
  }

  .panel-retention {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 0.85rem;
    width: auto;
  }

  .problem-grid,
  .solution-list,
  .trend-grid,
  .watchlist-grid,
  .report-dashboard,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .portrait-tag {
    min-width: 6rem;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
