:root {
  --bg: #05060a;
  --bg-2: #090b12;
  --panel: #11131b;
  --panel-2: #171923;
  --ink: #f7f5f8;
  --muted: #aaa7b2;
  --accent: #ff1748;
  --accent-2: #ff3f7e;
  --acid: #d8ff3e;
  --cyan: #38d8ff;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #05060a; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(123,30,212,.14), transparent 34rem),
    radial-gradient(circle at 92% 34%, rgba(56,216,255,.075), transparent 32rem),
    radial-gradient(circle at 36% 76%, rgba(255,23,72,.075), transparent 38rem),
    linear-gradient(145deg, #030408 0%, #090a10 38%, #05060b 70%, #0b0710 100%);
  background-attachment: fixed;
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--acid);
  color: #111;
  border-radius: 12px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  width: 100%;
  padding: 10px clamp(22px, 3vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(5,6,10,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 26%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.brand b { color: var(--accent-2); }
.primary-nav { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 2.2vw, 42px); margin-left: clamp(32px, 6vw, 120px); }
.primary-nav > a:not(.button) {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 850;
  font-size: 12px;
  color: #d8d5dc;
}
.primary-nav > a:hover { color: var(--accent-2); }
.nav-toggle {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 9px 15px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  width: fit-content;
  min-height: 56px;
  padding: 15px 34px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: white;
  background: linear-gradient(110deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(255,23,72,.24), inset 0 1px 0 rgba(255,255,255,.22);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Inter", ui-sans-serif, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,23,72,.34), inset 0 1px 0 rgba(255,255,255,.28); filter: brightness(1.06); }
.button:focus-visible, .text-link:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 11px 20px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 14px 30px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.035); text-decoration: none; text-transform: uppercase; font-family: "Inter", ui-sans-serif, sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .1em; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.text-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.075); }

.hero {
  position: relative;
  min-height: calc(100svh - 124px);
  max-width: min(1480px, calc(100% - 32px));
  margin: 16px auto 30px;
  padding: clamp(28px, 4vh, 52px) clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255,63,126,.35);
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255,23,72,.14), transparent 30%),
    linear-gradient(115deg, rgba(12,3,10,.98) 0%, rgba(23,5,20,.96) 50%, rgba(13,3,14,.72) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 26px 80px rgba(0,0,0,.42), 0 0 75px rgba(255,23,72,.08);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,2,8,.98) 0%, rgba(8,2,8,.91) 43%, rgba(8,2,8,.52) 68%, rgba(8,2,8,.66) 100%),
    linear-gradient(180deg, rgba(8,2,8,.16), rgba(8,2,8,.75));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,63,126,.13);
  border-radius: 28px;
  pointer-events: none;
}
.hero-background {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(54%, 760px);
  z-index: -2;
  background: url("./assets/hero-neon-bg.png") center 27% / cover no-repeat;
  filter: saturate(1.18) contrast(1.05);
  opacity: .72;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 24%, #000 54%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 24%, #000 54%);
}
.hero-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-stars i { position: absolute; color: #ff4f98; font-size: 20px; font-style: normal; text-shadow: 0 0 8px #ff176d, 0 0 24px #ff176d; }
.hero-stars i:nth-child(1) { left: 26px; top: 25px; }
.hero-stars i:nth-child(2) { right: 28px; top: 35px; font-size: 28px; }
.hero-stars i:nth-child(3) { left: 45%; bottom: 24px; font-size: 14px; }
.hero-stars i:nth-child(4) { right: 38%; top: 22%; font-size: 12px; }
.hero-copy, .hero-chat-wrap { position: relative; z-index: 1; width: 100%; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbc7d1;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}
.eyebrow span { width: 38px; height: 3px; border-radius: 9px; background: linear-gradient(90deg, var(--cyan), var(--accent-2)); }
h1, h2, h3 { margin-top: 0; line-height: .98; letter-spacing: -.045em; }
h1, h2 { font-weight: 950; }
h1 { width: 100%; max-width: none; margin-bottom: 18px; font-size: clamp(62px, 6.8vw, 104px); }
h1 em, h2 em { color: var(--accent-2); font-style: normal; }
.hero-copy > p:not(.eyebrow) { width: 100%; max-width: none; color: var(--muted); }
.hero-lead { margin: 0 0 10px; color: #f3eff5 !important; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.46; font-weight: 650; }
.hero-copy > p:not(.eyebrow, .hero-lead, .hero-note) { margin-block: 9px; font-size: 14px; line-height: 1.62; }
.hero-note { margin-top: 12px; padding-left: 14px; border-left: 3px solid var(--accent); color: #e4dfe7 !important; font-size: 13px; line-height: 1.5; font-weight: 750; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 20px; }
.hero-actions .button { white-space: nowrap; }
.trust-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.trust-row span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: #bbb6c3; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.hero-chat-wrap { position: relative; min-width: 0; padding: 12px; }
.hero-chat-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(255,63,126,.45);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,23,72,.08), rgba(6,4,10,.42));
  box-shadow: 0 0 45px rgba(255,23,72,.18), inset 0 0 30px rgba(255,63,126,.05);
}
.neon-orbit {
  position: absolute;
  inset: -38px -55px;
  background: radial-gradient(circle at center, rgba(255,23,72,.24), transparent 64%);
  filter: blur(15px);
  pointer-events: none;
}
.chat-app {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(34,34,47,.96), rgba(15,15,22,.98));
  box-shadow: var(--shadow), 0 0 0 8px rgba(255,255,255,.025), 0 0 70px rgba(255,23,72,.12);
}
.hero-chat { width: 100%; max-width: none; margin: 0; transform: rotate(.4deg); border-color: rgba(255,63,126,.4); background: linear-gradient(155deg, rgba(28,10,25,.97), rgba(10,8,15,.98)); }
.hero-chat .chat-head { background: linear-gradient(90deg, rgba(255,23,72,.13), rgba(255,255,255,.025)); }
.hero-chat .chat-form button { box-shadow: 0 0 22px rgba(255,23,72,.38); }
.chat-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.chat-head img { width: 50px; height: 50px; object-fit: cover; object-position: 50% 20%; border-radius: 15px; border: 2px solid var(--accent-2); }
.chat-head div { min-width: 0; }
.chat-head strong { display: block; font-size: 15px; }
.chat-head span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.chat-head i { width: 8px; height: 8px; border-radius: 50%; background: #39e395; box-shadow: 0 0 12px #39e395; }
.ai-pill { margin-left: auto; padding: 7px 11px; border-radius: 99px; color: #111; background: var(--acid); font-size: 10px; letter-spacing: .1em; }
.chat-stream {
  min-height: 230px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(56,216,255,.1), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.chat-date { margin: 0 auto 5px; color: #817d89; font-size: 10px; letter-spacing: .07em; }
.message { width: fit-content; max-width: 82%; padding: 12px 15px; border-radius: 17px; font-size: 13px; line-height: 1.45; }
.message-them { color: #f1edf3; background: #272733; border: 1px solid rgba(255,255,255,.09); border-bottom-left-radius: 5px; }
.message-you { align-self: flex-end; color: #fff; background: linear-gradient(110deg, #7b1ed4, var(--accent-2)); border-bottom-right-radius: 5px; box-shadow: 0 10px 25px rgba(255,63,126,.13); }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 19px 14px; }
.quick-replies button { padding: 8px 12px; color: #f5f1f6; background: rgba(255,63,126,.08); border: 1px solid rgba(255,63,126,.65); border-radius: 99px; font-size: 11px; cursor: pointer; }
.quick-replies button:hover { background: var(--accent-2); }
.chat-form { display: flex; gap: 10px; padding: 14px 17px; border-top: 1px solid var(--line); }
.chat-form input { width: 100%; min-width: 0; padding: 12px 15px; color: white; background: #302e34; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; outline: none; }
.chat-form input:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(255,63,126,.12); }
.chat-form button { flex: 0 0 45px; width: 45px; height: 45px; color: white; background: linear-gradient(135deg, var(--accent), #8a20e7); border: 0; border-radius: 50%; cursor: pointer; font-size: 22px; }
.chat-external { display: flex; justify-content: space-between; padding: 16px 20px; color: #fff; background: rgba(255,255,255,.025); border-top: 3px solid rgba(255,255,255,.82); text-decoration: none; text-transform: uppercase; font-family: inherit; font-size: 14px; letter-spacing: .15em; font-weight: 900; }
.chat-external:hover { color: var(--acid); }

.marquee { overflow: hidden; padding: 15px 24px; display: flex; justify-content: center; color: #0d0d10; background: var(--acid); border-block: 1px solid #efff99; }
.marquee div { width: 100%; max-width: var(--max); text-align: center; font-weight: 950; letter-spacing: .16em; font-size: 12px; }
.marquee b { margin: 0 20px; color: var(--accent); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(52px, 5.5vw, 76px) 24px; }
.section h2 { margin-bottom: 25px; font-size: clamp(38px, 4.4vw, 72px); max-width: none; white-space: normal; text-wrap: balance; }
.section h3 { font-size: clamp(22px, 2.4vw, 32px); white-space: normal; text-wrap: balance; }
.section p { color: var(--muted); }
.section-copy p strong,
.section-header p strong,
.demo-copy p strong { color: var(--ink); font-weight: 850; background: linear-gradient(transparent 62%, rgba(255,63,126,.32) 62%); }
.section-copy { align-self: center; }
.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; column-gap: clamp(50px, 8vw, 110px); row-gap: 20px; align-items: center; padding-block: clamp(44px, 4vw, 58px); }
.split-intro-heading { grid-column: 1 / -1; margin-bottom: 0; }
.split-intro-heading h2 { max-width: 1160px; margin-bottom: 0; }
.split-intro .button { margin-top: 18px; }
.portrait-stack { position: relative; min-height: 540px; }
.portrait-card { position: absolute; margin: 0; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.portrait-main { inset: 0 14% 4% 0; border: 7px solid #f5f1f6; transform: rotate(-2.5deg); }
.portrait-back { width: 48%; height: 58%; right: 0; bottom: 0; border: 4px solid var(--accent-2); transform: rotate(5deg); }
.portrait-back::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 8px rgba(255,255,255,.08); }
.portrait-tag { position: absolute; left: 22px; bottom: 8%; z-index: 3; padding: 11px 16px; color: #111; background: var(--acid); border-radius: 99px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 950; }

.panel-section { max-width: none; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); border-block: 1px solid var(--line); }
.panel-section > * { max-width: var(--max); margin-inline: auto; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 { margin-inline: auto; }
.section-header > p:last-child { max-width: 780px; margin-inline: auto; font-size: 18px; }
.section-header.narrow { max-width: var(--max); margin-inline: auto; }
.section-header.narrow > p { max-width: 880px; margin-inline: auto; }
.companion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.companion-card { position: relative; min-height: 430px; overflow: hidden; display: flex; align-items: flex-end; padding: 24px; border: 1px solid var(--line); border-radius: 24px; color: white; text-decoration: none; isolation: isolate; }
.companion-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(4,4,8,.95) 93%); }
.companion-card::after { content: none; }
.companion-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; z-index: -2; transition: transform .45s ease; }
.companion-card:hover > img { transform: scale(1.045); }
.companion-card:nth-child(3n+1) { border-color: rgba(255,63,126,.65); }
.companion-card:nth-child(3n+2) { border-color: rgba(56,216,255,.5); }
.companion-card:nth-child(3n) { border-color: rgba(216,255,62,.4); }
.companion-card > div { width: 100%; }
.companion-card h3 { margin-bottom: 10px; }
.companion-card p { margin: 0; color: #d7d1da; font-size: 13px; }
.companion-card-cta { display: flex; align-items: center; justify-content: space-between; width: calc(100% + 48px); margin: 18px -24px -24px; padding: 14px 24px; color: #fff; background: rgba(8,8,13,.84); border-top: 1px solid rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; transition: color .2s ease, background .2s ease; }
.companion-card-cta b { color: var(--acid); font-size: 18px; line-height: 1; }
.companion-card:hover .companion-card-cta { color: #111; background: linear-gradient(105deg, var(--accent-2), var(--acid)); }
.companion-card:hover .companion-card-cta b { color: #111; }
.card-number { position: absolute; top: 19px; left: 19px; padding: 7px 10px; color: white; background: rgba(8,8,13,.68); border: 1px solid rgba(255,255,255,.18); border-radius: 99px; font-weight: 900; font-size: 10px; }
.companion-details-header { max-width: var(--max); margin: 52px auto 28px; padding-top: 34px; border-top: 1px solid var(--line); text-align: center; }
.companion-details-header .eyebrow { justify-content: center; }
.companion-details-header h2 { margin-inline: auto; }
.companion-details-header > p:not(.eyebrow) { max-width: 760px; margin: 0 auto; color: var(--muted); }
.detail-menu { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; max-width: 980px; margin: 28px auto 0; }
.detail-menu a { display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 10px 14px; color: #f2edf4; border: 1px solid rgba(255,255,255,.12); text-decoration: none; text-align: left; font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease; }
.detail-menu a:nth-child(3n+1) { background: linear-gradient(115deg, rgba(255,63,126,.24), rgba(255,63,126,.06)); border-color: rgba(255,63,126,.48); }
.detail-menu a:nth-child(3n+2) { background: linear-gradient(115deg, rgba(56,216,255,.22), rgba(56,216,255,.05)); border-color: rgba(56,216,255,.44); }
.detail-menu a:nth-child(3n) { background: linear-gradient(115deg, rgba(216,255,62,.19), rgba(216,255,62,.04)); border-color: rgba(216,255,62,.4); }
.detail-menu a:hover { color: #fff; transform: translateY(-2px); }
.detail-menu a:nth-child(3n+1):hover { background: linear-gradient(115deg, rgba(255,63,126,.46), rgba(255,63,126,.12)); }
.detail-menu a:nth-child(3n+2):hover { background: linear-gradient(115deg, rgba(56,216,255,.4), rgba(56,216,255,.1)); }
.detail-menu a:nth-child(3n):hover { background: linear-gradient(115deg, rgba(216,255,62,.34), rgba(216,255,62,.08)); }
.detail-menu span { color: var(--accent-2); font-size: 16px; font-weight: 950; letter-spacing: 0; }
.detail-menu a:nth-child(3n+2) span { color: var(--cyan); }
.detail-menu a:nth-child(3n) span { color: var(--acid); }
.companion-detail-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 42px; border-block: 1px solid var(--line); }
.companion-detail-grid article { position: relative; padding: 28px 4px 28px 66px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; scroll-margin-top: 110px; }
.detail-number { position: absolute; top: 27px; left: 4px; color: var(--accent-2); font-size: 32px; line-height: 1; font-weight: 950; letter-spacing: -.05em; }
.companion-detail-grid article:nth-child(even) .detail-number { color: var(--cyan); }
.companion-detail-grid h3 { margin-bottom: 12px; font-size: 21px; line-height: 1.1; }
.companion-detail-grid p { margin: 8px 0 0; font-size: 13px; line-height: 1.65; }
.companion-detail-cta { display: flex; justify-content: center; margin-top: 28px; }

.evolution { max-width: none; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); padding-bottom: 68px; background: radial-gradient(circle at 88% 28%, rgba(56,216,255,.09), transparent 26rem), radial-gradient(circle at 12% 78%, rgba(255,63,126,.12), transparent 30rem), linear-gradient(125deg, #080910 0%, #11101b 48%, #0b0712 100%); border-block: 1px solid rgba(255,255,255,.12); }
.evolution > * { max-width: var(--max); margin-inline: auto; }
.evolution .section-header { margin-bottom: 38px; }
.feature-layout { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(310px, .52fr); gap: clamp(38px, 5vw, 72px); align-items: center; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 42px; }
.feature-list article { display: grid; grid-template-columns: 64px 1fr; gap: 14px; min-height: 152px; padding: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.17); border-radius: 0; background: transparent; }
.feature-list article > b { display: block; width: auto; height: auto; color: #ff4a5f; background: none; border-radius: 0; font-family: inherit; font-size: 48px; line-height: 1; }
.feature-list h3 { margin: 0 0 10px; color: #fff; font-family: inherit; font-size: clamp(18px, 1.45vw, 22px); line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; }
.feature-list p { margin: 0; color: #b8a9c2; font-size: 14px; line-height: 1.55; }
.feature-visual { position: relative; width: 100%; aspect-ratio: 4 / 5; min-height: 0; padding: 10px; overflow: hidden; border: 1px solid rgba(56,216,255,.46); border-radius: 26px 8px 26px 8px; background: linear-gradient(145deg, rgba(255,63,126,.26), rgba(123,30,212,.16) 48%, rgba(56,216,255,.23)); box-shadow: 18px 20px 0 rgba(255,63,126,.12), 0 28px 80px rgba(0,0,0,.48); transform: rotate(1.2deg); }
.feature-visual::before { content: ""; position: absolute; inset: 10px; z-index: 1; border: 1px solid rgba(255,255,255,.52); border-radius: 18px 4px 18px 4px; pointer-events: none; }
.feature-visual::after { content: ""; position: absolute; inset: 10px; z-index: 1; border-radius: 18px 4px 18px 4px; background: linear-gradient(180deg, transparent 48%, rgba(5,6,10,.92) 100%); pointer-events: none; }
.feature-visual img { width: 100%; height: 100%; border-radius: 18px 4px 18px 4px; object-fit: cover; object-position: center 22%; }
.feature-visual span { position: absolute; left: 34px; right: 30px; bottom: 31px; z-index: 2; color: white; font-family: inherit; font-size: clamp(28px, 3vw, 48px); font-weight: 950; line-height: .9; letter-spacing: .02em; text-transform: uppercase; }

.demo-section { max-width: none; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 4.5vw, 68px); align-items: stretch; background: linear-gradient(135deg, rgba(255,23,72,.11), rgba(56,216,255,.05)); border-block: 1px solid var(--line); }
.demo-heading { grid-column: 1 / -1; margin-bottom: 0; }
.demo-heading h2 { max-width: 1160px; margin-bottom: 0; }
.demo-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.demo-copy > p:not(.eyebrow) { width: 100%; max-width: none; }
.demo-copy h3 { margin-top: 34px; margin-bottom: 12px; }
.demo-copy .button { align-self: flex-start; margin-top: 16px; }

.section-subnote {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  margin-top: 24px;
  padding: 17px 20px;
  text-align: left;
  background: linear-gradient(105deg, rgba(255, 61, 127, 0.055), rgba(87, 214, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid var(--accent-2);
}

.section-subnote-center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.section-subnote-index {
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section-subnote h3,
.demo-copy .section-subnote h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-subnote p,
.demo-copy .section-subnote p {
  margin: 0;
  color: rgba(239, 235, 242, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.section-subnote p + p,
.demo-copy .section-subnote p + p {
  margin-top: 7px;
}

.section-subnote-demo { margin-top: 20px; }
.content-chat {
  width: 100%;
  height: 100%;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-color: rgba(255,61,127,.72);
  box-shadow: inset 0 0 28px rgba(255,61,127,.055), 0 0 24px rgba(255,61,127,.18);
}
.content-chat-shell {
  position: relative;
  isolation: isolate;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 9px;
  align-self: stretch;
  border: 1px solid rgba(56,216,255,.72);
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(135deg, rgba(56,216,255,.22), rgba(255,61,127,.28) 48%, rgba(202,27,255,.22));
  box-shadow: 0 0 0 1px rgba(255,61,127,.48), 0 0 28px rgba(255,61,127,.42), 0 0 64px rgba(56,216,255,.22), inset 0 0 18px rgba(255,255,255,.08);
}
.content-chat-shell::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: calc(var(--radius) + 20px);
  background: conic-gradient(from 145deg, transparent 0 16%, rgba(56,216,255,.74) 24%, transparent 33% 59%, rgba(255,61,127,.8) 69%, transparent 79%);
  filter: blur(14px);
  opacity: .58;
  pointer-events: none;
}
.content-chat-shell::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: calc(var(--radius) + 5px);
  pointer-events: none;
}
.chat-neon-spark {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,127,.98), rgba(202,27,255,.78) 58%, rgba(56,216,255,.4));
  box-shadow: 0 0 14px rgba(255,61,127,.95), 0 0 30px rgba(56,216,255,.52);
  text-shadow: 0 0 8px #fff;
  pointer-events: none;
}
.chat-neon-spark--top { top: -15px; right: 36px; }
.chat-neon-spark--bottom { bottom: 42px; left: -16px; }
.content-chat .chat-stream { flex: 1; justify-content: center; }

.chat-showcase { padding-top: 54px; padding-bottom: 60px; }
.chat-showcase-copy { max-width: 900px; margin: 0 auto 32px; text-align: center; }
.chat-showcase-copy .eyebrow { justify-content: center; }
.chat-showcase-copy h2 { margin: 10px 0 14px; }
.chat-showcase-copy p:last-child { max-width: 760px; margin: 0 auto; color: var(--muted); }
.chat-showcase-frame { position: relative; max-width: var(--max); margin: 0 auto; padding: 12px; overflow: hidden; border: 2px solid transparent; border-radius: 28px 8px 28px 8px; background: linear-gradient(#0b0a12, #0b0a12) padding-box, linear-gradient(115deg, var(--accent-2), var(--accent) 46%, var(--cyan) 100%) border-box; box-shadow: 18px 18px 0 rgba(255,63,126,.14), -12px -12px 0 rgba(56,216,255,.08), 0 30px 90px rgba(0,0,0,.58), 0 0 55px rgba(255,63,126,.12); }
.chat-showcase-frame::before { content: ""; position: absolute; inset: 12px; z-index: 1; pointer-events: none; border: 1px solid rgba(255,255,255,.18); border-radius: 18px 3px 0 0; box-shadow: inset 0 0 80px rgba(8,5,12,.3); }
.chat-showcase-frame::after { content: ""; position: absolute; inset: 27px; z-index: 3; pointer-events: none; background: linear-gradient(90deg, var(--cyan), var(--accent-2)) left top / 92px 3px no-repeat, linear-gradient(var(--cyan), var(--cyan)) left top / 3px 62px no-repeat, linear-gradient(90deg, var(--accent), var(--accent-2)) right bottom / 92px 3px no-repeat, linear-gradient(var(--accent), var(--accent)) right bottom / 3px 62px no-repeat; opacity: .9; }
.chat-showcase-frame > img { width: 100%; aspect-ratio: 2550 / 1678; object-fit: cover; border-radius: 17px 3px 0 0; }
.showcase-status, .showcase-tags { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 950; }
.showcase-status { top: 34px; left: 42px; padding: 10px 13px; color: #fff; background: rgba(8,8,13,.78); border: 1px solid rgba(56,216,255,.68); border-radius: 99px; backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.showcase-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(216,255,62,.13), 0 0 16px var(--acid); }
.showcase-tags { right: 42px; bottom: 115px; gap: 7px; }
.showcase-tags span { padding: 9px 12px; color: #fff; background: rgba(123,30,212,.78); border: 1px solid rgba(255,255,255,.28); border-radius: 4px 12px 4px 12px; backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.showcase-tags span:last-child { color: #111; background: var(--acid); border-color: rgba(216,255,62,.8); }
.chat-showcase-frame figcaption { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 24px 28px 22px; background: linear-gradient(105deg, #120d18, #090b12 62%, #10121b); border-top: 1px solid rgba(255,255,255,.12); }
.chat-showcase-frame figcaption div { display: grid; gap: 4px; }
.chat-showcase-frame figcaption b { color: white; font-family: inherit; font-size: 24px; letter-spacing: .08em; text-transform: uppercase; }
.chat-showcase-frame figcaption div span { color: var(--muted); font-size: 13px; }
.chat-showcase-frame .text-link { flex: 0 0 auto; }

.characters-section { max-width: none; overflow: hidden; padding-inline: 0; }
.characters-section .section-header { padding-inline: 24px; }
.characters-section .section-header > p:not(.eyebrow) { width: min(100%, 920px); margin-inline: auto; }
.character-strip { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 0; }
.character-strip a { position: relative; height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; color: white; text-decoration: none; }
.character-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; transition: transform .35s ease; }
.character-strip a:hover img { transform: scale(1.035); }
.character-strip a > span { position: absolute; left: 13px; right: 13px; bottom: 13px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(8,8,12,.8); backdrop-filter: blur(10px); color: #b9b4bf; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.character-strip a > span b { display: block; margin-bottom: 3px; color: white; font-size: 18px; text-transform: none; letter-spacing: -.01em; }
.character-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; padding: 11px 13px; color: #fff; background: linear-gradient(100deg, var(--accent), var(--accent-2)); border: 1px solid rgba(255,255,255,.45); font-size: 11px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; transition: filter .2s ease, transform .2s ease; }
.character-cta i { font-size: 17px; font-style: normal; line-height: 1; }
.character-strip a:hover .character-cta { filter: brightness(1.12); transform: translateY(-2px); }
.center-button { display: flex; margin: 24px auto 0; }

.keyword-cloud-section {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 3.8vw, 52px) 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(216,255,62,.2), transparent 18rem),
    linear-gradient(120deg, #ff1748 0%, #f01e68 58%, #8a20e7 130%);
  border-block: 1px solid rgba(255,255,255,.28);
}
.keyword-cloud-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .82;
}
.keyword-cloud-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(380px, .84fr); gap: clamp(22px, 3vw, 38px) clamp(36px, 5vw, 72px); align-items: center; }
.keyword-cloud-content { min-width: 0; }
.keyword-cloud-heading { grid-column: 1 / -1; text-align: center; }
.keyword-cloud-heading .eyebrow { justify-content: center; }
.keyword-cloud-heading h2,
.keyword-cloud-heading .keyword-cloud-copy { margin-inline: auto; }
.keyword-cloud-inner .eyebrow { justify-content: flex-start; color: rgba(255,255,255,.85); }
.keyword-cloud-inner .keyword-cloud-heading .eyebrow { justify-content: center; }
.keyword-cloud-inner .eyebrow span { background: linear-gradient(90deg, var(--acid), white); }
.keyword-cloud-inner h2 { margin: 0 0 12px; max-width: none; font-size: clamp(40px, 4.5vw, 66px); white-space: nowrap; }
.keyword-cloud-inner h2 em { color: var(--acid); font-style: normal; }
.keyword-cloud-copy { max-width: 680px; margin: 0; color: rgba(255,255,255,.86); font-size: 17px; text-align: center; }
.keyword-cloud { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: 10px; }
.keyword-photo-stack { position: relative; width: 100%; min-height: 390px; }
.keyword-photo { position: absolute; margin: 0; overflow: hidden; border: 7px solid #fff; background: #150b1a; box-shadow: 0 25px 60px rgba(49,0,28,.36), 0 0 0 2px rgba(216,255,62,.52); }
.keyword-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 40px rgba(17,3,15,.18); }
.keyword-photo img { width: 100%; height: 100%; object-fit: cover; }
.keyword-photo-purple { left: 0; top: 38px; width: 48%; height: 270px; z-index: 1; transform: rotate(-6deg); border-radius: 26px 8px 26px 8px; }
.keyword-photo-purple img { object-position: center 18%; }
.keyword-photo-red { right: 4%; top: 0; width: 53%; height: 305px; z-index: 2; transform: rotate(4deg); border-radius: 8px 30px 8px 30px; }
.keyword-photo-red img { object-position: center 20%; }
.keyword-photo-retro { left: 25%; bottom: 0; width: 52%; height: 205px; z-index: 3; transform: rotate(-1.5deg); border-color: var(--acid); border-radius: 28px 8px 28px 8px; }
.keyword-photo-retro img { object-position: center 24%; }
.keyword-cloud span {
  padding: 13px 18px;
  color: #fff;
  background: rgba(15,10,20,.22);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.inside-section { border-top: 1px solid var(--line); }
.inside-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; border-bottom: 1px solid var(--line); }
.inside-grid article, .inside-grid article:nth-child(4), .inside-grid article:nth-child(5) { grid-column: auto; padding: 30px 0; border-radius: 0; border: 0; border-top: 1px solid var(--line); background: transparent; }
.inside-grid span { display: block; width: auto; height: auto; margin-bottom: 15px; color: var(--accent-2); background: none; border-radius: 0; font-family: inherit; font-size: 42px; line-height: 1; font-weight: 950; }
.inside-grid article:nth-child(even) span { background: none; color: var(--cyan); }
.inside-grid h3 { margin-bottom: 12px; font-family: inherit; font-size: 25px; line-height: 1.08; letter-spacing: .02em; text-transform: uppercase; }
.inside-grid p { margin: 0; font-size: 14px; }
.related-searches {
  margin-top: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) 1.28fr;
  gap: 36px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(135deg, #14141d, #0d151f);
  box-shadow: var(--shadow);
}
.related-searches-heading p {
  margin: 0 0 13px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 950;
}
.related-searches-heading h3 { margin: 0; font-size: clamp(30px, 4vw, 48px); }
.related-searches nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.related-searches nav a {
  padding: 15px 12px;
  color: #bdb9c2;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color .18s ease, padding-left .18s ease;
}
.related-searches nav a:nth-child(odd) { border-right: 1px solid var(--line); }
.related-searches nav a:hover { padding-left: 17px; color: var(--acid); }

.faq-section {
  position: relative;
  max-width: none;
  padding-top: clamp(46px, 4.5vw, 62px);
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,63,126,.22);
  border-bottom: 1px solid rgba(63,214,255,.16);
  background:
    radial-gradient(circle at 14% 28%, rgba(255,63,126,.13), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(63,214,255,.09), transparent 32%),
    linear-gradient(120deg, rgba(25,10,26,.92), rgba(10,14,22,.96) 58%, rgba(9,20,27,.94));
}
.faq-section .section-header,
.faq-section .faq-list { position: relative; z-index: 1; }
.faq-list { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { padding-inline: 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.faq-list details[open] { background: rgba(255,63,126,.055); }
.faq-list summary { position: relative; padding: 22px 55px 22px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 17px; display: grid; place-items: center; width: 34px; height: 34px; color: #111; background: var(--acid); border-radius: 50%; font-size: 21px; }
.faq-list details[open] summary::after { content: "−"; background: var(--accent-2); }
.faq-list details p { max-width: 780px; margin: 0; padding: 0 0 22px; }

.final-cta { width: min(1820px, calc(100% - 48px)); min-height: 660px; margin: 24px auto 72px; padding: clamp(32px, 3vw, 56px); display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.32fr); gap: clamp(48px, 5vw, 92px); align-items: center; border: 1px solid rgba(255,63,126,.55); border-radius: 36px; background: linear-gradient(115deg, #21101a, #14121d 62%, #10212a); box-shadow: var(--shadow); overflow: hidden; }
.final-cta-heading { margin-bottom: 28px; }
.final-cta-heading h2 { max-width: 920px; margin: 0; }
.final-cta > img { width: 100%; height: clamp(500px, 35vw, 660px); object-fit: cover; object-position: center 18%; border-radius: 25px; transform: rotate(-3deg); }
.final-cta-copy { min-width: 0; }

/* Unified neon framing for the site's photographic content. */
.portrait-card,
.companion-card,
.feature-visual,
.character-strip a,
.keyword-photo,
.final-cta > img {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .13),
    0 0 0 3px rgba(255, 63, 126, .82),
    0 0 18px rgba(255, 63, 126, .42),
    0 0 38px rgba(56, 216, 255, .2),
    0 22px 55px rgba(0, 0, 0, .44);
}

.companion-card:nth-child(3n + 2),
.character-strip a:nth-child(3n + 2) {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .13),
    0 0 0 3px rgba(56, 216, 255, .78),
    0 0 18px rgba(56, 216, 255, .42),
    0 0 38px rgba(255, 63, 126, .18),
    0 22px 55px rgba(0, 0, 0, .44);
}

.companion-card:nth-child(3n),
.character-strip a:nth-child(3n) {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .13),
    0 0 0 3px rgba(216, 255, 62, .72),
    0 0 18px rgba(216, 255, 62, .28),
    0 0 38px rgba(255, 63, 126, .2),
    0 22px 55px rgba(0, 0, 0, .44);
}
.final-cta h2 { font-size: clamp(64px, 6.1vw, 116px); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
.final-cta p:not(.eyebrow) { max-width: 880px; color: var(--muted); font-size: clamp(17px, 1.35vw, 22px); line-height: 1.55; }
.final-cta .button { margin-top: 18px; }

.site-footer { padding: 42px max(24px, calc((100vw - var(--max)) / 2)) 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px 50px; border-top: 1px solid var(--line); background: linear-gradient(120deg, #07080d, #0c0d14 55%, #100912); color: var(--muted); }
.footer-brand img { width: 47px; height: 47px; }
.site-footer > p { text-align: center; font-size: 12px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { color: #d5d0d8; font-size: 12px; text-underline-offset: 4px; }
.site-footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; font-size: 11px; }

@media (min-width: 821px) {
  .section h2,
  .section h3,
  .companion-card h3,
  .companion-detail-grid h3,
  .feature-list h3,
  .inside-grid h3,
  .final-cta h2 { white-space: normal; text-wrap: balance; }
  .companion-detail-grid h3 { font-size: clamp(16px, 1.35vw, 21px); letter-spacing: -.035em; }
}

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr); gap: 28px; }
  h1 { font-size: clamp(62px, 9vw, 96px); }
  .companion-grid { grid-template-columns: 1fr 1fr; }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-visual { width: min(100%, 520px); aspect-ratio: 4 / 5; margin-inline: auto; }
  .demo-section { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .keyword-cloud-inner { grid-template-columns: minmax(0, 1fr) minmax(330px, .75fr); gap: 26px 36px; }
  .keyword-photo-stack { min-height: 400px; }
  .keyword-photo-purple { height: 275px; }
  .keyword-photo-red { height: 310px; }
  .keyword-photo-retro { height: 210px; }
  .final-cta { grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); gap: 42px; }
  .final-cta h2 { font-size: clamp(56px, 7vw, 78px); }
}

@media (min-width: 821px) and (max-height: 800px) {
  .hero { padding-block: 22px; }
  .hero .eyebrow { margin-bottom: 12px; }
  h1 { margin-bottom: 12px; font-size: clamp(58px, 6.2vw, 86px); }
  .hero-lead { font-size: 16px; }
  .hero-copy > p:not(.eyebrow, .hero-lead, .hero-note) { font-size: 12.5px; line-height: 1.5; }
  .hero-note { font-size: 12px; line-height: 1.45; }
  .hero-actions { margin-top: 14px; }
  .trust-row { margin-top: 10px; }
  .chat-head { padding-block: 12px; }
  .chat-head img { width: 44px; height: 44px; }
  .hero-chat .chat-stream { min-height: 180px; padding-block: 14px; }
  .hero-chat .message { padding-block: 9px; }
  .hero-chat .quick-replies { padding-bottom: 10px; }
  .hero-chat .chat-form { padding-block: 10px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 70px; padding: 8px 18px; }
  .brand { font-size: 15px; }
  .brand img { width: 48px; height: 48px; }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    inset: 69px 14px auto;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #14141c;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { display: block; padding: 9px; text-align: center; }
  .primary-nav .button { width: 100%; }
  .hero { min-height: auto; max-width: calc(100% - 20px); margin-top: 10px; padding: 52px 20px 64px; grid-template-columns: 1fr; text-align: center; border-radius: 28px; }
  .hero-background { inset: auto 0 0; width: 100%; height: 58%; opacity: .32; background-position: center 24%; -webkit-mask-image: linear-gradient(180deg, transparent, #000 50%); mask-image: linear-gradient(180deg, transparent, #000 50%); }
  .hero::before { background: linear-gradient(180deg, rgba(8,2,8,.98) 0%, rgba(8,2,8,.9) 58%, rgba(8,2,8,.68) 100%); }
  .hero::after { inset: 10px; border-radius: 20px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-note { border-left: 0; border-top: 2px solid var(--accent); padding: 14px 0 0; }
  .hero-chat-wrap { width: min(100%, 620px); margin: 0 auto; padding: 8px; text-align: left; }
  .hero-chat { transform: none; }
  .split-intro, .demo-section { grid-template-columns: 1fr; text-align: center; }
  .section-copy, .demo-copy { display: flex; flex-direction: column; align-items: center; }
  .section-copy .eyebrow, .demo-copy .eyebrow { justify-content: center; }
  .demo-copy h2 { white-space: normal; }
  .demo-copy .button { align-self: center; }
  .portrait-stack { min-height: 600px; width: min(100%, 550px); margin: 0 auto; }
  .feature-list { grid-template-columns: 1fr; }
  .content-chat { width: 100%; height: auto; min-height: 0; margin: 0; text-align: left; }
  .content-chat-shell { width: min(100%, 640px); height: auto; margin: 0 auto; }
  .chat-showcase-frame figcaption { flex-direction: column; text-align: center; }
  .showcase-tags { bottom: 166px; }
  .character-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .keyword-cloud-inner { grid-template-columns: 1fr; text-align: center; }
  .keyword-cloud-inner .eyebrow, .keyword-cloud { justify-content: center; }
  .keyword-cloud-inner h2, .keyword-cloud-copy { margin-inline: auto; }
  .keyword-cloud-inner h2 { white-space: normal; }
  .keyword-photo-stack { width: min(100%, 590px); min-height: 570px; margin: 0 auto; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .inside-grid article, .inside-grid article:nth-child(4), .inside-grid article:nth-child(5) { grid-column: auto; }
  .final-cta { width: auto; margin: 30px 20px 70px; grid-template-columns: 1fr; text-align: center; }
  .final-cta > img { height: 420px; }
  .final-cta > div { display: flex; flex-direction: column; align-items: center; }
  .final-cta .eyebrow { justify-content: center; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer small { grid-column: 1; }
}

@media (max-width: 560px) {
  .brand span { font-size: 13px; }
  .site-header .brand img { width: 43px; height: 43px; }
  .nav-toggle { font-size: 12px; }
  .hero { padding-top: 46px; }
  h1 { font-size: clamp(55px, 19vw, 80px); }
  .hero-actions { width: 100%; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .chat-stream { min-height: 255px; }
  .quick-replies { justify-content: center; }
  .section { padding: 52px 18px; }
  .faq-section { padding-top: 44px; }
  .section h2 { font-size: clamp(40px, 13.5vw, 62px); }
  .section-header > p:last-child { font-size: 16px; }
  .portrait-stack { min-height: 500px; }
  .portrait-main { inset: 0 8% 5% 0; }
  .portrait-back { width: 50%; height: 52%; }
  .companion-grid { grid-template-columns: 1fr; }
  .companion-card { min-height: 470px; }
  .companion-detail-grid { grid-template-columns: 1fr; }
  .detail-menu { grid-template-columns: 1fr 1fr; }
  .detail-menu a { justify-content: flex-start; }
  .companion-detail-grid article { padding-left: 58px; text-align: left; }
  .companion-detail-cta .button { width: 100%; }
  .feature-list article { padding: 19px; }
  .feature-visual { min-height: 0; }
  .demo-section { padding-inline: 18px; }
  .chat-showcase { padding-inline: 12px; }
  .chat-showcase-frame { padding: 7px; border-radius: 20px 6px 20px 6px; box-shadow: 9px 10px 0 rgba(255,63,126,.13), 0 24px 60px rgba(0,0,0,.5); }
  .chat-showcase-frame::before { inset: 7px; border-radius: 13px 2px 0 0; }
  .chat-showcase-frame::after { inset: 17px; background-size: 55px 2px, 2px 40px, 55px 2px, 2px 40px; }
  .chat-showcase-frame > img { border-radius: 12px 2px 0 0; }
  .showcase-status { top: 19px; left: 22px; padding: 8px 10px; font-size: 8px; }
  .showcase-tags { right: 21px; bottom: 190px; gap: 5px; }
  .showcase-tags span { padding: 7px 8px; font-size: 8px; }
  .chat-showcase-frame figcaption { padding: 20px 14px; }
  .chat-showcase-frame .text-link { width: 100%; }
  .character-strip { width: 100%; grid-template-columns: 1fr; }
  .character-strip a { height: 440px; }
  .inside-grid { grid-template-columns: 1fr; }
  .inside-grid article { text-align: center; }
  .related-searches { grid-template-columns: 1fr; padding: 22px; text-align: center; }
  .related-searches nav { grid-template-columns: 1fr; text-align: left; }
  .related-searches nav a:nth-child(odd) { border-right: 0; }
  .keyword-cloud-section { padding-inline: 18px; }
  .keyword-cloud { gap: 8px; }
  .keyword-cloud span { width: 100%; padding: 12px 14px; }
  .keyword-photo-stack { min-height: 450px; }
  .keyword-photo { border-width: 5px; }
  .keyword-photo-purple { top: 45px; width: 52%; height: 310px; }
  .keyword-photo-red { right: 1%; width: 55%; height: 340px; }
  .keyword-photo-retro { left: 20%; width: 60%; height: 225px; }
  .final-cta { margin-inline: 12px; padding: 16px; }
  .final-cta > img { height: 390px; }
  .final-cta h2 { font-size: 46px; }
  .site-footer nav { flex-wrap: wrap; justify-content: center; }
  .button { max-width: 100%; }
}
