/* ==========================================================================
   AuraMotionAi — Design tokens
   ========================================================================== */
:root {
  --bg:          #060a16;
  --bg-1:        #0a1122;
  --bg-2:        #0e1830;
  --line:        rgba(233, 237, 245, 0.09);
  --line-strong: rgba(233, 237, 245, 0.18);
  --text:        #e9edf5;
  --text-muted:  #8b95ac;
  --text-faint:  #5a6379;
  --teal:        #2dd9c4;
  --teal-soft:   rgba(45, 217, 196, 0.14);
  --indigo:      #6470f4;
  --indigo-soft: rgba(100, 112, 244, 0.16);
  --grad:        linear-gradient(120deg, var(--indigo) 0%, var(--teal) 100%);

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body:    "Inter", "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 15% -10%, rgba(100,112,244,0.16), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(45,217,196,0.10), transparent 60%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 32px);
  width: 100%;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--teal);
}

/* ---------------- Nav ---------------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand img { height: 62px; width: auto; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 1px;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.links a {
  font-size: 14.5px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
nav.links a:hover, nav.links a:focus-visible { color: var(--text); }
nav.links a.active { color: var(--text); }
nav.links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bg) !important;
  background: var(--teal);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(45,217,196,0.5); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav.links { display: none; }
  .nav-toggle { display: block; }
  nav.links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    padding: 20px clamp(18px, 5vw, 32px) 26px;
    gap: 18px;
  }
  .nav-cta { display: inline-block; text-align: center; }
}

/* ---------------- Timeline scrubber (signature motif) ---------------- */
.scrubber {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
}
.scrubber .track {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--line-strong);
}
.scrubber .ticks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scrubber .ticks span {
  width: 1px;
  height: 8px;
  background: var(--line-strong);
}
.scrubber .ticks span:nth-child(4n) { height: 14px; background: var(--text-faint); }
.scrubber .playhead {
  position: absolute;
  top: 50%;
  width: 9px; height: 9px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px var(--teal-soft);
  animation: scrub 7s ease-in-out infinite;
}
@keyframes scrub {
  0%, 100% { left: 2%; }
  50% { left: 96%; }
}
.section-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: #051512;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(45,217,196,0.55); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------------- Hero ---------------- */
.hero {
  padding: 110px 0 80px;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin: 22px 0 22px;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  align-self: start;
}
.hero-visual iframe,
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--bg-2);
}
.orbit-ring {
  position: absolute;
  inset: -20%;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0.35;
  transform: rotate(-18deg) scale(0.86, 0.42);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(342deg) scale(0.86, 0.42); } }
.hero-visual .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(233,237,245,0.08);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .play::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--text);
  margin-left: 4px;
}
.hero-visual .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-visual .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  background: rgba(6,10,22,0.6);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ---------------- Stats bar ---------------- */
.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-bar .stat span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------------- Sections ---------------- */
section { padding: 90px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-top: 16px; }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 16px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--indigo-soft);
  border: 1px solid var(--line-strong);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 15px;
}
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 14.5px; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.badge-row {
  position: absolute;
  top: -14px;
  left: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.save-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal);
  color: #051512;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  width: fit-content;
  animation: badge-pulse 2.2s ease-in-out infinite;
}
.best-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--indigo);
  color: #f2f2ff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  width: fit-content;
  animation: badge-pulse 2.2s ease-in-out infinite;
  animation-delay: 0.15s;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ---------------- Portfolio grid ---------------- */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 13;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-2), var(--bg-1));
}
.reel .grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%); }
.reel .play-sm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(233,237,245,0.09); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
}
.reel .play-sm::after { content: ""; border-style: solid; border-width: 7px 0 7px 11px; border-color: transparent transparent transparent var(--text); margin-left: 3px; }
.reel .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(6,10,22,0.9), transparent);
}
.reel .meta .cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; }
.reel .meta h4 { font-size: 14.5px; margin-top: 4px; font-weight: 600; }
.reel .badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 10px;
  background: rgba(6,10,22,0.65); border: 1px solid var(--line-strong);
  padding: 4px 8px; border-radius: 6px; color: var(--text-muted);
}

.portfolio-note {
  margin-top: 34px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 22px 26px;
  color: var(--text-muted);
  font-size: 14.5px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.portfolio-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 6px; flex-shrink: 0; }

