@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  color-scheme: light;
  --bg: #f8f5ef;
  --bg-soft: #efe9df;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --ink: #14283c;
  --ink-soft: #40576c;
  --muted: #778797;
  --line: rgba(20, 40, 60, 0.13);
  --line-strong: rgba(20, 40, 60, 0.22);
  --brand: #e66c55;
  --brand-dark: #c95342;
  --sun: #f4d76c;
  --mint: #8ccfc5;
  --lavender: #b7addb;
  --navy: #11263c;
  --navy-soft: #203a55;
  --success: #5fa18e;
  --shadow-sm: 0 12px 32px rgba(34, 47, 61, 0.08);
  --shadow-lg: 0 32px 84px rgba(34, 47, 61, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c1826;
  --bg-soft: #13283d;
  --surface: #142b41;
  --surface-strong: #1a344c;
  --ink: #f7f2e9;
  --ink-soft: #c3d1db;
  --muted: #91a5b5;
  --line: rgba(238, 244, 247, 0.14);
  --line-strong: rgba(238, 244, 247, 0.24);
  --brand: #f08369;
  --brand-dark: #fa967e;
  --sun: #ecd177;
  --mint: #88cfc2;
  --lavender: #bcb2e1;
  --navy: #07121e;
  --navy-soft: #1b3c5d;
  --success: #78c0a8;
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 32px 84px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 180ms ease, color 180ms ease;
}
body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--brand) var(--scroll-progress, 0%), transparent var(--scroll-progress, 0%));
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
::selection { background: var(--sun); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-200%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(20, 40, 60, 0.09);
  border-radius: 13px;
  background: var(--sun);
  box-shadow: 0 5px 12px rgba(20, 40, 60, 0.1);
}
.brand-mark img { width: 38px; height: 38px; object-fit: cover; }
.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a, .footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: var(--brand); }
.nav-agreement { position: relative; }
.nav-agreement-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}
.nav-agreement-trigger:hover, .nav-agreement.is-open .nav-agreement-trigger { color: var(--brand); }
.nav-agreement-trigger svg { width: 14px; height: 14px; transition: transform 180ms var(--ease-out); }
.nav-agreement.is-open .nav-agreement-trigger svg { transform: rotate(180deg); }
.nav-agreement-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  display: grid;
  min-width: 160px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px) scale(.97);
  transform-origin: top center;
  transition: opacity 160ms ease, transform 180ms var(--ease-out);
}
.nav-agreement.is-open .nav-agreement-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
.nav-agreement-menu a { display: block; padding: 9px 11px; border-radius: 9px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.nav-agreement-menu a:hover, .nav-agreement-menu a:focus-visible { background: var(--bg-soft); color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  transition: transform 160ms var(--ease-out), border-color 160ms ease, background-color 160ms ease;
}
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--brand); }
.theme-toggle:active, .menu-toggle:active, .button:active { transform: scale(0.97); }
.theme-toggle svg, .menu-toggle svg { width: 17px; height: 17px; }
.menu-toggle { display: none; }

