﻿:root {
  --bg: #060910;
  --surface: rgba(15, 23, 42, 0.8);
  --surface-strong: rgba(15, 23, 42, 0.95);
  --line: rgba(255, 255, 255, 0.1);
  --ink: #f8fafc;
  --muted: #9fb0c8;
  --accent: #e0b94f;
  --accent-soft: rgba(224, 185, 79, 0.14);
  --accent-deep: #e7c76f;
  --sky: #dcebf4;
  --rose: #f2ddd8;
  --clay: #a85f49;
  --navy: #0f172a;
  --gold: #e0b94f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(224, 185, 79, 0.16) 0%, transparent 34%),
    linear-gradient(315deg, rgba(16, 185, 129, 0.1) 0%, transparent 30%),
    linear-gradient(180deg, #060910 0%, #0b1220 52%, #060910 100%);
}

button,
input,
select,
fieldset {
  font: inherit;
}

select {
  color-scheme: dark;
}

select option,
select optgroup {
  background: #0f172a;
  color: #f8fafc;
}

select option:checked,
select option:hover {
  background: #1d4ed8;
  color: #ffffff;
}

img,
svg,
video {
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  min-width: 0;
}

.page-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
p,
li,
span,
strong,
a,
button {
  overflow-wrap: anywhere;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 11, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(24, 34, 59, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(31, 178, 132, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
}

.topnav {
  display: inline-flex;
  gap: 22px;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.session-badge {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(24, 34, 59, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.ghost-button,
.solid-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.ghost-button {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  text-decoration: none;
}

.solid-button {
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d4af37, #b68c22);
  color: #fefdf9;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.solid-button.wide {
  width: 100%;
  justify-content: center;
}

.link-button {
  padding: 14px 6px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
}

.ghost-button:hover,
.solid-button:hover,
.link-button:hover {
  transform: translateY(-1px);
}

.screen {
  display: none;
}

.screen.is-active {
  display: grid;
}

body[data-route="app"] .landing-section,
body[data-route="owner-login"] .landing-section,
body[data-route="owner-dashboard"] .landing-section {
  display: none;
}

body[data-route="app"] #hero,
body[data-route="owner-login"] #hero,
body[data-route="owner-dashboard"] #hero,
body[data-route="owner-login"] #access,
body[data-route="owner-login"] #setup,
body[data-route="owner-login"] #dashboard,
body[data-route="owner-login"] #premium,
body[data-route="owner-dashboard"] #access,
body[data-route="owner-dashboard"] #setup,
body[data-route="owner-dashboard"] #dashboard,
body[data-route="owner-dashboard"] #premium,
body[data-route="landing"] #access,
body[data-route="landing"] #setup,
body[data-route="landing"] #dashboard,
body[data-route="landing"] #premium,
body[data-route="landing"] #backend {
  display: none !important;
}

body[data-route="owner-login"] #backend.screen.is-active,
body[data-route="owner-dashboard"] #backend.screen.is-active {
  display: grid !important;
}

body[data-route="app"] #backend {
  display: none !important;
}

body[data-route="app"] .topbar,
body[data-route="owner-login"] .topbar,
body[data-route="owner-dashboard"] .topbar {
  position: static;
  top: auto;
}

body[data-route="app"] main,
body[data-route="owner-login"] main,
body[data-route="owner-dashboard"] main {
  padding-top: 0;
}

body[data-route="landing"] .topnav,
body[data-route="landing"] .topbar-actions {
  display: none !important;
}

body[data-route="owner-login"] .topnav,
body[data-route="owner-dashboard"] .topnav,
body[data-route="owner-login"] .customer-access-link,
body[data-route="owner-dashboard"] .customer-access-link {
  display: none;
}

body[data-route="app"] #backend-nav-link {
  display: none;
}

.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 132px));
  padding: clamp(32px, 5vw, 62px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #080b12;
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 6;
  max-width: min(640px, 52%);
  opacity: 1;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.story-note {
  margin: 0 0 14px;
  color: #8c6b35;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero h1,
.section-heading h2,
.panel-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.55rem, 4.55vw, 4.15rem);
  max-width: 12ch;
  color: #ffffff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9), 0 18px 55px rgba(0, 0, 0, 0.9);
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 0;
  color: rgba(248, 250, 252, 0.94);
  font-size: 1.02rem;
  line-height: 1.75;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 250, 252, 0.86);
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--gold));
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #080b12;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.96) 0%, rgba(8, 11, 18, 0.76) 40%, rgba(8, 11, 18, 0.2) 74%, rgba(8, 11, 18, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.04), rgba(8, 11, 18, 0.68));
}

.hero-proof-panel {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 52px);
  width: min(390px, 30vw);
  display: grid;
  gap: 12px;
}

.hero-story-card {
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 32, 55, 0.54);
  backdrop-filter: blur(12px);
  color: #fef8ef;
}

.hero-story-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-story-card .workspace-label {
  color: rgba(255, 246, 227, 0.8);
}

.hero-lines {
  display: grid;
  gap: 12px;
}

.hero-lines div,
.flow-grid article,
.assurance,
.secondary-context section,
.premium-rails article {
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.hero-lines div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(24, 34, 59, 0.08);
}

.hero-signal-card {
  padding: 15px 17px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(17, 24, 39, 0.84);
  backdrop-filter: blur(18px);
}

.hero-signal-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.hero-signal-card p {
  margin: 10px 0 0;
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.55;
}

.hero-wave {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 4px;
}

@media (min-width: 1121px) {
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 46%;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(8, 11, 18, 0.42));
    pointer-events: none;
    z-index: 1;
  }
}

.hero-wave span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6d875, var(--gold));
  animation: wave-pulse 1200ms ease-in-out infinite;
}

