:root {
  --navy: #243353;
  --navy-2: #101f36;
  --sky: #3b87e3;
  --sky-soft: #e8f1ff;
  --red: #c72934;
  --pink: #e4546d;
  --cream: #f6f7fa;
  --surface: #ffffff;
  --muted: #687282;
  --line: rgba(36, 51, 83, 0.14);
  --shadow: 0 24px 70px rgba(22, 35, 59, 0.16);
  --radius: 16px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(59, 135, 227, 0.08), transparent 28%),
    linear-gradient(25deg, transparent 58%, rgba(228, 84, 109, 0.08)),
    var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.legal-page {
  max-width: 820px;
  padding: 48px 0 80px;
}

.legal-page .brand {
  margin-bottom: 48px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.legal-page p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page a:not(.brand) {
  color: var(--sky);
  text-decoration: underline;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 9px 12px 9px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(16, 31, 54, 0.12);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.brand img.brand-logo {
  width: 92px;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 720;
  color: rgba(36, 51, 83, 0.76);
}

.site-header nav a:hover {
  color: var(--navy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(36, 51, 83, 0.22);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sky-soft);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  padding-top: 108px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 72% 18%, rgba(59, 135, 227, 0.18), transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(228, 84, 109, 0.2), transparent 32%),
    linear-gradient(118deg, #243353 0%, #101f36 52%, #7f3243 78%, #c72934 100%);
  box-shadow: 0 28px 70px rgba(16, 31, 54, 0.18);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1,
.hero .hero-tagline {
  color: white;
}

.hero .hero-text {
  color: rgba(255, 255, 255, 0.8);
}

.hero .button-primary {
  color: var(--navy-2);
  background: white;
  box-shadow: 0 14px 32px rgba(6, 16, 32, 0.26);
}

.hero .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .trust-strip span {
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  color: var(--navy-2);
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-2);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--navy-2);
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 780;
  line-height: 1.04;
}

.hero-text,
.section-copy p,
.premium-copy p,
.beta-wrap p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-strip span,
.status-pill,
.linked-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.hero-product {
  position: relative;
  min-height: 560px;
}

.phone {
  position: absolute;
  border: 10px solid #121a2a;
  border-radius: 42px;
  background: #121a2a;
  box-shadow: var(--shadow);
}

.phone-main {
  top: 0;
  right: 94px;
  width: min(330px, 56vw);
  transform: rotate(-4deg);
}

.phone-side {
  right: 0;
  bottom: 16px;
  width: 238px;
  transform: rotate(7deg);
  opacity: 0.96;
}

.phone-screen {
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(59, 135, 227, 0.11), transparent 30%),
    linear-gradient(340deg, rgba(199, 41, 52, 0.1), transparent 32%),
    #f6f7fa;
}

.compact-screen {
  min-height: 430px;
  padding-top: 82px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 18px;
}

.app-topbar strong {
  display: block;
  font-size: 1.05rem;
}

.app-topbar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.tiny-label,
.message-card span,
.profile-header span,
.card-header small,
.card-header span,
.prompt-box span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-card {
  padding: 18px;
  color: white;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(135deg, rgba(36, 51, 83, 0.98), rgba(59, 135, 227, 0.94) 50%, rgba(199, 41, 52, 0.88));
  box-shadow: 0 18px 36px rgba(36, 51, 83, 0.18);
}

.partner-card .status-pill {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.15);
}

.partner-card h2 {
  margin: 22px 0 8px;
  color: white;
  font-size: 2.3rem;
}

.partner-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.partner-grid span {
  padding: 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.ask-card,
.flight-card,
.message-card,
.profile-board,
.action-panel,
.premium-card,
.trust-grid article,
.essentials-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(36, 51, 83, 0.08);
}

.ask-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  padding: 14px;
}

.ask-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.round-icon,
.panel-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  font-size: 0.75rem;
  font-weight: 900;
}

.flight-card {
  padding: 16px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-header span {
  color: var(--navy);
}

.card-header small {
  color: var(--red);
}

.flight-card h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.flight-card button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--navy);
  font-weight: 850;
}

.premium-glow {
  position: relative;
  border-color: rgba(59, 135, 227, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 30px rgba(59, 135, 227, 0.22),
    0 0 42px rgba(228, 84, 109, 0.18);
}

.premium-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 135, 227, 0.72), rgba(228, 84, 109, 0.65), rgba(36, 51, 83, 0.64));
  filter: blur(12px);
  opacity: 0.38;
}

