:root {
  --bg: #f3f8f6;
  --surface: rgba(250, 255, 252, 0.84);
  --surface-strong: #f9fdfb;
  --surface-tint: rgba(231, 250, 244, 0.78);
  --ink: #10222a;
  --muted: #53646d;
  --line: rgba(16, 34, 42, 0.12);
  --line-strong: rgba(8, 96, 87, 0.2);
  --accent: #0f8f80;
  --accent-bright: #18b7a4;
  --accent-soft: #9fe6d6;
  --accent-deep: #0b5d55;
  --shadow: 0 24px 64px rgba(13, 43, 39, 0.12);
  --shadow-strong: 0 28px 80px rgba(10, 40, 35, 0.18);
  --max-width: 1180px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(159, 230, 214, 0.48), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(15, 143, 128, 0.18), transparent 22%),
    linear-gradient(180deg, #f8fcfa 0%, #eef7f3 100%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

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

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(78px);
  pointer-events: none;
}

.ambient-one {
  top: 140px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(24, 183, 164, 0.16);
}

.ambient-two {
  top: 760px;
  left: -120px;
  width: 290px;
  height: 290px;
  background: rgba(159, 230, 214, 0.34);
}

.site-header,
.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0 8px;
  backdrop-filter: blur(20px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 6px -16px auto;
  height: calc(100% - 6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(248, 252, 250, 0.56);
  box-shadow: 0 10px 30px rgba(14, 53, 47, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup {
  display: block;
  width: min(220px, 42vw);
  filter: drop-shadow(0 14px 22px rgba(8, 54, 48, 0.18));
}

.brand-lockup--small {
  width: min(188px, 58vw);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.demo-link:hover {
  color: var(--ink);
}

.site-header__actions,
.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.demo-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.section {
  padding: 30px 0;
}

.eyebrow,
.mockup-label,
.plan-tag,
.help-label {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.9rem, 5.2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #fff;
  box-shadow: 0 18px 30px rgba(15, 143, 128, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button-compact {
  min-height: 40px;
  padding: 0 16px;
}

.button-full {
  width: 100%;
}

.hero {
  padding-top: 18px;
  padding-bottom: 14px;
}

.hero-banner,
.hero-copy,
.hero-visual,
.problem-panel,
.card,
.mockup-card,
.faq-item,
.plan-card,
.form-shell,
.cta-band,
.thank-you-card,
.trust-billboard {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy,
.hero-visual,
.problem-panel,
.thank-you-card {
  border-radius: var(--radius-lg);
}

.hero-banner {
  padding: 34px 24px 28px;
  border: 0;
  border-radius: 38px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy,
.hero-visual {
  padding: 30px;
}

.hero-copy {
  border-color: rgba(15, 143, 128, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 251, 0.96)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(12, 44, 39, 0.1);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 11ch;
}

.hero-headline {
  display: grid;
  gap: 0.42em;
  justify-items: center;
  max-width: none;
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.9vw, 1.64rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #0b1520;
}

.hero-headline-line {
  display: block;
  text-align: center;
}

.hero-headline-group {
  display: grid;
  gap: 0.3em;
  justify-items: center;
  width: fit-content;
  margin: 0 auto;
}

.hero-headline-line--final {
  width: 100%;
  margin-top: 1.18em;
  font-size: clamp(1.34rem, 2.35vw, 2rem);
  white-space: nowrap;
}

.hero-headline-emphasis {
  text-decoration: none;
}

.hero-text,
.page-hero-copy {
  max-width: 40ch;
  margin: 18px 0 0;
  font-size: 1rem;
  color: #41515a;
}

.hero-module-copy {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.hero-microcopy,
.page-hero-note,
.pricing-microcopy {
  margin: 14px 0 0;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-visual {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(235, 251, 247, 0.92), rgba(247, 253, 250, 0.82)),
    var(--surface);
}

.scenario-section {
  margin-top: 6px;
  padding-top: 22px;
  padding-bottom: 36px;
  background:
    linear-gradient(180deg, rgba(234, 249, 244, 0.9), rgba(247, 253, 251, 0.98)),
    rgba(244, 251, 248, 0.96);
  border-radius: 34px;
}

.scenario-section__header {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.scenario-section__label {
  display: inline-flex;
  min-width: min(100%, 470px);
  justify-content: center;
  padding: 16px 22px;
  background: rgba(225, 246, 239, 0.95);
  border: 2px solid #0b2836;
  color: var(--accent-deep);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.scenario-stack {
  display: grid;
  gap: 12px;
}

.scenario-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.scenario-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-stars {
  color: #f0b33a;
  letter-spacing: 0.06em;
}

.scenario-stars--two {
  letter-spacing: 0.12em;
}

.scenario-quote {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
}

.scenario-response {
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(234, 244, 243, 0.96);
}

.scenario-response span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-response p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
}

.logo-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(10, 74, 67, 0.08), rgba(255, 255, 255, 0.8));
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-grid,
.demo-grid,
.card-grid,
.steps-grid,
.trust-items,
.support-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.mockup-card,
.card,
.faq-item,
.plan-card {
  padding: 20px;
  border-radius: var(--radius-md);
}

.mockup-card h3,
.card h3,
.faq-item h3,
.plan-card h3 {
  margin-bottom: 10px;
}

.chat-thread {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.chat-bubble {
  max-width: 92%;
  padding: 11px 13px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-bubble--incoming {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 143, 128, 0.12);
  color: var(--ink);
}

.chat-bubble--outgoing {
  justify-self: end;
  background: rgba(15, 143, 128, 0.14);
  color: var(--accent-deep);
}

.dashboard-stats,
.assistant-lines,
.pill-list,
.category-list,
.feature-list,
.form-trust-list,
.trust-bullets {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.dashboard-stat,
.assistant-line,
.pill-item,
.category-pill,
.trust-item,
.reassurance-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-stat {
  padding: 14px;
}

.dashboard-stat strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.dashboard-stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.assistant-line {
  padding: 12px 14px;
  color: var(--ink);
}

.hero-support {
  padding-top: 6px;
}

.hero-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.section-heading p {
  margin: 12px 0 0;
  max-width: 62ch;
}

.hero-support-item,
.trust-item,
.category-pill,
.reassurance-item {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 500;
}

.trust-items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-section,
.demo-layout,
.form-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.problem-panel {
  padding: 26px;
}

.problem-panel p:last-child {
  margin-bottom: 0;
}

.steps-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.scenario-section + .section {
  padding-top: 42px;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.feature-benefit,
.mini-benefit,
.plan-best-for {
  margin: 12px 0 0;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 500;
}

.category-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.category-pill {
  text-align: center;
}

.demo-layout {
  align-items: center;
}

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

.demo-phone {
  min-height: 230px;
}

.demo-panel {
  min-height: 200px;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.phone-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 34, 42, 0.08);
}

.dashboard-row:last-child {
  border-bottom: 0;
}

.dashboard-row strong {
  color: var(--ink);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(15, 143, 128, 0.16), rgba(249, 255, 252, 0.92)),
    var(--surface);
}

.page-hero {
  max-width: 860px;
  padding-top: 40px;
}

.page-hero-title--product {
  max-width: 12.6ch;
  font-size: clamp(2.45rem, 4.35vw, 3rem);
}

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

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(15, 143, 128, 0.1), rgba(255, 255, 255, 0.78)),
    var(--surface);
  box-shadow: var(--shadow);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.plan-card {
  display: grid;
  align-content: start;
}

.plan-card-featured {
  border-color: rgba(15, 143, 128, 0.34);
  background:
    linear-gradient(180deg, rgba(225, 250, 244, 0.92), rgba(249, 255, 252, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}

.plan-badge,
.mockup-tag {
  display: inline-flex;
  align-items: center;
  align-self: start;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 143, 128, 0.12);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
}

.plan-price {
  margin: 12px 0 10px;
  color: var(--accent-deep);
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.plan-price span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  line-height: 1.45;
}

.plan-copy {
  margin-bottom: 0;
}

.feature-list li,
.form-trust-list li,
.trust-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
}

.feature-list li::before,
.form-trust-list li::before,
.trust-bullets li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.faq-item p {
  margin-bottom: 0;
}

.form-section {
  padding-top: 18px;
}

.form-shell {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.form-intro {
  padding: 6px 6px 0 2px;
}

.form-trust-list {
  margin-top: 20px;
}

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

.form-alert {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(183, 74, 45, 0.18);
  border-radius: 16px;
  background: rgba(255, 245, 241, 0.94);
  color: #8f3d26;
  font-size: 0.95rem;
  line-height: 1.5;
}

.trial-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
}

.trial-form label:last-of-type,
.trial-form .field-span {
  grid-column: 1 / -1;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 34, 42, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  outline: 2px solid rgba(15, 143, 128, 0.18);
  border-color: rgba(15, 143, 128, 0.42);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.trial-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.site-footer {
  padding: 12px 0 28px;
}

.site-footer__inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.centered-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-card {
  max-width: 820px;
  padding: 34px;
}

.thank-you-card .brand-lockup {
  width: min(280px, 80vw);
  margin-bottom: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .split-section,
  .demo-layout,
  .form-shell,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .trust-items,
  .hero-support-grid,
  .steps-grid,
  .support-grid,
  .plan-grid,
  .reassurance-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-header {
    flex-wrap: wrap;
  }

  .site-header::after {
    border-radius: 32px;
  }
}

@media (max-width: 780px) {
  .site-header,
  .section,
  .site-footer__inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    position: static;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-header::after {
    inset: 0;
    height: 100%;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .site-header__actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .hero-visual,
  .hero-banner,
  .problem-panel,
  .card,
  .mockup-card,
  .faq-item,
  .plan-card,
  .form-shell,
  .cta-band,
  .thank-you-card {
    padding: 20px;
  }

  .hero-visual-grid,
  .trust-items,
  .hero-support-grid,
  .steps-grid,
  .card-grid,
  .scenario-grid,
  .category-list,
  .demo-grid,
  .support-grid,
  .plan-grid,
  .faq-grid,
  .reassurance-grid,
  .trial-trust-grid,
  .trial-form {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    width: min(200px, 72vw);
  }

  .hero-headline {
    font-size: clamp(0.94rem, 4.9vw, 1.34rem);
  }

  .hero-headline-line--final {
    font-size: clamp(1.2rem, 6.1vw, 1.65rem);
    white-space: normal;
  }

  .scenario-section__label {
    min-width: 0;
    width: 100%;
  }
}