.hero-wave span:nth-child(1) { height: 16px; animation-delay: 0ms; }
.hero-wave span:nth-child(2) { height: 30px; animation-delay: 110ms; }
.hero-wave span:nth-child(3) { height: 22px; animation-delay: 220ms; }
.hero-wave span:nth-child(4) { height: 36px; animation-delay: 330ms; }
.hero-wave span:nth-child(5) { height: 24px; animation-delay: 440ms; }
.hero-wave span:nth-child(6) { height: 18px; animation-delay: 550ms; }

.hero-lines span,
.timeline-entry .time {
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-lines p,
.flow-grid p,
.assurance p,
.timeline-entry p,
.secondary-context p,
.premium-rails p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-section,
.panel-view {
  margin-top: 28px;
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(24, 34, 59, 0.08);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.landing-stack {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.landing-band,
.final-cta {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.landing-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.landing-band h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

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

.segment-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.segment-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.segment-icon {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.segment-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.segment-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid .pricing-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.78);
}

.pricing-grid .pricing-card.is-fun:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.pricing-grid .pricing-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pricing-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .segment-grid,
  .pricing-grid,
  .care-options,
  .care-use-row,
  .care-plan-row {
    grid-template-columns: 1fr;
  }
}

.care-options {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.care-options-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.care-options-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

.care-options-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
}

.care-options-copy .solid-button {
  width: fit-content;
  margin-top: 6px;
}

.care-options-panel {
  display: grid;
  gap: 16px;
}

.care-use-row,
.care-plan-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.care-use-row span,
.care-plan-row article {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 11, 18, 0.28);
}

.care-use-row span {
  display: flex;
  align-items: center;
  color: #d8e4f7;
  font-weight: 700;
  line-height: 1.35;
}

.care-plan-row article {
  display: grid;
  align-content: center;
  gap: 4px;
}

.care-plan-row small {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.care-plan-row strong {
  color: var(--ink);
  font-size: 1.8rem;
}

.scenario-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(224, 185, 79, 0.18);
  border-radius: 24px;
  background: rgba(13, 20, 34, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.scenario-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.03);
  transition: transform 500ms ease, filter 500ms ease;
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(224, 185, 79, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.02) 0%, rgba(8, 11, 18, 0.16) 44%, rgba(8, 11, 18, 0.94) 100%);
}

.scenario-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.14) contrast(1.06);
}

.scenario-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.scenario-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.72);
  border: 1px solid rgba(224, 185, 79, 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-card strong {
  color: #fff8df;
  font-size: 1.12rem;
  line-height: 1.34;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.quiet-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 16, 28, 0.68);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.public-demo-call {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.public-demo-copy h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.public-demo-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.public-demo-form {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 11, 18, 0.62);
}

.quiet-strip div {
  display: grid;
  gap: 5px;
}

.quiet-strip span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quiet-strip strong {
  color: #edf4ff;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.quiet-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiet-strip li {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 185, 79, 0.22);
  background: rgba(224, 185, 79, 0.1);
  color: #f7e8b6;
  font-size: 0.88rem;
  font-weight: 800;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin: 10px auto 0;
  padding: 14px 12px 0;
}

.landing-footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration-color: rgba(224, 185, 79, 0.28);
  text-underline-offset: 3px;
}

.landing-footer-links a:hover {
  color: var(--accent);
}

.landing-mini-grid,
.routine-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-mini-grid article,
.routine-preview-grid article,
.pricing-card,
.phone-preview {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.landing-mini-grid span,
.routine-preview-grid span,
.pricing-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
}

.landing-mini-grid strong,
.routine-preview-grid strong,
.pricing-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

.landing-mini-grid p,
.routine-preview-grid p,
.pricing-card p,
.phone-preview p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.landing-copy {
  max-width: 44ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.landing-band a,
.section-heading a {
  color: #d8e4f7;
  text-decoration-color: rgba(224, 185, 79, 0.7);
  text-underline-offset: 2px;
}

.landing-band a:visited,
.section-heading a:visited {
  color: #c6d8f0;
}

.landing-band a:hover,
.section-heading a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* Force premium link color on landing sections (override browser default blue). */
body[data-route="landing"] .landing-band a,
body[data-route="landing"] .landing-band a:link,
body[data-route="landing"] .landing-band a:visited {
  color: #d8e4f7 !important;
  text-decoration-color: rgba(224, 185, 79, 0.72) !important;
}

body[data-route="landing"] .landing-band a:hover,
body[data-route="landing"] .landing-band a:focus-visible,
body[data-route="landing"] .landing-band a:active {
  color: var(--accent) !important;
  text-decoration-color: var(--accent) !important;
}

.phone-preview-shell {
  justify-self: center;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.phone-preview {
  max-width: 420px;
  justify-self: center;
  background: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.28);
}

.password-help-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.call-time-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.call-time-picks legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.call-time-picks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(8, 11, 18, 0.28);
}

.call-time-picks input {
  accent-color: var(--gold);
}

.phone-preview p + p {
  margin-top: 14px;
}

.phone-topbar {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.phone-topbar span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-image: url("assets/shravan-kumar-icon-192.png");
  background-size: cover;
  background-position: center;
}

.phone-topbar strong {
  color: var(--ink);
}

.phone-topbar small {
  color: var(--gold);
  font-weight: 800;
}

.report-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.report-status-grid span {
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  color: #eadfb7;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.pricing-card {
  max-width: 460px;
}

.pricing-card strong {
  font-size: 2.4rem;
}

.pricing-card .solid-button {
  display: inline-flex;
  margin-top: 22px;
}

.talk-shravan-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 11, 18, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.talk-shravan-art {
  aspect-ratio: 1 / 1;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
}

