/* ============================================================
   maximail — lander styles
   Family DNA: Adviceal family (minirez · maxirez · mixipos · mixifin · maximail).
   Deep navy-violet anchors, turquoise→periwinkle→purple accent ramp,
   lowercase wordmark, "different horizon" motif.
   Light-predominant: the statement, demo CTA, finale and footer stay dark
   as anchors; the webmail mock stays navy-dark so it pops off the paper.
   ============================================================ */

:root {
  /* dark grounds */
  --bg0: #0b0a1c;
  --bg1: #141230;
  --bg2: #1d1a45;
  --ink: #eeeffb;
  --muted: #a2a4c8;
  --line: rgba(167, 170, 235, 0.14);

  /* brand ramp: turquoise → periwinkle → purple */
  --brand1: #34d9c4;
  --brand2: #6ea8f0;
  --brand3: #8b5cf6;
  --grad: linear-gradient(100deg, var(--brand1), var(--brand2) 52%, var(--brand3));
  /* legibility tokens — the bright ramp is illegible as small text on paper */
  --grad-cta: linear-gradient(100deg, #0f9a8e, #4a6fd4 48%, #5e3bb5);
  --on-grad: #ffffff;
  --accent-ink: #4a3a9e;

  --gold: #f5b84b;
  --ok: #34d399;
  --warn: #fb7185;

  /* light grounds */
  --paper: #f7f7fd;
  --paper-tint: #eeeefa;
  --ink-dark: #17142e;
  --muted-dark: #5b5a7d;
  --line-dark: rgba(23, 20, 46, 0.1);

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-text: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px -28px rgba(9, 6, 30, 0.65);
  --maxw: 1180px;
}

/* ---------- reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}

p {
  margin: 0;
}

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

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--brand2);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(110, 168, 240, 0.35);
  color: #0b0a1c;
}

[id] {
  scroll-margin-top: 88px;
}

.container {
  width: min(var(--maxw), 100% - 48px);
  margin-inline: auto;
}

.container--narrow {
  width: min(840px, 100% - 48px);
}

.skip {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 90;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad-cta);
  color: var(--on-grad);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.25s ease;
}

.skip:focus-visible {
  top: 12px;
}

/* ---------- shared type ---------- */
.kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}

.kicker--onDark {
  color: var(--brand1);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 108px 0;
  background: var(--paper);
}

.section--tint {
  background: var(--paper-tint);
}

.section__head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(29px, 3.9vw, 45px);
  font-weight: 800;
}

.section__head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted-dark);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    border-color 0.22s ease;
}

.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn--primary {
  background: var(--grad-cta);
  color: var(--on-grad);
  box-shadow: 0 12px 32px -10px rgba(94, 59, 181, 0.55);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px rgba(94, 59, 181, 0.68);
}

.btn--ghost {
  border-color: var(--line-dark);
  color: var(--ink-dark);
  background: rgba(23, 20, 46, 0.03);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 168, 240, 0.5);
}

.demo .btn--ghost,
.finale .btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  left: -70px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 3.8s ease-in-out infinite;
}

@keyframes shine {
  0%,
  64% {
    left: -70px;
  }
  82%,
  100% {
    left: 130%;
  }
}

