/* =====================================================================
   AORAKI CREATIONS — main.css
   Dark, high-contrast, big-type. Clean and cut.
   Sections in page order. Design tokens live in :root.
   ===================================================================== */

:root {
  /* surfaces */
  --bg:        #08090c;
  --bg-alt:    #0e1014;
  --panel:     #121419;
  --line:      rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* text */
  --ink:    #f5f6f8;
  --muted:  #98a0ad;
  --faint:  #5f6672;

  /* accent — used sparingly */
  --accent:    #6f9bff;
  --accent-dim:#2a3a66;

  /* type */
  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  /* layout */
  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #06070a; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 11vw, 150px) var(--pad);
  max-width: var(--wrap);
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .eyebrow { display: block; margin-bottom: 18px; }
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.section__lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 640px;
}

.arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow, a:hover .arrow { transform: translateX(4px); }

/* ---------- buttons ---------- */
.btn {
  --bpad: 0.85em 1.5em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: var(--bpad);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: #08090c; }
.btn--solid:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.04); }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* =====================================================================
   BRAND / LOGO
   ===================================================================== */
/* Uploaded logo asset, used at every placement */
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; width: auto; height: auto; }
.brand--nav .brand__logo { height: 96px; transform: translateY(10px); }
.brand--footer .brand__logo { height: clamp(116px, 15vw, 152px); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
/* Blur lives on a pseudo-element so .nav doesn't become a containing block
   for the fixed mobile menu panel (which must cover the full viewport). */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 9, 12, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }
.nav.is-scrolled::before { background: rgba(8, 9, 12, 0.86); }
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 4px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  padding: 0.55em 1.1em;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav__cta:hover { border-color: var(--ink); background: rgba(255,255,255,0.05); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 90px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
  background: #04060e;
}

/* --- night sky --- */
.hero__sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(150% 100% at 50% -15%, #16284f 0%, #0c1733 34%, #081026 58%, #04060e 100%);
}