/* ---------------- Pricing ---------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px 28px 34px;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--indigo-soft), var(--bg-1) 40%);
}
.plan.featured::before {
  content: "MOST BOOKED";
  position: absolute; top: -12px; left: 28px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  background: var(--teal); color: #051512; padding: 5px 10px; border-radius: 6px; font-weight: 700;
}
.plan.highlight { border-color: var(--indigo); }
.plan .len { font-family: var(--font-mono); color: var(--text-muted); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.plan .price { font-family: var(--font-display); font-size: 44px; margin: 14px 0 4px; }
.plan .price span { font-size: 16px; color: var(--text-muted); font-family: var(--font-body); }
.plan .desc { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.plan ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex-grow: 1; }
.plan li { font-size: 14px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.plan li::before { content: "—"; color: var(--teal); flex-shrink: 0; }

/* ---------------- Pricing calculator ---------------- */
.calculator {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-1);
}
.calc-panel {
  padding: 44px 42px;
  border-right: 1px solid var(--line);
}
.calc-title {
  font-size: 22px;
  margin: 14px 0 26px;
}
.calc-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}
.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.calc-label-row .calc-label { margin-bottom: 0; }
.unit-toggle {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.unit-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.unit-btn.active {
  background: var(--teal);
  color: #051512;
  font-weight: 600;
}
.unit-btn:not(.active):hover { color: var(--text); }

.duration-field {
  position: relative;
  display: flex;
  align-items: center;
}
.duration-icon {
  position: absolute;
  left: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
#duration-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 15px 16px 15px 40px;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}
#duration-input:focus { border-color: var(--teal); }
#duration-input.invalid { border-color: #e2596b; }
.calc-hint {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 10px;
}
.calc-hint.invalid { color: #e2596b; }

.credit-options { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.credit-option { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.credit-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px; height: 19px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.credit-option input[type="radio"]:checked {
  border-color: var(--teal);
  background: var(--teal);
}
.credit-option input[type="radio"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #051512;
  font-weight: 700;
}
.credit-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  flex-grow: 1;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.credit-option input:checked ~ .credit-box,
.credit-option input[type="radio"]:checked + .credit-box {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.credit-title { display: block; font-size: 14.5px; font-weight: 600; }
.credit-title em { font-style: normal; color: var(--teal); font-family: var(--font-mono); font-size: 13px; }
.credit-desc { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.calc-result {
  padding: 44px 38px;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, var(--indigo-soft), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.price-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 6px;
}
.price-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  min-height: 18px;
}
#calc-cta { width: 100%; justify-content: center; }
.calc-fineprint {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
  max-width: 32ch;
}

@media (max-width: 860px) {
  .calculator { grid-template-columns: 1fr; }
  .calc-panel { border-right: none; border-bottom: 1px solid var(--line); }
}

.step-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.step-back:hover { color: var(--teal); }
.calc-step { animation: fadeStep 0.25s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------- Scroll/entrance reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.3s cubic-bezier(0.16,1,0.3,1), transform 1.3s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid .visual {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  aspect-ratio: 1/1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  overflow: hidden;
}
.about-grid .visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, var(--teal-soft), transparent 70%);
  pointer-events: none;
}
.about-grid .visual .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.about-grid .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 46px rgba(45, 217, 196, 0.22));
}
.about-grid p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.value-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.value-pill {
  font-family: var(--font-mono); font-size: 12.5px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 8px 14px; color: var(--text-muted);
}
.value-pill b { color: var(--teal); }

/* ---------------- Process ---------------- */
.process-track { position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 10px; }
.process-step { position: relative; padding-top: 26px; }
.process-step .frame {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-faint);
  border: 1px solid var(--line-strong); border-radius: 5px;
  width: fit-content; padding: 3px 8px; margin-bottom: 14px;
}
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------------- CTA band ---------------- */
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 80% 100% at 50% 0%, var(--indigo-soft), transparent 70%);
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); margin: 18px 0 30px; }
.cta-band .cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  background: var(--bg-1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 15px; flex-shrink: 0;
}
.contact-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 14.5px; }
.contact-card a:hover { color: var(--teal); }

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h4 { font-size: 15.5px; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 14px; }

/* ---------------- Footer ---------------- */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 34px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.footer-brand img { height: 38px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-note { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); margin-top: 28px; text-align: center; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin: 0 auto; max-width: 320px; }
  .card-grid, .reel-grid, .pricing-grid, .offers-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid, .reel-grid, .pricing-grid, .process-steps, .offers-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .hero { padding: 90px 0 60px; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .brand img { height: 46px; }
  .brand small { display: none; }
  .brand span { font-size: 16px; }
  .nav-cta { padding: 9px 14px; font-size: 12.5px; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-visual { max-width: 260px; }
  .cta-row, .hero .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn, .hero .cta-row .btn { justify-content: center; }
  .plan.featured::before { left: 20px; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