.message-card {
  padding: 16px;
}

.message-card p {
  margin: 12px 0 0;
  color: var(--navy-2);
  font-weight: 720;
  line-height: 1.45;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 760;
}

.mini-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.partner-section,
.premium-section,
.beta-section {
  padding: 84px 0;
}

.feature-band,
.premium-wrap,
.beta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 52px;
}

.profile-board {
  padding: 20px;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.profile-header strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-2);
  font-size: 1.3rem;
}

.linked-pill {
  gap: 7px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 51, 83, 0.14);
  box-shadow: 0 10px 22px rgba(36, 51, 83, 0.08);
}

.profile-header .linked-pill,
.panel-topline .linked-pill {
  color: var(--navy);
}

.linked-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--red));
  box-shadow: 0 0 0 3px rgba(59, 135, 227, 0.12);
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.profile-row span {
  color: var(--muted);
  font-weight: 720;
}

.profile-row strong {
  max-width: 280px;
  text-align: right;
}

.love-language-preview {
  display: grid;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 14px;
  align-items: center;
}

.slider-row span,
.slider-row strong {
  font-size: 0.9rem;
}

.slider-row span {
  color: var(--navy);
  font-weight: 760;
}

.slider-row strong {
  color: var(--navy);
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sky-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slider-track {
  position: relative;
  grid-column: 1 / -1;
  height: 12px;
  border-radius: 999px;
  background: rgba(36, 51, 83, 0.1);
}

.slider-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky), var(--pink));
  box-shadow: 0 0 18px rgba(59, 135, 227, 0.28);
}

.slider-track b {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(36, 51, 83, 0.22);
  transform: translate(-50%, -50%);
}

.slider-scale {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slider-scale span:nth-child(1) {
  text-align: left;
}

.slider-scale span:nth-child(2),
.slider-scale span:nth-child(3) {
  text-align: center;
}

.slider-scale span:nth-child(4) {
  text-align: right;
}

.sync-section {
  padding: 88px 0 70px;
}

.sync-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.sync-panel {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(36, 51, 83, 0.08);
}

.sync-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-topline strong {
  color: var(--navy-2);
}

.linked-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.84)),
    white;
}

.sync-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.sync-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 760;
}

.sync-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--red));
}

.energy-panel {
  background:
    radial-gradient(circle at 82% 12%, rgba(59, 135, 227, 0.18), transparent 34%),
    white;
}

.story-preview {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  padding: 15px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--sky) 58%, var(--pink));
  box-shadow: 0 12px 26px rgba(36, 51, 83, 0.18);
}

.preview-label,
.milestone-preview span {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-preview > strong {
  font-size: 1.75rem;
  line-height: 1.05;
}

.story-preview > small {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.milestone-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  align-items: center;
  margin-top: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.milestone-preview b,
.milestone-preview small {
  grid-column: 2;
}

.milestone-preview span {
  grid-row: 1 / 3;
}

.milestone-preview small {
  color: rgba(255, 255, 255, 0.78);
}

.streak-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 241, 0.78)),
    white;
}

.checkin-preview {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(199, 41, 52, 0.16);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 238, 241, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: 0 12px 26px rgba(199, 41, 52, 0.09);
}

.checkin-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkin-heading small {
  color: var(--muted);
  font-size: inherit;
}

.checkin-preview > strong {
  color: var(--navy-2);
  font-size: 0.96rem;
  line-height: 1.3;
}

.checkin-choice {
  padding: 8px 10px;
  border: 1px solid rgba(36, 51, 83, 0.1);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 740;
}

.checkin-choice.selected {
  display: flex;
  justify-content: space-between;
  color: white;
  background: var(--red);
}

.action-section,
.essentials-section,
.trust-section {
  padding: 90px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.centered {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.action-panel {
  min-height: 430px;
  padding: 26px;
}

.action-panel p,
.trust-grid p,
.essentials-grid p,
.premium-card p {
  color: var(--muted);
  line-height: 1.65;
}

.flight-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.92)),
    white;
}

.suggestion-stack {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.suggestion-stack div {
  padding: 14px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 740;
}

.ask-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  overflow: hidden;
}

.ask-feature-panel {
  position: relative;
  background:
    radial-gradient(circle at 8% 80%, rgba(59, 135, 227, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(246, 247, 250, 0.86));
}

.ask-panel img,
.ask-pilot {
  align-self: end;
  width: 190px;
  margin-left: -28px;
  filter: drop-shadow(0 18px 26px rgba(16, 31, 54, 0.18));
}

.ask-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ask-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(232, 241, 255, 0.78);
  border: 1px solid rgba(59, 135, 227, 0.18);
  font-size: 0.8rem;
  font-weight: 820;
}