.talk-shravan-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

.talk-shravan-copy h2 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
}

.talk-shravan-copy p:last-child {
  max-width: 38ch;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.talk-shravan-widget {
  display: grid;
  gap: 12px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.voice-helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-cta {
  text-align: center;
}

.final-cta .solid-button {
  display: inline-flex;
  margin-top: 24px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.section-heading h2,
.panel-header h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.panel-copy {
  max-width: 48ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.app-map-section {
  margin-top: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.9));
  box-shadow: var(--shadow);
}

.care-flow-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1.12fr) 56px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.care-flow-node {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(17, 24, 39, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.care-flow-node.is-center {
  border-color: rgba(212, 175, 55, 0.3);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(17, 24, 39, 0.86);
}

.care-flow-node span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--gold);
  font-weight: 900;
}

.care-flow-node strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.care-flow-node p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.care-flow-line {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.72), transparent);
}

.app-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.app-map-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.76);
}

.map-index {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-map-grid h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.app-map-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-grid article,
.assurance,
.premium-rails article {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(24, 34, 59, 0.07);
}

.flow-grid article {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.flow-grid article::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(circle at 50% 34%, rgba(212, 175, 55, 0.85) 0 10px, transparent 11px),
    radial-gradient(circle at 34% 60%, rgba(248, 250, 252, 0.24) 0 8px, transparent 9px),
    radial-gradient(circle at 66% 60%, rgba(248, 250, 252, 0.24) 0 8px, transparent 9px),
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.035));
}

.flow-grid article:nth-child(2)::after {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.8) 0 12px, transparent 13px),
    radial-gradient(circle at 50% 50%, transparent 0 24px, rgba(248, 250, 252, 0.2) 25px 27px, transparent 28px),
    radial-gradient(circle at 50% 50%, transparent 0 38px, rgba(212, 175, 55, 0.18) 39px 41px, transparent 42px);
}

.flow-grid article:nth-child(3)::after {
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 20%, rgba(212, 175, 55, 0.72) 20% 30%, transparent 30% 42%, rgba(212, 175, 55, 0.48) 42% 52%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.flow-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.flow-grid h3,
.assurance h3,
.setup-helper h3,
.workspace-head h3,
.call-detail h3,
.secondary-context h3,
.premium-rails h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.panel-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.setup-layout,
.dashboard-layout,
.access-layout,
.backend-layout,
.backend-columns,
.backend-metrics {
  display: grid;
  gap: 24px;
}

.heritage-banner,
.dashboard-crest {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.command-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.command-card-grid article,
.metric-card {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.7);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.command-card-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.26);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.command-card-grid article.care-pride-card {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(31, 178, 132, 0.12), rgba(17, 24, 39, 0.88));
  border-color: rgba(212, 175, 55, 0.28);
}

.command-card-grid span,
.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-card-grid strong,
.metric-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.4rem;
}

.command-card-grid small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.heritage-banner {
  margin-bottom: 24px;
}

.heritage-banner img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.heritage-banner-copy,
.dashboard-crest-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px 30px;
}

.heritage-banner-copy h3,
.dashboard-crest-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.dashboard-crest-copy p:last-child {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-crest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.care-respect-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.care-respect-strip span {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.62);
  color: #f8fafc;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 1.24rem;
  line-height: 1.2;
}

.post-login-home {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.75fr) minmax(280px, 0.9fr);
  gap: 16px;
  margin-bottom: 24px;
}

.care-next-step-card,
.care-checklist-card,
.inapp-report-card,
.google-play-billing-card,
.customer-live-call-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.care-next-step-card {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.88));
}

.google-play-billing-card {
  border-color: rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(17, 24, 39, 0.76);
}

.care-next-step-card h3,
.inapp-report-card h3,
.google-play-billing-card h3,
.customer-live-call-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.care-next-step-card p,
.inapp-report-card p,
.google-play-billing-card p,
.customer-live-call-card p {
  color: var(--muted);
  line-height: 1.7;
}

.billing-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.care-next-step-card .solid-button {
  display: inline-flex;
  margin-top: 16px;
}

.customer-live-call-card {
  grid-column: span 2;
}

.customer-live-call-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.customer-live-call-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.customer-live-call-form .solid-button,
.customer-live-call-form .setup-feedback {
  grid-column: 1 / -1;
}

.care-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-checklist li {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 12px;
}

.care-checklist span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.care-checklist strong {
  color: var(--ink);
}

.mini-report {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background: rgba(8, 11, 18, 0.42);
}

.mini-report strong {
  color: var(--gold);
}

.founder-page {
  display: none;
  gap: 24px;
}

.founder-page.is-active {
  display: grid;
}

.founder-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  min-height: 540px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.94), rgba(8, 11, 18, 0.68)),
    url("/assets/shravan-anime-hero.jpg") right center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.founder-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(212, 175, 55, 0.2), transparent 30%),
    linear-gradient(180deg, transparent, rgba(8, 11, 18, 0.42));
}

.founder-hero > * {
  position: relative;
  z-index: 1;
}

.founder-hero-copy {
  display: grid;
  align-content: center;
  max-width: 780px;
}

.founder-hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.9;
}

.founder-tagline {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.founder-portrait-card {
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 36%),
    rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(12px);
}

.founder-portrait-card span,
.founder-story-card .workspace-label {
  color: var(--gold);
}

.founder-portrait-card strong {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.founder-portrait-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.founder-story-card,
.founder-mission-panel,
.founder-closing {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.founder-story-card {
  padding: clamp(24px, 4vw, 38px);
}

.founder-story-card.is-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.founder-story-card h2,
.founder-mission-panel h2,
.founder-closing p {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.9rem);
  line-height: 0.98;
}

.founder-story-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.03;
}