/* ---------- progress ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 60;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(247, 247, 253, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-inline: auto;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--ink-dark);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color 0.2s ease;
}

.nav__phone:hover {
  color: var(--accent-ink);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-dark);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__sheet {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px 26px;
  background: rgba(247, 247, 253, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__sheet a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 11px 4px;
  color: var(--ink-dark);
}

.nav__sheet .btn {
  margin-top: 10px;
}

.nav.is-open .nav__sheet {
  display: flex;
  transform: none;
  opacity: 1;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 164px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 75% at 50% -12%, #e4e2fc 0%, transparent 62%),
    linear-gradient(180deg, #ececfc 0%, var(--paper) 72%);
}

.hero__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
  will-change: transform;
}

.aurora--1 {
  width: 640px;
  height: 460px;
  background: rgba(52, 217, 196, 0.26);
  top: -180px;
  left: -120px;
}

.aurora--2 {
  width: 720px;
  height: 520px;
  background: rgba(139, 92, 246, 0.2);
  top: -120px;
  right: -200px;
  animation-delay: -5s;
}

.aurora--3 {
  width: 460px;
  height: 380px;
  background: rgba(110, 168, 240, 0.2);
  bottom: -160px;
  left: 32%;
  animation-delay: -9s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(46px, 28px, 0) scale(1.09);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 20, 46, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 46, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 78%);
}

.hero__horizon {
  position: absolute;
  inset-inline: -10%;
  bottom: -2px;
  height: 220px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(110, 168, 240, 0.16), transparent 70%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-ink);
  border: 1px solid rgba(110, 168, 240, 0.3);
  background: rgba(110, 168, 240, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  transition: border-color 0.2s ease, transform 0.22s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 168, 240, 0.55);
}

.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand2);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 168, 240, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(110, 168, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 168, 240, 0);
  }
}

.hero__title {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 800;
  margin-top: 22px;
}

.hero__sub {
  margin-top: 20px;
  font-size: 17.5px;
  color: var(--muted-dark);
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted-dark);
}

.hero__trust li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

/* ---------- webmail mock ---------- */
.hero__visual {
  position: relative;
}

.mock {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(29, 26, 69, 0.96), rgba(11, 10, 28, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1600px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.5s ease;
  color: var(--ink);
}

.mock:hover {
  transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);
}

.mock__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mock__dot--warn {
  background: var(--warn);
}

.mock__dot--gold {
  background: var(--gold);
}

.mock__dot--ok {
  background: var(--ok);
}

.mock__url {
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
}

.mock__body {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 400px;
}

.mock__side {
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  font-size: 12px;
}

.mock__sidebrand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  padding-left: 6px;
}

.mock__sideitem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 9px;
  color: var(--muted);
  margin-bottom: 2px;
}

.mock__sideitem span {
  font-size: 11px;
  opacity: 0.85;
}

.mock__sideitem b {
  margin-left: auto;
  font-size: 10px;
  background: rgba(110, 168, 240, 0.2);
  color: #cfe0fb;
  border-radius: 999px;
  padding: 1px 7px;
}

.mock__sideitem.is-active {
  background: rgba(110, 168, 240, 0.16);
  color: #dbe6fb;
}

.mock__ai {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  background: var(--grad);
  color: var(--on-grad);
  border-radius: 999px;
  padding: 1.5px 7px;
}

.mock__sidelabel {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.7;
  margin: 14px 0 6px 8px;
}

.mock__sidetag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  color: var(--muted);
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.tag-dot--teal {
  background: var(--brand1);
}

.tag-dot--purple {
  background: var(--brand3);
}

.mock__main {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 12px;
}

.mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock__head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
}

.mock__head span {
  font-size: 11px;
  color: var(--muted);
}

.mock__tabs {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.mock__tabs b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
  border-radius: 999px;
  padding: 4px 12px;
}

.mock__tabs b.is-active {
  background: var(--grad);
  color: var(--on-grad);
}

.mock__brief {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(52, 217, 196, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(110, 168, 240, 0.28);
}

.mock__briefdot {
  font-size: 14px;
  color: var(--brand1);
}

.mock__brief strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
}

.mock__brief small {
  font-size: 10.5px;
  color: var(--muted);
}

.mock__brief em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mail-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.mail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  border-bottom: 1px solid var(--line);
}

.mail-row:last-child {
  border-bottom: 0;
}

.mail-row.is-unread .mail-row__copy strong {
  color: var(--ink);
}

.mail-avatar {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--on-grad);
}