.prompt-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.prompt-box p {
  margin: 8px 0 0;
  color: var(--navy-2);
  font-weight: 780;
}

.prompt-box-strong {
  background: white;
  box-shadow: 0 12px 24px rgba(36, 51, 83, 0.07);
}

.ask-screenshot {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(59, 135, 227, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.72)),
    white;
  box-shadow: var(--shadow);
}

.ask-thread {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 16px;
  align-items: stretch;
}

.ask-question,
.ask-answer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.ask-question {
  padding: 18px;
  align-self: start;
}

.ask-question span,
.answer-header span,
.answer-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ask-question p {
  margin: 10px 0 0;
  color: var(--navy-2);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.5;
}

.ask-answer {
  padding: 18px;
}

.answer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.answer-header img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

.answer-header strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-2);
  font-size: 1.24rem;
}

.context-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 14px;
}

.context-strip span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--sky-soft);
  font-size: 0.78rem;
  font-weight: 820;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.answer-grid article {
  padding: 14px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.answer-grid p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 680;
  line-height: 1.45;
}

.message-draft {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(232, 241, 255, 0.95), rgba(255, 238, 241, 0.78));
  border: 1px solid rgba(36, 51, 83, 0.1);
}

.message-draft span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message-draft p {
  margin: 7px 0 0;
  color: var(--navy-2);
  font-weight: 760;
  line-height: 1.45;
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.response-actions span {
  padding: 9px 12px;
  border-radius: 12px;
  color: white;
  background: var(--navy);
  font-size: 0.88rem;
  font-weight: 820;
}

.essentials-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.essentials-grid article,
.trust-grid article {
  padding: 22px;
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  font-size: 0.78rem;
  font-weight: 900;
}

.premium-section {
  background:
    linear-gradient(135deg, rgba(36, 51, 83, 0.96), rgba(16, 31, 54, 0.98) 54%, rgba(199, 41, 52, 0.88));
}

.premium-section .eyebrow,
.premium-section h2,
.premium-section p {
  color: white;
}

.premium-section .premium-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.premium-card {
  padding: 26px;
}

.premium-card p {
  color: var(--navy-2);
  font-size: 1.25rem;
  font-weight: 760;
}

.premium-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.premium-actions span {
  padding: 10px 14px;
  border-radius: 12px;
  color: white;
  background: var(--navy);
  font-weight: 820;
}

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

.beta-section {
  background: white;
}

.waitlist-form {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
}

.waitlist-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
  font-weight: 820;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: white;
}

.waitlist-form p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(36, 51, 83, 0.72);
  background: white;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand img.brand-logo {
    width: 76px;
    height: 52px;
  }

  .site-header nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  body.menu-open .site-header nav {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .feature-band,
  .premium-wrap,
  .beta-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
    gap: 28px;
  }

  .hero-product {
    min-height: 610px;
  }

  .phone-main {
    left: 50%;
    right: auto;
    width: min(350px, 80vw);
    transform: translateX(-57%) rotate(-4deg);
  }

  .phone-side {
    right: 4%;
    width: min(250px, 48vw);
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-grid,
  .trust-grid,
  .sync-grid,
  .ask-thread {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .brand img.brand-logo {
    width: 74px;
    height: 50px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 5.4rem);
  }

  .hero {
    position: relative;
    min-height: calc(100vh - 72px);
    padding-top: 108px;
    padding-bottom: 0;
    display: block;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    position: absolute;
    z-index: 1;
    left: 14px;
    right: 14px;
    bottom: -350px;
    min-height: 500px;
    pointer-events: none;
  }

  .phone-main {
    width: min(320px, 86vw);
    transform: translateX(-50%) rotate(-3deg);
  }

  .phone-side {
    display: none;
  }

  .phone-screen {
    min-height: 560px;
  }

  .partner-section {
    padding-top: 24px;
  }

  .ask-panel {
    grid-template-columns: 1fr;
  }

  .ask-panel img {
    width: 150px;
    margin: -8px 0 -24px;
  }

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

  .profile-row,
  .form-row,
  .footer-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-row strong {
    max-width: none;
    text-align: left;
  }

  .ask-screenshot {
    padding: 14px;
  }
}