.container { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.section { padding: 120px 0; content-visibility: auto; contain-intrinsic-size: 720px; }
.section-tight { padding: 84px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; content: ""; border-radius: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 600; letter-spacing: -0.045em; line-height: 1.04; }
h1 { max-width: 650px; margin-bottom: 25px; font-size: clamp(3.5rem, 8vw, 6.6rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
h3 { margin-bottom: 11px; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.lede { max-width: 590px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.muted { color: var(--muted); }
.accent { color: var(--brand); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button svg { width: 16px; height: 16px; transition: transform 220ms var(--ease-out); }
.button:hover svg { transform: translateX(3px); }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 11px 24px rgba(230, 108, 85, 0.22); }
.button-primary:hover { background: var(--brand-dark); box-shadow: 0 14px 30px rgba(230, 108, 85, 0.3); }
.button-ghost { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button-ghost:hover { border-color: var(--brand); color: var(--brand); }
.button-light { background: #fdf8ed; color: var(--navy); }
.button-light:hover { background: #fff; }
.button-dark { background: var(--navy); color: #fdf8ed; }
.button-dark:hover { background: var(--navy-soft); }
.button-small { min-height: 40px; padding: 9px 14px; font-size: 12px; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 50%, transparent); outline-offset: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 112px 0 94px;
  background: var(--bg);
}
.hero::before, .hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  pointer-events: none;
}
.hero::before { top: 60px; left: -180px; width: 360px; height: 360px; border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); }
.hero::after { right: -180px; bottom: -180px; width: 420px; height: 420px; background: color-mix(in srgb, var(--lavender) 19%, transparent); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { animation: rise-in 700ms var(--ease-out) both; }
.hero-copy h1 { animation: rise-in 700ms 70ms var(--ease-out) both; }
.hero-copy .lede { animation: rise-in 700ms 140ms var(--ease-out) both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; animation: rise-in 700ms 210ms var(--ease-out) both; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--muted); font-size: 12px; animation: rise-in 700ms 270ms var(--ease-out) both; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 15%, transparent); }
.hero-visual { position: relative; min-height: 510px; animation: visual-in 900ms 120ms var(--ease-out) both; }
.hero-image {
  position: absolute;
  inset: 0 0 10px;
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 32px 32px 110px 32px;
  box-shadow: var(--shadow-lg);
}
.hero-image::after { position: absolute; inset: 0; content: ""; }
.hero-caption, .hero-tag, .hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 253, 250, 0.83);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.hero-caption { right: -34px; bottom: 35px; width: 175px; padding: 15px; border-radius: 18px; color: var(--navy); animation: float 6s ease-in-out 1.2s infinite; }
.hero-caption strong { display: block; margin-bottom: 3px; font-size: 14px; }
.hero-caption span { color: #66798a; font-size: 11px; line-height: 1.45; }
.hero-caption .caption-row { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.caption-avatars { display: flex; }
.caption-avatars i { display: block; width: 23px; height: 23px; margin-right: -6px; border: 2px solid #fffdfa; border-radius: 50%; background: var(--brand); }
.caption-avatars i:nth-child(2) { background: var(--lavender); }
.caption-avatars i:nth-child(3) { background: var(--mint); }
.hero-tag { top: 38px; left: -27px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 999px; color: var(--navy); font-size: 11px; font-weight: 700; animation: float 7s ease-in-out 1.4s infinite reverse; }
.hero-tag .live-dot { width: 6px; height: 6px; box-shadow: none; }
.hero-orbit { right: 35px; top: -22px; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: color-mix(in srgb, var(--sun) 84%, #fff 16%); color: var(--navy); font-size: 25px; animation: float 8s ease-in-out 1s infinite; }
.hero-orbit::after { position: absolute; inset: -10px; border: 1px dashed color-mix(in srgb, var(--brand) 40%, transparent); border-radius: 50%; content: ""; animation: spin 14s linear infinite; }
.scroll-cue { position: absolute; bottom: 20px; left: 50%; z-index: 3; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue::after { width: 52px; height: 1px; content: ""; background: var(--line-strong); }

.marquee-band { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.marquee-track { display: flex; width: max-content; gap: 36px; padding: 17px 0; animation: marquee 26s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 36px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
.marquee-track span::after { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); content: ""; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 53px; }
.section-heading > div:first-child { max-width: 690px; }
.section-heading .lede { max-width: 390px; margin-bottom: 6px; font-size: 15px; }
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 82px; }
.story-media { position: relative; min-height: 520px; }
.story-media img { width: calc(100% - 34px); height: 500px; object-fit: cover; border-radius: 30px 110px 30px 30px; box-shadow: var(--shadow-lg); }
.story-sticker { position: absolute; right: 0; bottom: 13px; display: flex; flex-direction: column; justify-content: center; width: 145px; height: 145px; padding: 22px; border-radius: 50%; background: var(--sun); color: var(--navy); transform: rotate(7deg); }
.story-sticker strong { font-family: Fraunces, Georgia, serif; font-size: 34px; line-height: 0.9; }
.story-sticker span { margin-top: 7px; font-size: 11px; line-height: 1.25; }
.story-copy h2 { max-width: 520px; }
.story-copy .lede { margin-bottom: 28px; }
.story-points { display: grid; gap: 14px; margin: 0 0 29px; padding: 0; list-style: none; }
.story-points li { display: flex; gap: 12px; color: var(--ink-soft); font-size: 14px; }
.story-points li::before { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--mint); content: "✓"; color: var(--navy); font-size: 11px; font-weight: 700; line-height: 18px; text-align: center; }

.feature-section { background: var(--navy); color: #fdf8ed; }
.feature-section .eyebrow { color: var(--sun); }
.feature-section .lede, .feature-section .feature-card p { color: #b6c6d3; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 300px; padding: 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.055); transition: transform 300ms var(--ease-out), background-color 200ms ease, border-color 200ms ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.1); }
.feature-card:nth-child(2) { transform: translateY(28px); background: rgba(244, 215, 108, 0.1); }
.feature-card:nth-child(2):hover { transform: translateY(21px); }
.feature-card:nth-child(3) { background: rgba(183, 173, 219, 0.1); }
.feature-number { display: inline-flex; align-items: center; justify-content: center; width: 33px; height: 33px; margin-bottom: 45px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--sun); font-size: 11px; font-weight: 700; }
.feature-card:nth-child(2) .feature-number { color: var(--sun); }
.feature-card:nth-child(3) .feature-number { color: var(--lavender); }
.feature-card h3 { max-width: 180px; color: #fdf8ed; }
.feature-card p { max-width: 245px; margin-bottom: 0; font-size: 14px; line-height: 1.65; }
.feature-icon { position: absolute; right: 26px; bottom: 25px; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: var(--mint); }
.feature-icon svg { width: 23px; height: 23px; }

.loop-section { background: var(--bg-soft); }
.loop-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 80px; }
.loop-copy h2 { max-width: 510px; }
.loop-copy .lede { margin-bottom: 24px; }
.prompt-button { display: inline-flex; align-items: center; gap: 9px; padding: 0; border: 0; background: transparent; color: var(--brand); font-size: 13px; font-weight: 700; }
.prompt-button svg { width: 16px; height: 16px; transition: transform 260ms var(--ease-out); }
.prompt-button:hover svg { transform: rotate(90deg); }
.prompt-output { min-height: 32px; margin-top: 16px; color: var(--ink-soft); font-size: 14px; font-style: italic; }
.app-window { position: relative; padding: 10px; border: 1px solid var(--line-strong); border-radius: 32px; background: var(--surface); box-shadow: var(--shadow-lg); transform: rotate(2deg); transition: transform 500ms var(--ease-out); }
.app-window:hover { transform: rotate(0deg) translateY(-4px); }
.app-window-top { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px 13px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.window-dots i:nth-child(2) { background: var(--sun); }
.window-dots i:nth-child(3) { background: var(--mint); }
.window-status { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.chat-preview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10px; min-height: 325px; }
.chat-person { position: relative; overflow: hidden; border-radius: 20px; background: linear-gradient(145deg, var(--lavender), var(--brand)); }
.chat-person::before { position: absolute; right: -30px; bottom: -50px; width: 210px; height: 270px; border-radius: 50% 50% 0 0; background: #f2c1a0; content: ""; transform: rotate(-8deg); }
.chat-person::after { position: absolute; top: 39px; right: 65px; width: 96px; height: 112px; border-radius: 48% 48% 44% 44%; background: #f3c9a7; box-shadow: 25px -18px 0 -7px #4a2630; content: ""; }
.chat-person .person-label { position: absolute; right: 14px; bottom: 14px; z-index: 1; padding: 6px 10px; border-radius: 8px; background: rgba(17,38,60,.62); color: #fff; font-size: 10px; backdrop-filter: blur(10px); }
.chat-pane { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb, var(--surface) 75%, var(--bg-soft)); }
.chat-header { display: flex; align-items: center; gap: 9px; align-self: flex-start; margin-bottom: auto; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.chat-header span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.bubble { width: fit-content; max-width: 85%; margin-top: 8px; padding: 9px 12px; border-radius: 13px 13px 13px 4px; background: var(--surface-strong); color: var(--ink-soft); font-size: 12px; box-shadow: 0 4px 14px rgba(20,40,60,.05); }
.bubble.outgoing { align-self: flex-end; border-radius: 13px 13px 4px 13px; background: var(--mint); color: var(--navy); }
.chat-input { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; }
.chat-input span { flex: 1; }
.chat-input svg { width: 14px; height: 14px; color: var(--brand); }

.reviews-section { border-top: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.review-card { display: flex; flex-direction: column; min-height: 310px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.review-stars { margin-bottom: 24px; color: var(--brand); letter-spacing: .12em; font-size: 13px; }
.review-card blockquote { margin: 0; color: var(--ink); font-family: Fraunces, Georgia, serif; font-size: 21px; letter-spacing: -.02em; line-height: 1.3; }
.review-author { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 28px; }
.review-author img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.review-author strong { display: block; font-size: 12px; }
.review-author span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }

.cta-band { position: relative; overflow: hidden; background: var(--brand); color: #fffaf1; }
.cta-band::before, .cta-band::after { position: absolute; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; content: ""; }
.cta-band::before { top: -180px; right: -70px; }
.cta-band::after { bottom: -220px; left: -80px; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { max-width: 570px; margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.contact-teaser { border-top: 1px solid var(--line); background: var(--bg-soft); }
.contact-teaser-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 85px; }
.contact-teaser .lede { font-size: 15px; }
.contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: 4px; font-size: 22px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-card-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--sun); color: var(--navy); }
.contact-card-icon svg { width: 22px; height: 22px; }

.site-footer { padding: 72px 0 28px; background: var(--navy); color: #fdf8ed; }
.footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; padding-bottom: 70px; }
.site-footer .brand { color: #fdf8ed; }
.site-footer .brand small { color: #94a9ba; }
.footer-intro { max-width: 270px; margin-top: 18px; color: #9bb0bf; font-size: 13px; line-height: 1.7; }
.footer-columns { display: flex; flex-wrap: wrap; gap: 68px; }
.footer-column strong { display: block; margin-bottom: 16px; color: var(--sun); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #c1d1dc; font-size: 12px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: #8ba0b1; font-size: 11px; }
.footer-bottom a { color: #c1d1dc; }

.page-hero { padding: 98px 0 76px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; }
.page-hero h1 { max-width: 640px; margin-bottom: 17px; font-size: clamp(3rem, 6.5vw, 5.6rem); }
.page-hero .lede { max-width: 570px; margin-bottom: 0; font-size: 17px; }
.page-kicker { display: flex; align-items: center; justify-content: flex-end; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.page-kicker::before { width: 42px; height: 1px; content: ""; background: var(--brand); }
.form-section { padding: 94px 0 128px; }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.form-aside h2 { max-width: 400px; font-size: clamp(2.3rem, 4vw, 3.6rem); }
.form-aside .lede { font-size: 15px; }
.form-aside-note { display: flex; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.form-aside-note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--brand); }
.form-panel { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.field label span { color: var(--brand); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink); padding: 12px 13px; transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.field input, .field select { min-height: 48px; }
.field textarea { min-height: 145px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 14%, transparent); outline: none; }
.form-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 19px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; accent-color: var(--brand); }
.form-consent a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 25px; }
.form-note { color: var(--muted); font-size: 11px; }
.form-status { display: none; margin: 16px 0 0; padding: 11px 13px; border-radius: 10px; background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); font-size: 12px; }
.form-status.is-visible { display: block; animation: rise-in 300ms var(--ease-out) both; }
.security-visual { position: relative; overflow: hidden; min-height: 290px; border-radius: 28px; background: var(--navy); }
.security-visual img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; object-position: center 40%; }
.security-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,18,30,.5)); content: ""; pointer-events: none; }
.security-caption { position: absolute; right: 22px; bottom: 19px; z-index: 1; max-width: 240px; color: #fdf8ed; font-family: Fraunces, Georgia, serif; font-size: 19px; line-height: 1.15; }
.delete-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.delete-intro h2 { max-width: 430px; }
.delete-intro .lede { margin-bottom: 24px; font-size: 15px; }
.delete-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.delete-list li { display: flex; gap: 11px; color: var(--ink-soft); font-size: 13px; }
.delete-list li::before { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--brand); content: ""; }
.delete-form-panel { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }

.video-page { min-height: 100vh; background: var(--navy); color: #fdf8ed; }
.video-page .site-header { border-color: rgba(255,255,255,.1); background: rgba(17,38,60,.82); }
.video-page .brand { color: #fdf8ed; }
.video-page .site-nav a { color: #c2d2dd; }
.video-page .theme-toggle, .video-page .menu-toggle { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fdf8ed; }
.video-hero { padding: 80px 0 22px; }
.video-hero-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
.video-hero h1 { max-width: 700px; font-size: clamp(3rem, 6vw, 5.8rem); }
.video-hero .lede { max-width: 420px; color: #b9cad6; font-size: 15px; }
.video-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 620px; margin: 26px 0 80px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: #132b43; box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.video-sidebar { display: flex; flex-direction: column; padding: 23px 16px; border-right: 1px solid rgba(255,255,255,.12); background: rgba(6,18,30,.26); }
.sidebar-label { color: #8ea9bb; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.room-title { margin: 9px 0 24px; font-family: Fraunces, Georgia, serif; font-size: 23px; }
.participant { display: flex; align-items: center; gap: 9px; padding: 10px 9px; border-radius: 11px; color: #bcd0dc; font-size: 12px; }
.participant.is-you { background: rgba(255,255,255,.08); color: #fdf8ed; }
.participant-avatar { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: var(--navy); font-size: 11px; font-weight: 700; }
.participant:nth-of-type(3) .participant-avatar { background: var(--sun); }
.participant:nth-of-type(4) .participant-avatar { background: var(--mint); }
.participant-status { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: var(--success); }
.video-sidebar-bottom { margin-top: auto; padding: 12px 9px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8ea9bb; font-size: 11px; line-height: 1.55; }
.video-stage { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 19px; }
.stage-topbar { display: flex; align-items: center; justify-content: space-between; color: #9bb1c0; font-size: 11px; }
.stage-live { display: inline-flex; align-items: center; gap: 7px; }
.stage-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(95,161,142,.15); }
.stage-body { display: grid; flex: 1; grid-template-columns: 1fr 1fr; gap: 11px; padding: 18px 0; }
.stage-tile { position: relative; min-height: 390px; overflow: hidden; border-radius: 20px; background: linear-gradient(150deg, #6d638f, #eb846d); }
.stage-tile::before { position: absolute; bottom: -36px; left: 50%; width: 230px; height: 280px; border-radius: 50% 50% 0 0; background: #e5af89; content: ""; transform: translateX(-50%); }
.stage-tile::after { position: absolute; top: 40px; left: 50%; width: 116px; height: 134px; border-radius: 47% 47% 42% 42%; background: #efc098; box-shadow: 31px -23px 0 -7px #32232e; content: ""; transform: translateX(-50%); }
.stage-tile:nth-child(2) { background: linear-gradient(150deg, #254c60, #8ccfc5); }
.stage-tile:nth-child(2)::before { background: #925d45; }
.stage-tile:nth-child(2)::after { background: #bb7c60; box-shadow: 28px -19px 0 -6px #181b28; }
.tile-meta { position: absolute; right: 13px; bottom: 13px; left: 13px; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tile-name { padding: 6px 10px; border-radius: 8px; background: rgba(7,18,30,.55); color: #fff; font-size: 11px; backdrop-filter: blur(10px); }
.tile-badge { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(7,18,30,.55); color: #fff; font-size: 12px; backdrop-filter: blur(10px); }
.stage-controls { display: flex; align-items: center; justify-content: center; gap: 10px; padding-top: 3px; }
.control-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); color: #fdf8ed; transition: transform 160ms var(--ease-out), background-color 160ms ease, border-color 160ms ease; }
.control-button:hover { background: rgba(255,255,255,.16); }
.control-button:active { transform: scale(.95); }
.control-button.is-off { border-color: rgba(230,108,85,.6); background: rgba(230,108,85,.2); color: #ffb09d; }
.control-button.is-end { width: 54px; border-radius: 15px; background: var(--brand); }
.control-button svg { width: 18px; height: 18px; }
.video-note { margin: -51px 0 54px; color: #8ea9bb; font-size: 11px; text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes visual-in { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .hero-grid, .story-grid, .loop-grid, .contact-teaser-grid, .form-layout, .delete-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding-top: 86px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 680px); min-height: 460px; margin-left: auto; }
  .story-media { width: min(100%, 580px); }
  .story-copy { max-width: 680px; }
  .loop-copy { max-width: 650px; }
  .app-window { width: min(100%, 650px); margin: 0 auto; }
  .contact-teaser-grid { gap: 30px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-kicker { justify-content: flex-start; text-align: left; }
  .form-aside { max-width: 620px; }
}
@media (max-width: 760px) {
  .container, .nav-wrap { width: min(calc(100% - 32px), var(--max-width)); }
  .section { padding: 82px 0; }
  .section-tight { padding: 60px 0; }
  .site-header .nav-wrap { min-height: 66px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 16px; left: 16px; display: grid; gap: 2px; padding: 9px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms var(--ease-out); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 11px 12px; border-radius: 10px; }
  .site-nav a:hover { background: var(--bg-soft); }
  .nav-agreement { margin: 2px 0; }
  .nav-agreement-trigger { justify-content: space-between; width: 100%; padding: 11px 12px; border-radius: 10px; }
  .nav-agreement-trigger:hover { background: var(--bg-soft); }
  .nav-agreement-menu, .nav-agreement.is-open .nav-agreement-menu { position: static; display: none; min-width: 0; padding: 2px 0 4px 12px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-agreement.is-open .nav-agreement-menu { display: grid; }
  .nav-agreement-menu a { padding: 9px 12px; }
  .nav-actions .button-small { display: none; }
  .hero { padding: 68px 0 76px; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .lede { font-size: 16px; }
  .hero-visual { min-height: 375px; margin-top: 14px; }
  .hero-image { border-radius: 22px 22px 72px 22px; }
  .hero-tag { top: 22px; left: -5px; }
  .hero-caption { right: -4px; bottom: 15px; }
  .hero-orbit { right: 18px; top: -10px; width: 55px; height: 55px; }
  .scroll-cue { display: none; }
  .section-heading { display: block; margin-bottom: 33px; }
  .section-heading .lede { margin-top: 18px; }
  .story-media { min-height: 365px; }
  .story-media img { width: calc(100% - 21px); height: 350px; border-radius: 23px 76px 23px 23px; }
  .story-sticker { right: -2px; width: 112px; height: 112px; padding: 17px; }
  .story-sticker strong { font-size: 27px; }
  .story-sticker span { font-size: 9px; }
  .feature-grid, .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card, .feature-card:nth-child(2), .feature-card:nth-child(2):hover { min-height: 240px; transform: none; }
  .feature-number { margin-bottom: 35px; }
  .chat-preview { grid-template-columns: 1fr; min-height: 420px; }
  .chat-person { min-height: 220px; }
  .chat-pane { min-height: 190px; }
  .app-window { padding: 7px; border-radius: 22px; }
  .cta-inner { display: block; }
  .cta-inner h2 { margin-bottom: 26px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card-icon { display: none; }
  .footer-main { display: block; padding-bottom: 45px; }
  .footer-columns { gap: 30px; margin-top: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 67px 0 55px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .form-section { padding: 66px 0 86px; }
  .form-panel, .delete-form-panel { padding: 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .field-full { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .security-visual { min-height: 240px; }
  .security-visual img { min-height: 240px; }
  .video-hero { padding-top: 60px; }
  .video-hero-grid { display: block; }
  .video-hero .lede { margin-top: 21px; }
  .video-shell { grid-template-columns: 1fr; min-height: auto; margin-bottom: 74px; border-radius: 22px; }
  .video-sidebar { display: none; }
  .video-stage { min-height: 520px; padding: 12px; }
  .stage-body { grid-template-columns: 1fr; gap: 9px; padding: 14px 0; }
  .stage-tile { min-height: 230px; }
  .stage-tile::before { bottom: -70px; width: 165px; height: 220px; }
  .stage-tile::after { top: 22px; width: 80px; height: 94px; box-shadow: 20px -14px 0 -6px #32232e; }
  .video-note { margin: -43px 0 45px; padding: 0 14px; }
}
@media (max-width: 390px) {
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-caption { width: 157px; }
  .hero-caption strong { font-size: 12px; }
  .footer-columns { gap: 24px; }
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover, .review-card:hover { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; width: auto; flex-wrap: wrap; }
}