.avatar--teal {
  background: linear-gradient(135deg, #1eb9a5, #128577);
}

.avatar--purple {
  background: linear-gradient(135deg, #8b5cf6, #6d3ed9);
}

.avatar--gold {
  background: linear-gradient(135deg, #f0b345, #d08d18);
}

.avatar--blue {
  background: linear-gradient(135deg, #6ea8f0, #3f77d4);
}

.mail-row__copy {
  min-width: 0;
}

.mail-row__copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-row__copy span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-row time {
  margin-left: auto;
  flex: none;
  font-size: 10.5px;
  color: var(--muted);
}

.mock__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  font-size: 10.5px;
  color: var(--muted);
}

.mock__foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.4s infinite;
}

/* floating annotations */
.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 18, 48, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}

.float b {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
}

.float small {
  font-size: 11px;
  color: var(--muted);
}

.float__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  background: rgba(52, 217, 196, 0.16);
  color: var(--brand1);
}

.float__icon--ok {
  background: rgba(52, 211, 153, 0.16);
  color: var(--ok);
}

.float__icon--purple {
  background: rgba(139, 92, 246, 0.18);
  color: #c1a6fb;
}

.float--brief {
  top: -26px;
  right: -14px;
}

.float--camp {
  bottom: 64px;
  left: -34px;
  animation-delay: -2s;
}

.float--share {
  bottom: -22px;
  right: 32px;
  animation-delay: -4s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--paper-tint);
  border-block: 1px solid var(--line-dark);
  padding: 16px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.marquee__group {
  display: flex;
  flex: none;
}

.marquee__group span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-dark);
  white-space: nowrap;
}

.marquee__group i {
  font-style: normal;
  color: var(--brand2);
  margin-inline: 18px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- statement (dark anchor) ---------- */
.statement {
  padding: 110px 0;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(110, 168, 240, 0.22), transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(139, 92, 246, 0.16), transparent 70%),
    var(--bg0);
}

.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin-inline: auto;
}

.statement__sub {
  margin: 26px auto 0;
  max-width: 62ch;
  font-size: 16.5px;
  color: var(--muted);
}

.statement__family {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.statement__family a,
.statement__family .is-hot {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.statement__family em {
  font-style: normal;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.statement__family a:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 168, 240, 0.5);
}

.statement__family .is-hot {
  background: var(--grad-cta);
  border-color: transparent;
  color: var(--on-grad);
}

.statement__family .is-hot em {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- spotlights ---------- */
.spotlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.spotlight__inner--flip .spotlight__visual {
  order: -1;
}

.spotlight__copy h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
}

.spotlight__copy > p {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--muted-dark);
  max-width: 52ch;
}

.ticklist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ticklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-dark);
}

.ticklist li::before {
  content: '✓';
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  background: rgba(110, 168, 240, 0.16);
  color: var(--accent-ink);
  margin-top: 2px;
}

.ticklist code {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(110, 168, 240, 0.12);
  color: var(--accent-ink);
  border-radius: 6px;
  padding: 1.5px 7px;
}

.spotlight__hint {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted-dark);
}

.spotlight__hint kbd {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-bottom-width: 2px;
  border-radius: 7px;
  padding: 2.5px 9px;
  margin-inline: 2px;
  color: var(--accent-ink);
}

.section--tint .spotlight__hint kbd {
  background: var(--paper);
}

