@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #121d19;
  --ink-soft: #52615d;
  --muted: #6f7b77;
  --paper: #fbfaf4;
  --paper-soft: #eef5f1;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: #fffdf8;
  --line: rgba(18, 29, 25, 0.12);
  --line-strong: rgba(18, 29, 25, 0.2);
  --deep: #101a17;
  --deep-2: #17241f;
  --teal: #0c8b85;
  --teal-soft: #8dd8cd;
  --sage: #cfded2;
  --clay: #c66f4e;
  --clay-dark: #a85d43;
  --gold: #d8af62;
  --danger: #9b443e;
  --shadow: 0 30px 70px rgba(27, 40, 35, 0.15);
  --shadow-soft: 0 18px 48px rgba(27, 40, 35, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(198, 111, 78, 0.24), transparent 30rem),
    radial-gradient(circle at 92% 9%, rgba(207, 222, 210, 0.82), transparent 28rem),
    linear-gradient(135deg, #fbfaf4 0%, #eef5f1 52%, #f7eee5 100%);
}

body.site-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(141, 216, 205, 0.18), transparent 25rem),
    linear-gradient(135deg, #fbfaf4 0%, #eef5f1 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--deep);
  color: white;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 68px;
  padding: 10px 12px 10px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 34px rgba(16, 42, 53, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fbf5, #dceee7);
  box-shadow: inset 0 0 0 1px rgba(15, 27, 24, 0.09), 0 13px 28px rgba(15, 27, 24, 0.12);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: var(--deep);
}

.brand-mark::before {
  left: 11px;
  top: 13px;
  width: 22px;
  height: 4px;
  transform: rotate(-12deg);
  opacity: 0.38;
}

.brand-mark span {
  left: 14px;
  top: 20px;
  width: 15px;
  height: 4px;
  transform: rotate(9deg);
  opacity: 0.28;
}

.brand-mark::after {
  left: 10px;
  top: 27px;
  width: 24px;
  height: 5px;
  background: var(--teal);
  box-shadow: 8px -9px 0 -1px rgba(12, 139, 133, 0.42);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.nav-cta,
.button.dark {
  color: white;
  background: var(--deep);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(15, 27, 24, 0.2);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #0e7e86, #0a5f66);
  border-color: transparent;
  box-shadow: 0 20px 38px rgba(14, 126, 134, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
}

.nav-cta,
.button {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 104px;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: #49615a;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h1,
.section-heading h2,
.page-hero h1,
.privacy-band h2 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 24px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
}

.lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.phone {
  width: min(424px, 100%);
  margin-left: auto;
  padding: 16px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.phone-screen,
.scenario-screen {
  color: white;
  background:
    radial-gradient(circle at 78% 6%, rgba(12, 139, 133, 0.34), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    #101915;
  overflow: hidden;
  position: relative;
}

.phone-screen {
  min-height: 640px;
  padding: 20px;
  border-radius: 33px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.bubble {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 19px;
  margin: 14px 0;
  line-height: 1.42;
  font-size: 15px;
  animation: message-pop 0.55s ease-out both;
}

.incoming {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 7px;
}

.outgoing {
  margin-left: auto;
  color: #15231f;
  background: #dceee7;
  border-bottom-right-radius: 7px;
  animation-delay: 0.12s;
}

.coach-card {
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(232, 243, 239, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
  animation: fade-lift 0.7s ease-out both;
}

.label {
  margin-bottom: 10px;
  color: var(--teal-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-card h3 {
  margin: 0 0 9px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.coach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: end;
  margin: 0 0 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.steps,
.examples,
.plan-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 104px;
}

.step,
.plan-card,
.faq-card,
.page-card,
.scenario {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.step {
  padding: 24px;
  border-radius: 28px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: var(--deep);
  font-weight: 900;
  margin-bottom: 22px;
}

.step h3,
.plan-card h3,
.faq-card h3,
.page-card h2 {
  margin: 0 0 10px;
  letter-spacing: -0.035em;
}

.step p,
.plan-card p,
.faq-card p,
.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.55;
}

.examples {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 104px;
}

.scenario {
  padding: 14px;
  border-radius: 32px;
}

.scenario-screen {
  min-height: 520px;
  padding: 16px;
  border-radius: 24px;
}

.scenario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(141, 216, 205, 0.13);
  color: var(--teal-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 104px;
}

.panel {
  padding: 30px;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 104px;
  padding: 34px;
  border-radius: 34px;
  background: var(--deep);
  color: white;
  box-shadow: var(--shadow);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(198, 111, 78, 0.28);
  box-shadow: var(--shadow-soft);
}

.privacy-band h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.contact-band h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.privacy-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.contact-band p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 104px;
}

.plan-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 28px;
  border-radius: 32px;
}

.plan-card.featured {
  color: white;
  background: linear-gradient(150deg, var(--deep), #21362f);
}

.plan-card.featured p,
.plan-card.featured li,
.plan-card.featured .plan-meta {
  color: rgba(255, 255, 255, 0.74);
}

.plan-meta {
  margin-bottom: 18px;
  color: var(--clay-dark);
  font-weight: 900;
}

.plan-price {
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0;
}

.plan-price-note {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.plan-card.featured .plan-price,
.plan-card.featured .plan-price span,
.plan-card.featured .plan-price-note {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 72px;
}

.faq-card {
  padding: 24px;
  border-radius: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.page-hero {
  max-width: 850px;
  margin-bottom: 38px;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.page-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.page-card {
  padding: 28px;
  border-radius: 30px;
}

.page-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.notice {
  border-color: rgba(198, 111, 78, 0.28);
  background: rgba(255, 251, 246, 0.84);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  padding: 13px 14px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(12, 139, 133, 0.22);
  border-color: rgba(12, 139, 133, 0.68);
}

.form-note,
.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form button {
  cursor: pointer;
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes fade-lift {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes message-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .site-header {
    margin-bottom: 42px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .section-heading,
  .split,
  .privacy-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .phone {
    margin-left: 0;
  }

  .steps,
  .examples,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, var(--max-width));
    padding-top: 22px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .phone-screen {
    min-height: 600px;
  }

  .panel,
  .page-card,
  .privacy-band,
  .contact-band {
    padding: 24px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Standout polish layer (overrides above; ordered last on purpose)
   ============================================================ */

/* Premium layered gradient-mesh background */
body {
  background:
    radial-gradient(58rem 40rem at 90% -10%, rgba(14, 126, 134, 0.16), transparent 60%),
    radial-gradient(46rem 34rem at 4% 0%, rgba(244, 216, 155, 0.34), transparent 60%),
    radial-gradient(52rem 42rem at 50% 116%, rgba(197, 236, 231, 0.5), transparent 62%),
    linear-gradient(162deg, #f7fbf8 0%, #eef6f1 46%, #fff6ec 100%);
  min-height: 100vh;
}

/* Hero phone: gentle float + soft teal glow halo */
.hero { position: relative; }

.hero .phone {
  animation: float-soft 7s ease-in-out infinite;
}

.hero .phone::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(14, 126, 134, 0.22), transparent 72%);
  filter: blur(46px);
}

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

/* Trust line under the hero CTAs */
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 126, 134, 0.14);
}

/* "Coming soon" pill next to the primary CTA */
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(16, 42, 53, 0.05);
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.badge-soon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 175, 98, 0.22);
}

/* High-contrast dark privacy band */
.privacy-band {
  margin: 104px 0;
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-xl);
  color: #eaf4f1;
  background:
    radial-gradient(40rem 30rem at 100% 0%, rgba(14, 126, 134, 0.4), transparent 60%),
    linear-gradient(150deg, #102a35, #0a1f27);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-band h2 { color: #ffffff; }
.privacy-band p { color: rgba(234, 244, 241, 0.82); max-width: 760px; }

/* Featured plan: deep card with a teal glow + lift (high contrast, stands out) */
.plan-card.featured {
  border: 1px solid rgba(14, 126, 134, 0.5);
  background:
    radial-gradient(36rem 22rem at 100% 0%, rgba(14, 126, 134, 0.45), transparent 60%),
    linear-gradient(155deg, #102a35, #0b2129);
  box-shadow: 0 36px 80px rgba(14, 126, 134, 0.28);
  transform: translateY(-8px);
}

.plan-card.featured .plan-meta { color: #7fe6d6; }

/* Card hover lift across the board */
.step,
.scenario,
.plan-card,
.faq-card,
.panel {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step:hover,
.scenario:hover,
.faq-card:hover,
.panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ============================================================
   Hero "live preview" auto-demo + creative motion
   ============================================================ */

.demo-live { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.66); }
.demo-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5fe0c8;
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 224, 200, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(95, 224, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 224, 200, 0); }
}

.demo-thread { display: flex; flex-direction: column; }

.demo-step {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}
.demo-step.is-shown { opacity: 1; transform: none; }
.demo-step.incoming { align-self: flex-start; }
.demo-step.outgoing { align-self: flex-end; }

/* JS controls timing, so disable the default auto-pop inside the demo */
.demo-thread .bubble { animation: none; margin: 10px 0; }
.demo-thread .coach-card { animation: none; }

.reading-chip {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start; margin: 6px 0 2px;
  padding: 9px 14px; border-radius: 14px;
  color: #8fe7da;
  background: rgba(95, 224, 200, 0.1);
  border: 1px solid rgba(95, 224, 200, 0.2);
  font-size: 13px; font-weight: 700;
}
.reading-chip .dots { display: inline-flex; gap: 4px; }
.reading-chip .dots i,
.typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; opacity: 0.5;
  animation: dot-blink 1.1s infinite;
}
.reading-chip .dots i:nth-child(2),
.typing i:nth-child(2) { animation-delay: 0.18s; }
.reading-chip .dots i:nth-child(3),
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot-blink {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.typing.outgoing {
  display: inline-flex; gap: 5px; align-items: center;
  padding: 14px 16px; margin: 10px 0;
  border-radius: 19px; border-bottom-right-radius: 7px;
  background: #dceee7; color: #15231f;
}

/* Gradient text accent on the hero headline */
.grad-text {
  background: linear-gradient(115deg, #0e7e86 8%, #3aa6a0 46%, #d8af62 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Breathing glow behind the hero phone */
.hero .phone::before { animation: glow-breathe 9s ease-in-out infinite; }
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-step { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .phone,
  .hero .phone::before,
  .demo-live i,
  .reading-chip .dots i,
  .typing i { animation: none !important; }
}

/* ============================================================
   Bento "what makes it different" + scenario motion
   ============================================================ */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 104px;
}

.bento-tile {
  grid-column: span 2;
  padding: 30px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bento-tile.tile-half { grid-column: span 3; }

.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal);
  background: linear-gradient(150deg, rgba(14, 126, 134, 0.12), rgba(244, 216, 155, 0.18));
  border: 1px solid rgba(14, 126, 134, 0.14);
}

.bento-icon svg { width: 25px; height: 25px; }

.bento-tile h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.bento-tile.tile-half h3 { font-size: 26px; }

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

/* Stagger the example chat bubbles in as each scenario reveals */
.scenario .bubble { animation: none; }
.scenario .coach-card { animation: none; }

.scenario.is-visible .bubble {
  animation: message-pop 0.6s ease both;
}
.scenario.is-visible .incoming { animation-delay: 0.05s; }
.scenario.is-visible .coach-card {
  animation: fade-lift 0.7s ease both;
  animation-delay: 0.35s;
}
.scenario.is-visible .outgoing { animation-delay: 0.65s; }
.scenario.is-visible .mini-note {
  animation: fade-lift 0.6s ease both;
  animation-delay: 0.85s;
}

@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr; margin-bottom: 64px; }
  .bento-tile,
  .bento-tile.tile-half { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .scenario.is-visible .bubble,
  .scenario.is-visible .coach-card,
  .scenario.is-visible .mini-note { animation: none !important; }
}

/* ============================================================
   "Right where the conversation happens" surfaces grid
   ============================================================ */

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 104px;
}

.surface {
  padding: 26px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.surface:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.surface-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--teal);
  background: linear-gradient(150deg, rgba(14, 126, 134, 0.12), rgba(244, 216, 155, 0.18));
  border: 1px solid rgba(14, 126, 134, 0.14);
}

.surface-icon svg { width: 23px; height: 23px; }
.surface h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -0.02em; }
.surface p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 15px; }

@media (max-width: 960px) {
  .surface-grid { grid-template-columns: 1fr; margin-bottom: 64px; }
}