.founder-story-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.founder-mission-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 14% 20%, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.88));
}

.founder-mission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.founder-mission-list span {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  background: rgba(8, 11, 18, 0.42);
  color: rgba(248, 250, 252, 0.92);
  font-weight: 800;
  line-height: 1.45;
}

.founder-closing {
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.2), transparent 34%),
    rgba(17, 24, 39, 0.82);
}

.founder-closing p {
  max-width: 920px;
  margin: 0 auto;
}

.setup-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.access-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-access-layout {
  grid-template-columns: minmax(320px, 680px);
  justify-content: center;
}

.auth-page-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(100vh - 220px);
}

.auth-story-panel,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.auth-story-panel {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 18% 14%, rgba(212, 175, 55, 0.28), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(31, 178, 132, 0.1), transparent 34%),
    repeating-radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.12) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.94));
  position: relative;
  overflow: hidden;
}

.auth-story-panel::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 34px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.auth-story-panel h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
}

.auth-story-panel > p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.auth-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trial-offer-card {
  max-width: 480px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(17, 24, 39, 0.72);
  box-shadow: 0 24px 70px rgba(212, 175, 55, 0.08);
}

.trial-offer-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trial-offer-card strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.trial-offer-card p {
  max-width: 42ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-proof-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.68);
}

.auth-proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.auth-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.auth-proof-grid p,
.auth-blessing {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.auth-blessing {
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  background: rgba(212, 175, 55, 0.08);
  color: #f8fafc;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 1.35rem;
}

.auth-voice-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.2), transparent 28%),
    rgba(8, 11, 18, 0.52);
}

.auth-voice-card img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.auth-voice-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.auth-voice-card p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.login-voice-inline {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 16%, rgba(212, 175, 55, 0.18), transparent 28%),
    rgba(8, 11, 18, 0.46);
}

.login-voice-inline img {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.login-voice-inline h3 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.login-voice-inline p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.voice-inline-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(173, 129, 20, 0.96));
  color: #080b12;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.voice-inline-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(212, 175, 55, 0.22);
}

.voice-inline-button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
}

.voice-inline-button.compact {
  grid-column: 1 / -1;
}

.voice-inline-button.is-active,
.voice-mic-button.is-active {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(31, 178, 132, 0.95), rgba(212, 175, 55, 0.94));
}

.voice-inline-button.is-listening,
.voice-mic-button.is-listening {
  animation: mic-pulse 1.55s ease-in-out infinite;
}

.mic-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 24px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.mic-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.mic-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.auth-card {
  align-self: center;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.92));
}

.auth-card::before {
  content: "Free for 7 days";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.backend-layout {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.backend-layout:has(#backend-panel:not([hidden])) {
  grid-template-columns: minmax(0, 1fr);
}

.setup-form,
.access-card,
.backend-panel,
.setup-sidecopy,
.primary-workspace,
.secondary-context {
  border-radius: 32px;
}

.setup-form,
.access-card,
.backend-panel,
.primary-workspace,
.secondary-context {
  padding: 28px;
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid var(--line);
}

.backend-login-card {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.92)),
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(31, 178, 132, 0.06));
}

.backend-panel {
  min-height: 720px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.16), transparent 34%),
    radial-gradient(circle at 95% 12%, rgba(31, 178, 132, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(10, 15, 28, 0.98), rgba(8, 11, 18, 0.94));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.owner-console-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background:
    radial-gradient(circle at 12% 14%, rgba(212, 175, 55, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(12, 20, 36, 0.94));
  color: #fffaf3;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.owner-console-hero .workspace-label,
.owner-console-hero p {
  color: rgba(255, 250, 243, 0.72);
}

.owner-console-hero h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.owner-console-hero p {
  max-width: 58ch;
  margin: 0;
  line-height: 1.7;
}

.backend-page-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 11, 18, 0.48);
}

.backend-page-nav button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.backend-page-nav button:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.backend-page-nav button.is-active {
  border-color: rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(212, 175, 55, 0.16);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.backend-page {
  display: none;
  animation: rise-in 420ms ease both;
}

.backend-page.is-active {
  display: grid;
  gap: 20px;
}

.backend-page-head {
  padding: 6px 2px 0;
}

.backend-page-head h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.setup-form {
  display: grid;
  gap: 18px;
}

.access-card h3,
.backend-head h3,
.backend-section h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.access-copy {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.access-card-single {
  width: 100%;
}

.access-mode-control {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.access-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  margin-bottom: 22px;
}

.access-card-head .access-copy {
  margin-bottom: 0;
}

.access-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(24, 34, 59, 0.1);
  border-radius: 18px;
  background: rgba(24, 34, 59, 0.06);
}

.access-toggle label {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

#access-login-mode:checked ~ .access-card-head [for="access-login-mode"],
#access-signup-mode:checked ~ .access-card-head [for="access-signup-mode"],
.access-toggle label.is-active {
  background: rgba(212, 175, 55, 0.16);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.access-form {
  display: grid;
  gap: 16px;
}

.forgot-password-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.forgot-password-note summary {
  color: var(--gold);
  font-weight: 800;
  cursor: pointer;
}

.forgot-password-note p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.access-card-single .access-form {
  display: none;
}

#access-login-mode:checked ~ #customer-login-form,
#access-signup-mode:checked ~ #customer-register-form {
  display: grid;
}

.setup-helper,
.call-detail {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.88));
}

.setup-helper p:last-child,
.call-detail p:last-child {
  margin-bottom: 0;
}

.setup-feedback {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--accent-deep);
  font-size: 0.92rem;
}