/* ---------- panelcard (inbox/search set-piece) ---------- */
.panelcard {
  background: linear-gradient(160deg, rgba(29, 26, 69, 0.96), rgba(11, 10, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 22px;
  color: var(--ink);
  position: relative;
}

.panelcard__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panelcard__head strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.panelcard__head span {
  font-size: 11.5px;
  color: var(--muted);
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(110, 168, 240, 0.35);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--font-display);
  font-size: 13.5px;
}

.searchbar__icon {
  color: var(--brand2);
  font-size: 15px;
}

.searchbar__text {
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
}

.searchbar__caret,
.chat__caret {
  width: 2px;
  height: 16px;
  background: var(--brand1);
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

.mail-list--paper .mail-row__copy strong {
  color: var(--ink);
}

.undo-toast {
  position: absolute;
  bottom: -16px;
  right: 26px;
  background: rgba(20, 18, 48, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12.5px;
  color: var(--ink);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.undo-toast b {
  color: var(--ok);
  font-weight: 600;
}

/* ---------- chat (MAXI AI set-piece) ---------- */
.chat {
  background: linear-gradient(160deg, rgba(29, 26, 69, 0.96), rgba(11, 10, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 20px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.chat__status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.2s infinite;
}

.chat__head strong {
  font-family: var(--font-display);
  font-size: 14.5px;
}

.chat__head em {
  margin-left: auto;
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
}

.chat__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 2px;
  overflow: hidden;
}

.chat__msg {
  max-width: 88%;
  border-radius: 14px;
  padding: 11px 15px;
  font-size: 13.5px;
  line-height: 1.55;
  animation: msgin 0.35s ease;
}

.chat__msg--user {
  align-self: flex-end;
  background: var(--grad-cta);
  color: var(--on-grad);
  border-bottom-right-radius: 5px;
}

.chat__msg--ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}

.chat__msg--ai b {
  color: var(--brand1);
  font-weight: 600;
}

.chat__typing {
  display: inline-flex;
  gap: 5px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  padding: 13px 16px;
}

.chat__typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1s infinite;
}

.chat__typing i:nth-child(2) {
  animation-delay: 0.18s;
}

.chat__typing i:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

@keyframes msgin {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
}

.chat__chips button {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(110, 168, 240, 0.1);
  border: 1px solid rgba(110, 168, 240, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.22s ease;
}

.chat__chips button:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 168, 240, 0.6);
}

.chat__input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- campaign stats set-piece ---------- */
.camp {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  box-shadow: 0 30px 64px -40px rgba(23, 20, 46, 0.45);
  padding: 26px;
}

.camp__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.camp__head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
}

.camp__head span {
  font-size: 12.5px;
  color: var(--muted-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 13px;
}

.pill--ok {
  background: rgba(52, 211, 153, 0.14);
  color: #067a55;
}

.camp__progress {
  height: 8px;
  border-radius: 999px;
  background: var(--paper-tint);
  margin-top: 20px;
  overflow: hidden;
}

.camp__progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.camp__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.camp__stat {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 14px 6px;
}

.camp__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.camp__stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-dark);
}

.camp__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.camp__steps span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-dark);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px 14px;
}

.camp__steps span.is-done {
  background: rgba(110, 168, 240, 0.1);
  border-color: rgba(110, 168, 240, 0.35);
  color: var(--accent-ink);
}

.camp__steps i {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

/* ---------- context panel set-piece ---------- */
.ctx {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  box-shadow: 0 30px 64px -40px rgba(23, 20, 46, 0.45);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ctx__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.ctx__head strong {
  font-family: var(--font-display);
  font-size: 15.5px;
}

.ctx__head span {
  font-size: 12px;
  color: var(--muted-dark);
}

.ctx__card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  background: var(--paper);
}

.ctx__label {
  display: block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 8px;
}

.ctx__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ctx__row b {
  font-family: var(--font-display);
  font-size: 14.5px;
}

.ctx__row > span:not(.pill) {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dark);
  font-variant-numeric: tabular-nums;
}

.ctx__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 9px;
  font-size: 12.5px;
  color: var(--muted-dark);
}

.ctx__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ctx__actions span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-ink);
  background: rgba(110, 168, 240, 0.1);
  border: 1px solid rgba(110, 168, 240, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
}

.ctx__actions .is-grad {
  background: var(--grad-cta);
  border-color: transparent;
  color: var(--on-grad);
}

/* ---------- feature cards ---------- */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.fcard::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fcard:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 168, 240, 0.4);
  box-shadow: 0 26px 52px -24px rgba(23, 20, 46, 0.25);
}

