:root {
  --ink: #102026;
  --muted: #5a6970;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: rgba(16, 32, 38, 0.12);
  --gold: #f1c66c;
  --teal: #43c8bf;
  --coral: #e86e5c;
  --forest: #153f38;
  --charcoal: #0b1519;
  --shadow: 0 24px 80px rgba(16, 32, 38, 0.16);
  --blue: #2468d8;
  --mint: #17cfb3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.92);
  box-shadow: 0 12px 40px rgba(16, 32, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(14, 42, 62, 0.14);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold), var(--teal));
  border-radius: 12px;
  font-size: 13px;
}

.nav-links {
  gap: 26px;
  color: currentColor;
  font-size: 14px;
  opacity: 0.88;
}

.header-cta,
.button,
.waitlist-form button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--charcoal);
  background: var(--gold);
}

body:has(.ai-presence-hero) .site-header {
  color: #091a32;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28));
  backdrop-filter: blur(18px);
}

body:has(.ai-presence-hero) .site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

body:has(.ai-presence-hero) .header-login {
  color: #ffffff;
  text-shadow: 0 1px 18px rgba(5, 15, 24, 0.45);
}

body:has(.ai-presence-hero) .site-header.scrolled .header-login {
  color: var(--ink);
  text-shadow: none;
}

body:has(.ai-presence-hero) .header-cta {
  color: white;
  background: linear-gradient(135deg, #087783, #0b5f70);
  box-shadow: 0 14px 34px rgba(8, 119, 131, 0.24);
}

.home-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  overflow: hidden;
  padding: clamp(88px, 9vw, 104px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 42px);
  color: #f7fbff;
  background:
    radial-gradient(circle at 24% 18%, rgba(29, 203, 181, 0.22), transparent 28%),
    linear-gradient(135deg, #07131d 0%, #0d2631 58%, #f7f4ee 58.2%, #f7f4ee 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 72%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere span {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 207, 179, 0.8), rgba(36, 104, 216, 0.8), transparent);
  animation: drift-line 9s linear infinite;
}

.hero-atmosphere span:nth-child(1) {
  top: 23%;
  left: -10%;
  width: 42vw;
}

.hero-atmosphere span:nth-child(2) {
  top: 39%;
  left: -18%;
  width: 34vw;
  animation-delay: -3s;
}

.hero-atmosphere span:nth-child(3) {
  top: 67%;
  left: -14%;
  width: 46vw;
  animation-delay: -6s;
}

.hero-atmosphere span:nth-child(4) {
  top: 78%;
  left: -20%;
  width: 28vw;
  animation-delay: -1.5s;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.home-hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.home-hero .hero-copy {
  margin-top: 20px;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.45;
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.home-hero .trust-row {
  margin-top: 18px;
}

.ai-presence-hero {
  min-height: min(92vh, 880px);
  grid-template-columns: minmax(360px, 0.72fr) minmax(640px, 1.28fr);
  gap: 0;
  align-items: stretch;
  padding: clamp(94px, 8vw, 118px) clamp(18px, 5vw, 86px) clamp(80px, 7vw, 118px);
  color: #091a32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 28%, rgba(255, 255, 255, 0.12) 46%, rgba(6, 16, 27, 0.28) 100%),
    radial-gradient(circle at 72% 38%, rgba(23, 207, 179, 0.24), transparent 32%),
    #fbf8f1;
}

.ai-presence-hero::before {
  inset: 0 auto 0 0;
  width: 42%;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 15% 24%, rgba(241, 198, 108, 0.2), transparent 30%);
  mask-image: none;
}

.ai-presence-hero .home-hero-copy {
  position: relative;
  align-self: center;
  min-width: 0;
  max-width: 540px;
  padding: 0;
}

.ai-presence-hero .home-hero-copy::before {
  display: none;
}

.ai-presence-hero h1 {
  max-width: none;
  color: #07172e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.88;
}

.hero-statement {
  position: relative;
  max-width: 510px;
  margin: 28px 0 0;
  padding-left: 26px;
  color: #07172e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}

.hero-statement::before {
  position: absolute;
  top: 0.16em;
  bottom: 0.1em;
  left: 0;
  width: 3px;
  content: "";
  background: #0d8790;
}

.hero-statement span {
  color: #087783;
}

.ai-presence-hero .hero-copy {
  max-width: 480px;
  margin-top: 28px;
  color: #17233d;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.ai-presence-hero .button.primary {
  color: white;
  background: linear-gradient(135deg, #087783, #0b5f70);
  box-shadow: 0 18px 42px rgba(8, 119, 131, 0.22);
}

.ai-presence-hero .button.secondary {
  color: #07172e;
  border-color: rgba(7, 23, 46, 0.18);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px);
}

.hero-beta-note {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(7, 23, 46, 0.72);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.ai-presence-hero .trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 23, 46, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 60px rgba(7, 23, 46, 0.08);
  backdrop-filter: blur(18px);
}

.ai-presence-hero .trust-row span {
  display: grid;
  gap: 4px;
  color: #07172e;
  font-size: 13px;
  font-weight: 800;
}

.ai-presence-hero .trust-row strong {
  font-size: 15px;
}

.ai-presence-hero .trust-row small {
  color: #526071;
  font-size: 12px;
  font-weight: 700;
}

.presence-stage {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -6vw;
  bottom: 0;
  width: min(68vw, 1040px);
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 42%, rgba(23, 207, 179, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(251, 248, 241, 0), rgba(7, 23, 46, 0.08));
}

.presence-stage::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.04) 0%, rgba(251, 248, 241, 0.01) 18%, rgba(251, 248, 241, 0) 34%),
    linear-gradient(180deg, rgba(251, 248, 241, 0) 70%, #07172e 100%);
}

.presence-stage::after {
  display: none;
}

.presence-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(1.02) contrast(1.02);
}

.hero-twin-chat {
  position: absolute;
  z-index: 4;
  right: calc(clamp(24px, 4vw, 62px) + 2vw);
  bottom: clamp(204px, 24vh, 270px);
  width: min(350px, 30vw);
  padding: 16px;
  color: #f8fbff;
  border: 1px solid rgba(89, 203, 223, 0.5);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(6, 18, 30, 0.98), rgba(9, 28, 41, 0.94)),
    #07121e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
}

.hero-twin-chat::before {
  display: none;
}