/* --- aurora ribbons (slow, screen-blended light curtains) --- */
.hero__aurora { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.aurora {
  position: absolute; top: -22%; height: 116%; width: 40%;
  filter: blur(36px);
  mix-blend-mode: screen;
  opacity: 0.6;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.aurora--1 {
  left: -8%; rotate: -17deg;
  background: linear-gradient(to bottom, transparent 6%, rgba(72,232,165,0.55) 44%, rgba(72,232,165,0.10) 74%, transparent 92%);
  animation: auroraDrift 8s ease-in-out infinite alternate;
}
.aurora--2 {
  left: 18%; rotate: -6deg; opacity: 0.42;
  background: linear-gradient(to bottom, transparent 8%, rgba(108,224,206,0.5) 46%, rgba(108,224,206,0.10) 74%, transparent 92%);
  animation: auroraDrift2 8s ease-in-out infinite alternate;
  animation-delay: -3.4s;
}
.aurora--3 {
  right: 12%; rotate: 12deg;
  background: linear-gradient(to bottom, transparent 6%, rgba(150,98,228,0.5) 44%, rgba(150,98,228,0.12) 74%, transparent 92%);
  animation: auroraDrift 8s ease-in-out infinite alternate;
  animation-delay: -5.5s;
}
.aurora--4 {
  right: -10%; rotate: 22deg; opacity: 0.4;
  background: linear-gradient(to bottom, transparent 8%, rgba(198,104,212,0.45) 46%, rgba(198,104,212,0.10) 74%, transparent 92%);
  animation: auroraDrift2 8s ease-in-out infinite alternate;
  animation-delay: -1.7s;
}
@keyframes auroraDrift {
  0%   { translate: -5% -2%; scale: 1 1;       opacity: 0.32; }
  50%  { translate: 4% 2%;   scale: 1.06 1.10; opacity: 0.60; }
  100% { translate: 7% -1%;  scale: 0.98 0.95; opacity: 0.42; }
}
@keyframes auroraDrift2 {
  0%   { translate: 4% 1%;   scale: 1.05 1.05; opacity: 0.28; }
  50%  { translate: -4% -2%; scale: 0.95 0.92; opacity: 0.52; }
  100% { translate: -7% 2%;  scale: 1.08 1.12; opacity: 0.36; }
}

/* --- stars (canvas, drawn + twinkled in main.js) --- */
.hero__stars { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* --- foreground mountain horizon --- */
.hero__range { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; height: 36%; min-height: 150px; pointer-events: none; }
.hero__range svg { width: 100%; height: 100%; display: block; }

/* --- readability scrim --- */
.hero__scrim {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background:
    linear-gradient(to top, rgba(4,6,14,0.74) 0%, rgba(4,6,14,0.30) 26%, rgba(4,6,14,0) 56%),
    radial-gradient(95% 75% at 20% 56%, rgba(4,6,14,0.62), rgba(4,6,14,0) 62%);
}

.hero__content { position: relative; z-index: 5; max-width: var(--wrap); margin: 0 auto; width: 100%; }
.hero .eyebrow { display: block; margin-bottom: 26px; color: #b9c6dc; }
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.9rem, 10vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.hero__title span { display: block; }
.hero__title span:last-child { color: transparent; -webkit-text-stroke: 1.4px var(--ink); }
.hero__sub {
  margin-top: 30px;
  max-width: 580px;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  color: #c4ccda;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 6; width: 26px; height: 42px;
  border: 1px solid var(--line); border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--muted); margin-top: 7px; animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(11px); } }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--wrap);
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
}
.strip__item {
  padding: clamp(26px, 4vw, 40px) var(--pad);
  border-left: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.strip__item:first-child { border-left: none; }
.strip__item strong { font-family: var(--display); font-weight: 700; font-size: 1.04rem; letter-spacing: -0.01em; }
.strip__item span { color: var(--muted); font-size: 0.9rem; }

/* =====================================================================
   WORK
   ===================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.work-card:hover { transform: translateY(-5px); border-color: var(--line); }
.work-card__frame { padding: 28px 28px 0; height: 210px; display: flex; align-items: flex-end; }
.work-card__frame--a { background: radial-gradient(120% 120% at 30% 0%, #16224a, #0a0e1d); }
.work-card__frame--b { background: radial-gradient(120% 120% at 70% 0%, #2c1838, #140a17); }
.work-card__frame--c { background: radial-gradient(120% 120% at 50% 0%, #0f322f, #07140f); }
.work-card__meta { padding: 22px 26px 28px; }
.work-card__meta h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.work-card__meta p { color: var(--muted); font-size: 0.94rem; margin: 8px 0 14px; }
.tag { font-size: 0.76rem; color: var(--faint); letter-spacing: 0.02em; }

/* mini browser mockups (pure CSS, no images) */
.browser { width: 100%; background: #0c0f16; border: 1px solid rgba(255,255,255,0.09); border-radius: 8px 8px 0 0; border-bottom: none; overflow: hidden; box-shadow: 0 -10px 40px rgba(0,0,0,0.4); }
.browser__bar { display: flex; gap: 6px; padding: 9px 11px; background: #111521; border-bottom: 1px solid rgba(255,255,255,0.06); }
.browser__bar i { width: 8px; height: 8px; border-radius: 50%; background: #2c3550; }
.browser__shot { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.m-head { height: 10px; width: 40%; border-radius: 3px; background: rgba(255,255,255,0.16); }
.m-hero { height: 50px; border-radius: 6px; background: linear-gradient(120deg, #2c63ff, #7aa0ff); display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 12px; }
.m-hero--dark { background: linear-gradient(120deg, #6d3b78, #c98bd6); }
.m-hero span { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.65); }
.m-hero span:first-child { width: 60%; }
.m-hero span:last-child { width: 35%; }
.m-row { display: flex; gap: 6px; }
.m-row b { flex: 1; height: 26px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.m-grid b { height: 22px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.m-shop { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.m-shop b { height: 30px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.shot--shop .m-head { margin-bottom: 4px; }

/* =====================================================================
   BIG STATEMENT
   ===================================================================== */
.statement {
  padding: clamp(80px, 13vw, 180px) var(--pad);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.statement__line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto;
}
.statement__line span { display: block; }
.statement__muted { color: transparent; -webkit-text-stroke: 1.3px var(--faint); }

/* =====================================================================
   SERVICES CARDS
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; }
.card { background: var(--bg); padding: clamp(28px, 4vw, 46px); transition: background 0.3s ease; }
.card:hover { background: var(--panel); }
.card__num { font-family: var(--display); font-weight: 700; font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 22px; }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* =====================================================================
   PROCESS STEPS
   ===================================================================== */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(16px, 4vw, 50px);
  padding: clamp(26px, 4vw, 40px) 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--faint); letter-spacing: -0.02em; }
.step__body h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.5vw, 1.8rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.step__body p { color: var(--muted); max-width: 560px; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(28px, 3.4vw, 40px);
  display: flex; flex-direction: column;
}
.price--featured { border-color: var(--accent-dim); background: linear-gradient(180deg, rgba(111,155,255,0.07), var(--panel) 55%); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.price__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #06070a; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 13px; border-radius: 20px; white-space: nowrap; }
.price h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.price__amt { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -0.03em; margin: 10px 0 22px; }
.price ul { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.95rem; }
.price li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.pricing__note { text-align: center; margin-top: 30px; color: var(--muted); }
.pricing__note strong { color: var(--ink); font-weight: 600; }

/* =====================================================================
   AD SERVICES (light touch)
   ===================================================================== */
.ads { border-top: 1px solid var(--line-soft); background: var(--bg-alt); }
.ads__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.ads__text .eyebrow { display: block; margin-bottom: 18px; }
.ads__text p { color: var(--muted); margin: 20px 0 30px; max-width: 540px; font-size: 1.05rem; }
.ads__mark { display: flex; justify-content: center; }
.ads__mark img { width: clamp(130px, 18vw, 210px); height: auto; opacity: 0.45; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__text p { color: var(--muted); margin-top: 18px; max-width: 540px; }
.about__text .section__title { margin-bottom: 6px; }
.about__text .eyebrow { display: block; margin-bottom: 18px; }
.about__text .btn { margin-top: 30px; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; }
.stat { background: var(--bg-alt); padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 8px; }
.stat strong { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.01em; }
.stat span { color: var(--muted); font-size: 0.86rem; }

/* two-person team */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 30px 0 4px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.team__member h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.team__member p { color: var(--muted); font-size: 0.92rem; margin: 0; max-width: none; }

/* =====================================================================
   START / FORM
   ===================================================================== */
.start__inner { max-width: 860px; margin: 0 auto; }
.start__head { text-align: center; margin: 0 auto clamp(36px, 5vw, 56px); }
.start__head .eyebrow { display: block; margin-bottom: 18px; }
.start__head .section__lead { margin-left: auto; margin-right: auto; }
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: flex; flex-direction: column; gap: 8px; }
.form label span { font-size: 0.82rem; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.form input, .form select, .form textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 13px 15px; width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form input::placeholder, .form textarea::placeholder { color: var(--faint); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: #14161c; }
.form textarea { resize: vertical; min-height: 120px; }
.form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2398a0ad' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.form__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.form__or { color: var(--muted); font-size: 0.92rem; }
.form__or a { color: var(--accent); }
.form__or a:hover { text-decoration: underline; }
.form__status { font-size: 0.92rem; min-height: 1.2em; }
.form__status.is-ok { color: #5fd49a; }
.form__status.is-err { color: #ff8080; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(56px, 7vw, 88px) var(--pad) 30px; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 34px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--ink); }
.footer__base {
  max-width: var(--wrap); margin: 40px auto 0; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--faint); font-size: 0.84rem;
}

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .work-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price--featured { order: -1; }
  .ads__inner, .about__inner { grid-template-columns: 1fr; }
  .ads__mark { order: -1; justify-content: flex-start; }
  .about__stats { max-width: 520px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px;
    background: var(--bg-alt); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 70; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(3) { border-left: none; }
  .strip__item:nth-child(odd) { border-left: none; }
  .strip__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; gap: 20px; }
  .footer__base { justify-content: center; text-align: center; }
  /* lighter aurora on phones for performance */
  .aurora { filter: blur(30px); }
  .aurora--4 { display: none; }
}

@media (max-width: 420px) {
  .about__stats { grid-template-columns: 1fr; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  /* aurora holds a calm static frame when motion is disabled */
  .aurora { animation: none !important; opacity: 0.5; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