.fcard:hover::before {
  opacity: 1;
}

.fcard__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(52, 217, 196, 0.14), rgba(139, 92, 246, 0.14));
  color: var(--accent-ink);
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.fcard:hover .fcard__icon {
  transform: scale(1.08) rotate(-4deg);
}

.fcard__icon svg {
  width: 23px;
  height: 23px;
}

.fcard h3 {
  font-size: 17px;
  font-weight: 700;
}

.fcard p {
  margin-top: 9px;
  font-size: 14.5px;
  color: var(--muted-dark);
}

.fcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.fcard__tags span {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(110, 168, 240, 0.12);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 168, 240, 0.4);
  box-shadow: 0 26px 52px -24px rgba(23, 20, 46, 0.25);
}

.audience-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.audience-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted-dark);
}

/* ---------- faq ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 0 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item[open] {
  border-color: rgba(110, 168, 240, 0.45);
  box-shadow: 0 18px 44px -28px rgba(23, 20, 46, 0.22);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  padding: 19px 0;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex: none;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-ink);
  transition: transform 0.25s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--muted-dark);
  max-width: 68ch;
}

/* ---------- demo (dark anchor) ---------- */
.demo {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(110, 168, 240, 0.24), transparent 70%),
    var(--bg0);
}

.demo__glow {
  position: absolute;
  width: 720px;
  height: 460px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.28), transparent);
  filter: blur(110px);
  pointer-events: none;
}

.demo__inner {
  position: relative;
}

.demo h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
}

.demo__inner > p {
  margin: 18px auto 0;
  max-width: 58ch;
  font-size: 17px;
  color: var(--muted);
}

.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 44px auto 0;
  text-align: left;
}

.how__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(167, 170, 235, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.how__step > span {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  background: var(--grad-cta);
  color: var(--on-grad);
}

.how__step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}

.how__step small {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
}

.demo__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.demo__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- finale (dark anchor) ---------- */
.finale {
  padding: 126px 0;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 65% at 50% 115%, rgba(110, 168, 240, 0.2), transparent 70%),
    radial-gradient(ellipse 45% 50% at 15% 0%, rgba(52, 217, 196, 0.12), transparent 70%),
    var(--bg0);
}

.finale h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- footer ---------- */
.footer {
  background: #070617;
  color: var(--ink);
  padding: 72px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer__brandcol p {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 36ch;
}

.footer__brandcol .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer__phone {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__col h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.85;
  padding: 5px 0;
  transition: opacity 0.2s ease;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.reveal:nth-child(5) {
  transition-delay: 0.24s;
}

.reveal:nth-child(6) {
  transition-delay: 0.3s;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav__phone {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__visual {
    max-width: 660px;
    margin-inline: auto;
  }

  .float--brief {
    top: -20px;
    right: 0;
  }

  .float--camp {
    left: -8px;
  }

  .float--share {
    right: 8px;
  }
}

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

@media (max-width: 960px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
    margin-left: auto;
  }

  .spotlight__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .spotlight__inner--flip .spotlight__visual {
    order: 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

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

  .how {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .statement,
  .demo {
    padding: 84px 0;
  }

  .finale {
    padding: 92px 0;
  }

  .container,
  .container--narrow {
    width: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 66px;
  }

  [id] {
    scroll-margin-top: 66px;
  }

  .nav__inner {
    height: 58px;
  }

  .brand img {
    height: 28px;
  }

  .hero {
    padding: 108px 0 52px;
  }

  .hero__title {
    font-size: 37px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .float {
    display: none;
  }

  .mock__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mock__side {
    display: none;
  }

  .fgrid {
    grid-template-columns: 1fr;
  }

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

  .camp__steps {
    flex-wrap: wrap;
  }

  .camp__steps i {
    display: none;
  }

  .undo-toast {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .chat {
    min-height: 380px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 6px;
  }

  .demo__actions,
  .finale__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 33px;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .mock {
    transform: none;
  }
}