.hero-twin-chat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-twin-chat-header span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.hero-twin-chat-header small {
  color: rgba(248, 251, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-chat-question,
.hero-chat-answer {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.36;
}

.hero-chat-question {
  max-width: 78%;
  margin-left: auto;
  color: #ffffff;
  border: 1px solid rgba(92, 222, 231, 0.28);
  border-radius: 12px 12px 3px 12px;
  background: rgba(0, 119, 132, 0.9);
}

.hero-chat-answer {
  max-width: 84%;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px 12px 12px 3px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-chat-input {
  margin-top: 12px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.mind-stage {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.mind-stage::before {
  position: absolute;
  inset: 54px 6% 46px;
  content: "";
  border: 1px solid rgba(36, 104, 216, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(16, 32, 38, 0.05) 42px 43px);
  box-shadow: 0 34px 100px rgba(16, 32, 38, 0.2);
  backdrop-filter: blur(20px);
}

.logo-orbit-card {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 8%;
  width: min(300px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(16, 32, 38, 0.1);
  border-radius: 34px;
  background: white;
  box-shadow: 0 30px 80px rgba(16, 32, 38, 0.18);
  animation: float-card 6s ease-in-out infinite;
}

.logo-orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mind-core {
  position: absolute;
  z-index: 4;
  left: 9%;
  bottom: 44px;
  display: grid;
  gap: 5px;
  width: 218px;
  padding: 22px;
  color: white;
  border-radius: 24px;
  background: linear-gradient(135deg, #08374a, #10265d);
  box-shadow: 0 28px 80px rgba(16, 32, 38, 0.28);
}

.mind-core span,
.signal-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mind-core strong {
  font-size: 56px;
  line-height: 0.95;
}

.mind-core small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.signal-card {
  position: absolute;
  z-index: 5;
  width: min(330px, 68%);
  padding: 18px;
  border: 1px solid rgba(16, 32, 38, 0.1);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(16, 32, 38, 0.13);
  backdrop-filter: blur(18px);
}

.signal-card span {
  display: block;
  margin-bottom: 9px;
  color: #167f84;
}

.signal-card strong {
  display: block;
  line-height: 1.35;
}

.signal-card-one {
  top: 94px;
  left: 3%;
}

.signal-card-two {
  top: 314px;
  right: 1%;
}

.signal-card-three {
  bottom: 12px;
  right: 11%;
}

.emotion-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 70px);
  margin-top: -90px;
  padding: clamp(34px, 6vw, 64px) clamp(20px, 5vw, 72px);
  color: white;
  background: #0b1519;
}

.emotion-strip p {
  margin: 0;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.emotion-strip p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.launch-film-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 203, 181, 0.13), transparent 34%),
    linear-gradient(135deg, #061a21 0%, #0b2d31 100%);
}

.launch-film-intro {
  position: relative;
  z-index: 1;
}

.launch-film-intro .eyebrow {
  color: #74e2d4;
}

.launch-film-intro h2 {
  margin: 14px 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.launch-film-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.launch-film-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.launch-film-facts span {
  padding: 8px 11px;
  color: #d7fffa;
  border: 1px solid rgba(116, 226, 212, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-film-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #020b0f;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
}

.launch-film-player iframe,
.launch-film-poster {
  width: 100%;
  height: 100%;
  border: 0;
}

.launch-film-poster {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #020b0f;
}

.launch-film-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.launch-film-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 10, 14, 0.04) 28%, rgba(1, 10, 14, 0.82) 100%);
}

.launch-film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(6, 34, 39, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.launch-film-play svg {
  width: 40px;
  fill: #ffffff;
}

.launch-film-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  text-align: left;
}

.launch-film-caption strong {
  font-size: 20px;
}

.launch-film-caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.launch-film-poster:hover img,
.launch-film-poster:focus-visible img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.launch-film-poster:hover .launch-film-play,
.launch-film-poster:focus-visible .launch-film-play {
  background: #0b827b;
  transform: translate(-50%, -50%) scale(1.06);
}

.story-section {
  background: #fbf8f1;
}

.beta-trust-section {
  background: #f7f4ee;
}

.story-section .section-heading,
.experience-section .section-heading,
.roadmap-section .section-heading {
  max-width: 940px;
}

.compact-heading {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.compact-heading h2 {
  margin-bottom: 0;
}

.trust-badge-grid,
.process-grid,
.product-screen-grid {
  display: grid;
  gap: 16px;
}

.trust-badge-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.trust-badge-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.07);
}

.trust-badge-grid strong,
.trust-badge-grid span {
  display: block;
}

.trust-badge-grid strong {
  color: var(--forest);
  font-size: 20px;
  line-height: 1.18;
}

.trust-badge-grid span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line);
  background: var(--line);
}

.story-grid article {
  min-height: 270px;
  padding: 28px;
  background: #fbf8f1;
}

.story-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 900;
}

.story-grid h3 {
  margin: 0 0 13px;
  font-size: 28px;
}

.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.process-grid article {
  position: relative;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.07);
}

.process-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  content: "";
  border-radius: 999px;
  background: rgba(29, 203, 181, 0.12);
}

.process-grid span {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 10px;
  color: var(--coral);
  border: 1px solid rgba(238, 111, 92, 0.18);
  border-radius: 999px;
  background: #fff7ed;
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 26px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-screens-section {
  background: #edf7f4;
}

.product-screens-section .section-heading {
  max-width: 920px;
}

.product-screens-section .section-heading h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
}

.product-screen-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
  gap: 24px;
}

.screen-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 38, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 32, 38, 0.16);
}

.screen-shot-stage {
  position: relative;
  display: flex;
  height: 300px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 32, 38, 0.12);
  background: #08141b;
}

.screen-shot-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.screen-shot-stage:hover img,
.screen-shot-stage:focus-visible img {
  transform: scale(1.015);
}

.screen-shot-desktop {
  padding: 0;
  background: #e9eef6;
}

.screen-shot-desktop img {
  object-fit: cover;
  object-position: center top;
}

.screen-shot-mobile {
  isolation: isolate;
  padding: 0;
  background: radial-gradient(circle at 50% 25%, #173d3b 0, #0b2425 38%, #061416 100%);
}

.screen-shot-mobile::before {
  position: absolute;
  z-index: 0;
  inset: -28px;
  content: "";
  background-position: center 18%;
  background-size: cover;
  filter: blur(22px) saturate(0.8);
  opacity: 0.42;
  transform: scale(1.08);
}

.screen-collector .screen-shot-mobile::before {
  background-image: linear-gradient(rgba(2, 20, 21, 0.28), rgba(2, 20, 21, 0.68)), url("/assets/product-screens/data-collector.jpg");
}

.screen-chat .screen-shot-mobile::before {
  background-image: linear-gradient(rgba(2, 20, 21, 0.28), rgba(2, 20, 21, 0.68)), url("/assets/product-screens/chat-app.jpg");
}

.screen-shot-mobile img {
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: none;
}

.screen-card-copy {
  display: flex;
  min-height: 180px;
  padding: 24px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.screen-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 9px;
  color: #05232d;
  border-radius: 999px;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-card strong {
  color: var(--forest);
  font-size: 24px;
  line-height: 1.12;
}

.screen-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.consent-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: #edf7f4;
}

.consent-visual {
  display: grid;
  place-items: center;
}

.consent-phone {
  width: min(420px, 100%);
  padding: 18px;
  border: 1px solid rgba(16, 32, 38, 0.12);
  border-radius: 34px;
  background: #fbf8f1;
  box-shadow: 0 30px 90px rgba(16, 32, 38, 0.16);
}

.phone-top {
  width: 72px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(16, 32, 38, 0.18);
}

.consent-phone h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.experience-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 19, 29, 0.98), rgba(9, 44, 55, 0.96)),
    var(--charcoal);
}

.experience-section .section-heading p:not(.eyebrow),
.experience-section .section-heading h2 {
  color: white;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 48px;
}

.cinematic-chat {
  background: rgba(255, 255, 255, 0.92);
}

.insight-stack {
  display: grid;
  gap: 18px;
}

.insight-stack article {
  display: grid;
  align-content: center;
  min-height: 146px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.insight-stack strong {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-stack span {
  font-size: 22px;
  line-height: 1.25;
}

.roadmap-section {
  background: #f7f4ee;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.proof-section div {
  min-height: 220px;
  padding: clamp(26px, 5vw, 54px);
  background: #102026;
}

.proof-section .stat {
  color: var(--teal);
}

.proof-section p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

@keyframes drift-line {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(140vw);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 14, 17, 0.95) 0%, rgba(7, 14, 17, 0.75) 38%, rgba(7, 14, 17, 0.25) 72%, rgba(7, 14, 17, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 14, 17, 0.9) 0%, rgba(7, 14, 17, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.waitlist h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 8vw, 92px);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.button.primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.principles div {
  min-height: 190px;
  padding: clamp(24px, 5vw, 52px);
  background: var(--paper);
}

.stat {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--forest);
}

.principles p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.split,
.twin-demo,
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(36px, 8vw, 94px);
}

.section-copy h2,
.section-heading h2,
.waitlist h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-copy p,
.section-heading p:not(.eyebrow),
.waitlist p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.check-list span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--coral);
}