.form-note,
.workspace-subcopy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.setup-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.access-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.relation-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -4px;
}

.relation-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.relation-chip:hover,
.relation-chip.is-selected {
  transform: translateY(-1px);
  background: rgba(31, 178, 132, 0.12);
  border-color: rgba(31, 178, 132, 0.32);
  color: var(--accent-deep);
}

.setup-form input,
.setup-form select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.setup-form input:focus,
.setup-form select:focus {
  outline: 2px solid rgba(31, 178, 132, 0.24);
  border-color: rgba(31, 178, 132, 0.58);
}

.access-form input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.access-form input:focus,
.access-form select:focus {
  outline: 2px solid rgba(31, 178, 132, 0.24);
  border-color: rgba(31, 178, 132, 0.58);
}

.access-form select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.password-field {
  position: relative;
  display: block;
  width: 100%;
}

.password-field input {
  padding-right: 92px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  caret-color: var(--accent);
}

.password-field input::placeholder {
  color: rgba(248, 250, 252, 0.54);
  -webkit-text-fill-color: rgba(248, 250, 252, 0.54);
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  min-width: 64px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(224, 185, 79, 0.34);
  border-radius: 999px;
  background: rgba(224, 185, 79, 0.14);
  color: #ffe8a3;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  outline: none;
  background: rgba(224, 185, 79, 0.24);
  border-color: rgba(224, 185, 79, 0.58);
  color: #fff8df;
}

.setup-sidecopy {
  display: grid;
  gap: 18px;
}

.ritual-note {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.9)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 42%);
}

.assurance ul,
.signal-list,
.asset-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.assurance li,
.asset-list li {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid rgba(24, 34, 59, 0.08);
}

.dashboard-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-crest {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 11, 18, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.dashboard-crest img {
  width: 96px;
  height: 96px;
  margin-right: 18px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(24, 34, 59, 0.12);
}

.dashboard-idea-header {
  position: relative;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 14%, rgba(212, 175, 55, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(31, 178, 132, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.92));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.dashboard-idea-header::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.dashboard-idea-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.idea-board-copy,
.idea-signal-map {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.idea-board-copy {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.92), rgba(8, 11, 18, 0.52)),
    url("/assets/shravan-talk-widget.jpg") right 18% center / min(46%, 330px) no-repeat,
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(8, 11, 18, 0.92));
}

.idea-board-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  pointer-events: none;
}

.idea-board-copy > * {
  position: relative;
  max-width: 56ch;
}

.idea-board-copy h3 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.9rem);
  line-height: 0.96;
}

.idea-board-copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.idea-signal-map {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(31, 178, 132, 0.12), rgba(255, 255, 255, 0.08));
}

.idea-signal-map::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: calc(50% - 90px);
  top: calc(50% - 90px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(212, 175, 55, 0.035);
  pointer-events: none;
}

.idea-signal-map article {
  position: relative;
  z-index: 1;
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.9);
}

.idea-signal-map article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(31, 178, 132, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.9);
}

.idea-signal-map article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.9);
}

.idea-signal-map span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.idea-signal-map strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.idea-signal-map small {
  color: var(--muted);
  line-height: 1.55;
}

.idea-respect-strip span {
  min-height: 70px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(248, 250, 252, 0.9);
}

.dashboard-voice-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 12%, rgba(212, 175, 55, 0.22), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(31, 178, 132, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.9));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.voice-stage-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.voice-stage-art img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: center 25%;
}

.voice-mic-button {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  min-height: 56px;
  min-width: min(230px, calc(100% - 32px));
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(212, 175, 55, 0.44);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.98), rgba(173, 129, 20, 0.96));
  color: #080b12;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 10px rgba(212, 175, 55, 0.08);
  transform: translateX(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.voice-mic-button:hover {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36), 0 0 0 12px rgba(212, 175, 55, 0.1);
}

.voice-mic-button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
}

.voice-stage-copy h3 {
  max-width: 13ch;
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 0.98;
}

.voice-stage-copy p:last-of-type {
  max-width: 54ch;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.voice-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.voice-status-row span {
  padding: 9px 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.voice-control-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.74);
}

.voice-control-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.voice-control-card p:not(.workspace-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workspace-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.routine-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.routine-slot {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.72);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.routine-slot:hover,
.routine-slot.is-selected {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.28);
  background: rgba(17, 24, 39, 0.96);
  box-shadow: 0 12px 24px rgba(24, 34, 59, 0.06);
}

.routine-slot strong,
.routine-slot span,
.routine-slot small {
  display: block;
}

.routine-slot strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}

.routine-slot span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.routine-slot small {
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(24, 34, 59, 0.08);
  cursor: pointer;
  transition: color 180ms ease;
}

.timeline-entry h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.timeline-entry.is-selected h4,
.timeline-entry.active h4 {
  color: var(--accent-deep);
}

.timeline-entry.waiting h4 {
  color: #9f7b41;
}

.call-detail {
  margin-top: 26px;
}

.call-detail-head,
.detail-grid {
  display: grid;
  gap: 18px;
}

.call-detail-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.detail-status {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 34, 59, 0.08);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-grid,
.detail-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid {
  margin-top: 20px;
}

.detail-columns {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.detail-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-copy {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(24, 34, 59, 0.08);
  color: var(--muted);
}

.detail-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.secondary-context {
  display: grid;
  gap: 18px;
}

.backend-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.backend-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card,
.backend-section,
.backend-activity-item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.92), rgba(31, 178, 132, 0.68));
}

