/* ============================================================
   RUSH — Brand Website
   ============================================================ */

:root {
  --ink: #0d0e12;
  --ink-2: #34373f;
  --muted: #6a6e78;
  --muted-2: #9498a2;
  --paper: #ffffff;
  --panel: #f4f5f8;
  --panel-2: #eaecf1;
  --line: rgba(13, 14, 18, 0.10);
  --line-strong: rgba(13, 14, 18, 0.16);

  /* Flavor accents */
  --blue: #1a44c9;          /* Blue Raspberry — deep electric blue (primary brand) */
  --blue-deep: #0f2f9e;
  --green: #129a4e;         /* Watermelon */
  --cherry: #cf1438;        /* Wild Cherry */
  --orange: #ef7a2b;        /* Fruit Punch */
  --strawberry: #e8254f;    /* Strawberry */
  --grape: #8c39b8;         /* Grape */

  --brand: var(--blue);
  --brand-deep: var(--blue-deep);

  --shadow-sm: 0 1px 2px rgba(13,14,18,.05), 0 2px 6px rgba(13,14,18,.05);
  --shadow-md: 0 4px 12px rgba(13,14,18,.07), 0 12px 30px rgba(13,14,18,.08);
  --shadow-lg: 0 12px 30px rgba(13,14,18,.10), 0 30px 70px rgba(13,14,18,.14);
  --shadow-render: 0 30px 60px rgba(13,14,18,.18);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--ink-2); line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.section--panel { background: var(--panel); }
.section--ink { background: var(--ink); color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 58px); margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* halftone dot pattern */
.dots {
  background-image: radial-gradient(currentColor 1.3px, transparent 1.4px);
  background-size: 16px 16px;
  color: rgba(13,14,18,.10);
}

/* ============================================================
   Age Gate
   ============================================================ */
