:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #eef8ff;
  --surface-mint: #eafcfa;
  --ink: #172033;
  --muted: #617089;
  --line: rgba(24, 48, 82, 0.11);
  --blue: #236fce;
  --blue-dark: #15569f;
  --aqua: #27b9c9;
  --teal: #177c84;
  --success: #14795c;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(24, 50, 88, 0.12);
  --shadow-soft: 0 14px 38px rgba(24, 50, 88, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(39, 185, 201, 0.16), transparent 28rem),
    radial-gradient(circle at 100% 2%, rgba(35, 111, 206, 0.15), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }
p, h1, h2, h3, h4 { margin-top: 0; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 251, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo-shell {
  width: 58px;
  height: 44px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 111, 206, 0.13);
  border-radius: 16px;
  background: linear-gradient(135deg, #eefaff, #ffffff);
  box-shadow: 0 10px 26px rgba(35, 111, 206, 0.13);
  overflow: hidden;
}
.brand-logo-shell img {
  width: 48px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.brand-copy strong {
  display: block;
  text-transform: lowercase;
  font-size: 1.04rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #40526f;
  font-size: 0.92rem;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #24456f;
  background: white;
  cursor: pointer;
  font-weight: 850;
  font-size: 1.15rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(246, 251, 255, 0.98);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: grid; gap: 10px; padding: 14px 0 18px; }
.mobile-menu a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  color: #31476a;
  font-weight: 720;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  font-size: 0.94rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: 0.66; transform: none; }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 14px 30px rgba(35, 111, 206, 0.26);
}
.btn-secondary {
  color: #1f3d66;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(24, 50, 88, 0.07);
}
.btn-quiet {
  color: var(--blue-dark);
  background: rgba(35, 111, 206, 0.08);
}

.hero { padding: 88px 0 74px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #126c75;
  background: rgba(39, 185, 201, 0.12);
  font-size: 0.86rem;
  font-weight: 780;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: -0.067em;
}
h1 .accent { color: var(--blue); }
.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: #4e617e;
  font-size: 1.16rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 0.88rem; }

.hero-visual {
  min-height: 474px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}
.vision-label { color: var(--muted); font-size: 0.86rem; font-weight: 760; }
.vision-center {
  margin: 18px 0;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(35, 111, 206, 0.11), rgba(39, 185, 201, 0.13));
}
.vision-center strong { display: block; font-size: 1.4rem; letter-spacing: -0.035em; }
.vision-center p { margin: 6px 0 0; color: #53677f; }
.product-preview-grid { display: grid; gap: 14px; }
.product-preview {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.preview-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: var(--surface-soft);
  font-weight: 850;
}
.product-preview:nth-child(2) .preview-icon { color: var(--teal); background: var(--surface-mint); }
.product-preview h3 { margin-bottom: 4px; font-size: 1.05rem; letter-spacing: -0.02em; }
.product-preview p { margin: 0; color: var(--muted); font-size: 0.91rem; }
.product-preview { transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; }
.product-preview:hover, .product-preview:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(35, 111, 206, 0.23);
  box-shadow: 0 14px 28px rgba(24, 50, 88, 0.09);
}


section { padding: 76px 0; }
.section-tint {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(234, 252, 250, 0.44));
}
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head.compact { margin-bottom: 24px; }
.section-head h2 {
  margin-bottom: 15px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.07rem; }
.kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.product-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(35, 111, 206, 0.08);
}
.product-card.diary-card::after { background: rgba(39, 185, 201, 0.12); }
.product-badge {
  width: max-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(35, 111, 206, 0.09);
  font-size: 0.8rem;
  font-weight: 800;
}
.diary-card .product-badge { color: var(--teal); background: rgba(39, 185, 201, 0.12); }
.product-card h3 { margin-bottom: 10px; font-size: 2rem; letter-spacing: -0.045em; }
.product-card > p { color: var(--muted); font-size: 1.02rem; }
.product-points {
  display: grid;
  gap: 10px;
  margin: 8px 0 26px;
  padding: 0;
  list-style: none;
  color: #3e5370;
}
.product-points li { display: flex; gap: 9px; align-items: flex-start; }
.product-points li::before { content: "✓"; color: var(--success); font-weight: 850; }
.product-card .card-action { margin-top: auto; align-self: flex-start; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .step-card, .why-card, .use-card, .privacy-card, .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}
.feature-card, .step-card, .why-card, .privacy-card { padding: 24px; }
.number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 13px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(35, 111, 206, 0.11), rgba(39, 185, 201, 0.15));
  font-weight: 830;
}
.feature-card h3, .step-card h3, .why-card h3, .privacy-card h3 { margin-bottom: 8px; font-size: 1.13rem; letter-spacing: -0.022em; }
.feature-card p, .step-card p, .why-card p, .privacy-card p { margin: 0; color: var(--muted); }

.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.use-card {
  min-height: 102px;
  padding: 19px 20px;
  display: flex;
  align-items: center;
  color: #31476a;
  font-weight: 730;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.vision-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}
.vision-card p { color: #4e617e; }
.vision-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.vision-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #35506d;
  background: white;
  font-weight: 670;
}

.cta { padding: 88px 0; text-align: center; }
.cta-box {
  padding: 50px 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(35, 111, 206, 0.1), rgba(39, 185, 201, 0.16));
  box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: 14px; font-size: clamp(2.1rem, 4vw, 3.55rem); line-height: 1.04; letter-spacing: -0.05em; }
.cta p { max-width: 680px; margin: 0 auto 24px; color: var(--muted); font-size: 1.07rem; }

footer { padding: 44px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--ink); }
.footer-brand img { width: 48px; height: 34px; object-fit: contain; }
.footer-brand strong { text-transform: lowercase; }
.footer-small { max-width: 760px; font-size: 0.87rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-links a:hover { color: var(--blue); text-decoration: underline; }
.contact-block { text-align: right; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  padding: 22px;
  overflow: auto;
  background: rgba(10, 20, 35, 0.48);
}
.modal.open { display: grid; place-items: center; }
.modal-panel {
  position: relative;
  width: min(570px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 32px 90px rgba(5, 15, 35, 0.3);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: #526276;
  cursor: pointer;
  font-size: 23px;
}
.modal h2 { margin: 0 44px 8px 0; font-size: 2rem; letter-spacing: -0.04em; }
.modal > .modal-panel > p { color: var(--muted); }
form { display: grid; gap: 14px; margin-top: 18px; }
label { display: grid; gap: 7px; color: #40526f; font-size: 0.91rem; font-weight: 720; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(20, 36, 64, 0.15);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: #fbfdff;
}
input:focus, textarea:focus, select:focus { border-color: rgba(35, 111, 206, 0.5); box-shadow: 0 0 0 4px rgba(35, 111, 206, 0.1); }
textarea { min-height: 112px; resize: vertical; }
.field-note { color: var(--muted); font-size: 0.79rem; font-weight: 500; }
.form-status { min-height: 22px; color: var(--muted); font-size: 0.9rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

/* Diary page */
.product-header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(39, 185, 201, 0.12);
  font-size: 0.75rem;
  font-weight: 800;
}
.diary-hero { padding: 82px 0 68px; }
.diary-hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 44px; align-items: center; }
.diary-hero h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
.beta-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.87rem;
}
.beta-note span:not(:last-child)::after { content: "·"; margin-left: 7px; }
.diary-app-preview {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  min-height: 535px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}
.diary-sidebar { padding: 22px; background: linear-gradient(180deg, #f5fbff, #eef9fb); border-right: 1px solid var(--line); }
.preview-brand { display: flex; gap: 9px; align-items: center; margin-bottom: 22px; font-weight: 800; }
.preview-brand img { width: 42px; height: 30px; object-fit: contain; }
.preview-section-label { margin: 20px 0 8px; color: var(--muted); font-size: 0.72rem; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.entry-row { padding: 12px; border-radius: 14px; color: #4b6078; font-size: 0.83rem; }
.entry-row.active { color: #24496f; background: white; box-shadow: 0 8px 18px rgba(24, 50, 88, 0.08); }
.entry-row strong { display: block; color: inherit; }
.entry-row span { display: block; margin-top: 3px; color: #7a889b; font-size: 0.74rem; }
.diary-main-preview { padding: 26px; background: #fff; }
.preview-topline { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 20px; }
.preview-topline span { color: var(--muted); font-size: 0.78rem; }
.mood-pill { padding: 6px 9px; border-radius: 999px; color: #23756f !important; background: #e7faf7; font-weight: 750; }
.entry-paper { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fffdf9; }
.entry-paper h3 { margin-bottom: 6px; font-size: 1.28rem; letter-spacing: -0.03em; }
.entry-paper time { color: var(--muted); font-size: 0.78rem; }
.entry-paper p { margin: 14px 0 0; color: #536276; font-family: Georgia, "Times New Roman", serif; font-size: 0.95rem; line-height: 1.7; }
.memory-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(39, 185, 201, 0.2);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(39, 185, 201, 0.1), rgba(35, 111, 206, 0.06));
}
.memory-card small { color: var(--teal); font-weight: 820; }
.memory-card h4 { margin: 7px 0 4px; font-size: 1rem; }
.memory-card p { margin: 0; color: var(--muted); font-size: 0.83rem; }
.memory-entry { margin-top: 12px; padding: 12px; border-radius: 14px; background: rgba(255, 255, 255, 0.78); color: #40556e; font-size: 0.82rem; }
.diary-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diary-feature { padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.88); box-shadow: var(--shadow-soft); }
.diary-feature-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 14px; color: var(--teal); background: rgba(39, 185, 201, 0.12); font-weight: 850; }
.diary-feature h3 { margin-bottom: 8px; font-size: 1.12rem; }
.diary-feature p { margin: 0; color: var(--muted); }
.diary-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.beta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}
.beta-list { margin: 0; padding-left: 21px; color: var(--muted); }
.beta-list li { margin-bottom: 8px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 20px 22px; }
.faq-item h3 { margin-bottom: 7px; font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); }
.diary-footer-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; text-align: center; font-size: 0.88rem; }

/* Legal pages */
.legal-main { padding: 54px 0 74px; }
.legal-card {
  padding: clamp(25px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}
.legal-card h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-card h2 { margin: 36px 0 9px; font-size: 1.48rem; letter-spacing: -0.03em; }
.legal-card h3 { margin: 24px 0 8px; font-size: 1.08rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-updated { margin-bottom: 28px; color: var(--muted); }
.legal-note {
  margin: 22px 0;
  padding: 15px 17px;
  border: 1px solid rgba(35, 111, 206, 0.16);
  border-radius: 16px;
  background: rgba(35, 111, 206, 0.06);
  color: #445b78;
}
.legal-toc {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fcff;
}
.legal-toc a { color: var(--blue); }
.legal-card a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-card strong { color: var(--ink); }

.not-found { min-height: 72vh; display: grid; place-items: center; padding: 60px 0; text-align: center; }
.not-found-card { max-width: 650px; padding: 46px; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.not-found-card h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--blue); }

@media (max-width: 980px) {
  .nav-links, .nav-actions .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .diary-hero-grid, .vision-card, .footer-grid, .beta-panel { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr; }
  .features, .diary-feature-grid { grid-template-columns: 1fr 1fr; }
  .steps, .use-grid { grid-template-columns: 1fr 1fr; }
  .contact-block { text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero, .diary-hero { padding-top: 52px; }
  h1 { font-size: 3.35rem; }
  .brand-copy span { display: none; }
  .brand { min-width: auto; }
  .product-header-label { display: none; }
  .features, .steps, .why-grid, .use-grid, .diary-feature-grid, .diary-steps, .privacy-grid { grid-template-columns: 1fr; }
  .diary-app-preview { grid-template-columns: 1fr; }
  .diary-sidebar { display: none; }
  .hero-actions .btn, .cta .btn { width: 100%; }
  .hero-visual, .product-card, .vision-card, .beta-panel { padding: 24px; }
  .footer-grid { gap: 18px; }
}

.product-header-label.ai-label {
  color: var(--blue-dark);
  background: rgba(35, 111, 206, 0.09);
}

.call-card {
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}
.call-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #0e7467;
  background: #e8fbf6;
  font-size: 0.84rem;
  font-weight: 760;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20c997;
}
.wave {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 28px;
}
.wave span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  opacity: 0.75;
}
.wave span:nth-child(1) { height: 22px; }
.wave span:nth-child(2) { height: 38px; }
.wave span:nth-child(3) { height: 54px; }
.wave span:nth-child(4) { height: 31px; }
.wave span:nth-child(5) { height: 47px; }
.wave span:nth-child(6) { height: 25px; }
.wave span:nth-child(7) { height: 43px; }
.wave span:nth-child(8) { height: 29px; }
.bubble {
  margin: 12px 0;
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
}
.bubble.caller { color: #2c4566; background: var(--surface-soft); }
.bubble.agent { color: #24505a; background: var(--surface-mint); }
.outcome {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  color: #31526f;
  background: linear-gradient(135deg, rgba(35, 111, 206, 0.10), rgba(39, 185, 201, 0.11));
  font-weight: 680;
}


/* Dedicated product page branding */
.product-brand-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 315px;
}
.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.product-brand-copy strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.product-brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.1;
}
.parent-brand-link {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 720;
  line-height: 1.25;
}
.parent-brand-link:hover,
.parent-brand-link:focus-visible {
  color: var(--blue);
}

.product-badge-with-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #16828e, #236fce);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.status-pill-hero {
  padding: 4px 9px;
  font-size: 0.7rem;
}
.diary-eyebrow {
  gap: 10px;
}
.access-heading {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}
.access-copy {
  color: var(--muted);
}

.product-footer-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.88rem;
}
.product-footer-line a {
  color: var(--muted);
}
.product-footer-line a:hover,
.product-footer-line a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.time-badge {
  min-width: 60px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1180px) {
  .product-brand-wrap {
    min-width: 270px;
  }
  .parent-brand-link {
    max-width: 88px;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 8px;
  }
  .product-brand-wrap {
    min-width: 0;
    flex: 1;
    gap: 8px;
  }
  .product-brand {
    min-width: 0;
    gap: 8px;
  }
  .product-brand .brand-logo-shell {
    width: 48px;
    height: 40px;
    flex: 0 0 48px;
  }
  .product-brand .brand-logo-shell img {
    width: 40px;
    height: 29px;
  }
  .product-brand-copy {
    min-width: 0;
  }
  .product-brand-copy strong {
    font-size: clamp(0.88rem, 4.1vw, 1rem);
    white-space: nowrap;
  }
  .product-brand-copy span {
    display: none;
  }
  .parent-brand-link {
    max-width: 72px;
    padding-left: 8px;
    font-size: 0.63rem;
    line-height: 1.15;
  }
  .diary-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 0.98;
  }
  .hero-copy {
    font-size: 1.03rem;
  }
  .eyebrow {
    max-width: 100%;
    font-size: 0.78rem;
  }
  .beta-note {
    font-size: 0.8rem;
  }
  .product-footer-line {
    gap: 6px;
    font-size: 0.8rem;
  }
}