.metric-card:nth-child(1),
.metric-card:nth-child(2),
.metric-card:nth-child(8),
.metric-card:nth-child(9) {
  background:
    radial-gradient(circle at top right, rgba(31, 178, 132, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(17, 24, 39, 0.76);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-family: "Playfair Display", serif;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.metric-card span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.backend-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.backend-activity {
  display: grid;
  gap: 14px;
}

.data-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.metric-card.compact {
  min-height: 96px;
}

.backend-data-view {
  display: grid;
  gap: 18px;
}

.data-table-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.data-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.data-table-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.data-table-head span,
.data-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.data-empty {
  margin: 0;
  padding: 18px 20px;
}

.data-table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  max-width: 280px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-table th {
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.backend-activity-item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.backend-activity-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.secondary-context section {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(24, 34, 59, 0.08);
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(8, 11, 18, 0.34);
  color: var(--muted);
}

.signal-list strong {
  color: var(--ink);
  text-align: right;
  overflow-wrap: anywhere;
}

.detail-list {
  gap: 10px;
}

.detail-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(8, 11, 18, 0.34);
  color: var(--muted);
}

.asset-list li:first-child,
.assurance li:first-child {
  border-top: 0;
  padding-top: 0;
}

.coming-soon-hero,
.coming-soon-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 11, 18, 0.92));
}

.coming-soon-hero::before,
.coming-soon-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(212, 175, 55, 0.08));
}

.coming-soon-hero > *,
.coming-soon-footer > * {
  position: relative;
}

.coming-soon-hero h3,
.coming-soon-footer h3,
.coming-soon-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

.coming-soon-hero h3 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.coming-hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coming-hero-marks span,
.coming-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-hero-marks span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.coming-soon-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.coming-soon-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
}

.coming-soon-card.is-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 78% 0%, rgba(212, 175, 55, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(34, 42, 58, 0.96), rgba(9, 13, 22, 0.92));
}

.coming-label {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
}

.coming-soon-card h3 {
  font-size: 1.55rem;
}

.coming-soon-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.coming-soon-footer {
  margin-top: 18px;
}

.coming-soon-footer h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.roadmap-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.roadmap-hero p:not(.workspace-label) {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.roadmap-phase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.roadmap-phase {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 4%, rgba(224, 185, 79, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(8, 11, 18, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.roadmap-phase::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(224, 185, 79, 0.74), transparent);
}

.roadmap-phase.is-active,
.roadmap-phase.is-featured {
  background:
    radial-gradient(circle at 78% 0%, rgba(31, 178, 132, 0.14), transparent 36%),
    radial-gradient(circle at 18% 12%, rgba(224, 185, 79, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(22, 31, 49, 0.98), rgba(8, 11, 18, 0.92));
}

.roadmap-phase h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.42rem;
  line-height: 1.16;
}

.roadmap-phase ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-phase li {
  color: #c8d5ea;
  font-size: 0.92rem;
  line-height: 1.45;
}

.roadmap-phase li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(224, 185, 79, 0.48);
}

.roadmap-module-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 11, 18, 0.44);
}

.roadmap-module-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e4f7;
  font-size: 0.86rem;
  font-weight: 700;
}