.agegate {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,9,12,.78);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 1; transition: opacity .4s ease;
}
.agegate[hidden] { display: none; }
.agegate.closing { opacity: 0; }
.agegate__card {
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 480px; width: 100%;
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.agegate__card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--cherry), var(--grape));
}
.agegate__logo { height: 46px; width: auto; margin: 8px auto 26px; display: block; }
.agegate__card h2 { font-size: 27px; letter-spacing: -0.01em; }
.agegate__card p { color: var(--muted); font-size: 15px; margin: 14px auto 28px; max-width: 360px; }
.agegate__badge {
  width: 76px; height: 76px; border-radius: 50%;
  border: 3px solid var(--ink); color: var(--ink);
  display: grid; place-items: center; margin: 0 auto 24px;
  font-family: var(--font-display); font-weight: 800; line-height: .95;
}
.agegate__badge b { font-size: 26px; }
.agegate__badge span { font-size: 10px; letter-spacing: .18em; }
.agegate__btns { display: flex; flex-direction: column; gap: 12px; }
.agegate__deny { background: none; border: none; color: var(--muted); font-size: 14px; padding: 6px; }
.agegate__deny:hover { color: var(--ink); }
.agegate small { display: block; margin-top: 22px; color: var(--muted-2); font-size: 12px; line-height: 1.5; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 14px;
  padding: 16px 28px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(26,68,201,.32); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--onink { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--onink:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--sm { padding: 12px 20px; font-size: 13px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2);
  padding: 10px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink); background: rgba(13,14,18,.05); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; background: none; border: none; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--gut);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 28px; letter-spacing: -0.01em; padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: 130px; padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(26,68,201,.07), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, var(--paper) 60%, var(--panel) 100%);
}
.hero__dots {
  position: absolute; top: -10%; right: -5%; width: 60%; height: 80%; z-index: 0;
  background-image: radial-gradient(rgba(26,68,201,.16) 1.6px, transparent 1.7px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(60% 60% at 70% 30%, #000, transparent 75%);
  mask-image: radial-gradient(60% 60% at 70% 30%, #000, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 56px); align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(46px, 7.4vw, 92px);
  letter-spacing: -0.035em; line-height: 0.93; margin: 22px 0 0;
}
.hero h1 .accent { color: var(--brand); }
.hero__sub { margin-top: 26px; max-width: 520px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 28px; margin-top: 42px; }
.hero__trust div { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.hero__trust svg { width: 18px; height: 18px; color: var(--brand); flex: none; }

.hero__art { position: relative; min-height: 560px; }
.hero__render {
  position: absolute; filter: drop-shadow(0 30px 45px rgba(13,14,18,.22));
}
.hero__render--blue { width: auto; height: clamp(420px, 52vw, 520px); right: 2%; top: 50%; transform: translateY(-50%); z-index: 2; }
.hero__render--green { width: auto; height: clamp(310px, 40vw, 400px); left: -2%; bottom: 0; z-index: 1; }
.hero__badge21 {
  position: absolute; left: 0; top: 0; z-index: 3;
  width: 58px; height: 58px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; line-height: .9; text-align: center;
}
.hero__badge21 b { font-size: 17px; }
.hero__badge21 span { font-size: 7.5px; letter-spacing: .14em; color: var(--muted); }

/* ============================================================
   Marquee / Trust bar
   ============================================================ */
.trustbar { border-block: 1px solid var(--line); background: var(--paper); }
.trustbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 26px var(--gut);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.trustbar__item { display: flex; align-items: center; gap: 12px; }
.trustbar__item svg { width: 26px; height: 26px; color: var(--ink); flex: none; }
.trustbar__item b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 14px; display: block; }
.trustbar__item small { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   Product Series
   ============================================================ */
.series { display: grid; gap: clamp(28px, 4vw, 48px); }
.serie {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 56px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.serie:nth-child(even) .serie__media { order: 2; }
.serie__accent { position: absolute; inset: 0 auto 0 0; width: 6px; }
.serie__media { position: relative; min-height: 340px; display: grid; place-items: center; }
.serie__media-dots {
  position: absolute; inset: 0; border-radius: var(--r);
  background-image: radial-gradient(var(--c, rgba(13,14,18,.5)) 1.4px, transparent 1.5px);
  background-size: 17px 17px; opacity: .12;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 45%, #000, transparent 78%);
  mask-image: radial-gradient(70% 70% at 50% 45%, #000, transparent 78%);
}
.serie__render { position: relative; z-index: 1; max-height: 400px; width: auto; filter: drop-shadow(0 24px 40px rgba(13,14,18,.20)); }
.serie__tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px;
  color: #fff;
}
.serie h3 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 0; }
.serie__spec { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 22px; }
.serie__spec span {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .03em;
  padding: 8px 14px; border-radius: 10px; background: var(--panel); color: var(--ink); text-transform: uppercase;
}
.serie__desc { color: var(--ink-2); max-width: 460px; }
.serie__flavors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.flavchip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  padding: 7px 14px 7px 10px; border-radius: 100px; background: var(--panel); color: var(--ink-2);
}
.flavchip i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }

/* ============================================================
   Quality cards
   ============================================================ */
.qgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.qcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.qcard__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(26,68,201,.08); color: var(--brand);
}
.qcard__icon svg { width: 26px; height: 26px; }
.qcard h3 { font-size: 19px; letter-spacing: -0.005em; }
.qcard p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* ============================================================
   Flavor grid
   ============================================================ */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard {
  position: relative; border-radius: var(--r); overflow: hidden; padding: 30px 28px;
  min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fcard__glow {
  position: absolute; z-index: -1; width: 200px; height: 200px; border-radius: 50%;
  right: -50px; top: -60px; opacity: .14; filter: blur(8px);
  background: var(--fc);
  transition: opacity .25s ease, transform .25s ease;
}
.fcard:hover .fcard__glow { opacity: .26; transform: scale(1.15); }
.fcard__dots {
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(var(--fc) 1.3px, transparent 1.4px);
  background-size: 15px 15px; opacity: .07;
}
.fcard__tab { width: 44px; height: 44px; border-radius: 50%; background: var(--fc); box-shadow: 0 6px 16px color-mix(in srgb, var(--fc) 40%, transparent); }
.fcard h3 { font-size: 26px; margin-top: auto; }
.fcard__series { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fc); margin-top: 8px; }
.fcard__line { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   Party Tablets (new line)
   ============================================================ */
.party { position: relative; overflow: hidden; }
.party__dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.4px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 18%, #000, transparent 72%);
  mask-image: radial-gradient(80% 70% at 50% 18%, #000, transparent 72%);
  pointer-events: none;
}
.party__inner { position: relative; z-index: 1; }
.party .section-head h2 { font-size: clamp(34px, 5vw, 58px); color: #fff; }
.party__eyebrow { color: #8fa6ff; }
.party__soon {
  display: inline-flex; align-items: center; vertical-align: middle;
  margin-left: 14px; transform: translateY(-6px);
  font-family: var(--font-display); font-weight: 800; font-size: 0.34em;
  letter-spacing: .14em; text-transform: uppercase;
  color: #0b0c10; background: #8fa6ff;
  padding: 8px 14px; border-radius: 100px; white-space: nowrap;
}
.pcard__ribbon {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); padding: 7px 13px; border-radius: 100px;
}
.pcard--soon .pcard__media img { opacity: .92; }
.party__lead { color: rgba(255,255,255,.62); }
.party__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.pcard {
  position: relative; border-radius: var(--r-lg); padding: 36px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
  isolation: isolate; overflow: hidden;
}
.pcard::before {
  content: ""; position: absolute; z-index: -1; left: 50%; top: -10%;
  width: 300px; height: 300px; transform: translateX(-50%); border-radius: 50%;
  background: var(--pc); opacity: .20; filter: blur(46px);
  transition: opacity .3s ease, transform .3s ease;
}
.pcard:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--pc) 55%, transparent); box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.pcard:hover::before { opacity: .34; transform: translateX(-50%) scale(1.1); }
.pcard__media { height: 320px; display: grid; place-items: center; margin-bottom: 22px; }
.pcard__media img { max-height: 320px; width: auto; filter: drop-shadow(0 22px 38px rgba(0,0,0,.55)); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.pcard:hover .pcard__media img { transform: translateY(-4px) scale(1.02); }
.pcard__info h3 { font-size: 22px; color: #fff; letter-spacing: -0.005em; }
.pcard__meta {
  display: inline-block; margin-top: 10px; font-family: var(--font-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pc); filter: brightness(1.25);
}
.party__note {
  text-align: center; margin-top: 40px; color: rgba(255,255,255,.4); font-size: 12.5px;
  letter-spacing: .02em;
}

/* ============================================================
   About
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.about__copy p { color: var(--ink-2); margin: 0 0 20px; font-size: clamp(17px, 1.9vw, 19px); }
.about__copy p:first-of-type { font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); font-weight: 500; line-height: 1.45; font-family: var(--font-body); }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.statcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.statcard b { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 44px); display: block; letter-spacing: -0.02em; line-height: 1; }
.statcard span { color: var(--muted); font-size: 14px; display: block; margin-top: 10px; }

/* ============================================================
   COA directory
   ============================================================ */
.coa-series { display: grid; gap: 36px; }
.coa-group__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 18px; margin-bottom: 20px; }
.coa-group__head h3 { font-size: clamp(22px, 3vw, 30px); }
.coa-group__head .pill { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #fff; padding: 6px 13px; border-radius: 100px; }
.coa-group__head small { color: var(--muted); font-size: 13.5px; }
.coa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coa-item {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.coa-item:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.coa-item__ic { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; flex: none; background: var(--cc, rgba(13,14,18,.06)); color: #fff; }
.coa-item__ic svg { width: 22px; height: 22px; }
.coa-item__txt { flex: 1; min-width: 0; }
.coa-item__txt b { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .02em; display: block; }
.coa-item__txt small { color: var(--muted); font-size: 12.5px; }
.coa-item__dl { flex: none; color: var(--muted); transition: color .2s; }
.coa-item:hover .coa-item__dl { color: var(--brand); }
.coa-item__dl svg { width: 20px; height: 20px; }

/* ============================================================
   Contact
   ============================================================ */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact__info p { color: var(--muted); margin-top: 18px; max-width: 380px; }
.contact__rows { margin-top: 30px; display: grid; gap: 4px; }
.contact__row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__row svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
.contact__row b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; color: var(--muted); display: block; }
.contact__row span { font-size: 15.5px; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-strong); border-radius: 12px;
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); background: #fdfdfe;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(26,68,201,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }
.form__ok { display: none; text-align: center; padding: 30px 10px; }
.form__ok svg { width: 52px; height: 52px; color: var(--green); margin: 0 auto 16px; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }

/* ============================================================
   Final CTA
   ============================================================ */
.finalcta { position: relative; overflow: hidden; text-align: center; }
.finalcta__dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(70% 80% at 50% 30%, #000, transparent 75%);
}
.finalcta__inner { position: relative; z-index: 1; }
.finalcta h2 { font-size: clamp(38px, 6vw, 76px); letter-spacing: -0.03em; }
.finalcta h2 .accent { color: #6f8dff; }
.finalcta p { color: rgba(255,255,255,.65); max-width: 540px; margin: 22px auto 0; font-size: 18px; }
.finalcta .btn { margin-top: 38px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #08090c; color: #fff; padding-block: clamp(56px, 7vw, 88px) 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer__brand img { height: 30px; width: auto; }
.footer__brand p { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 18px; max-width: 320px; }
.footer__col h4 { font-size: 13px; letter-spacing: .14em; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: rgba(255,255,255,.75); font-size: 14.5px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__disc { padding-top: 34px; display: grid; gap: 18px; }
.footer__disc p { color: rgba(255,255,255,.4); font-size: 12px; line-height: 1.65; margin: 0; max-width: 880px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; margin-top: 14px; }
.footer__bottom small { color: rgba(255,255,255,.4); font-size: 12.5px; }
.footer__age { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); padding: 6px 12px; border-radius: 100px; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { min-height: 380px; order: -1; max-width: 480px; margin-inline: auto; width: 100%; }
  .serie, .serie:nth-child(even) .serie__media { grid-template-columns: 1fr; }
  .serie__media { order: -1 !important; min-height: 300px; }
  .qgrid { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .party__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pcard { padding: 26px 16px 22px; }
  .pcard__media { height: 220px; }
  .pcard__media img { max-height: 220px; }
  .coa-grid { grid-template-columns: 1fr 1fr; }
  .about, .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .qgrid, .fgrid, .coa-grid, .form__row, .about__stats { grid-template-columns: 1fr; }
  .party__grid { grid-template-columns: 1fr; gap: 18px; }
  .pcard__media { height: 300px; }
  .pcard__media img { max-height: 300px; }
  .hero__btns .btn { flex: 1; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .trustbar__inner { gap: 18px; }
}