/* Modern visual refinement */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --surface-mint: #ecfdf9;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --aqua: #14b8a6;
  --teal: #0f766e;
  --success: #047857;
  --danger: #b42318;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}

body {
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.ai-theme {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --aqua: #14b8a6;
  --surface-soft: #eff6ff;
  --surface-mint: #ecfdf9;
}
body.diary-theme {
  --blue: #0f766e;
  --blue-dark: #115e59;
  --aqua: #7c6ee6;
  --teal: #0f766e;
  --surface-soft: #f0fdfa;
  --surface-mint: #f5f3ff;
  background: #fafcfb;
}
body.menu-open,
body.modal-open { overflow: hidden; }

h1, h2, h3, h4,
.brand-copy strong,
.product-brand-copy strong,
.btn,
.kicker,
.eyebrow {
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
}
h1 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
  font-weight: 750;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 720;
}
h3 { letter-spacing: -0.025em; }

.site-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
}
.nav { min-height: 72px; gap: 18px; }
.brand-logo-shell {
  width: 52px;
  height: 40px;
  flex-basis: 52px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}
.brand-logo-shell img { width: 48px; height: 34px; }
.brand-copy strong {
  font-size: 1rem;
  font-weight: 760;
}
.brand-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.parent-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 620;
}
.parent-nav > a:hover,
.parent-nav > a:focus-visible { color: var(--blue); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 2px;
  border: 0;
  color: #475569;
  background: transparent;
  cursor: pointer;
  font-weight: 620;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--blue); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -40px;
  width: 330px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.nav-dropdown-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 14px;
  border-radius: 13px;
}
.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible { background: var(--surface-soft); }
.nav-dropdown-panel strong { display: block; font-size: 0.94rem; }
.nav-dropdown-panel span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.78rem; }

.product-header .nav { justify-content: space-between; }
.product-brand-wrap {
  min-width: 0;
  gap: 10px;
}
.product-brand { gap: 8px; }
.product-brand-copy strong {
  font-size: 1.02rem;
  font-weight: 760;
  white-space: nowrap;
}
.product-brand-copy span { display: none; }
.parent-brand-link {
  max-width: none;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 620;
  white-space: nowrap;
}
.product-page .menu-toggle { display: grid; }
.product-page .nav-links { display: none; }

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}
.menu-toggle:hover,
.menu-toggle:focus-visible { border-color: #cbd5e1; background: var(--surface-soft); }
.menu-icon { width: 18px; display: grid; gap: 4px; }
.menu-icon span { display: block; height: 1.5px; border-radius: 999px; background: currentColor; }
.parent-menu-toggle { display: none; }

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.menu-drawer.open { opacity: 1; visibility: visible; }
.menu-drawer-panel {
  width: min(390px, calc(100% - 24px));
  height: 100%;
  padding: 24px;
  background: #ffffff;
  box-shadow: -20px 0 60px rgba(15, 23, 42, 0.14);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}
.menu-drawer.open .menu-drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.08rem; }
.drawer-head span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.78rem; }
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}
.drawer-links { display: grid; gap: 6px; padding: 18px 0; }
.drawer-links a {
  display: block;
  padding: 14px 12px;
  border-radius: 13px;
  color: var(--ink);
}
.drawer-links a:hover,
.drawer-links a:focus-visible { background: var(--surface-soft); }
.drawer-links strong { font-size: 0.95rem; }
.drawer-links span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.78rem; }
.drawer-cta { width: 100%; }