.consent-panel,
.chat-window,
.plan-table,
.waitlist {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.consent-panel {
  padding: 22px;
  border-radius: 28px;
}

.panel-top,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top span,
.panel-result p,
.toggle-row small,
.plan-table span {
  color: var(--muted);
  font-size: 13px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-row strong,
.toggle-row small {
  display: block;
}

.toggle-row small {
  margin-top: 5px;
  line-height: 1.45;
}

.toggle-row input {
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.panel-result {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #eef8f5;
}

.panel-result span {
  font-size: 42px;
  font-weight: 900;
  color: var(--forest);
}

.panel-result p {
  margin: 0;
  line-height: 1.45;
}

.product-band {
  background: #102026;
  color: white;
}

.product-band .section-heading {
  max-width: 860px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-grid article {
  min-height: 280px;
  padding: 28px;
  background: #102026;
}

.icon-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 28px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.chat-window {
  padding: 18px;
  border-radius: 28px;
}

.chat-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 18px 0 0 var(--gold), 36px 0 0 var(--teal);
}

.message {
  max-width: 86%;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  line-height: 1.55;
}

.message.user {
  margin-left: auto;
  color: white;
  background: var(--forest);
}

.message.ai {
  color: var(--ink);
  background: #edf5f3;
}

.memory-source {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(67, 200, 191, 0.28);
  border-radius: 18px;
  background: rgba(67, 200, 191, 0.08);
}

.memory-source p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.platforms {
  background: #ece6dc;
}

.platform-rows {
  display: grid;
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.platform-rows div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 26px;
  background: #fbf8f1;
}

.platform-rows strong {
  font-size: 20px;
}

.platform-rows span {
  color: var(--muted);
  line-height: 1.55;
}

.extension-section {
  background: #fbf8f1;
}

.light-feature-grid {
  background: var(--line);
}

.light-feature-grid article {
  color: var(--ink);
  background: #fbf8f1;
}

.light-feature-grid p {
  color: var(--muted);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.trust-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #edf7f4;
}

.trust-matrix,
.faq-grid,
.plan-cards,
.detail-grid,
.trust-principles {
  display: grid;
  gap: 16px;
}

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

.trust-matrix article,
.faq-grid article,
.plan-cards article,
.detail-grid article,
.trust-principles article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.trust-matrix article {
  min-height: 190px;
  padding: 24px;
  border-radius: 18px;
}

.trust-matrix strong,
.trust-matrix span,
.plan-cards span,
.plan-cards strong,
.detail-grid span,
.detail-grid h2,
.trust-principles strong {
  display: block;
}

.trust-matrix strong {
  color: var(--forest);
  font-size: 22px;
}

.trust-matrix span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-preview,
.faq-section {
  background: #f7f4ee;
}

.testimonials-section,
.download-safety {
  background: #f7f4ee;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.testimonial-grid article,
.download-product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.testimonial-grid article {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 260px;
  padding: 26px;
}

.testimonial-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--forest);
  font-size: 17px;
}

.testimonial-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-form {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) repeat(2, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #edf7f4;
}

.testimonial-form > div {
  grid-row: span 3;
}

.testimonial-form h3 {
  margin: 0;
  color: var(--forest);
  font-size: 30px;
  line-height: 1.08;
}

.testimonial-form p {
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-form label:not(.marketing-consent) {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font: inherit;
}

.testimonial-form textarea {
  grid-column: span 2;
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.45;
}

.testimonial-form label:has(textarea),
.testimonial-form .marketing-consent,
.testimonial-form button,
.testimonial-form output {
  grid-column: 2 / -1;
}

.testimonial-form button {
  min-height: 50px;
  color: var(--charcoal);
  background: var(--gold);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: start;
  background: #f7f4ee;
}

.contact-form,
.contact-side-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form > div,
.contact-form label:has(textarea),
.contact-form .marketing-consent,
.contact-form button,
.contact-form output {
  grid-column: 1 / -1;
}

.contact-form h2,
.contact-side-card h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.contact-form p,
.contact-side-card p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-form label:not(.marketing-consent) {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form button {
  min-height: 50px;
  color: var(--charcoal);
  background: var(--gold);
}

.contact-side-card {
  position: sticky;
  top: 96px;
}

.contact-side-card .source-chips a {
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 6px;
  background: #f0fdfa;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  color: var(--ink);
  font-family: inherit;
}

.support-widget-toggle {
  min-height: 52px;
  padding: 0 18px;
  color: var(--charcoal);
  border: 1px solid rgba(16, 32, 38, 0.12);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 18px 50px rgba(16, 32, 38, 0.2);
  cursor: pointer;
  font-weight: 950;
}

.support-widget-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(390px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 110px));
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 80px rgba(16, 32, 38, 0.26);
}

.support-widget-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  color: white;
  background: var(--forest);
}

.support-widget-panel header div {
  display: grid;
  gap: 2px;
}

.support-widget-panel header strong {
  font-size: 18px;
}

.support-widget-panel header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-widget-close {
  width: 34px;
  height: 34px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.support-widget-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  background: #eef7f4;
}

.support-widget-tabs button {
  min-height: 38px;
  color: var(--forest);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.support-widget-tabs button.active {
  border-color: rgba(15, 118, 110, 0.18);
  background: white;
  box-shadow: 0 8px 20px rgba(16, 32, 38, 0.08);
}

.support-widget-view {
  display: none;
  padding: 14px;
}

.support-widget-view.active {
  display: grid;
  gap: 12px;
}

.support-widget-messages {
  display: grid;
  gap: 10px;
  max-height: 230px;
  overflow: auto;
  padding-right: 4px;
}

.support-widget-messages p {
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.support-bot-message {
  color: var(--forest);
  background: #eef7f4;
}

.support-user-message {
  color: white;
  background: #0f766e;
}

.support-widget-form {
  display: grid;
  gap: 10px;
}

.support-widget-form label {
  display: grid;
  gap: 6px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.support-widget-form input,
.support-widget-form select,
.support-widget-form textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font: inherit;
  font-size: 14px;
}

.support-widget-form textarea {
  resize: vertical;
  line-height: 1.45;
}

.support-widget-form button {
  min-height: 42px;
  color: var(--charcoal);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  cursor: pointer;
  font-weight: 950;
}

.support-widget-form output {
  min-height: 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.support-widget-form output.error {
  color: #b91c1c;
}

.support-widget-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.support-widget-intro {
  margin: 0;
  padding: 11px 12px;
  color: #344b55;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 12px;
  background: #eef7f4;
  font-size: 13px;
  line-height: 1.45;
}

.support-widget-form input[type="file"] {
  min-height: auto;
  padding: 10px;
  font-size: 12px;
}

.support-widget-note a {
  color: var(--forest);
  font-weight: 900;
}

.beta-callout,
.founding-offer-band {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 18px;
  background: #eef7f4;
}

.beta-callout {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.beta-callout strong,
.founding-offer-band strong {
  color: var(--forest);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.08;
}

.beta-callout p,
.founding-offer-band p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero .beta-callout,
.page-hero .beta-callout strong,
.page-hero .beta-callout p {
  color: var(--ink);
}

.page-hero .beta-callout {
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(245, 255, 252, 0.98), rgba(230, 247, 243, 0.94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.page-hero .beta-callout.beta-callout p {
  color: #344b55;
}

.founding-offer-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - clamp(40px, 10vw, 144px)));
  margin: clamp(28px, 4vw, 46px) auto 0;
  border-color: rgba(244, 181, 65, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 204, 111, 0.34), transparent 34%),
    linear-gradient(135deg, #fff9e8, #ffffff 60%, #eef8f5);
  box-shadow: 0 24px 70px rgba(14, 47, 46, 0.1);
}

.founding-offer-band::before {
  display: block;
  grid-column: 1 / -1;
  width: fit-content;
  padding: 7px 10px;
  content: "PUBLIC BETA";
  color: #9a3412;
  border: 1px solid rgba(154, 52, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founding-offer-band strong {
  align-self: start;
}

.founding-offer-band p {
  font-size: 18px;
}

.product-info-page .page-hero + .section:not(.founding-offer-band) {
  padding-top: clamp(38px, 5vw, 70px);
}

.product-info-page .section + .section {
  padding-top: clamp(46px, 6vw, 78px);
}

.founding-offer-band + .plan-cards {
  padding-top: clamp(42px, 5vw, 76px);
}

.plan-cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.plan-cards article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 340px;
  padding: 26px;
  border-radius: 20px;
}

.plan-cards span,
.detail-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-cards strong {
  color: var(--forest);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.plan-cards p,
.faq-grid p,
.detail-grid p,
.trust-principles p,
.download-panel p,
.install-list {
  color: var(--muted);
  line-height: 1.65;
}

.plan-cards .button {
  align-self: end;
  width: max-content;
}

.faq-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.faq-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 18px;
}

.faq-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.18;
}

.product-info-page {
  background: #fbf8f1;
}

.product-info-page .legal-header {
  position: sticky;
}

.compact-nav {
  color: var(--ink);
}

.page-hero {
  padding: clamp(92px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(46px, 7vw, 78px);
  color: white;
  background:
    radial-gradient(circle at 75% 18%, rgba(67, 200, 191, 0.24), transparent 30%),
    linear-gradient(135deg, #07131d, #12333b);
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.65;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
  background: #f7f4ee;
}

.detail-grid article {
  min-height: 310px;
  padding: 28px;
  border-radius: 18px;
}

.detail-grid h2 {
  margin: 44px 0 12px;
  font-size: 30px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #edf7f4;
}

.download-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.setup-downloads {
  display: grid;
  gap: 20px;
  background: #edf7f4;
}

.compact-heading {
  max-width: 760px;
}

.compact-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.setup-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
}

.setup-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 9px;
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 6px;
  background: #f0fdfa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.setup-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.compact-list {
  padding: 18px 20px 18px 38px;
  border-radius: 8px;
  box-shadow: none;
}

.compact-list li + li {
  margin-top: 8px;
}

.download-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  background: #f7f4ee;
}

.download-product-card {
  display: grid;
  grid-template-rows: auto auto minmax(150px, 1fr) auto auto;
  gap: 14px;
  min-height: 430px;
  padding: 26px;
}

.download-product-card span {
  width: fit-content;
  padding: 7px 9px;
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 6px;
  background: #f0fdfa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-product-card:not(.is-ready) span {
  color: #9a3412;
  border-color: rgba(154, 52, 18, 0.16);
  background: #fff7ed;
}

.download-product-card h2 {
  margin: 0;
  color: var(--forest);
  font-size: 30px;
  line-height: 1.05;
}

.download-product-card .button {
  align-self: start;
  justify-self: stretch;
  width: 100%;
}

.download-product-card p,
.download-product-card small {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.download-product-card small {
  align-self: start;
  font-size: 13px;
  font-weight: 800;
}

.pricing-feature-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #edf7f4;
}

.pricing-feature-band h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.pricing-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pricing-feature-list span {
  padding: 13px 14px;
  color: var(--forest);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.install-list {
  margin: 0;
  padding: 28px 28px 28px 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.install-list li + li {
  margin-top: 12px;
}

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

.trust-principles article {
  min-height: 260px;
  padding: 26px;
  border-radius: 18px;
}

.trust-principles strong {
  color: var(--forest);
  font-size: 24px;
}

.pricing-page-cards {
  margin-top: 0;
  background: #f7f4ee;
}

.plan-table {
  overflow: hidden;
  border-radius: 24px;
}

.plan-table div {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.plan-table div:last-child {
  border-bottom: 0;
}

.plan-table strong {
  font-size: 20px;
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 34px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(60px, 8vw, 90px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 32px;
}

.waitlist-form {
  display: grid;
  align-content: center;
  gap: 12px;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font: inherit;
}

.waitlist-form textarea {
  min-height: 116px;
  padding: 16px 18px;
  border-radius: 18px;
  resize: vertical;
  line-height: 1.45;
}

.marketing-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.marketing-consent input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--forest);
}

.auth-form .marketing-consent {
  align-items: start;
}

.auth-form .marketing-consent input {
  margin-top: 3px;
}

.waitlist-form button {
  color: var(--charcoal);
  background: var(--gold);
}

.waitlist-form small {
  color: var(--muted);
  line-height: 1.45;
}

.waitlist-form small a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.form-status.error {
  color: #b83224;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(420px, 2fr);
  align-items: start;
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer .brand {
  color: white;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links div {
  display: grid;
  gap: 11px;
}

.footer-links strong {
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.compact-footer {
  margin-top: 0;
}

.legal-page {
  background: #fbf8f1;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(18px);
}

.legal-document {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 86px) 0 clamp(76px, 9vw, 120px);
}

.legal-document h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-updated {
  margin: 18px 0 42px;
  color: var(--muted);
  font-weight: 800;
}

.legal-document section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.legal-document p,
.legal-document li {
  color: #334349;
  font-size: 17px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  margin: 0;
  padding-left: 22px;
}

.legal-document a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.auth-page {
  min-height: 100vh;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 14, 17, 0.94), rgba(7, 14, 17, 0.66)),
    url("/assets/hero-ai-memory.png") center / cover no-repeat,
    var(--charcoal);
  display: flex;
  flex-direction: column;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr);
  min-height: calc(100vh - 92px);
  flex: 1;
}

.auth-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(26px, 6vw, 72px);
  background: rgba(7, 17, 21, 0.82);
  backdrop-filter: blur(18px);
}

.auth-panel .brand {
  color: white;
  margin-bottom: 26px;
}

.auth-panel h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.auth-side h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
}

.auth-note {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.auth-note a {
  color: var(--gold);
  font-weight: 900;
}

.auth-trial-card {
  display: grid;
  gap: 12px;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(241, 198, 108, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.auth-trial-card strong {
  color: var(--gold);
  font-size: 18px;
}

.auth-trial-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label:not(.marketing-consent),
.onboarding-save label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.auth-form input,
.onboarding-save select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.auth-form .marketing-consent a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-form button,
.onboarding-save button,
.sidebar-button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.auth-switch {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.auth-switch a {
  color: var(--gold);
  font-weight: 900;
}

.auth-link-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(241, 198, 108, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-link-box a {
  color: var(--gold);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-side {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 6vw, 72px);
}

.auth-side span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-side p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.auth-side-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.auth-side-list span {
  padding: 8px 10px;
  color: #07232b;
  border-radius: 999px;
  background: rgba(241, 198, 108, 0.92);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.auth-legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(26px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 17, 21, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.5;
}

.auth-legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.auth-legal-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.auth-legal-footer a:hover {
  color: var(--gold);
}

.guest-chat-page {
  color: var(--ink);
}

.guest-chat-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  min-height: 100vh;
  padding: clamp(18px, 4vw, 54px);
}

.guest-chat-panel,
.guest-answer-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(7, 14, 17, 0.2);
  backdrop-filter: blur(18px);
}

.guest-chat-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.guest-chat-panel .brand {
  margin-bottom: 18px;
}

.guest-chat-panel h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
}

.guest-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.guest-key-form,
.guest-chat-form {
  display: grid;
  gap: 12px;
}

.guest-key-form label,
.guest-chat-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.guest-key-form textarea,
.guest-chat-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

.guest-key-form button,
.guest-chat-form button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.guest-answer-panel {
  display: grid;
  align-content: start;
  padding: clamp(22px, 4vw, 38px);
}

.app-preview-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: #f3eee5;
}

.product-app-page {
  --app-bg: #f6f7fb;
  --app-panel: #ffffff;
  --app-panel-soft: #fbfcfe;
  --app-line: #d9e0ea;
  --app-ink: #111827;
  --app-muted: #64748b;
  --app-faint: #94a3b8;
  --app-primary: #0f766e;
  --app-primary-soft: #ecfdf5;
  --app-accent: #2563eb;
  --app-danger: #b91c1c;
  color: var(--app-ink);
}

.product-app-page.app-preview-page {
  grid-template-columns: 264px minmax(0, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 260px),
    var(--app-bg);
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 24px;
  color: white;
  background: #0c171b;
}

.product-app-page .app-sidebar {
  gap: 22px;
  padding: 20px 16px;
  background: #0b1220;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.app-sidebar .brand {
  color: white;
}

.product-app-page .app-sidebar .brand {
  padding: 4px 8px 16px;
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-app-page .brand-mark {
  width: 34px;
  height: 34px;
  color: #062923;
  border-radius: 8px;
  box-shadow: none;
}

.app-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.app-nav a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  font-weight: 800;
}

.product-app-page .app-nav {
  gap: 3px;
}

.product-app-page .app-nav a {
  min-height: 38px;
  padding: 10px 12px;
  color: #aab6c7;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.app-nav a.active,
.app-nav a:hover {
  color: var(--charcoal);
  background: var(--gold);
}

.product-app-page .app-nav a.active,
.product-app-page .app-nav a:hover {
  color: #f8fafc;
  background: rgba(37, 99, 235, 0.18);
}

.app-sidebar-note {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.app-sidebar-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.sidebar-button {
  width: 100%;
}

.product-app-page .sidebar-button {
  min-height: 40px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.app-shell {
  min-width: 0;
  padding: clamp(22px, 4vw, 54px);
}

.product-app-page .app-shell {
  width: min(100%, 1480px);
  padding: 28px clamp(22px, 3vw, 40px) 56px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.product-app-page .app-topbar {
  margin-bottom: 20px;
  padding: 20px 22px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.app-topbar h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
}

.product-app-page .app-topbar h1 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.topbar-subtitle {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--app-muted);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-app-page .eyebrow {
  color: var(--app-primary);
  letter-spacing: 0.12em;
}

.product-app-page .button.primary,
.product-app-page .button.secondary,
.product-app-page .dark-text {
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  border-radius: 8px;
  background: var(--app-ink);
  box-shadow: none;
}

.product-app-page .topbar-actions .ghost-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  color: var(--app-ink);
  background: #ffffff;
  font-weight: 800;
}

.dashboard-secondary {
  display: none;
}

.show-dashboard-advanced .dashboard-secondary {
  display: grid;
}

.first-run-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #ffffff;
}

.first-run-panel > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 10px;
  align-items: start;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.first-run-panel span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--app-ink);
  font-size: 14px;
  font-weight: 900;
}

.first-run-panel strong,
.first-run-panel p,
.first-run-panel a {
  grid-column: 2;
}

.first-run-panel strong {
  color: var(--app-ink);
  font-size: 15px;
}

.first-run-panel p {
  margin: 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.45;
}

.first-run-panel a {
  width: fit-content;
  color: var(--app-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.dashboard-first-run .is-current {
  border-color: rgba(15, 118, 110, 0.42);
  background: #ecfdf5;
}

.dashboard-first-run .is-current span {
  background: var(--app-primary);
}

.dashboard-first-run .is-complete {
  border-color: rgba(22, 163, 74, 0.34);
  background: #f0fdf4;
}

.dashboard-first-run .is-complete span {
  background: #16a34a;
}

.dashboard-first-run .is-complete a {
  color: #166534;
}

.today-workspace {
  align-items: stretch;
  margin-bottom: 16px;
}

.today-question-card {
  min-height: 100%;
}

.next-action-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border-left: 4px solid var(--app-primary);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.next-action-card .button {
  width: fit-content;
  margin-top: 4px;
}

.app-grid,
.source-grid,
.sharing-grid {
  display: grid;
  gap: 16px;
}

.app-grid {
  grid-template-columns: minmax(210px, 1.35fr) repeat(4, minmax(150px, 1fr));
}

.product-app-page .app-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.app-card,
.source-card,
.share-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.app-card {
  padding: 24px;
}

.product-app-page .app-card {
  min-width: 0;
  border-color: var(--app-line);
  border-radius: 8px;
  background: var(--app-panel);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.product-app-page .app-card h2 {
  color: var(--app-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-app-page .today-workspace .app-card h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.app-card h2,
.app-section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.app-card p,
.share-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-label {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-app-page .card-label {
  margin-bottom: 10px;
  color: var(--app-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.twin-score strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-size: clamp(56px, 6vw, 76px);
  line-height: 0.9;
}

.product-app-page .twin-score {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--app-primary);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.product-app-page .twin-score strong {
  color: var(--app-primary);
  font-size: clamp(46px, 4.8vw, 62px);
}

.app-grid .app-card:not(.twin-score) h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 0.9;
}

.product-app-page .app-grid .app-card:not(.twin-score) h2 {
  margin-bottom: 12px;
  color: var(--app-ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.app-grid .app-card {
  min-height: 174px;
}

.product-app-page .app-grid .app-card {
  min-height: 156px;
  padding: 20px;
}

.dashboard-billing-card .button {
  width: fit-content;
  margin-top: 10px;
}

.app-grid .button {
  width: fit-content;
  margin-top: 10px;
}

.product-app-page .app-card p,
.product-app-page .share-card p,
.product-app-page .privacy-note,
.product-app-page .question-meta {
  color: var(--app-muted);
  overflow-wrap: anywhere;
}

.score-bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.score-bars span {
  position: relative;
  overflow: hidden;
  height: 34px;
  border-radius: 999px;
  background: #e5ddd0;
}

.score-bars span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.score-bars em {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 14px;
  color: var(--charcoal);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.mini-ledger,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mini-ledger span,
.pill-list span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: #edf7f4;
  font-size: 13px;
  font-weight: 800;
}

.app-section {
  margin-top: 22px;
  padding-top: 22px;
}

.product-app-page .app-section {
  margin-top: 16px;
  padding-top: 16px;
}

.app-section-heading {
  margin-bottom: 18px;
}

.source-grid {
  grid-template-columns: repeat(4, 1fr);
}

.source-card {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 170px;
  padding: 20px;
  cursor: pointer;
}

.source-card input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.source-card strong,
.source-card small {
  display: block;
}

.source-card strong {
  font-size: 18px;
}

.source-card small {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.5;
}

.source-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.goal-grid {
  grid-template-columns: repeat(4, 1fr);
}

.onboarding-save {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  margin-top: 22px;
}

.onboarding-save label {
  color: var(--muted);
}

.onboarding-save select {
  border-color: var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.intelligence-section {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: start;
}

.reflection-card textarea,
.twin-chat-card textarea,
.trusted-contact-form textarea {
  width: 100%;
  min-height: 170px;
  margin-top: 18px;
  padding: 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  resize: vertical;
  font: inherit;
  line-height: 1.55;
}

.product-app-page .reflection-card textarea,
.product-app-page .twin-chat-card textarea,
.product-app-page .trusted-contact-form textarea,
.product-app-page .trusted-contact-form input,
.product-app-page .trusted-contact-form select {
  border-color: var(--app-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.03);
}

.product-app-page .reflection-card textarea,
.product-app-page .twin-chat-card textarea,
.product-app-page .trusted-contact-form textarea {
  margin-top: 12px;
  min-height: 140px;
}

.product-app-page .trusted-contact-form > button:not(.ghost-button):not(.danger-button) {
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--app-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: none;
}

.product-app-page .trusted-contact-form > button:not(.ghost-button):not(.danger-button):disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.product-app-page .today-question-card textarea {
  min-height: 130px;
}

.question-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.mini-status {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-status.error {
  color: #b91c1c;
}

.question-learning-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 12px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.question-learning-panel[hidden] {
  display: none;
}

.question-learning-panel span {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: min(100%, 170px);
  padding: 9px 10px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 6px;
  color: #0f766e;
  background: #f0fdfa;
  font-size: 13px;
  font-weight: 900;
}

.question-learning-panel strong {
  color: var(--app-faint);
  font-size: 11px;
  text-transform: uppercase;
}

.question-learning-panel p {
  flex-basis: 100%;
  margin: 2px 0 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.5;
}

.reflection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.reflection-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.product-app-page .reflection-actions button,
.product-app-page .privacy-actions button,
.product-app-page .guest-key-form button,
.product-app-page .guest-chat-form button {
  min-height: 38px;
  padding: 0 13px;
  color: #ffffff;
  border-radius: 8px;
  background: var(--app-primary);
  box-shadow: none;
}

.reflection-actions .danger-button {
  color: white;
  background: #b83224;
}

.danger-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #b83224;
  cursor: pointer;
  font-weight: 900;
}

.danger-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.reflection-actions .ghost-button {
  color: var(--forest);
  border: 1px solid var(--line);
  background: white;
}

.privacy-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.privacy-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.danger-zone {
  border-color: rgba(184, 50, 36, 0.28);
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.token-box {
  overflow-x: auto;
  margin: 0;
  padding: 14px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #edf7f4;
  font: 700 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.guest-key-share {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #ffffff;
}

.guest-key-share[hidden] {
  display: none;
}

.guest-key-qr {
  display: grid;
  place-items: center;
  width: 196px;
  min-height: 196px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.guest-key-qr img,
.guest-key-qr canvas {
  width: 180px;
  height: 180px;
}

.guest-key-share strong {
  display: block;
  margin-bottom: 4px;
  color: var(--app-ink);
  font-size: 16px;
  font-weight: 900;
}

.guest-key-share p {
  margin: 0;
  color: var(--app-muted);
  font-size: 14px;
  line-height: 1.45;
}

#memory-vault {
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: 14px;
}

#memory-vault .app-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

#memory-vault .card-label {
  margin-bottom: 0;
}

#memory-vault h2 {
  max-width: 720px;
  margin: 0 0 2px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.16;
}

#memory-vault .trusted-contact-form label:not(.marketing-consent) {
  gap: 5px;
}

#memory-vault .trusted-contact-form textarea {
  min-height: 126px;
  margin-top: 0;
}

#memory-vault .trusted-contact-form input,
#memory-vault .trusted-contact-form select {
  min-height: 44px;
}

#memory-vault .marketing-consent {
  margin-top: 0;
}

#memory-vault .reflection-actions {
  margin-top: 2px;
}

#memory-vault .memory-list {
  display: grid;
  gap: 10px;
}

#memory-vault .memory-list article {
  padding: 14px;
  border-radius: 8px;
  background: #ffffff;
}

#memory-vault .memory-list p {
  margin: 0;
}

#memory-vault .memory-review-link {
  width: fit-content;
  min-height: 40px;
  margin-top: 2px;
}

.profile-card {
  display: grid;
  gap: 20px;
}

.profile-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.profile-header strong {
  color: var(--forest);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.profile-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.product-app-page .profile-grid article,
.product-app-page .reflection-list article,
.product-app-page .trusted-contact-list article,
.product-app-page .memory-list article,
.product-app-page .activity-list article {
  border-color: var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.profile-grid span,
.profile-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.profile-grid span {
  margin-bottom: 16px;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-app-page .profile-grid span,
.product-app-page .activity-signal-top span,
.product-app-page .activity-signal-top small,
.product-app-page .activity-intel-metrics span,
.product-app-page .mini-label {
  color: var(--app-faint);
}

.profile-grid strong {
  display: block;
  font-size: 21px;
}

.profile-grid p {
  color: var(--muted);
  line-height: 1.55;
}

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

.profile-gaps span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: #edf7f4;
  font-size: 12px;
  font-weight: 900;
}

.product-app-page .profile-gaps span,
.product-app-page .signal-chip-row span,
.product-app-page .source-chips span {
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 6px;
  background: var(--app-primary-soft);
}

.interest-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reflection-list {
  display: grid;
  gap: 14px;
}

.reflection-list article,
.trusted-contact-list article,
.memory-list article,
.activity-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.reflection-list strong,
.reflection-list small,
.trusted-contact-list strong,
.trusted-contact-list small,
.memory-list strong,
.memory-list small,
.activity-list strong,
.activity-list small {
  display: block;
}

.reflection-list p,
.trusted-contact-list p,
.memory-list p,
.activity-list p,
.twin-answer p {
  margin: 8px 0;
}

.reflection-list small,
.trusted-contact-list small,
.memory-list small,
.activity-list small {
  color: var(--muted);
}

.access-group {
  border-style: dashed;
  background: rgba(237, 247, 244, 0.72);
}

.access-group p {
  margin-bottom: 0;
}

.mini-action {
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  background: var(--app-primary, #087783);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-action.danger {
  background: #b91c1c;
}

.mini-action.link-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.activity-intelligence-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(237, 247, 244, 0.92), rgba(255, 255, 255, 0.86) 50%, rgba(255, 246, 225, 0.86)),
    white;
}

.product-app-page .activity-intelligence-card {
  background: var(--app-panel);
}

.activity-intelligence-card h2 {
  max-width: 760px;
}

.activity-empty-state {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 104, 90, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.activity-empty-state strong,
.activity-feed-header strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.activity-intel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.activity-intel-metrics article {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(18, 104, 90, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.product-app-page .activity-intel-metrics article {
  min-height: 118px;
  border-color: var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.activity-intel-metrics span,
.mini-label {
  display: block;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-intel-metrics strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.product-app-page .activity-intel-metrics strong {
  color: var(--app-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.activity-intel-metrics small,
.activity-feed-header small {
  color: var(--muted);
  font-weight: 800;
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  margin-top: 18px;
}

.admin-user-list,
.admin-audit-list,
.admin-account-list,
.admin-founder-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-user-item,
.admin-audit-item,
.admin-account-item,
.admin-founder-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.admin-audit-item,
.admin-account-item {
  display: block;
}

.admin-user-item strong,
.admin-audit-item strong,
.admin-account-item strong,
.admin-founder-item strong {
  display: block;
  color: var(--app-ink);
  font-size: 16px;
}

.admin-user-item small,
.admin-audit-item small,
.admin-account-item small,
.admin-founder-item small {
  display: block;
  margin-top: 4px;
  color: var(--app-muted);
  font-weight: 800;
}

.admin-audit-item p,
.admin-account-item p,
.admin-founder-item p {
  margin: 8px 0 0;
  color: var(--app-muted);
}

.admin-user-item.is-revoked,
.admin-account-item.is-deleted,
.admin-founder-item.is-revoked {
  opacity: 0.72;
}

.danger-action {
  border-color: rgba(207, 74, 48, 0.45);
  color: #cf4a30;
}

.activity-topic-map {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(18, 104, 90, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.product-app-page .activity-topic-map {
  border-color: var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.signal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.signal-chip-row span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(237, 247, 244, 0.95);
  font-size: 12px;
  font-weight: 900;
}

.activity-feed-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 12px;
}

.activity-signal-feed {
  display: grid;
  gap: 10px;
}

.activity-signal-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: start;
  padding: 14px;
  border-color: rgba(18, 104, 90, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.product-app-page .activity-signal-card {
  border-radius: 8px;
  background: #ffffff;
}

.activity-signal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--forest), var(--teal));
  font-weight: 900;
}

.product-app-page .activity-signal-icon {
  border-radius: 8px;
  background: var(--app-primary);
}

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

.activity-signal-top span,
.activity-signal-top small {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-signal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.manual-signal-card {
  background: rgba(255, 255, 255, 0.74);
}

.product-app-page .manual-signal-card {
  background: var(--app-panel);
}

.manual-signal-card h2 {
  font-size: 24px;
}

.trusted-contact-form {
  display: grid;
  gap: 14px;
}

.trusted-contact-form label:not(.topic-fieldset label) {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.trusted-contact-form input,
.trusted-contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.topic-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.topic-fieldset legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.topic-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.topic-fieldset input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--forest);
}

.trusted-contact-list,
.memory-list,
.activity-list,
.collected-list,
.collector-token-list {
  display: grid;
  gap: 14px;
}

.collected-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-import-summary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.import-source-card {
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.import-source-card:hover {
  border-color: rgba(15, 118, 110, 0.38);
  transform: translateY(-1px);
}

.source-import-workspace {
  align-items: start;
}

.source-guidance-card {
  display: grid;
  gap: 16px;
}

.source-import-steps,
.source-import-list {
  display: grid;
  gap: 14px;
}

.source-import-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.source-import-steps span,
.source-import-warning {
  padding: 12px 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  color: var(--app-muted);
  background: #ffffff;
  font-weight: 800;
  line-height: 1.45;
}

.source-import-warning {
  color: #7f1d1d;
  background: #fff7ed;
}

.collected-review-card {
  display: grid;
  gap: 18px;
}

.collected-filter-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.filter-label {
  display: block;
  margin-bottom: 8px;
  color: var(--app-faint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.source-filter-button,
.date-filter-button {
  border: 1px solid var(--app-line);
  border-radius: 8px;
  color: var(--app-ink);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.source-filter-button {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 10px 12px;
  text-align: left;
}

.source-filter-button strong,
.source-filter-button span {
  display: block;
}

.source-filter-button span {
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 800;
}

.date-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.date-filter-button {
  min-height: 38px;
  padding: 0 12px;
}

.source-filter-button.is-active,
.date-filter-button.is-active {
  color: #ffffff;
  border-color: var(--app-primary);
  background: var(--app-primary);
}

.source-filter-button.is-active span {
  color: rgba(255, 255, 255, 0.82);
}

.filter-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
}

.filter-action-row p {
  margin: 0;
  color: var(--app-muted);
  font-weight: 800;
}

.collected-source-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-panel-soft);
}

.collected-source-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.collected-source-heading .card-label {
  margin-bottom: 4px;
}

.collected-source-heading p {
  margin: 0;
  color: var(--app-muted);
  font-size: 14px;
  line-height: 1.45;
}

.collected-source-heading strong {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--app-primary);
  background: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.collected-source-list {
  display: grid;
  gap: 10px;
}

.collected-item,
.collector-token-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #ffffff;
}

.collected-item span,
.collected-item small,
.collected-item strong,
.collector-token-item span,
.collector-token-item small,
.collector-token-item strong {
  display: block;
}

.collected-item span,
.collector-token-item span {
  margin-bottom: 6px;
  color: var(--app-faint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.collected-item strong,
.collector-token-item strong {
  color: var(--app-ink);
  font-size: 17px;
  line-height: 1.3;
}

.collected-item p,
.collector-token-item p {
  margin: 8px 0;
  color: var(--app-muted);
  line-height: 1.55;
}

.collected-item small,
.collector-token-item small {
  color: var(--app-faint);
  font-weight: 800;
  line-height: 1.45;
}

.compact-danger {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
}

.compact-link {
  min-height: 36px;
  align-self: start;
}

.twin-answer {
  display: grid;
  gap: 14px;
}

.twin-answer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.twin-answer-meta span {
  padding: 7px 9px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  color: var(--app-muted);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

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

.source-chips span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: #edf7f4;
  font-size: 12px;
  font-weight: 900;
}

.app-chat-window {
  box-shadow: 0 18px 60px rgba(16, 32, 38, 0.08);
}

.sharing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.share-card {
  padding: 20px;
}

.share-card strong,
.share-card span {
  display: block;
}

.share-card strong {
  font-size: 18px;
}

.share-card span {
  margin-top: 14px;
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .home-hero,
  .launch-film-section,
  .emotion-strip,
  .story-grid,
  .consent-showcase,
  .experience-grid,
  .proof-section,
  .trust-section,
  .trust-matrix,
  .trust-badge-grid,
  .process-grid,
  .product-screen-grid,
  .plan-cards,
  .faq-grid,
  .detail-grid,
  .download-panel,
  .trust-principles,
  .testimonial-grid,
  .testimonial-form,
  .contact-section,
  .contact-form,
  .download-product-grid,
  .setup-card-grid,
  .pricing-feature-band,
  .pricing-feature-list {
    grid-template-columns: 1fr;
  }

  .testimonial-form > div,
  .testimonial-form label:has(textarea),
  .testimonial-form .marketing-consent,
  .testimonial-form button,
  .testimonial-form output {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-side-card {
    position: static;
  }

  .home-hero {
    min-height: auto;
    padding-top: 112px;
    background:
      radial-gradient(circle at 26% 12%, rgba(29, 203, 181, 0.22), transparent 30%),
      linear-gradient(180deg, #07131d 0%, #0d2631 56%, #f7f4ee 56.2%, #f7f4ee 100%);
  }

  .ai-presence-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 112px 24px 86px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(7, 23, 46, 0.1) 100%),
      #fbf8f1;
  }

  .home-hero::before {
    mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 74%);
  }

  .ai-presence-hero::before {
    display: none;
  }

  .ai-presence-hero .home-hero-copy {
    max-width: 720px;
  }

  .presence-stage {
    position: relative;
    width: 100%;
    height: min(74vw, 620px);
    margin-top: 34px;
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(7, 23, 46, 0.18);
  }

  .presence-stage::before {
    background: linear-gradient(180deg, rgba(251, 248, 241, 0) 62%, rgba(7, 23, 46, 0.42) 100%);
  }

  .presence-stage::after,
  .hero-twin-chat {
    display: none;
  }

  .mind-stage {
    min-height: 470px;
  }

  .logo-orbit-card {
    right: 50%;
    width: min(310px, 76%);
    transform: translateX(50%);
    animation: none;
  }

  .signal-card-one {
    top: 286px;
    left: 0;
  }

  .signal-card-two {
    top: 388px;
    right: 0;
  }

  .signal-card-three {
    bottom: 18px;
    right: 5%;
  }

  .mind-core {
    left: 3%;
    bottom: 44px;
  }

  .story-grid article {
    min-height: auto;
  }

  .process-grid article,
  .trust-badge-grid article {
    min-height: auto;
  }

  .screen-card {
    min-height: 0;
  }

  .screen-shot-stage {
    height: 300px;
  }

  .screen-card-copy {
    min-height: 180px;
  }

  .story-grid span {
    margin-bottom: 18px;
  }

  .principles,
  .split,
  .twin-demo,
  .pricing,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .footer,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

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

  .platform-rows div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .app-preview-page {
    grid-template-columns: 1fr;
  }

  .product-app-page.app-preview-page {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    height: auto;
  }

  .product-app-page .app-sidebar {
    position: static;
    height: auto;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    padding: 14px;
  }

  .app-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, max-content);
    overflow-x: auto;
  }

  .product-app-page .app-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    padding-bottom: 2px;
  }

  .product-app-page .app-nav a {
    flex: 0 0 auto;
  }

  .product-app-page .app-shell {
    width: auto;
    max-width: 100vw;
    overflow: hidden;
    padding: 16px;
  }

  .product-app-page .app-topbar,
  .product-app-page .app-grid,
  .product-app-page .first-run-panel,
  .product-app-page .app-section {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }

  .product-app-page .app-card,
  .product-app-page .app-topbar {
    width: 100%;
    max-width: 100%;
  }

  .product-app-page .app-topbar {
    align-items: start;
    flex-direction: column;
  }

  .product-app-page .app-topbar h1 {
    font-size: 28px;
  }

  .product-app-page .app-card {
    padding: 20px;
  }

  .product-app-page .activity-intelligence-card h2,
  .product-app-page .manual-signal-card h2 {
    font-size: 24px;
  }

  .app-grid,
  .first-run-panel,
  .source-grid,
  .sharing-grid,
  .goal-grid,
  .onboarding-save,
  .form-row,
  .topic-fieldset,
  .two-col,
  .interest-columns {
    grid-template-columns: 1fr;
  }

  .product-app-page .app-grid,
  .product-app-page .intelligence-section,
  #memory-vault,
  .guest-key-share {
    grid-template-columns: 1fr;
  }

  .guest-key-qr {
    width: 100%;
  }

  .collected-summary-grid,
  .collected-item,
  .collector-token-item {
    grid-template-columns: 1fr;
  }

  .compact-danger {
    width: fit-content;
  }

  .activity-intel-metrics {
    grid-template-columns: 1fr;
  }

  .admin-panel-grid,
  .admin-user-item {
    grid-template-columns: 1fr;
  }

  .admin-panel-grid {
    display: grid;
  }

  .admin-user-item {
    align-items: stretch;
    flex-direction: column;
  }

  .activity-feed-header {
    align-items: start;
    flex-direction: column;
  }

  .activity-signal-card {
    grid-template-columns: 36px 1fr;
  }

  .activity-signal-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .guest-chat-shell {
    grid-template-columns: 1fr;
  }

  .auth-side {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  body:has(.ai-presence-hero) .header-login {
    display: none;
  }

  body:has(.ai-presence-hero) .header-cta {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .home-hero h1 {
    font-size: 45px;
  }

  .ai-presence-hero {
    padding: 96px 16px 74px;
  }

  .ai-presence-hero h1 {
    max-width: 320px;
    font-size: clamp(48px, 14vw, 58px);
    line-height: 0.92;
  }

  .hero-statement {
    margin-top: 20px;
    padding-left: 18px;
    max-width: 340px;
    font-size: clamp(32px, 9.4vw, 40px);
  }

  .hero-statement span {
    display: block;
  }

  .ai-presence-hero .hero-copy {
    max-width: 342px;
    margin-top: 20px;
    font-size: 16px;
  }

  .ai-presence-hero .trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .hero-beta-note {
    max-width: 340px;
    font-size: 13px;
  }

  .founding-offer-band {
    grid-template-columns: 1fr;
  }

  .support-widget {
    right: 14px;
    bottom: 14px;
  }

  .support-widget-panel {
    right: -2px;
    bottom: 64px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 94px);
  }

  .presence-stage {
    height: 430px;
    margin-top: 28px;
    border-radius: 14px;
  }

  .presence-stage img {
    object-position: 8% 50%;
    transform: scale(1.16);
    transform-origin: left center;
  }

  .home-hero-copy {
    max-width: 100%;
  }

  .home-hero .trust-row,
  .hero-atmosphere {
    display: none;
  }

  .home-hero .button.secondary {
    display: none;
  }

  .hero-copy {
    font-size: 17px;
  }

  .mind-stage {
    min-height: 360px;
  }

  .mind-stage::before {
    inset: 78px 0 54px;
    border-radius: 26px;
  }

  .logo-orbit-card {
    top: 18px;
    width: min(230px, 78%);
    border-radius: 26px;
  }

  .signal-card {
    width: min(296px, 88%);
    padding: 15px;
    border-radius: 18px;
  }

  .signal-card-one {
    top: 248px;
  }

  .signal-card-two,
  .signal-card-three,
  .mind-core {
    display: none;
  }

  .emotion-strip {
    margin-top: -260px;
  }

  body:has(.ai-presence-hero) .emotion-strip {
    margin-top: 0;
    padding: 34px 24px;
    overflow: hidden;
  }

  .emotion-strip p {
    font-size: 30px;
  }

  body:has(.ai-presence-hero) .emotion-strip p {
    max-width: 320px;
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  body:has(.ai-presence-hero) .emotion-strip p:last-child {
    font-size: 18px;
    line-height: 1.45;
  }

  .principles,
  .feature-grid,
  .faq-grid,
  .trust-principles {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .footer {
    gap: 34px;
  }

  .legal-header {
    padding: 14px 16px;
  }

  .legal-header .brand span:last-child {
    display: inline;
  }

  .legal-header .header-cta {
    font-size: 12px;
  }
}
/* XPRIZE guided product demonstration */
.judge-page { background: #061716; color: #eef9f5; }
.judge-page .site-header { position: relative; background: rgba(6, 23, 22, .94); border-color: rgba(164, 220, 201, .16); color: #eef9f5; }
.judge-page .brand, .judge-page .header-login { color: #eef9f5; }
.judge-header { justify-content: space-between; }
.judge-label { color: #9cc7ba; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.judge-hero { min-height: 72vh; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; padding: clamp(4rem, 9vw, 8rem) max(5vw, calc((100vw - 1240px) / 2)); background: radial-gradient(circle at 75% 20%, rgba(36, 164, 130, .2), transparent 36%), linear-gradient(145deg, #061716, #0b2723); }
.judge-hero h1 { margin: .6rem 0 1.4rem; max-width: 900px; font-size: clamp(2.8rem, 6.5vw, 6.3rem); line-height: .98; letter-spacing: -.055em; }
.judge-hero h1 span { color: #79dfbd; }
.judge-lead { max-width: 760px; color: #c1d8d0; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.65; }
.judge-page .button.secondary { color: #eef9f5; border-color: rgba(238, 249, 245, .32); }
.judge-thesis { display: grid; gap: 1rem; padding: 2rem; border: 1px solid rgba(121, 223, 189, .28); border-radius: 24px; background: rgba(255, 255, 255, .05); box-shadow: 0 30px 90px rgba(0, 0, 0, .25); }
.judge-thesis strong { color: #79dfbd; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.judge-thesis p { margin: 0 0 .5rem; font-size: 1.25rem; line-height: 1.55; }
.judge-thesis span { padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.1); color: #c1d8d0; }
.judge-proof { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1240px; margin: -2.2rem auto 0; position: relative; padding: 0 2rem; }
.judge-proof article { display: grid; gap: .2rem; padding: 1.5rem; color: #102421; background: #effaf6; border-right: 1px solid #c7dfd6; }
.judge-proof article:first-child { border-radius: 18px 0 0 18px; }.judge-proof article:last-child { border: 0; border-radius: 0 18px 18px 0; }
.judge-proof strong { color: #0f766e; font-size: 2rem; }.judge-proof span { font-size: .86rem; font-weight: 700; }
.judge-demo, .judge-architecture { max-width: 1240px; margin: 0 auto; }
.judge-page .section-heading h2 { color: #eef9f5; }.judge-page .section-heading p:not(.eyebrow) { color: #a9c4bb; }
.judge-step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.judge-step-grid article { padding: 1.7rem; border: 1px solid rgba(164, 220, 201, .18); border-radius: 20px; background: rgba(255,255,255,.035); }
.judge-step-grid article:last-child { grid-column: 1 / -1; }
.judge-step-grid span { color: #79dfbd; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.judge-step-grid h3 { margin: .7rem 0; font-size: 1.35rem; }.judge-step-grid p { color: #b7cec6; line-height: 1.6; }
.judge-step-grid a { color: #79dfbd; font-weight: 800; text-decoration: none; }
.judge-architecture { display: grid; gap: 2rem; padding-top: 1rem; padding-bottom: 6rem; }
.judge-architecture h2 { margin: .5rem 0; max-width: 760px; font-size: clamp(2rem, 4vw, 3.8rem); }
.architecture-flow { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.architecture-flow span { flex: 1 1 150px; padding: 1.1rem; border-radius: 14px; background: #eaf8f3; color: #15332e; font-weight: 800; text-align: center; }.architecture-flow b { color: #79dfbd; }
.judge-disclosure { margin: 0; padding: 1.2rem; border-left: 3px solid #d7b66f; color: #afc7bf; background: rgba(255,255,255,.035); }
.judge-closing { padding: clamp(5rem, 10vw, 9rem) 5vw; text-align: center; background: #eaf8f3; color: #102421; }
.judge-closing p { color: #0f766e; font-weight: 800; }.judge-closing h2 { margin: 1rem auto 2rem; font-size: clamp(2.3rem, 5vw, 5rem); line-height: 1.04; letter-spacing: -.045em; }.judge-closing .hero-actions { justify-content: center; }
@media (max-width: 820px) { .judge-label { display: none; }.judge-hero { grid-template-columns: 1fr; }.judge-proof { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding: 1rem; }.judge-proof article, .judge-proof article:first-child, .judge-proof article:last-child { border-radius: 0; border: 1px solid #c7dfd6; }.judge-step-grid { grid-template-columns: 1fr; }.judge-step-grid article:last-child { grid-column: auto; }.architecture-flow b { display: none; } }
@media (max-width: 520px) { .judge-proof { grid-template-columns: 1fr; }.judge-hero { padding-top: 3rem; }.judge-header .header-login { font-size: .8rem; } }