.roadmap-download {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-spin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes wave-pulse {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes mic-pulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(31, 178, 132, 0.12);
  }

  50% {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36), 0 0 0 16px rgba(31, 178, 132, 0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .setup-layout,
  .dashboard-layout,
  .dashboard-idea-board,
  .access-layout,
  .auth-page-layout,
  .founder-hero,
  .founder-grid,
  .founder-story-card.is-wide,
  .founder-mission-panel,
  .founder-mission-list,
  .auth-proof-grid,
  .post-login-home,
  .dashboard-voice-stage,
  .backend-layout,
  .backend-columns,
  .backend-metrics,
  .backend-page-nav,
  .owner-console-hero,
  .care-respect-strip,
  .flow-grid,
  .app-map-grid,
  .landing-band,
  .talk-shravan-panel,
  .landing-mini-grid,
  .routine-preview-grid,
  .premium-rails,
  .routine-strip,
  .detail-grid,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .heritage-banner,
  .dashboard-crest {
    grid-template-columns: 1fr;
  }

  .dashboard-crest {
    justify-items: start;
  }

  .idea-board-copy {
    min-height: 320px;
    background:
      linear-gradient(180deg, rgba(8, 11, 18, 0.88), rgba(8, 11, 18, 0.58)),
      url("/assets/shravan-talk-widget.jpg") right 16px top 18px / min(46%, 220px) no-repeat,
      radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%),
      rgba(17, 24, 39, 0.96);
  }

  .hero {
    min-height: 680px;
    padding-top: 42px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 100%;
  }

  .hero-proof-panel {
    width: min(520px, calc(100% - 44px));
    right: 22px;
  }

  .founder-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 11, 18, 0.95), rgba(8, 11, 18, 0.68)),
      url("/assets/shravan-anime-hero.jpg") center / cover no-repeat;
  }

  .care-flow-visual {
    grid-template-columns: 1fr;
  }

  .care-flow-line {
    width: 2px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.72), transparent);
  }

  .coming-soon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-card {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .public-demo-call {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 20px));
    padding: 22px;
  }

  .page-shell {
    padding: 10px;
  }

  .panel-header,
  .panel-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .brand {
    align-items: start;
  }

  .brand-copy span:last-child {
    max-width: 27ch;
    line-height: 1.35;
  }

  .topnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .topnav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
  }

  .topbar-actions {
    display: none;
  }

  .quiet-strip {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .scenario-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .scenario-card {
    min-height: 238px;
    border-radius: 24px;
  }

  .scenario-card div {
    padding: 18px;
  }

  .quiet-strip ul {
    justify-content: flex-start;
  }

  .access-card-head {
    grid-template-columns: 1fr;
  }

  .access-toggle {
    width: 100%;
  }

  .auth-story-panel h2 {
    max-width: 9ch;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .auth-story-panel > p {
    max-width: 29ch;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .trial-offer-card,
  .auth-proof-grid article,
  .access-card,
  .auth-card,
  .backend-panel,
  .backend-section,
  .owner-console-hero {
    max-width: 100%;
    border-radius: 22px;
    padding: 20px;
  }

  .panel-header h2,
  .auth-story-panel h2,
  .access-card h2,
  .access-card h3,
  .backend-panel h3,
  .owner-console-hero h3 {
    max-width: 100%;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .panel-copy,
  .access-copy,
  .auth-story-panel > p,
  .backend-panel p,
  .owner-console-hero p {
    max-width: 100%;
  }

  .trial-offer-card strong {
    font-size: 2rem;
  }

  .auth-story-panel::before {
    width: 72px;
    height: 72px;
    right: 18px;
  }

  .auth-blessing {
    display: none;
  }

  .hero {
    gap: 26px;
    min-height: auto;
    padding: 24px 18px 18px;
    border-radius: 30px;
  }

  .hero.screen.is-active {
    display: block;
  }

  .hero-copy {
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.8vw, 2.8rem);
    max-width: 9ch;
  }

  .hero-text,
  .hero-points {
    max-width: 29ch;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
    max-width: 100%;
  }

  .hero-actions .solid-button,
  .hero-actions .ghost-button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-points {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-visual {
    min-height: 100%;
  }

  .heritage-banner-copy,
  .dashboard-crest-copy {
    padding: 22px 20px;
  }

  .dashboard-crest img {
    margin: 0 0 12px 20px;
    width: 78px;
    height: 78px;
  }

  .hero-lines {
    gap: 10px;
  }

  .hero-lines div,
  .timeline-entry {
    grid-template-columns: 1fr;
  }

  .hero-proof-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-story-card,
  .hero-signal-card {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-story-card h3 {
    font-size: 1.2rem;
  }

  .hero-lines div {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .report-status-grid {
    grid-template-columns: 1fr;
  }

  .call-detail-head {
    grid-template-columns: 1fr;
  }

  .flow-section,
  .app-map-section,
  .landing-band,
  .talk-shravan-panel,
  .final-cta,
  .panel-view {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 22px 16px;
    border-radius: 24px;
  }

  .section-heading h2,
  .landing-band h2,
  .final-cta h2 {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .flow-grid article,
  .app-map-grid article,
  .care-flow-node,
  .landing-mini-grid article,
  .routine-preview-grid article {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
    overflow: hidden;
  }

  .flow-grid article::after {
    display: none;
  }

  .phone-preview-shell {
    padding: 10px;
    border-radius: 30px;
  }

  .phone-preview {
    padding: 18px;
    border-radius: 22px;
  }

  .call-time-picks {
    grid-template-columns: 1fr;
  }

  .talk-shravan-panel {
    gap: 18px;
  }

  .dashboard-voice-stage {
    padding: 20px;
    border-radius: 26px;
  }

  .voice-stage-art {
    min-height: 240px;
  }

  .voice-stage-art img {
    min-height: 240px;
  }

  .voice-stage-copy h3 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.04;
  }

  .voice-control-card {
    min-height: auto;
  }

  .talk-shravan-art {
    min-height: 260px;
  }

  .talk-shravan-widget {
    padding: 12px;
  }

  .coming-soon-hero,
  .coming-soon-footer {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .roadmap-hero,
  .roadmap-download {
    grid-template-columns: 1fr;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-phase-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card.is-featured {
    grid-column: span 1;
  }

  .coming-soon-card,
  .roadmap-phase {
    min-height: 210px;
    border-radius: 22px;
  }

  .roadmap-download .solid-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 8px;
  }

  .topbar,
  .hero,
  .scenario-gallery,
  .quiet-strip,
  .flow-section,
  .app-map-section,
  .landing-band,
  .talk-shravan-panel,
  .dashboard-voice-stage,
  .final-cta,
  .panel-view {
    max-width: calc(100vw - 16px);
  }

  .topbar {
    position: static;
    margin-bottom: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span:last-child {
    font-size: 0.82rem;
  }

  .topnav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topnav a[href="/#pricing"] {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 22px;
    border-radius: 28px;
  }

  .quiet-strip {
    margin-top: 12px;
  }

  .scenario-card {
    min-height: 220px;
  }

  .scenario-card strong {
    font-size: 0.98rem;
  }

  .quiet-strip span {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .quiet-strip li {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero-copy,
  .hero-proof-panel,
  .hero-actions,
  .hero-points {
    width: 100%;
    max-width: 100%;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 9.2vw, 2.55rem);
    line-height: 1;
    max-width: 10ch;
  }

  .eyebrow {
    max-width: 28ch;
    font-size: 0.72rem;
    line-height: 1.45;
    letter-spacing: 0.14em;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    max-width: 25ch;
  }

  .hero-text {
    max-width: 29ch;
  }

  .hero-points {
    font-size: 0.95rem;
  }

  .hero-lines div:nth-child(n + 2) {
    display: none;
  }

  .hero-signal-card p {
    display: none;
  }

  .founder-hero {
    padding: 24px;
    border-radius: 24px;
  }

  .founder-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .founder-story-card,
  .founder-mission-panel,
  .founder-closing,
  .founder-portrait-card {
    border-radius: 22px;
  }

  .founder-story-card,
  .founder-mission-panel,
  .founder-closing {
    padding: 22px;
  }

  .hero-wave {
    display: none;
  }

  .flow-section,
  .app-map-section,
  .landing-band,
  .talk-shravan-panel,
  .final-cta {
    margin-top: 18px;
  }

  .talk-shravan-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .dashboard-voice-stage {
    padding: 16px;
    border-radius: 24px;
  }

  .voice-stage-art {
    min-height: 220px;
    border-radius: 22px;
  }

  .voice-stage-art img {
    min-height: 220px;
  }

  .dashboard-idea-header {
    padding: 20px;
    border-radius: 24px;
  }

  .dashboard-idea-board {
    gap: 12px;
  }

  .idea-board-copy,
  .idea-signal-map {
    border-radius: 22px;
  }

  .idea-board-copy {
    min-height: 300px;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(8, 11, 18, 0.88), rgba(8, 11, 18, 0.72)),
      url("/assets/shravan-talk-widget.jpg") right 12px top 14px / 150px no-repeat,
      rgba(17, 24, 39, 0.96);
  }

  .idea-board-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .idea-signal-map {
    grid-template-columns: 1fr;
  }

  .idea-signal-map article {
    min-height: 132px;
    padding: 20px;
  }

  .voice-mic-button {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    min-width: 0;
    transform: none;
  }

  .voice-mic-button:hover {
    transform: translateY(-1px);
  }

  .auth-voice-card {
    display: none;
  }

  .login-voice-inline {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .login-voice-inline img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .login-voice-inline h3 {
    font-size: 1.35rem;
  }

  .talk-shravan-art {
    min-height: 220px;
    border-radius: 22px;
  }

  .talk-shravan-copy h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .care-flow-visual,
  .app-map-grid,
  .flow-grid,
  .landing-mini-grid,
  .routine-preview-grid {
    gap: 12px;
  }

  .pricing-card strong {
    font-size: 2rem;
  }

  .section-heading h2,
  .landing-band h2,
  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(1.52rem, 6.4vw, 1.9rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .flow-section .section-heading h2,
  .app-map-section .section-heading h2 {
    max-width: 13.5ch;
  }

  .app-map-section .section-heading h2 {
    max-width: 100%;
  }

  .auth-page-layout {
    min-height: auto;
    gap: 14px;
  }

  .auth-story-panel,
  .auth-card,
  .access-card,
  .backend-panel,
  .backend-section,
  .owner-console-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .auth-story-panel h2,
  .panel-header h2,
  .owner-console-hero h3,
  .backend-panel h3,
  .access-card h2,
  .access-card h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 7.8vw, 2.28rem);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .auth-story-panel > p,
  .panel-copy,
  .access-copy,
  .backend-panel p,
  .owner-console-hero p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .trial-offer-card,
  .auth-proof-grid article,
  .care-next-step-card,
  .care-checklist-card,
  .google-play-billing-card,
  .customer-live-call-card,
  .report-history-card,
  .backend-metrics article,
  .backend-page-nav a {
    border-radius: 18px;
  }

  .solid-button,
  .ghost-button,
  .wide,
  .backend-page-nav a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  input,
  select,
  textarea {
    width: 100%;
  }

  .panel-view {
    padding: 18px 12px;
    border-radius: 22px;
  }

  .access-form input,
  .access-form select {
    padding: 16px;
    border-radius: 18px;
  }

  .backend-page-nav {
    gap: 8px;
  }

  .backend-page-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .backend-page-nav button {
    min-height: 46px;
    border-radius: 14px;
  }

  .signal-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .signal-list strong {
    text-align: left;
  }

  .backend-metrics {
    gap: 12px;
  }

  .customer-live-call-card {
    grid-column: span 1;
  }

  .customer-live-call-form {
    grid-template-columns: 1fr;
  }
}


/* Route-page safeguards: keep app and owner screens below the shell header on small viewports. */
body[data-route="app"] .panel-view.screen.is-active,
body[data-route="owner-login"] .panel-view.screen.is-active,
body[data-route="owner-dashboard"] .panel-view.screen.is-active {
  scroll-margin-top: 24px;
}

@media (max-width: 820px) {
  body[data-route="app"] .panel-view.screen.is-active,
  body[data-route="owner-login"] .panel-view.screen.is-active,
  body[data-route="owner-dashboard"] .panel-view.screen.is-active {
    margin-top: 0;
  }

  body[data-route="app"] .auth-story-panel h2,
  body[data-route="owner-login"] .panel-header h2,
  body[data-route="owner-dashboard"] .panel-header h2 {
    padding-top: 2px;
  }
}

/* SHRAVAN_V70_MOBILE_FIX */
@media (max-width: 480px) {
  body[data-route="landing"] .hero {
    min-height: auto !important;
    padding: 22px !important;
  }

  body[data-route="landing"] .hero-copy {
    max-width: 100% !important;
  }

  body[data-route="landing"] .hero h1 {
    max-width: 12ch !important;
    font-size: clamp(2rem, 8.4vw, 2.32rem) !important;
    line-height: 1.02 !important;
  }

  body[data-route="landing"] .hero-text {
    max-width: 25ch !important;
    font-size: 0.96rem !important;
    line-height: 1.58 !important;
  }

  body[data-route="landing"] .hero-points {
    max-width: 25ch !important;
  }

  body[data-route="landing"] .hero-image {
    object-position: 62% center !important;
  }

  body[data-route="landing"] .hero-image-overlay {
    background:
      linear-gradient(90deg, rgba(8, 11, 18, 0.98) 0%, rgba(8, 11, 18, 0.84) 47%, rgba(8, 11, 18, 0.35) 78%, rgba(8, 11, 18, 0.55) 100%),
      linear-gradient(180deg, rgba(8, 11, 18, 0.05), rgba(8, 11, 18, 0.76)) !important;
  }

  body[data-route="landing"] .hero-actions .solid-button,
  body[data-route="landing"] .hero-actions .ghost-button {
    width: min(100%, 270px) !important;
  }
}