.btn {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 680;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--blue) 22%, transparent);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-secondary:hover { border-color: #cbd5e1; background: var(--surface-soft); }

.hero,
.diary-hero {
  position: relative;
  padding: 94px 0 86px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero::before,
.diary-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  right: -130px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 9%, transparent);
  filter: blur(2px);
  pointer-events: none;
}
.diary-theme .diary-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
}
.hero-grid,
.diary-hero-grid { gap: clamp(36px, 5vw, 68px); }
.eyebrow {
  margin-bottom: 20px;
  padding: 7px 11px;
  color: var(--blue-dark);
  background: color-mix(in srgb, var(--blue) 9%, #ffffff);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.status-pill {
  background: #7c3aed;
  box-shadow: none;
}
.diary-theme .status-pill { background: #7c3aed; }
.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: #526175;
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
}
.hero-note { color: var(--muted); }

section { padding: 84px 0; }
.section-tint {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f1f5f9;
}
.diary-theme .section-tint { background: #f4f9f7; }
.section-head { margin-bottom: 38px; }
.section-head p { max-width: 740px; }
.kicker {
  color: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  font-weight: 760;
}

.hero-visual,
.call-card,
.diary-app-preview {
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.hero-visual { padding: 26px; }
.vision-center {
  border: 1px solid color-mix(in srgb, var(--blue) 15%, #ffffff);
  background: color-mix(in srgb, var(--blue) 6%, #ffffff);
}
.product-preview,
.product-card,
.feature-card,
.use-card,
.step-card,
.why-card,
.diary-feature,
.privacy-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}
.product-preview:hover,
.product-preview:focus-visible {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--line));
  box-shadow: var(--shadow-soft);
}
.product-card { padding: 30px; }
.product-card.diary-card { background: #fbfdfc; }
.product-badge {
  color: var(--blue-dark);
  background: color-mix(in srgb, var(--blue) 8%, #ffffff);
}
.product-card .btn { align-self: flex-start; }
.number,
.diary-feature-icon {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 8%, #ffffff);
}
.vision-card,
.beta-panel,
.cta-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}
.cta-box { background: color-mix(in srgb, var(--blue) 4%, #ffffff); }

.call-card { padding: 28px; }
.live-badge {
  color: var(--blue-dark);
  background: color-mix(in srgb, var(--blue) 8%, #ffffff);
}
.wave span { background: linear-gradient(180deg, var(--aqua), var(--blue)); }
.bubble { border-radius: 16px; }
.bubble.caller { background: #f1f5f9; }
.bubble.agent { background: #ecfdf5; }
.outcome {
  border: 1px solid color-mix(in srgb, var(--blue) 14%, #ffffff);
  border-radius: 16px;
  background: color-mix(in srgb, var(--blue) 6%, #ffffff);
}

.diary-sidebar {
  background: #f4f9f7;
}
.entry-row.active { box-shadow: none; border: 1px solid var(--line); }
.entry-paper {
  border-radius: 16px;
  background: #fffdfa;
}
.entry-paper p {
  color: #475569;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.75;
}
.memory-card {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  background: #f0fdfa;
}
.diary-feature,
.privacy-card { padding: 26px; }
.beta-panel { padding: 34px; }

footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.product-footer-line { color: var(--muted); }
.footer-brand img { width: 50px; height: 36px; object-fit: contain; }
.footer-small { color: var(--muted); }

.modal { background: rgba(15, 23, 42, 0.46); backdrop-filter: blur(4px); }
.modal-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.20);
}
input, textarea, select {
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #ffffff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 11%, transparent);
}

.legal-main { background: #f8fafc; }
.legal-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}
.legal-note { background: #eff6ff; }
.legal-toc { background: #f8fafc; }

@media (max-width: 980px) {
  .parent-nav,
  .parent-theme .nav-actions .nav-cta { display: none; }
  .parent-menu-toggle { display: grid; }
  .product-page .nav-actions .nav-cta { display: inline-flex; }
  .hero-grid,
  .diary-hero-grid { gap: 44px; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 66px; }
  .brand-logo-shell {
    width: 46px;
    height: 36px;
    flex-basis: 46px;
  }
  .brand-logo-shell img { width: 42px; height: 30px; }
  .brand-copy strong,
  .product-brand-copy strong { font-size: 0.92rem; }
  .brand-copy span { display: none; }
  .parent-brand-link {
    padding-left: 8px;
    font-size: 0.62rem;
  }
  .product-page .nav-actions .nav-cta { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero,
  .diary-hero { padding: 64px 0 58px; }
  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }
  h2 { font-size: clamp(1.8rem, 8vw, 2.55rem); }
  section { padding: 64px 0; }
  .eyebrow { font-size: 0.74rem; }
  .hero-copy { font-size: 1rem; }
  .hero-visual,
  .call-card,
  .product-card,
  .vision-card,
  .beta-panel { padding: 22px; }
  .diary-main-preview { padding: 20px; }
  .product-footer-line { line-height: 1.8; }
  .menu-drawer-panel { width: min(360px, calc(100% - 18px)); padding: 20px; }
}


/* =========================================================
   Immersive product storytelling concept
   ========================================================= */
:root {
  --launch-paper: #f5f2ec;
  --launch-paper-2: #ebe8e1;
  --launch-ink: #111318;
  --launch-muted: #62666f;
  --launch-night: #0d1420;
  --launch-night-2: #111b2b;
  --launch-blue: #3b70ff;
  --launch-cyan: #35c7d2;
  --launch-teal: #0f8b89;
  --launch-teal-dark: #0a6568;
  --launch-violet: #8c78de;
  --launch-border: rgba(17, 19, 24, 0.14);
  --launch-wide: 1440px;
}

.launch-theme {
  color: var(--launch-ink);
  background: var(--launch-paper);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
}
.launch-theme h1,
.launch-theme h2,
.launch-theme h3,
.launch-theme strong,
.legal-theme h1,
.legal-theme h2,
.legal-theme h3 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}
.wide-container { width: min(var(--launch-wide), calc(100% - 64px)); margin: 0 auto; }
.launch-header { border-bottom: 1px solid rgba(17,19,24,.10); background: rgba(245,242,236,.84); backdrop-filter: blur(20px); }
.ai-launch .launch-header { background: rgba(13,20,32,.83); border-color: rgba(255,255,255,.12); color: white; }
.diary-launch .launch-header { background: rgba(243,238,231,.86); }
.launch-nav { min-height: 72px; display: flex; align-items: center; gap: 22px; }
.launch-brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.launch-brand img { width: 48px; height: 34px; object-fit: contain; }
.launch-brand span { display: grid; }
.launch-brand strong { font-size: .98rem; line-height: 1.05; letter-spacing: -.025em; }
.launch-brand small { margin-top: 4px; color: var(--launch-muted); font-size: .68rem; }
.ai-launch .launch-brand small { color: rgba(255,255,255,.64); }
.product-wordmark strong { text-transform: none; }
.by-somporko { margin-right: auto; padding-left: 18px; border-left: 1px solid rgba(17,19,24,.16); color: var(--launch-muted); font-size: .72rem; font-weight: 650; }
.ai-launch .by-somporko { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.64); }
.launch-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.launch-text-link { font-size: .86rem; font-weight: 650; }
.launch-menu-button { width: 45px; height: 45px; display: grid; place-content: center; gap: 6px; border: 1px solid rgba(17,19,24,.16); border-radius: 50%; background: rgba(255,255,255,.58); cursor: pointer; }
.ai-launch .launch-menu-button { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.launch-menu-button span { display: block; width: 17px; height: 1.5px; background: currentColor; }
.launch-menu-button span:last-child { transform: translateX(4px); width: 13px; }
.btn-dark { color: white; background: var(--launch-ink); box-shadow: none; }
.btn-light { color: var(--launch-ink); background: white; box-shadow: none; }
.btn-outline-light { color: white; border: 1px solid rgba(255,255,255,.44); background: transparent; }
.btn-teal { color: white; background: var(--launch-teal); box-shadow: none; }
.launch-arrow-link { display: inline-flex; align-items: center; gap: 9px; border: 0; background: none; padding: 8px 0; color: inherit; cursor: pointer; font-weight: 650; font-size: .92rem; }
.launch-arrow-link span, .story-link span { transition: transform .18s ease; }
.launch-arrow-link:hover span, .story-link:hover span { transform: translate(3px,-3px); }

.launch-drawer { position: fixed; inset: 0; z-index: 120; display: block; pointer-events: none; background: rgba(7,10,15,0); transition: background .25s ease; }
.launch-drawer.open { pointer-events: auto; background: rgba(7,10,15,.48); }
.launch-drawer .menu-drawer-panel { position: absolute; top: 0; right: 0; width: min(440px, 92vw); height: 100%; padding: 28px; transform: translateX(102%); transition: transform .3s cubic-bezier(.2,.8,.2,1); background: #fbfaf7; color: var(--launch-ink); box-shadow: -30px 0 80px rgba(0,0,0,.15); }
.launch-drawer.open .menu-drawer-panel { transform: translateX(0); }
.launch-drawer .drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--launch-border); }
.launch-drawer .drawer-head span { font-family: Manrope, sans-serif; font-size: 1.05rem; font-weight: 750; }
.launch-drawer .drawer-close { width: 40px; height: 40px; border: 1px solid var(--launch-border); border-radius: 50%; background: transparent; font-size: 1.5rem; cursor: pointer; }
.launch-drawer .drawer-links { display: grid; margin: 28px 0; }
.launch-drawer .drawer-links a { display: grid; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--launch-border); }
.launch-drawer .drawer-links strong { font-size: 1.12rem; }
.launch-drawer .drawer-links span { color: var(--launch-muted); font-size: .82rem; }
.launch-drawer .drawer-cta { width: 100%; }

.launch-hero { overflow: hidden; }
.launch-hero-inner, .ai-hero-copy, .diary-hero-copy { text-align: center; }
.parent-hero { padding: 132px 0 0; background: radial-gradient(circle at 50% 12%, rgba(255,255,255,.98), transparent 34rem), var(--launch-paper); }
.launch-kicker { margin: 0 0 22px; font-size: .75rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.launch-display { max-width: 1200px; margin: 0 auto 30px; font-size: clamp(3.4rem, 7.8vw, 8.4rem); line-height: .94; letter-spacing: -.072em; text-wrap: balance; }
.launch-lead { max-width: 760px; margin: 0 auto 30px; color: var(--launch-muted); font-size: clamp(1.02rem, 1.6vw, 1.28rem); line-height: 1.58; text-wrap: balance; }
.launch-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.centered-actions { justify-content: center; }
.parent-product-stage { height: 680px; margin-top: 88px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 34px 34px 0 0; box-shadow: 0 45px 120px rgba(18,22,31,.18); }
.stage-half { position: relative; overflow: hidden; padding: 58px; display: flex; flex-direction: column; justify-content: space-between; transition: flex .35s ease; }
.stage-half:hover { z-index: 2; }
.stage-ai { color: white; background: radial-gradient(circle at 80% 12%, rgba(53,199,210,.28), transparent 28rem), linear-gradient(135deg, #0d1420, #14233a); }
.stage-diary { color: #163134; background: radial-gradient(circle at 88% 12%, rgba(140,120,222,.24), transparent 28rem), linear-gradient(145deg, #d7eee9, #f1e8dd); }
.stage-label { display: inline-flex; gap: 8px; align-items: center; font-size: .76rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.stage-label em { padding: 4px 8px; border-radius: 999px; color: white; background: var(--launch-teal); font-style: normal; font-size: .62rem; }
.stage-copy h2 { margin: 24px 0 20px; font-size: clamp(2.3rem, 3.6vw, 4.3rem); line-height: 1.02; letter-spacing: -.052em; }
.stage-link { font-size: .88rem; font-weight: 650; }
.mini-call-window, .mini-diary-window { width: min(100%, 470px); align-self: flex-end; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.10); backdrop-filter: blur(16px); box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.mini-call-head { display: flex; justify-content: space-between; font-size: .78rem; }
.mini-wave { height: 78px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.mini-wave i, .large-wave i, .hero-wave i { width: 6px; border-radius: 999px; background: linear-gradient(180deg, var(--launch-cyan), var(--launch-blue)); animation: soundWave 1.4s ease-in-out infinite alternate; }
.mini-wave i:nth-child(1), .large-wave i:nth-child(1), .hero-wave i:nth-child(1) { height: 22%; }.mini-wave i:nth-child(2), .large-wave i:nth-child(2), .hero-wave i:nth-child(2) { height: 58%; animation-delay: -.4s }.mini-wave i:nth-child(3), .large-wave i:nth-child(3), .hero-wave i:nth-child(3) { height: 92%; animation-delay: -.8s }.mini-wave i:nth-child(4), .large-wave i:nth-child(4), .hero-wave i:nth-child(4) { height: 42%; animation-delay: -.2s }.mini-wave i:nth-child(5), .large-wave i:nth-child(5), .hero-wave i:nth-child(5) { height: 74%; animation-delay: -.65s }.mini-wave i:nth-child(6), .large-wave i:nth-child(6), .hero-wave i:nth-child(6) { height: 30%; animation-delay: -.3s }
.mini-call-window p { font-size: 1.05rem; }.mini-outcome { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); font-size: .78rem; }
.mini-diary-window { color: #213a3b; background: rgba(255,255,255,.55); border-color: rgba(33,58,59,.12); }
.mini-date { font-size: .68rem; letter-spacing: .12em; }.mini-diary-window h3 { margin: 14px 0 10px; font-size: 1.35rem; }.mini-diary-window p { color: #566969; font-family: Georgia, serif; line-height: 1.65; }.mini-memory { display: grid; gap: 5px; margin-top: 18px; padding: 15px; border-radius: 15px; background: rgba(15,139,137,.10); }.mini-memory small { color: var(--launch-teal-dark); font-weight: 700; letter-spacing: .1em; }

.launch-story { min-height: 88vh; padding: 130px 0; display: flex; align-items: center; }
.story-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(60px, 8vw, 130px); align-items: center; }
.story-copy { max-width: 580px; }
.story-number { display: block; margin-bottom: 30px; font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; opacity: .66; }
.story-copy h2, .wide-story-heading h2, .trade-heading h2, .principles-intro h2, .control-heading h2, .faq-heading h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 5.4vw, 5.8rem); line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.story-copy p, .wide-story-heading p, .trade-heading p, .control-heading p { color: inherit; opacity: .72; font-size: 1.08rem; line-height: 1.65; }
.story-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 24px; font-weight: 650; }
.dark-story { color: white; background: var(--launch-night); }
.light-link { color: white; }
.immersive-call-scene { position: relative; min-height: 610px; display: grid; place-items: center; }
.call-orbit { position: absolute; border: 1px solid rgba(53,199,210,.16); border-radius: 50%; }.orbit-one { width: 620px; height: 620px; }.orbit-two { width: 440px; height: 440px; }
.call-device { position: relative; z-index: 2; width: min(100%, 590px); padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 32px; background: rgba(255,255,255,.075); backdrop-filter: blur(22px); box-shadow: 0 50px 130px rgba(0,0,0,.34); }
.call-device-top, .hero-call-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }.call-device-top div, .hero-call-header div { display: grid; gap: 5px; }.call-device-top small, .hero-call-header small { color: rgba(255,255,255,.55); font-size: .65rem; letter-spacing: .12em; }.live-time { padding: 7px 11px; border-radius: 999px; color: #bdf6f5; background: rgba(53,199,210,.12); font-size: .78rem; font-variant-numeric: tabular-nums; }
.large-wave { height: 130px; display: flex; align-items: center; justify-content: center; gap: 9px; }.large-wave i { width: 8px; }
.call-transcript { display: grid; gap: 13px; }.call-transcript p { margin: 0; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.06); }.call-transcript b { display: block; margin-bottom: 5px; color: rgba(255,255,255,.56); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.call-result { display: grid; gap: 5px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }.call-result span { color: rgba(255,255,255,.54); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.diary-story { background: #e7ece5; }.story-grid-diary { grid-template-columns: 1.25fr .75fr; }
.immersive-diary-scene { padding: 30px; border-radius: 30px; background: #d2ddd6; }
.diary-shell { min-height: 610px; display: grid; grid-template-columns: 210px 1fr; overflow: hidden; border-radius: 22px; background: #fbfaf7; box-shadow: 0 35px 90px rgba(42,58,51,.18); }
.diary-shell aside { padding: 28px 20px; border-right: 1px solid rgba(17,19,24,.09); }.diary-mark { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 12px; color: white; background: var(--launch-teal); font-weight: 800; }.diary-shell aside small { display: block; margin-bottom: 15px; color: #758078; font-size: .62rem; letter-spacing: .1em; }.diary-shell aside button { width: 100%; margin-bottom: 8px; padding: 12px; border: 0; border-radius: 10px; text-align: left; background: transparent; color: #59635d; }.diary-shell aside button.active { color: #153d3d; background: #e5f0eb; font-weight: 650; }
.diary-shell article { padding: 58px; }.entry-date { color: var(--launch-teal-dark); font-size: .65rem; font-weight: 750; letter-spacing: .12em; }.diary-shell article > h3 { max-width: 520px; margin: 18px 0 24px; font-size: 2.55rem; line-height: 1.08; letter-spacing: -.05em; }.diary-shell article > p { max-width: 600px; color: #56615c; font-family: Georgia, serif; font-size: 1.08rem; line-height: 1.8; }.entry-tags { display: flex; gap: 8px; margin: 26px 0; }.entry-tags span { padding: 6px 10px; border-radius: 999px; color: #46615c; background: #edf2ef; font-size: .7rem; }.memory-lane-card { margin-top: 36px; padding: 24px; border-radius: 18px; background: #e8f0ed; }.memory-lane-card small { color: var(--launch-teal-dark); font-size: .63rem; font-weight: 750; letter-spacing: .1em; }.memory-lane-card strong { display: block; margin: 10px 0 6px; font-size: 1.15rem; }.memory-lane-card p { margin: 0; color: #62716c; font-size: .85rem; }

.principles-section { padding: 150px 0; background: #fbfaf7; }.principles-intro { max-width: 980px; margin-bottom: 90px; }.principle-lines { border-top: 1px solid var(--launch-border); }.principle-lines article, .control-lines article { display: grid; grid-template-columns: 70px 1fr 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--launch-border); align-items: start; }.principle-lines article > span, .control-lines article > span { color: var(--launch-muted); font-size: .72rem; }.principle-lines h3, .control-lines h3 { font-size: 1.35rem; }.principle-lines p, .control-lines p { color: var(--launch-muted); }
.launch-cta { padding: 150px 0; color: white; background: var(--launch-night); text-align: center; }.launch-cta-inner h2 { max-width: 1000px; margin: 0 auto 38px; font-size: clamp(3rem,6vw,6.8rem); line-height: .96; letter-spacing: -.065em; text-wrap: balance; }

.launch-footer { padding: 48px 0; background: #fbfaf7; }.launch-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 26px; align-items: center; }.footer-wordmark { display: inline-flex; align-items: center; gap: 8px; }.footer-wordmark img { width: 44px; height: 31px; object-fit: contain; }.launch-footer p, .launch-footer small { margin: 0; color: var(--launch-muted); font-size: .78rem; }.launch-footer nav { display: flex; gap: 18px; font-size: .78rem; }.launch-footer small { grid-column: 1 / -1; }.dark-footer { color: white; background: var(--launch-night); }.dark-footer p, .dark-footer small { color: rgba(255,255,255,.58); }.diary-footer { background: #e9e3da; }

/* Somporko AI launch */
.ai-hero { padding: 135px 0 0; color: white; background: radial-gradient(circle at 50% 12%, rgba(59,112,255,.28), transparent 34rem), var(--launch-night); }.ai-hero-copy .launch-lead { color: rgba(255,255,255,.65); }.ai-hero-stage { position: relative; min-height: 720px; margin-top: 82px; display: grid; place-items: center; }.hero-call-glow { position: absolute; width: 860px; height: 500px; border-radius: 50%; background: rgba(53,199,210,.15); filter: blur(90px); }.hero-call-panel { position: relative; z-index: 2; width: min(100%, 1050px); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 34px 34px 0 0; background: rgba(255,255,255,.075); backdrop-filter: blur(24px); box-shadow: 0 50px 140px rgba(0,0,0,.36); }.hero-call-header { padding: 26px 30px; border-bottom: 1px solid rgba(255,255,255,.12); }.hero-call-body { padding: 36px; }.caller-profile { display: flex; gap: 12px; align-items: center; }.caller-profile > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #d9f9f8; background: rgba(53,199,210,.17); font-weight: 750; }.caller-profile div { display: grid; }.caller-profile small { color: rgba(255,255,255,.52); }.hero-wave { height: 145px; display: flex; align-items: center; justify-content: center; gap: 10px; }.hero-wave i { width: 8px; }.hero-wave i:nth-child(7) { height: 65%; animation-delay: -.55s }.hero-wave i:nth-child(8) { height: 35%; animation-delay: -.12s }.hero-wave i:nth-child(9) { height: 78%; animation-delay: -.76s }.hero-wave i:nth-child(10) { height: 45%; animation-delay: -.34s }.hero-wave i:nth-child(11) { height: 22%; animation-delay: -.62s }
.hero-transcript { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.hero-transcript p { margin: 0; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.06); }.hero-transcript b { display: block; margin-bottom: 7px; color: rgba(255,255,255,.48); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }.hero-transcript span { color: rgba(255,255,255,.85); }.hero-call-footer { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.12); }.hero-call-footer div { display: grid; gap: 6px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.12); }.hero-call-footer div:last-child { border: 0; }.hero-call-footer small { color: rgba(255,255,255,.46); font-size: .6rem; letter-spacing: .1em; }.hero-call-footer strong { font-size: .85rem; }
.ai-white-story { background: #f7f7f5; }.answer-scene { position: relative; min-height: 600px; display: grid; place-items: center; }.incoming-ring { position: absolute; border: 1px solid rgba(59,112,255,.18); border-radius: 50%; animation: pulseRing 3.4s ease-out infinite; }.ring-one { width: 300px; height: 300px; }.ring-two { width: 520px; height: 520px; animation-delay: -1.7s; }.incoming-center { position: relative; z-index: 2; width: 230px; height: 230px; display: grid; place-content: center; gap: 7px; border-radius: 50%; text-align: center; color: white; background: var(--launch-blue); box-shadow: 0 35px 90px rgba(59,112,255,.32); }.incoming-center span { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }.incoming-center strong { font-size: 1.4rem; }.incoming-center small { opacity: .68; }.answer-caption { position: absolute; padding: 10px 14px; border: 1px solid var(--launch-border); border-radius: 999px; background: white; font-size: .75rem; box-shadow: 0 18px 50px rgba(20,31,52,.08); }.caption-one { top: 18%; left: 8%; }.caption-two { top: 25%; right: 4%; }.caption-three { bottom: 18%; left: 14%; }
.workflow-story { color: white; background: linear-gradient(145deg, #10213b, #0d1420); }.wide-story-heading { max-width: 920px; }.wide-story-heading p { max-width: 650px; }.workflow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; margin: 80px 0; }.workflow-track article { min-height: 210px; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.06); }.workflow-track article > span { color: #90aaff; font-size: .7rem; }.workflow-track h3 { margin: 28px 0 12px; font-size: 1.45rem; }.workflow-track p { color: rgba(255,255,255,.6); }.workflow-track > i { width: 46px; height: 1px; background: rgba(255,255,255,.25); }.schedule-scene { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.06); }.schedule-calendar { padding: 30px; border-right: 1px solid rgba(255,255,255,.13); }.schedule-head { display: flex; justify-content: space-between; margin-bottom: 24px; }.schedule-head span { color: #b9c8e8; font-size: .75rem; }.time-slot { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }.time-slot b { color: #aebde1; font-size: .72rem; }.time-slot.selected { margin: 0 -14px; padding: 17px 14px; border-radius: 12px; background: var(--launch-blue); }.time-slot.selected b { color: white; }.schedule-summary { padding: 52px; }.schedule-summary small { color: #93a9d8; font-size: .65rem; letter-spacing: .1em; }.schedule-summary h3 { margin: 18px 0 10px; font-size: 2rem; }.schedule-summary p { color: rgba(255,255,255,.6); }.schedule-summary div { display: flex; gap: 10px; margin-top: 38px; }.schedule-summary div span { padding: 8px 10px; border-radius: 999px; color: #d7fafa; background: rgba(53,199,210,.12); font-size: .7rem; }
.trade-section { padding: 150px 0; overflow: hidden; background: #ecebe7; }.trade-heading { max-width: 1100px; }.trade-marquee { margin-top: 80px; display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--launch-border); }.trade-marquee span { padding: 24px 32px 24px 0; margin-right: 32px; border-bottom: 1px solid var(--launch-border); font-family: Manrope, sans-serif; font-size: clamp(1.4rem, 2.5vw, 2.4rem); font-weight: 650; letter-spacing: -.035em; }
.human-story { color: white; background: #090d14; }.human-scene { position: relative; min-height: 560px; }.human-line { position: absolute; left: 17%; right: 17%; top: 50%; height: 1px; background: linear-gradient(90deg, var(--launch-cyan), #f1b36b); }.human-node { position: absolute; width: 210px; min-height: 150px; display: grid; align-content: center; gap: 8px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: #141b27; }.human-node small { color: rgba(255,255,255,.5); }.ai-node { left: 0; top: 20%; }.decision-node { left: 50%; top: 50%; transform: translate(-50%,-50%); border-color: rgba(53,199,210,.4); }.person-node { right: 0; bottom: 18%; border-color: rgba(241,179,107,.4); }.ai-cta { background: var(--launch-blue); }

/* Somporko Diary launch */
.diary-launch { background: #f3eee7; }.diary-hero { padding: 135px 0 0; background: radial-gradient(circle at 50% 12%, rgba(255,255,255,.95), transparent 35rem), #f3eee7; }.diary-kicker { display: flex; justify-content: center; align-items: center; gap: 10px; }.beta-chip { padding: 4px 8px; border-radius: 999px; color: white; background: var(--launch-teal); font-size: .6rem; letter-spacing: .06em; }.diary-hero-stage { position: relative; min-height: 760px; margin-top: 80px; }.diary-ambient { position: absolute; border-radius: 50%; filter: blur(100px); }.ambient-one { width: 500px; height: 500px; left: -8%; top: 18%; background: rgba(15,139,137,.2); }.ambient-two { width: 560px; height: 560px; right: -5%; top: 5%; background: rgba(140,120,222,.16); }.diary-dashboard { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: 260px 1fr; overflow: hidden; border: 1px solid rgba(17,19,24,.10); border-radius: 34px 34px 0 0; background: #fbfaf7; box-shadow: 0 55px 140px rgba(47,55,50,.20); }.dashboard-sidebar { padding: 30px 22px; border-right: 1px solid rgba(17,19,24,.09); background: #f3f2ee; }.dashboard-brand { display: flex; gap: 10px; align-items: center; margin-bottom: 30px; }.dashboard-brand > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: white; background: var(--launch-teal); font-weight: 800; }.dashboard-brand strong { font-size: .82rem; }.new-reflection { width: 100%; margin-bottom: 34px; padding: 12px; border: 0; border-radius: 12px; color: white; background: var(--launch-teal); font-weight: 650; }.dashboard-sidebar > small { color: #7c817d; font-size: .59rem; letter-spacing: .1em; }.entry-link { width: 100%; display: grid; gap: 4px; margin-top: 10px; padding: 13px; border: 0; border-radius: 12px; text-align: left; background: transparent; }.entry-link b { font-size: .8rem; }.entry-link span { color: #868b87; font-size: .67rem; }.entry-link.active { background: white; box-shadow: 0 10px 30px rgba(30,44,39,.07); }.dashboard-entry { padding: clamp(40px,5vw,76px); }.dashboard-entry-top { display: flex; justify-content: space-between; }.dashboard-entry-top span { color: var(--launch-teal-dark); font-size: .63rem; font-weight: 750; letter-spacing: .12em; }.dashboard-entry-top button { border: 0; background: transparent; }.dashboard-entry > h2 { max-width: 760px; margin: 24px 0 28px; font-size: clamp(2.5rem,4.7vw,5rem); line-height: 1; letter-spacing: -.06em; }.dashboard-entry > p { max-width: 760px; color: #555f5a; font-family: Georgia,serif; font-size: 1.1rem; line-height: 1.85; }.dashboard-lower { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; margin-top: 38px; }.memory-lane-large, .continue-card { padding: 25px; border-radius: 19px; }.memory-lane-large { background: #e4eeea; }.memory-lane-large small, .continue-card small { color: var(--launch-teal-dark); font-size: .6rem; font-weight: 750; letter-spacing: .1em; }.memory-lane-large h3 { margin: 12px 0 7px; }.memory-lane-large p { margin-bottom: 17px; color: #60706a; font-size: .8rem; }.memory-lane-large a { font-size: .78rem; font-weight: 650; }.continue-card { display: flex; flex-direction: column; gap: 13px; background: #efe9f5; }.continue-card strong { font-size: 1rem; }.continue-card button { margin-top: auto; padding: 9px 12px; border: 0; border-radius: 999px; color: white; background: #7663bf; }
.reflection-story { background: #e6ece8; }.reflection-scene { min-height: 620px; position: relative; display: grid; place-items: center; }.reflection-phone { position: relative; z-index: 2; width: 320px; min-height: 570px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 8px solid #1a2425; border-radius: 44px; background: linear-gradient(180deg,#113638,#0d2021); color: white; box-shadow: 0 40px 90px rgba(25,49,46,.25); }.reflection-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.65); font-size: .7rem; }.reflection-orb { width: 150px; height: 150px; display: grid; place-items: center; margin: auto; border-radius: 50%; background: radial-gradient(circle, rgba(143,235,226,.95), rgba(15,139,137,.22) 45%, transparent 70%); }.reflection-orb i { position: absolute; width: 115px; height: 115px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; animation: breathe 3s ease-in-out infinite; }.reflection-orb i:nth-child(2) { width: 85px; height: 85px; animation-delay: -1s; }.reflection-orb i:nth-child(3) { width: 55px; height: 55px; animation-delay: -2s; }.reflection-phone p { text-align: center; font-size: 1.18rem; }.reflection-phone small { text-align: center; color: rgba(255,255,255,.55); }.reflection-entry { position: absolute; right: 3%; bottom: 2%; width: 330px; padding: 25px; border-radius: 20px; background: white; box-shadow: 0 30px 80px rgba(26,55,50,.18); }.reflection-entry small { color: var(--launch-teal-dark); font-size: .6rem; letter-spacing: .1em; }.reflection-entry h3 { margin: 14px 0 10px; font-size: 1.4rem; }.reflection-entry p { color: #68716d; font-family: Georgia,serif; }.reflection-entry span { display: inline-block; margin-top: 8px; color: var(--launch-teal-dark); font-size: .7rem; }
.memory-story { min-height: 100vh; color: #f7f2eb; background: #172526; }.memory-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }.memory-scene { position: relative; min-height: 680px; }.memory-year { position: absolute; right: 0; top: -40px; color: rgba(255,255,255,.045); font-family: Manrope,sans-serif; font-size: 12rem; font-weight: 800; }.memory-paper { position: absolute; top: 10%; left: 0; width: 55%; min-height: 470px; padding: 38px; transform: rotate(-5deg); color: #263330; background: #eee6d9; box-shadow: 0 45px 100px rgba(0,0,0,.30); }.memory-paper.current-paper { top: 24%; left: 38%; transform: rotate(4deg); background: #d9e9e4; }.memory-paper > span { color: var(--launch-teal-dark); font-size: .63rem; font-weight: 750; letter-spacing: .12em; }.memory-paper h3 { margin: 22px 0 18px; font-size: 2.1rem; line-height: 1.05; letter-spacing: -.05em; }.memory-paper p { color: #59625e; font-family: Georgia,serif; font-size: 1rem; line-height: 1.75; }.memory-paper div { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(17,19,24,.15); font-size: .72rem; }
.ask-story { padding: 150px 0; background: #faf9f6; }.centered-heading { margin: 0 auto 70px; text-align: center; }.centered-heading p { margin: 0 auto; }.ask-interface { max-width: 1000px; margin: 0 auto; overflow: hidden; border: 1px solid var(--launch-border); border-radius: 28px; background: white; box-shadow: 0 35px 90px rgba(36,47,43,.10); }.ask-prompt { padding: 32px 42px; border-bottom: 1px solid var(--launch-border); }.ask-prompt span { display: block; margin-bottom: 14px; color: var(--launch-teal-dark); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }.ask-prompt strong { font-size: clamp(1.5rem,3vw,2.6rem); line-height: 1.2; }.ask-answer { padding: 42px; background: #f1f5f2; }.ask-answer small { color: #6f7873; font-size: .62rem; letter-spacing: .1em; }.ask-answer > p { max-width: 800px; margin: 18px 0 25px; color: #43504a; font-family: Georgia,serif; font-size: 1.12rem; line-height: 1.75; }.answer-sources { display: flex; flex-wrap: wrap; gap: 9px; }.answer-sources a { padding: 8px 11px; border-radius: 999px; color: var(--launch-teal-dark); background: white; font-size: .7rem; }
.control-section { padding: 150px 0; background: #e9e4dc; }.control-heading { max-width: 920px; margin-bottom: 80px; }.control-lines { border-top: 1px solid var(--launch-border); }.early-access-section { padding: 100px 0; color: white; background: var(--launch-teal-dark); }.early-access-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }.early-access-panel h2 { margin-bottom: 24px; font-size: clamp(2.7rem,5vw,5.6rem); line-height: .98; letter-spacing: -.06em; }.early-access-panel p { max-width: 680px; color: rgba(255,255,255,.68); font-size: 1.05rem; }.early-access-panel ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }.early-access-panel li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.78); }.faq-section { padding: 130px 0; background: #faf9f6; }.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }.faq-heading h2 { font-size: clamp(2.5rem,4.4vw,4.8rem); }.faq-list { border-top: 1px solid var(--launch-border); }.faq-list details { border-bottom: 1px solid var(--launch-border); }.faq-list summary { padding: 25px 0; cursor: pointer; font-family: Manrope,sans-serif; font-size: 1.1rem; font-weight: 650; }.faq-list details p { padding: 0 0 25px; color: var(--launch-muted); }

/* Legal pages inherit the concept without changing their content */
.legal-theme { background: #f3f1ec; }.legal-launch-header { background: rgba(243,241,236,.88); }.legal-main { padding-top: 70px; }.legal-card { max-width: 1040px; margin: 0 auto; border-radius: 24px; box-shadow: none; }.legal-card h1 { font-size: clamp(3rem,6vw,5.6rem); line-height: .98; letter-spacing: -.06em; }.legal-card h2 { margin-top: 56px; font-size: 1.65rem; }.legal-card h3 { font-size: 1.1rem; }.legal-note, .legal-toc { border-radius: 15px; box-shadow: none; }

.not-found-launch { min-height: 100vh; padding: 60px 24px; display: grid; place-items: center; text-align: center; }.not-found-launch > div { max-width: 900px; }.not-found-launch > div > span { display: block; margin: 60px 0 10px; color: var(--launch-teal); font-size: .75rem; font-weight: 750; letter-spacing: .13em; }.not-found-launch h1 { font-size: clamp(3rem,7vw,7rem); line-height: .96; letter-spacing: -.06em; }.not-found-launch p { color: var(--launch-muted); }

.reveal { opacity: 1; transform: none; }
.js-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@keyframes soundWave { to { transform: scaleY(.52); opacity: .62; } }
@keyframes pulseRing { 0% { transform: scale(.68); opacity: 0; } 30% { opacity: 1; } 100% { transform: scale(1.08); opacity: 0; } }
@keyframes breathe { 0%,100% { transform: scale(.82); opacity: .35; } 50% { transform: scale(1.14); opacity: .8; } }

@media (max-width: 1100px) {
  .launch-display { font-size: clamp(3.2rem,8vw,6.6rem); }
  .parent-product-stage { height: auto; min-height: 640px; }
  .stage-half { padding: 42px; }
  .story-grid, .memory-layout { gap: 55px; }
  .diary-dashboard { grid-template-columns: 220px 1fr; }
  .dashboard-entry { padding: 45px; }
  .reflection-entry { right: -2%; }
}

@media (max-width: 900px) {
  .wide-container { width: min(100% - 36px, var(--launch-wide)); }
  .desktop-only { display: none !important; }
  .launch-nav { min-height: 66px; }
  .launch-brand small { display: none; }
  .by-somporko { margin-right: 0; font-size: .64rem; }
  .parent-hero, .ai-hero, .diary-hero { padding-top: 110px; }
  .parent-product-stage { grid-template-columns: 1fr; border-radius: 25px 25px 0 0; }
  .stage-half { min-height: 520px; }
  .launch-story { min-height: auto; padding: 100px 0; }
  .story-grid, .story-grid-diary, .memory-layout, .early-access-panel, .faq-layout { grid-template-columns: 1fr; }
  .story-grid-diary .story-copy { order: -1; }
  .story-copy { max-width: 760px; }
  .immersive-call-scene, .answer-scene, .human-scene { min-height: 520px; }
  .diary-shell { grid-template-columns: 1fr; }.diary-shell aside { display: none; }
  .workflow-track { grid-template-columns: 1fr; }.workflow-track > i { width: 1px; height: 30px; margin: 0 auto; }
  .schedule-scene { grid-template-columns: 1fr; }.schedule-calendar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero-transcript { grid-template-columns: 1fr; }.hero-call-footer { grid-template-columns: 1fr; }.hero-call-footer div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .reflection-entry { position: relative; right: auto; bottom: auto; margin: -80px 0 0 240px; }
  .memory-scene { min-height: 620px; }.memory-paper { width: 60%; }.memory-paper.current-paper { left: 35%; }
  .launch-footer-grid { grid-template-columns: 1fr 1fr; }.launch-footer nav { justify-content: flex-end; }.launch-footer small { grid-column: 1 / -1; }
  .principle-lines article, .control-lines article { grid-template-columns: 50px 1fr; }.principle-lines article p, .control-lines article p { grid-column: 2; }
}

@media (max-width: 620px) {
  .wide-container { width: min(100% - 24px, var(--launch-wide)); }
  .launch-brand img { width: 42px; height: 30px; }.launch-brand strong { font-size: .86rem; }.by-somporko { max-width: 72px; line-height: 1.15; padding-left: 10px; }
  .launch-menu-button { width: 41px; height: 41px; }
  .launch-kicker { margin-bottom: 17px; font-size: .65rem; }
  .launch-display { font-size: clamp(2.75rem,14vw,4.4rem); line-height: .98; letter-spacing: -.058em; }
  .launch-lead { font-size: .98rem; }
  .launch-actions { justify-content: center; }
  .parent-product-stage { margin-top: 60px; border-radius: 20px 20px 0 0; }
  .stage-half { min-height: 480px; padding: 30px 24px; }.stage-copy h2 { font-size: 2.4rem; }
  .mini-call-window, .mini-diary-window { padding: 19px; }
  .story-copy h2, .wide-story-heading h2, .trade-heading h2, .principles-intro h2, .control-heading h2, .faq-heading h2 { font-size: clamp(2.35rem,11vw,3.5rem); }
  .launch-story, .principles-section, .trade-section, .control-section, .faq-section, .ask-story { padding: 82px 0; }
  .call-device { padding: 23px; }.immersive-call-scene { min-height: 500px; }.call-orbit { display: none; }
  .diary-shell article { padding: 32px 24px; }.diary-shell article > h3 { font-size: 2rem; }.diary-shell { min-height: 550px; }.immersive-diary-scene { padding: 12px; }
  .principle-lines article, .control-lines article { grid-template-columns: 35px 1fr; gap: 15px; }
  .launch-cta { padding: 95px 0; }.launch-cta-inner h2 { font-size: clamp(2.6rem,12vw,4.2rem); }
  .launch-footer-grid { grid-template-columns: 1fr; text-align: center; }.footer-wordmark { justify-content: center; }.launch-footer nav { justify-content: center; flex-wrap: wrap; }.launch-footer small { grid-column: auto; }
  .ai-hero-stage { min-height: 620px; margin-top: 55px; }.hero-call-panel { border-radius: 24px 24px 0 0; }.hero-call-header { padding: 21px; }.hero-call-header strong { font-size: .78rem; }.hero-call-body { padding: 22px; }.hero-wave { height: 110px; }.hero-transcript p { padding: 14px; font-size: .82rem; }.hero-call-footer div { padding: 15px 20px; }
  .incoming-center { width: 190px; height: 190px; }.answer-caption { font-size: .65rem; }.caption-one { left: 0; }.caption-two { right: 0; }.caption-three { left: 4%; }
  .schedule-summary { padding: 30px 24px; }.schedule-summary div { flex-direction: column; align-items: flex-start; }
  .trade-marquee span { margin-right: 16px; padding-right: 16px; }
  .human-node { width: 170px; min-height: 130px; padding: 18px; }.ai-node { top: 10%; }.person-node { bottom: 8%; }.human-line { left: 10%; right: 10%; transform: rotate(16deg); }
  .diary-hero-stage { min-height: 650px; margin-top: 55px; }.diary-dashboard { min-height: 630px; grid-template-columns: 1fr; border-radius: 24px 24px 0 0; }.dashboard-sidebar { display: none; }.dashboard-entry { padding: 30px 22px; }.dashboard-entry > h2 { font-size: 2.55rem; }.dashboard-entry > p { font-size: 1rem; }.dashboard-lower { grid-template-columns: 1fr; }
  .reflection-scene { min-height: 760px; }.reflection-phone { width: 285px; min-height: 520px; }.reflection-entry { width: 285px; margin: -40px 0 0 auto; }
  .memory-scene { min-height: 560px; }.memory-year { font-size: 7rem; }.memory-paper { width: 78%; min-height: 400px; padding: 25px; }.memory-paper.current-paper { left: 20%; top: 26%; }.memory-paper h3 { font-size: 1.55rem; }.memory-paper p { font-size: .86rem; }
  .ask-prompt, .ask-answer { padding: 25px 20px; }
  .early-access-section { padding: 78px 0; }.early-access-panel { gap: 48px; }.early-access-panel h2 { font-size: 2.8rem; }
  .modal { padding: 12px; }.modal-panel { padding: 25px 20px; border-radius: 22px; }
  .legal-main { padding-top: 35px; }.legal-card { padding: 26px 20px; }.legal-card h1 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}


/* Somporko AI SaaS platform positioning */
.platform-hero {
  padding-bottom: 0;
}
.platform-hero-stage {
  position: relative;
  min-height: 760px;
  margin-top: 78px;
  display: grid;
  place-items: end center;
}
.platform-hero-glow {
  position: absolute;
  width: 980px;
  height: 560px;
  bottom: 2%;
  border-radius: 50%;
  background: rgba(53, 199, 210, 0.15);
  filter: blur(100px);
}
.platform-console {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px 32px 0 0;
  color: white;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(26px);
  box-shadow: 0 55px 150px rgba(0, 0, 0, 0.38);
}
.platform-console-top {
  min-height: 82px;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.console-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.console-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0d1420;
  background: linear-gradient(135deg, #d9fbfa, #8edfe6);
  font-weight: 800;
}
.console-brand div {
  display: grid;
  gap: 4px;
}
.console-brand small,
.console-main-head small,
.operations-top small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}
.console-brand strong {
  font-size: 0.92rem;
}
.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #c9fbef;
  background: rgba(40, 201, 151, 0.12);
  font-size: 0.72rem;
  font-weight: 650;
}
.console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c997;
}
.platform-console-body {
  min-height: 545px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 250px;
}
.console-sidebar {
  padding: 24px 16px;
  display: grid;
  align-content: start;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.console-sidebar button {
  padding: 12px 10px;
  display: flex;
  gap: 9px;
  align-items: center;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  text-align: left;
}
.console-sidebar button span {
  font-size: 0.6rem;
  opacity: 0.55;
}
.console-sidebar button.active {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}
.console-main {
  padding: 30px;
}
.console-main-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}
.console-main-head h2 {
  margin: 7px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -0.04em;
}
.console-main-head > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #c8f5f5;
  background: rgba(53, 199, 210, 0.1);
  font-size: 0.65rem;
}
.workflow-canvas {
  margin: 36px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}
.workflow-canvas > i {
  display: none;
}
.workflow-node {
  position: relative;
  min-height: 125px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}
.workflow-node:not(:last-of-type)::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 199, 210, 0.7), rgba(53, 199, 210, 0.15));
}
.workflow-node small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.56rem;
  letter-spacing: 0.11em;
}
.workflow-node strong {
  font-size: 0.82rem;
  line-height: 1.35;
}
.start-node {
  border-color: rgba(53, 199, 210, 0.35);
}
.branch-node {
  border-color: rgba(140, 120, 222, 0.38);
}
.action-node {
  border-color: rgba(40, 201, 151, 0.38);
}
.console-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.console-integrations span {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.66rem;
}
.console-config {
  padding: 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.console-config > small {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}
.console-config label {
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
}
.console-config label strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 600;
}
.console-config button {
  width: 100%;
  margin-top: 10px;
  padding: 11px;
  border: 0;
  border-radius: 999px;
  color: #0d1420;
  background: white;
  font-weight: 700;
}

.start-section {
  padding: 145px 0;
  background: #f7f7f5;
}
.start-heading {
  max-width: 1050px;
}
.start-paths {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--launch-border);
  border-bottom: 1px solid var(--launch-border);
}
.start-paths article {
  min-height: 355px;
  padding: 38px 34px;
  border-right: 1px solid var(--launch-border);
}
.start-paths article:last-child {
  border-right: 0;
}
.start-paths article > span {
  display: block;
  margin-bottom: 72px;
  color: var(--launch-muted);
  font-size: 0.7rem;
}
.start-paths small {
  color: var(--launch-blue);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.start-paths h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.start-paths p {
  color: var(--launch-muted);
  line-height: 1.65;
}
.start-paths .featured-path {
  color: white;
  background: var(--launch-blue);
}
.start-paths .featured-path > span,
.start-paths .featured-path small,
.start-paths .featured-path p {
  color: rgba(255, 255, 255, 0.72);
}

.platform-lifecycle-section {
  padding: 145px 0;
  color: white;
  background: #101a29;
}
.lifecycle-intro {
  max-width: 1050px;
}
.lifecycle-intro h2 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.lifecycle-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
  line-height: 1.65;
}
.lifecycle-rail {
  margin: 75px 0;
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  align-items: center;
}
.lifecycle-rail article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}
.lifecycle-rail article > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
}
.lifecycle-rail h3 {
  margin: 46px 0 10px;
  font-size: 1.25rem;
}
.lifecycle-rail p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}
.lifecycle-rail > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 199, 210, 0.72), rgba(53, 199, 210, 0.1));
}
.operations-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}
.operations-top {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.operations-top div:first-child {
  display: grid;
  gap: 5px;
}
.period-selector {
  display: flex;
  gap: 5px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.period-selector span {
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}
.period-selector span.active {
  color: #0d1420;
  background: white;
}
.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-card {
  min-height: 165px;
  padding: 25px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-card:last-child {
  border-right: 0;
}
.metric-card small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.metric-card strong {
  font-size: 2.3rem;
}
.metric-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.45;
}
.assistant-table {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.assistant-row {
  min-height: 62px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.65fr 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}
.assistant-row:last-child {
  border-bottom: 0;
}
.assistant-row strong {
  color: white;
}
.assistant-row b {
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
}
.status-live {
  color: #c8f7e9;
  background: rgba(40, 201, 151, 0.11);
}
.status-test {
  color: #d8d0ff;
  background: rgba(140, 120, 222, 0.13);
}
.table-head {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-outcome-story {
  background: #0b111b;
}
.platform-trades .trade-heading p:last-child {
  max-width: 820px;
  margin-top: 18px;
  color: var(--launch-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.partner-section {
  min-height: 90vh;
  padding: 145px 0;
  display: flex;
  align-items: center;
  color: white;
  background: #152426;
}
.partner-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}
.partner-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.partner-copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}
.partner-note {
  margin-top: 30px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: #b9f1ee !important;
  font-weight: 600;
}
.partner-ecosystem {
  position: relative;
  min-height: 620px;
}
.ecosystem-center,
.ecosystem-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: center;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.22);
}
.ecosystem-center {
  top: 35%;
  left: 34%;
  width: 230px;
  height: 230px;
  justify-items: center;
  color: #0d1420;
  background: #f6fbfb;
}
.ecosystem-center img {
  width: 78px;
  height: 54px;
  object-fit: contain;
}
.ecosystem-center strong {
  margin-top: 8px;
  font-size: 1.2rem;
}
.ecosystem-center small {
  color: #577174;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ecosystem-node {
  width: 245px;
  min-height: 145px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
}
.ecosystem-node small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.ecosystem-node strong {
  margin-top: 8px;
  font-size: 1rem;
}
.customer-node {
  top: 4%;
  right: 1%;
}
.partner-node {
  left: 0;
  bottom: 7%;
}
.tool-node {
  right: 0;
  bottom: 2%;
}
.ecosystem-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(53, 199, 210, 0.12), rgba(53, 199, 210, 0.72), rgba(53, 199, 210, 0.12));
}
.line-customer {
  top: 38%;
  left: 53%;
  width: 250px;
  transform: rotate(-28deg);
}
.line-partner {
  top: 57%;
  left: 17%;
  width: 230px;
  transform: rotate(-25deg);
}
.line-tool {
  top: 61%;
  left: 53%;
  width: 235px;
  transform: rotate(27deg);
}

@media (max-width: 1100px) {
  .platform-console-body {
    grid-template-columns: 150px minmax(0, 1fr);
  }
  .console-config {
    display: none;
  }
  .start-paths article {
    padding: 30px 25px;
  }
  .lifecycle-rail {
    grid-template-columns: repeat(5, 1fr);
  }
  .lifecycle-rail > i {
    display: none;
  }
  .partner-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .platform-hero-stage {
    min-height: 680px;
  }
  .platform-console-body {
    grid-template-columns: 1fr;
  }
  .console-sidebar {
    padding: 12px;
    grid-template-columns: repeat(5, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .console-sidebar button {
    justify-content: center;
    font-size: 0.68rem;
  }
  .console-sidebar button span {
    display: none;
  }
  .start-paths {
    grid-template-columns: 1fr;
  }
  .start-paths article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--launch-border);
  }
  .start-paths article:last-child {
    border-bottom: 0;
  }
  .start-paths article > span {
    margin-bottom: 38px;
  }
  .lifecycle-rail {
    grid-template-columns: 1fr;
  }
  .lifecycle-rail article {
    min-height: 150px;
  }
  .lifecycle-rail h3 {
    margin-top: 28px;
  }
  .operations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-card:nth-child(2) {
    border-right: 0;
  }
  .metric-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-ecosystem {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .platform-hero-stage {
    min-height: 620px;
    margin-top: 52px;
  }
  .platform-console {
    border-radius: 22px 22px 0 0;
  }
  .platform-console-top {
    padding: 17px;
  }
  .console-brand small {
    display: none;
  }
  .console-status {
    font-size: 0.62rem;
  }
  .console-sidebar {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(86px, 1fr));
  }
  .console-sidebar button {
    white-space: nowrap;
  }
  .console-main {
    padding: 22px 17px;
  }
  .console-main-head {
    display: grid;
  }
  .console-main-head > span {
    width: max-content;
  }
  .workflow-canvas {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .workflow-node {
    min-height: 92px;
  }
  .workflow-node:not(:last-of-type)::after {
    display: none;
  }
  .start-section,
  .platform-lifecycle-section,
  .partner-section {
    padding: 84px 0;
  }
  .lifecycle-intro h2,
  .partner-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }
  .operations-top {
    padding: 19px;
    align-items: start;
  }
  .period-selector {
    display: none;
  }
  .operations-grid {
    grid-template-columns: 1fr;
  }
  .metric-card,
  .metric-card:nth-child(2) {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .assistant-row {
    padding: 15px 19px;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .assistant-row span:nth-child(2),
  .assistant-row span:nth-child(4),
  .table-head {
    display: none;
  }
  .partner-ecosystem {
    min-height: 680px;
  }
  .ecosystem-center {
    top: 32%;
    left: calc(50% - 95px);
    width: 190px;
    height: 190px;
  }
  .ecosystem-node {
    width: min(100%, 220px);
    min-height: 125px;
  }
  .customer-node {
    top: 0;
    right: 0;
  }
  .partner-node {
    left: 0;
    bottom: 4%;
  }
  .tool-node {
    right: 0;
    bottom: 24%;
  }
  .ecosystem-line {
    display: none;
  }
}


/* Search discovery and search-intent content */
.search-discovery-section {
  padding: 110px 0;
  color: #f7fbff;
  background: #101824;
}
.search-discovery-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.search-discovery-inner h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.search-discovery-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.search-discovery-links a {
  padding: 25px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.search-discovery-links strong {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.search-discovery-links span {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}
.search-discovery-links a:hover strong,
.search-discovery-links a:focus-visible strong {
  color: #8fe1e6;
}

.search-intent-section {
  padding: 145px 0;
}
.ai-search-intent {
  color: #142035;
  background: #f6f7f8;
}
.diary-search-intent {
  color: #172033;
  background: #f3f0ea;
}
.search-intent-heading {
  max-width: 1040px;
}
.search-intent-heading h2 {
  margin: 15px 0 24px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.search-intent-heading > p {
  max-width: 820px;
  color: #647085;
  font-size: 1.06rem;
  line-height: 1.72;
}
.search-intent-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 32, 53, 0.14);
  border-left: 1px solid rgba(20, 32, 53, 0.14);
}
.search-intent-grid article {
  min-height: 280px;
  padding: 31px;
  border-right: 1px solid rgba(20, 32, 53, 0.14);
  border-bottom: 1px solid rgba(20, 32, 53, 0.14);
}
.search-intent-grid small {
  color: #236fce;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.diary-search-intent .search-intent-grid small {
  color: #177c84;
}
.search-intent-grid h3 {
  margin: 55px 0 15px;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.search-intent-grid p {
  color: #687388;
  line-height: 1.65;
}
.seo-faq {
  margin-top: 78px;
  border-top: 1px solid rgba(20, 32, 53, 0.16);
}
.seo-faq details {
  border-bottom: 1px solid rgba(20, 32, 53, 0.16);
}
.seo-faq summary {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: "Manrope", Inter, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 650;
}
.seo-faq summary::after {
  content: "+";
  color: #647085;
  font-size: 1.4rem;
  font-weight: 400;
}
.seo-faq details[open] summary::after {
  content: "−";
}
.seo-faq details p {
  max-width: 850px;
  padding: 0 0 27px;
  color: #687388;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .search-discovery-inner {
    grid-template-columns: 1fr;
  }
  .search-intent-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .search-discovery-section,
  .search-intent-section {
    padding: 82px 0;
  }
  .search-intent-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }
  .search-intent-grid {
    grid-template-columns: 1fr;
  }
  .search-intent-grid article {
    min-height: 235px;
    padding: 25px 22px;
  }
  .search-intent-grid h3 {
    margin-top: 36px;
  }
}


/* Premium product-page resource links */
.resource-link-band {
  padding: 78px 0;
}
.ai-resource-band {
  color: #f5fbff;
  background: #101824;
}
.diary-resource-band {
  color: #172033;
  background: #ede8df;
}
.resource-link-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
}
.resource-link-inner h2 {
  max-width: 780px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.resource-arrow-link {
  padding-bottom: 8px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-weight: 650;
}
.resource-arrow-link span {
  transition: transform 0.16s ease;
}
.resource-arrow-link:hover span,
.resource-arrow-link:focus-visible span {
  transform: translate(3px, -3px);
}

/* Educational resource pages */
.resource-page {
  background: #f7f7f5;
}
.resource-hero {
  min-height: 88vh;
  padding: 190px 0 120px;
  display: flex;
  align-items: center;
}
.ai-resource-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(53, 199, 210, 0.18), transparent 32rem),
    radial-gradient(circle at 10% 80%, rgba(47, 128, 237, 0.22), transparent 36rem),
    #0d1420;
}
.diary-guide-hero {
  color: #172033;
  background:
    radial-gradient(circle at 82% 15%, rgba(159, 133, 220, 0.14), transparent 31rem),
    radial-gradient(circle at 14% 85%, rgba(53, 198, 214, 0.15), transparent 34rem),
    #f1ece4;
}
.resource-hero-inner {
  max-width: 1120px;
}
.resource-hero h1 {
  max-width: 1080px;
  margin: 18px 0 28px;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  text-wrap: balance;
}
.resource-hero p:not(.launch-kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.12rem;
  line-height: 1.72;
}
.diary-guide-hero p:not(.launch-kicker) {
  color: #677184;
}
.resource-content-section,
.resource-faq-section {
  padding: 135px 0;
}
.resource-section-heading {
  max-width: 1050px;
}
.resource-section-heading h2 {
  margin: 15px 0 25px;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.resource-section-heading > p {
  max-width: 820px;
  color: #697487;
  font-size: 1.05rem;
  line-height: 1.72;
}
.resource-card-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(20, 32, 53, 0.15);
  border-left: 1px solid rgba(20, 32, 53, 0.15);
}
.resource-card-grid article {
  min-height: 315px;
  padding: 36px;
  border-right: 1px solid rgba(20, 32, 53, 0.15);
  border-bottom: 1px solid rgba(20, 32, 53, 0.15);
}
.resource-card-grid small {
  color: #236fce;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.diary-guide-content .resource-card-grid small {
  color: #177c84;
}
.resource-card-grid h3 {
  margin: 78px 0 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}
.resource-card-grid p {
  color: #697487;
  line-height: 1.65;
}
.resource-split-section {
  padding: 135px 0;
}
.dark-resource-section {
  color: #ffffff;
  background: #111b2a;
}
.diary-control-resource {
  color: #172033;
  background: #e9e3d9;
}
.resource-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}
.dark-resource-section .resource-section-heading > p,
.dark-resource-section .resource-list p {
  color: rgba(255, 255, 255, 0.63);
}
.resource-list {
  border-top: 1px solid currentColor;
}
.resource-list article {
  padding: 28px 0;
  border-bottom: 1px solid currentColor;
}
.resource-list strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", Inter, sans-serif;
  font-size: 1.25rem;
}
.resource-list p {
  color: #697487;
  line-height: 1.65;
}
.resource-step-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 32, 53, 0.15);
  border-bottom: 1px solid rgba(20, 32, 53, 0.15);
}
.resource-step-grid article {
  min-height: 310px;
  padding: 35px;
  border-right: 1px solid rgba(20, 32, 53, 0.15);
}
.resource-step-grid article:last-child {
  border-right: 0;
}
.resource-step-grid > article > span {
  color: #7b879a;
  font-size: 0.7rem;
}
.resource-step-grid h3 {
  margin: 82px 0 15px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}
.resource-step-grid p {
  color: #697487;
  line-height: 1.65;
}
.resource-faq-section {
  background: #ffffff;
}
.diary-resource-faq {
  background: #f6f2eb;
}
.resource-faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.resource-faq-layout .seo-faq {
  margin-top: 0;
}

@media (max-width: 900px) {
  .resource-link-inner,
  .resource-split,
  .resource-faq-layout {
    grid-template-columns: 1fr;
  }
  .resource-card-grid {
    grid-template-columns: 1fr;
  }
  .resource-step-grid {
    grid-template-columns: 1fr;
  }
  .resource-step-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 32, 53, 0.15);
  }
}

@media (max-width: 620px) {
  .resource-link-band {
    padding: 62px 0;
  }
  .resource-hero {
    min-height: auto;
    padding: 145px 0 85px;
  }
  .resource-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.98;
  }
  .resource-content-section,
  .resource-split-section,
  .resource-faq-section {
    padding: 82px 0;
  }
  .resource-section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }
  .resource-card-grid article {
    min-height: 260px;
    padding: 26px 22px;
  }
  .resource-card-grid h3 {
    margin-top: 50px;
  }
  .resource-step-grid article {
    padding: 27px 22px;
  }
  .resource-step-grid h3 {
    margin-top: 45px;
  }
}


/* Product selector anchor and branded Diary mockup mark */
#product-choices {
  scroll-margin-top: 115px;
}

.diary-mark {
  padding: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(31, 62, 82, 0.13);
}

.diary-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 620px) {
  #product-choices {
    scroll-margin-top: 92px;
  }
}


/* Official Somporko symbol inside the Diary dashboard preview */
.dashboard-brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  padding: 6px;
  object-fit: contain;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 18px rgba(35, 72, 75, 0.13);
}


/* Full Somporko Diary brand line in the main-page dashboard preview */
.diary-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.diary-sidebar-brand .diary-mark {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.diary-sidebar-brand strong {
  font-family: "Manrope", Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}


/* Official Somporko symbol in the AI platform preview */
.console-logo-image {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  padding: 7px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(135deg, #d9fbfa, #8edfe6);
}


/* Deployment fixes: viewport menu drawer */
.site-header {
  overflow: visible;
}

.menu-drawer,
.launch-drawer {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1000 !important;
}

.launch-drawer .menu-drawer-panel,
.menu-drawer .menu-drawer-panel {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

/* Deployment fixes: parent product selector spacing */
.parent-hero {
  padding-bottom: 96px;
}

.parent-product-stage {
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 780px;
  border-radius: 34px;
  isolation: isolate;
}

.parent-product-stage .stage-half {
  min-height: 780px;
  gap: 48px;
}

.parent-product-stage .stage-copy,
.parent-product-stage .mini-call-window,
.parent-product-stage .mini-diary-window {
  flex: 0 0 auto;
}

.parent-hero + .launch-story {
  position: relative;
  z-index: 0;
}

@media (max-width: 1100px) {
  .parent-product-stage {
    min-height: 0;
  }

  .parent-product-stage .stage-half {
    min-height: 680px;
  }
}

@media (max-width: 850px) {
  .parent-hero {
    padding-bottom: 76px;
  }

  .parent-product-stage .stage-half {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .parent-hero {
    padding-bottom: 60px;
  }

  .parent-product-stage .stage-half {
    min-height: 560px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}


/* =========================================================
   Final brand architecture and proportional refinement
   ========================================================= */

:root {
  --launch-blue: #3564e6;
}

/* Parent brand and product brand shown together */
.brand-architecture {
  min-width: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.parent-brand-lockup,
.product-brand-lockup {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.parent-brand-lockup {
  gap: 9px;
  flex: 0 0 auto;
}

.parent-brand-lockup img {
  width: 43px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.parent-brand-lockup strong {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-divider {
  width: 1px;
  height: 38px;
  flex: 0 0 auto;
  background: rgba(17, 19, 24, 0.18);
}

.ai-launch .brand-divider {
  background: rgba(255, 255, 255, 0.2);
}

.product-brand-lockup span {
  min-width: 0;
  display: grid;
}

.product-brand-lockup strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.product-brand-lockup small {
  margin-top: 4px;
  color: var(--launch-muted);
  font-size: 0.66rem;
  line-height: 1.15;
  white-space: nowrap;
}

.ai-launch .product-brand-lockup small {
  color: rgba(255, 255, 255, 0.63);
}

.parent-brand-lockup,
.product-brand-lockup {
  transition: opacity 0.18s ease;
}

.parent-brand-lockup:hover,
.parent-brand-lockup:focus-visible,
.product-brand-lockup:hover,
.product-brand-lockup:focus-visible {
  opacity: 0.7;
}

/* Slightly tighter typography and pacing */
.launch-display {
  max-width: 1140px;
  margin-bottom: 27px;
  font-size: clamp(3.25rem, 7.15vw, 7.7rem);
}

.launch-lead {
  margin-bottom: 28px;
}

.parent-hero {
  padding-top: 120px;
  padding-bottom: 82px;
}

.ai-hero,
.diary-hero {
  padding-top: 122px;
}

.parent-product-stage {
  min-height: 710px;
  margin-top: 78px;
}

.parent-product-stage .stage-half {
  min-height: 710px;
  padding: 52px;
  gap: 42px;
}

.stage-copy h2 {
  font-size: clamp(2.2rem, 3.35vw, 4rem);
}

.launch-story {
  min-height: 82vh;
  padding: 116px 0;
}

.story-grid {
  gap: clamp(54px, 7.2vw, 116px);
}

.story-number {
  margin-bottom: 26px;
}

.story-copy h2,
.wide-story-heading h2,
.trade-heading h2,
.principles-intro h2,
.control-heading h2,
.faq-heading h2 {
  margin-bottom: 23px;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
}

.principles-section,
.trade-section,
.ask-story,
.control-section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.principles-intro {
  margin-bottom: 76px;
}

.trade-marquee {
  margin-top: 70px;
}

.centered-heading {
  margin-bottom: 62px;
}

.control-heading {
  margin-bottom: 70px;
}

.launch-cta {
  padding-top: 132px;
  padding-bottom: 132px;
}

.launch-cta-inner h2 {
  max-width: 940px;
  margin-bottom: 34px;
  font-size: clamp(2.85rem, 5.5vw, 6.05rem);
}

.resource-link-band {
  padding-top: 70px;
  padding-bottom: 70px;
}

.resource-link-inner h2 {
  font-size: clamp(1.9rem, 3.65vw, 3.6rem);
}

/* Main-page visual stages */
.immersive-call-scene,
.answer-scene,
.human-scene {
  min-height: 520px;
}

.diary-shell {
  min-height: 565px;
}

.diary-shell article {
  padding: 52px;
}

/* Somporko AI palette refinement */
.ai-hero {
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(53, 100, 230, 0.22),
      transparent 34rem
    ),
    var(--launch-night);
}

.platform-hero-stage {
  min-height: 700px;
  margin-top: 70px;
}

.platform-hero-glow {
  background: rgba(53, 199, 210, 0.12);
}

.start-section,
.platform-lifecycle-section,
.partner-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.start-paths {
  margin-top: 64px;
}

.start-paths article {
  min-height: 325px;
  padding: 34px 30px;
}

.start-paths article > span {
  margin-bottom: 62px;
}

.lifecycle-rail {
  margin-top: 66px;
  margin-bottom: 66px;
}

.partner-section {
  min-height: 84vh;
}

.partner-grid {
  gap: clamp(54px, 7.2vw, 116px);
}

/* A lighter Human Control section creates better visual rhythm */
.human-story {
  color: #172033;
  background: #f4f7fa;
}

.human-story .story-copy p {
  color: #667286;
}

.human-story .human-line {
  background: linear-gradient(
    90deg,
    rgba(53, 199, 210, 0.85),
    rgba(53, 100, 230, 0.75)
  );
}

.human-story .human-node {
  color: #172033;
  border: 1px solid rgba(23, 32, 51, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 65px rgba(31, 49, 76, 0.12);
}

.human-story .human-node small {
  color: #758196;
}

.human-story .decision-node {
  border-color: rgba(53, 199, 210, 0.55);
}

.human-story .person-node {
  border-color: rgba(53, 100, 230, 0.42);
}

/* Diary stays warm, with only proportional scale reductions */
.diary-hero-stage {
  min-height: 710px;
  margin-top: 72px;
}

.diary-dashboard {
  min-height: 675px;
}

.memory-story {
  min-height: 92vh;
}

.memory-scene {
  min-height: 625px;
}

.early-access-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

/* Educational guide pages */
.resource-hero {
  min-height: 82vh;
  padding-top: 170px;
  padding-bottom: 105px;
}

.resource-hero h1 {
  max-width: 1030px;
  font-size: clamp(3.05rem, 6.4vw, 6.45rem);
}

.resource-content-section,
.resource-faq-section,
.resource-split-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.resource-section-heading h2 {
  font-size: clamp(2.45rem, 4.55vw, 4.8rem);
}

.resource-card-grid {
  margin-top: 62px;
}

.resource-card-grid article {
  min-height: 290px;
  padding: 32px;
}

.resource-card-grid h3 {
  margin-top: 66px;
}

.resource-step-grid {
  margin-top: 62px;
}

.resource-step-grid article {
  min-height: 285px;
  padding: 31px;
}

.resource-step-grid h3 {
  margin-top: 68px;
}

@media (max-width: 1100px) {
  .launch-display {
    font-size: clamp(3.05rem, 7.3vw, 6.2rem);
  }

  .parent-product-stage .stage-half {
    min-height: 640px;
    padding: 44px;
  }

  .platform-hero-stage {
    min-height: 665px;
  }
}

@media (max-width: 900px) {
  .brand-architecture {
    gap: 11px;
  }

  .parent-brand-lockup img {
    width: 38px;
    height: 28px;
  }

  .parent-brand-lockup strong {
    font-size: 0.76rem;
  }

  .brand-divider {
    height: 33px;
  }

  .product-brand-lockup strong {
    font-size: 0.88rem;
  }

  .product-brand-lockup small {
    display: none;
  }

  .parent-hero,
  .ai-hero,
  .diary-hero {
    padding-top: 104px;
  }

  .parent-hero {
    padding-bottom: 70px;
  }

  .parent-product-stage .stage-half {
    min-height: 580px;
    padding: 38px;
  }

  .launch-story {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .principles-section,
  .trade-section,
  .ask-story,
  .control-section,
  .start-section,
  .platform-lifecycle-section,
  .partner-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .diary-hero-stage {
    min-height: 675px;
  }

  .diary-dashboard {
    min-height: 640px;
  }

  .resource-hero {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 92px;
  }

  .resource-content-section,
  .resource-faq-section,
  .resource-split-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }
}

@media (max-width: 620px) {
  .launch-nav {
    gap: 10px;
  }

  .brand-architecture {
    max-width: calc(100% - 51px);
    gap: 8px;
  }

  .parent-brand-lockup {
    gap: 6px;
  }

  .parent-brand-lockup img {
    width: 32px;
    height: 24px;
  }

  .parent-brand-lockup strong {
    font-size: 0.68rem;
  }

  .brand-divider {
    height: 29px;
  }

  .product-brand-lockup strong {
    overflow: hidden;
    max-width: 126px;
    font-size: 0.77rem;
    text-overflow: ellipsis;
  }

  .launch-display {
    font-size: clamp(2.6rem, 13.2vw, 4.05rem);
  }

  .parent-hero,
  .ai-hero,
  .diary-hero {
    padding-top: 100px;
  }

  .parent-hero {
    padding-bottom: 56px;
  }

  .parent-product-stage {
    margin-top: 54px;
  }

  .parent-product-stage .stage-half {
    min-height: 525px;
    padding: 28px 22px;
  }

  .launch-story,
  .principles-section,
  .trade-section,
  .ask-story,
  .control-section,
  .start-section,
  .platform-lifecycle-section,
  .partner-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .story-copy h2,
  .wide-story-heading h2,
  .trade-heading h2,
  .principles-intro h2,
  .control-heading h2,
  .faq-heading h2 {
    font-size: clamp(2.2rem, 10.4vw, 3.25rem);
  }

  .launch-cta {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .launch-cta-inner h2 {
    font-size: clamp(2.4rem, 11.2vw, 3.85rem);
  }

  .platform-hero-stage {
    min-height: 590px;
    margin-top: 48px;
  }

  .diary-hero-stage {
    min-height: 650px;
    margin-top: 64px;
  }

  .diary-dashboard {
    min-height: 615px;
  }

  .early-access-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .resource-link-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .resource-hero {
    padding-top: 138px;
    padding-bottom: 82px;
  }

  .resource-hero h1 {
    font-size: clamp(2.65rem, 12.3vw, 3.95rem);
  }

  .resource-content-section,
  .resource-faq-section,
  .resource-split-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .resource-section-heading h2 {
    font-size: clamp(2.15rem, 10.3vw, 3.25rem);
  }
}


/* =========================================================
   Final polish: readable labels, consistent navigation,
   and centered parent-page product previews
   ========================================================= */

/* Primary and secondary actions */
.btn-outline-dark {
  color: var(--launch-ink);
  border: 1px solid rgba(17, 19, 24, 0.34);
  background: rgba(255, 255, 255, 0.38);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  border-color: rgba(17, 19, 24, 0.58);
  background: rgba(255, 255, 255, 0.78);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.09);
}

/* Internal page links use a right arrow and move horizontally */
.story-link span,
.resource-arrow-link span,
.stage-link b {
  display: inline-block;
  transition: transform 0.18s ease;
}

.story-link:hover span,
.story-link:focus-visible span,
.resource-arrow-link:hover span,
.resource-arrow-link:focus-visible span,
.stage-half:hover .stage-link b,
.stage-half:focus-visible .stage-link b {
  transform: translateX(4px);
}

/* Same-page scroll links keep a down arrow */
.launch-arrow-link span,
.memory-lane-large a[href="#memory"] span {
  display: inline-block;
  transition: transform 0.18s ease;
}

.launch-arrow-link:hover span,
.launch-arrow-link:focus-visible span,
.memory-lane-large a[href="#memory"]:hover span,
.memory-lane-large a[href="#memory"]:focus-visible span {
  transform: translateY(3px);
}

/* Stronger editorial labels throughout the site */
.launch-kicker {
  margin-bottom: 21px;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0.085em;
  opacity: 0.94;
}

.story-number {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 23px;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: 0.075em;
  opacity: 1;
}

.story-number b {
  color: var(--launch-blue);
  font-weight: 800;
}

.story-number span {
  color: inherit;
}

.dark-story .story-number b,
.workflow-story .story-number b,
.partner-section .story-number b,
.ai-resource-hero .story-number b,
.dark-resource-section .story-number b {
  color: var(--launch-cyan);
}

.dark-story .story-number span,
.workflow-story .story-number span,
.partner-section .story-number span,
.dark-resource-section .story-number span {
  color: rgba(255, 255, 255, 0.84);
}

.diary-launch .story-number b,
.diary-story .story-number b,
.diary-resource-page .story-number b {
  color: var(--launch-teal-dark);
}

.diary-launch .story-number span,
.diary-story .story-number span,
.diary-resource-page .story-number span {
  color: #3d5254;
}

.memory-story .story-number span {
  color: rgba(255, 255, 255, 0.86);
}

.memory-story .story-number b {
  color: #92e4df;
}

/* Make standalone row numbers easier to notice */
.principle-lines article > span,
.control-lines article > span,
.start-paths article > span,
.lifecycle-rail article > span,
.resource-step-grid > article > span,
.workflow-track article > span {
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: 0.06em;
  opacity: 1;
}

.principle-lines article > span,
.control-lines article > span {
  color: var(--launch-blue);
}

.diary-launch .control-lines article > span {
  color: var(--launch-teal-dark);
}

.start-paths article > span,
.lifecycle-rail article > span,
.resource-step-grid > article > span {
  color: var(--launch-blue);
}

/* Main Somporko product selector: controlled spacing and true centering */
.parent-product-stage {
  min-height: 0;
  align-items: stretch;
}

.parent-product-stage .stage-half {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  justify-content: stretch;
  gap: 44px;
  padding: 48px;
}

.parent-product-stage .stage-copy {
  width: min(100%, 470px);
  min-height: 190px;
  margin: 0 auto;
}

.parent-product-stage .mini-call-window,
.parent-product-stage .mini-diary-window {
  width: min(100%, 430px);
  margin: 0 auto;
  align-self: start;
  justify-self: center;
}

.parent-product-stage .stage-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .parent-product-stage .stage-half {
    min-height: 590px;
    gap: 38px;
    padding: 42px;
  }

  .parent-product-stage .stage-copy {
    min-height: 180px;
  }

  .parent-product-stage .mini-call-window,
  .parent-product-stage .mini-diary-window {
    width: min(100%, 410px);
  }
}

@media (max-width: 900px) {
  .parent-product-stage .stage-half {
    min-height: auto;
    gap: 34px;
    padding: 38px;
  }

  .parent-product-stage .stage-copy {
    min-height: 0;
  }

  .parent-product-stage .mini-call-window,
  .parent-product-stage .mini-diary-window {
    width: min(100%, 500px);
  }
}

@media (max-width: 620px) {
  .launch-kicker,
  .story-number {
    font-size: 0.78rem;
    letter-spacing: 0.065em;
  }

  .story-number {
    margin-bottom: 19px;
  }

  .principle-lines article > span,
  .control-lines article > span,
  .start-paths article > span,
  .lifecycle-rail article > span,
  .resource-step-grid > article > span,
  .workflow-track article > span {
    font-size: 0.76rem;
  }

  .parent-product-stage .stage-half {
    min-height: auto;
    gap: 28px;
    padding: 30px 24px;
  }

  .parent-product-stage .stage-copy {
    width: 100%;
  }

  .parent-product-stage .mini-call-window,
  .parent-product-stage .mini-diary-window {
    width: 100%;
    max-width: 440px;
  }
}


/* Improve menu-button visibility on dark Somporko AI headers */
.ai-launch .launch-menu-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.ai-launch .launch-menu-button:hover,
.ai-launch .launch-menu-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.19);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.26),
    0 0 0 3px rgba(53, 199, 210, 0.12);
  transform: translateY(-1px);
}

.ai-launch .launch-menu-button span {
  height: 1.75px;
  background: #ffffff;
}


/* =========================================================
   Compact text-only footer
   ========================================================= */

.compact-footer {
  padding: 25px 0;
}

.compact-footer-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 0;
  row-gap: 8px;
  color: var(--launch-muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.compact-footer-item {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.compact-footer-line > .compact-footer-item + .compact-footer-item::before {
  content: "·";
  margin: 0 10px;
  color: currentColor;
  opacity: 0.62;
}

.compact-footer a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}

.compact-footer a:hover,
.compact-footer a:focus-visible {
  color: var(--launch-blue);
  text-decoration: underline;
}

.compact-footer-nav {
  gap: 0;
}

.compact-footer-nav a + a::before {
  content: "·";
  margin: 0 10px;
  color: currentColor;
  opacity: 0.62;
  text-decoration: none;
}

.dark-footer .compact-footer-line {
  color: rgba(255, 255, 255, 0.66);
}

.dark-footer .compact-footer a:hover,
.dark-footer .compact-footer a:focus-visible,
.dark-footer.compact-footer a:hover,
.dark-footer.compact-footer a:focus-visible {
  color: #ffffff;
}

.diary-footer .compact-footer-line {
  color: #5f6b6d;
}

/* =========================================================
   Human-readable Site Map
   ========================================================= */

.site-map-page {
  background: #f7f4ee;
}

.site-map-hero {
  padding: 180px 0 105px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(53, 199, 210, 0.12),
      transparent 31rem
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(53, 100, 230, 0.11),
      transparent 34rem
    ),
    #f3efe7;
}

.site-map-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 6.6vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.site-map-hero > div > p:last-child {
  max-width: 760px;
  color: #667286;
  font-size: 1.06rem;
  line-height: 1.72;
}

.site-map-section {
  padding: 118px 0;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(23, 32, 51, 0.15);
  border-left: 1px solid rgba(23, 32, 51, 0.15);
}

.site-map-grid article {
  min-height: 345px;
  padding: 38px;
  border-right: 1px solid rgba(23, 32, 51, 0.15);
  border-bottom: 1px solid rgba(23, 32, 51, 0.15);
}

.site-map-grid article > span {
  color: var(--launch-blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.075em;
}

.site-map-grid h2 {
  margin: 72px 0 18px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.site-map-grid p {
  max-width: 540px;
  margin-bottom: 24px;
  color: #697487;
  line-height: 1.65;
}

.site-map-grid a {
  display: block;
  width: fit-content;
  margin-top: 11px;
  color: #172033;
  font-weight: 670;
}

.site-map-grid a:hover,
.site-map-grid a:focus-visible {
  color: var(--launch-blue);
}

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

  .site-map-hero {
    padding-top: 145px;
    padding-bottom: 90px;
  }

  .site-map-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (max-width: 700px) {
  .compact-footer {
    padding: 28px 0;
  }

  .compact-footer-line {
    row-gap: 9px;
    font-size: 0.76rem;
  }

  .compact-footer-line > .compact-footer-item {
    width: 100%;
  }

  .compact-footer-line > .compact-footer-item + .compact-footer-item::before {
    display: none;
  }

  .compact-footer-nav {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-map-hero {
    padding-top: 130px;
    padding-bottom: 76px;
  }

  .site-map-hero h1 {
    font-size: clamp(2.7rem, 12.7vw, 4rem);
  }

  .site-map-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-map-grid article {
    min-height: 300px;
    padding: 28px 24px;
  }

  .site-map-grid h2 {
    margin-top: 52px;
  }
}


/* =========================================================
   Final hero alignment and viewport-safe Early Access modals
   ========================================================= */

/* Keep the primary actions centered as one visual group */
.parent-hero .launch-actions {
  justify-content: center;
}

/* The overlay always fits the active browser viewport */
.modal {
  padding: 16px;
  overflow: hidden;
  align-items: center;
  justify-items: center;
}

.modal.open {
  display: grid;
  place-items: center;
}

/* The outer panel remains inside the viewport */
.modal-panel {
  width: min(520px, 100%);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

/* Only the form content scrolls, keeping the close button visible */
.modal-scroll {
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 24px 24px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.modal-close {
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  box-shadow: 0 7px 20px rgba(20, 36, 64, 0.12);
}

.modal h2 {
  margin-right: 48px;
  margin-bottom: 7px;
  font-size: 1.72rem;
  line-height: 1.05;
}

.modal > .modal-panel > .modal-scroll > p {
  margin: 0;
  padding-right: 34px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.modal form {
  gap: 11px;
  margin-top: 15px;
}

.modal label {
  gap: 5px;
  font-size: 0.84rem;
}

.modal input,
.modal textarea,
.modal select {
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.94rem;
}

.modal textarea {
  min-height: 82px;
  max-height: 150px;
}

.modal .field-note {
  font-size: 0.73rem;
}

.modal form > .btn[type="submit"] {
  margin-top: 2px;
}

.modal .form-status {
  min-height: 19px;
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-height: 720px) and (min-width: 621px) {
  .modal-scroll {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .modal h2 {
    font-size: 1.55rem;
  }

  .modal form {
    gap: 9px;
    margin-top: 12px;
  }

  .modal input,
  .modal textarea,
  .modal select {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .modal textarea {
    min-height: 70px;
  }
}

@media (max-width: 620px) {
  .modal {
    padding: 9px;
    align-items: center;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 20px;
  }

  .modal-scroll {
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
    padding: 21px 17px 18px;
  }

  .modal-close {
    top: 11px;
    right: 11px;
    width: 34px;
    height: 34px;
  }

  .modal h2 {
    margin-right: 42px;
    font-size: 1.48rem;
  }

  .modal > .modal-panel > .modal-scroll > p {
    padding-right: 28px;
    font-size: 0.86rem;
  }

  .modal form {
    gap: 10px;
    margin-top: 13px;
  }

  .modal label {
    font-size: 0.8rem;
  }

  .modal input,
  .modal textarea,
  .modal select {
    padding: 10px 11px;
    font-size: 16px;
  }

  .modal textarea {
    min-height: 74px;
  }
}
