:root {
  --sun: #f8c64b;
  --sun-soft: #fff4ce;
  --sun-pale: #fffaf0;
  --ink: #303331;
  --ink-soft: #5f6662;
  --muted: #8b928e;
  --line: #e8e5dd;
  --paper: #ffffff;
  --paper-warm: #fbfaf7;
  --shadow: 0 24px 70px rgba(44, 42, 36, 0.08);
  --shadow-soft: 0 14px 42px rgba(44, 42, 36, 0.06);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 8%, rgba(248, 198, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px max(22px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(232, 229, 221, 0.92);
  background: #fff;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(248, 198, 75, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #232623;
  font-size: 19px;
  line-height: 1.05;
}

.brand small {
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav nav a,
footer nav a {
  transition: color 180ms ease;
}

.site-nav nav a:hover,
footer nav a:hover {
  color: #222522;
}

.nav-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-action,
.primary-action {
  background: #252824;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 40, 36, 0.12);
}

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

.nav-action:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

main,
footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
  min-height: calc(100vh - 82px);
  padding: 54px 0 92px;
}

.hero-copy,
.hero-visual,
.ask-strip,
.section-copy,
.section-heading,
.feature-grid article,
.screen-card,
.pricing-grid article,
.final-cta {
  animation: rise-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ad7d0b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #202320;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.42;
}

.hero-note {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

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

.hero-visual {
  position: relative;
  min-height: 590px;
}

.sun-presence {
  position: absolute;
  top: 18px;
  right: 34px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow:
    0 0 0 12px rgba(248, 198, 75, 0.14),
    0 28px 70px rgba(248, 198, 75, 0.28);
  animation: sunny-breathe 3.4s ease-in-out infinite;
}

.sun-presence.small {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
}

.voice-bubble {
  position: absolute;
  top: 128px;
  right: 0;
  z-index: 2;
  max-width: 340px;
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 999px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #424741;
  box-shadow: var(--shadow-soft);
  animation: bubble-float 5.8s ease-in-out infinite;
}

.demo-card {
  position: absolute;
  right: 24px;
  bottom: 48px;
  z-index: 3;
  width: min(310px, 76%);
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(44, 42, 36, 0.11);
  backdrop-filter: blur(14px);
  animation: demo-pop 6.4s ease-in-out infinite;
}

.demo-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b88710;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-pulse {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: var(--sun);
  box-shadow: 0 0 0 10px rgba(248, 198, 75, 0.14);
  animation: sunny-breathe 2.4s ease-in-out infinite;
}

.demo-card p {
  margin-bottom: 10px;
  color: #4e554f;
  font-size: 17px;
  line-height: 1.35;
}

.demo-card strong {
  color: #2f6f54;
  font-size: 14px;
}

.hero-copy .demo-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "pulse label"
    "pulse copy"
    "pulse result";
  column-gap: 14px;
  align-items: center;
  right: auto;
  bottom: auto;
  width: min(100%, 410px);
  margin-top: 18px;
  padding: 14px 16px;
}

.hero-copy .demo-label {
  grid-area: label;
  margin-bottom: 2px;
}

.hero-copy .demo-pulse {
  grid-area: pulse;
  margin: 0;
}

.hero-copy .demo-card p {
  grid-area: copy;
  margin-bottom: 2px;
}

.hero-copy .demo-card strong {
  grid-area: result;
}

.daily-preview {
  position: absolute;
  inset: 70px 36px 0 0;
  border: 1px solid rgba(225, 222, 214, 0.92);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 239, 0.78)),
    #fff;
  box-shadow: var(--shadow);
}

.preview-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 38px;
}

.preview-header span {
  color: #252824;
  font-size: 24px;
  font-weight: 780;
}

.preview-header small,
.focus-preview span,
.mini-grid span,
.screen-card p,
.screen-card li,
.pricing-grid li,
.pricing-grid p {
  color: var(--ink-soft);
}

.focus-preview {
  min-height: 280px;
  border: 1px solid rgba(232, 229, 221, 0.92);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.9);
}

.focus-preview p,
.mini-grid small,
.screen-card small,
.plan-label {
  display: block;
  margin-bottom: 14px;
  color: #b88710;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-preview h2 {
  max-width: 420px;
  margin-bottom: 28px;
  color: #202320;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.focus-preview h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--sun);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.mini-grid div {
  min-height: 132px;
  border: 1px solid rgba(232, 229, 221, 0.88);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.mini-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #292d29;
  font-size: 23px;
}

.ask-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  margin: -22px 0 48px;
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 96% 16%, rgba(248, 198, 75, 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.ask-strip h2 {
  max-width: 560px;
  margin: 0;
  color: #303531;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ask-examples {
  display: grid;
  gap: 12px;
}

.ask-examples span {
  display: block;
  border: 1px solid rgba(232, 229, 221, 0.88);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.86);
  color: #4b514c;
  font-size: clamp(15px, 1.7vw, 19px);
  box-shadow: 0 10px 28px rgba(44, 42, 36, 0.045);
}

.problem-section,
.voice-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
  min-height: min(820px, calc(100svh - 82px));
  padding: clamp(54px, 7vh, 86px) 0;
  border-top: 1px solid var(--line);
}

.section-copy h2,
.section-heading h2,
.feeling-section h2,
.screens-section h2,
.pricing-section h2,
.final-cta h2 {
  max-width: 760px;
  color: #252824;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-copy p,
.section-heading p,
.feeling-section > p,
.final-cta p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.58;
}

.section-copy strong {
  color: #252824;
  font-size: 22px;
}

.scatter-board {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(248, 198, 75, 0.14), transparent 13rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.scatter-card,
.scatter-center {
  position: absolute;
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #4e554f;
  font-weight: 720;
  box-shadow: 0 18px 42px rgba(44, 42, 36, 0.07);
}

.scatter-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #252824;
  color: #fff;
}

.card-one {
  top: 16%;
  left: 12%;
  animation: drift-a 8s ease-in-out infinite;
}

.card-two {
  top: 13%;
  right: 13%;
  animation: drift-b 7s ease-in-out infinite;
}

.card-three {
  bottom: 18%;
  left: 15%;
  animation: drift-c 9s ease-in-out infinite;
}

.card-four {
  right: 18%;
  bottom: 20%;
  animation: drift-a 7.6s ease-in-out infinite;
}

.card-five {
  top: 44%;
  left: 7%;
  animation: drift-b 8.4s ease-in-out infinite;
}

.section,
.feeling-section,
.screens-section,
.faq-section,
.pricing-section {
  padding: clamp(54px, 7vh, 86px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

.pricing-section {
  padding: clamp(26px, 4vh, 34px) 0;
}

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

.pricing-section h2 {
  font-size: clamp(32px, 3.8vw, 46px);
}

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

.feature-grid article,
.screen-card,
.pricing-grid article,
.final-cta {
  border: 1px solid rgba(232, 229, 221, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(44, 42, 36, 0.04);
}

.feature-grid article {
  min-height: 292px;
  padding: 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.feature-grid article:hover,
.screen-card:hover,
.pricing-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.feature-mark {
  display: block;
  width: 15px;
  height: 15px;
  margin-bottom: 62px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 10px rgba(248, 198, 75, 0.14);
}

.feature-grid h3,
.screen-card h3,
.pricing-grid h3 {
  color: #292d29;
  font-size: 25px;
  letter-spacing: -0.02em;
}

.feature-grid p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.voice-section {
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
}

.voice-stage {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(248, 198, 75, 0.2), transparent 12rem),
    linear-gradient(135deg, #ffffff, #fffaf0);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.voice-stage::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 198, 75, 0.18), transparent 62%);
  filter: blur(2px);
}

.site-sunny-button {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
  border: 0;
  background: transparent;
  color: #4e554f;
  cursor: pointer;
  font: inherit;
  font-weight: 780;
}

.site-sunny-dot {
  width: clamp(116px, 15vw, 158px);
  height: clamp(116px, 15vw, 158px);
  border-radius: 999px;
  background: var(--sun);
  box-shadow:
    0 0 0 16px rgba(248, 198, 75, 0.12),
    0 24px 70px rgba(248, 198, 75, 0.24);
  animation: voice-pulse-simple 2.8s ease-in-out infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-sunny-button:hover .site-sunny-dot {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 20px rgba(248, 198, 75, 0.13),
    0 30px 80px rgba(248, 198, 75, 0.3);
}

.site-sunny-button:disabled {
  cursor: default;
}

.site-sunny-button.has-spoken .site-sunny-dot {
  animation-duration: 1.8s;
}

.site-sunny-button.is-loading .site-sunny-dot {
  animation-duration: 0.9s;
}

.site-sunny-button.is-speaking .site-sunny-dot {
  box-shadow:
    0 0 0 18px rgba(248, 198, 75, 0.15),
    0 0 0 42px rgba(248, 198, 75, 0.08),
    0 28px 78px rgba(248, 198, 75, 0.28);
}

.site-sunny-text {
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(44, 42, 36, 0.06);
}

.site-sunny-response {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  text-align: center;
  opacity: 0.82;
}

.site-sunny-response.is-visible {
  color: #3e443f;
  opacity: 1;
}

.feeling-section {
  text-align: center;
}

.feeling-section h2,
.feeling-section > p {
  margin-left: auto;
  margin-right: auto;
}

.feeling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.feeling-grid p {
  min-height: 160px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.74);
  color: #424741;
  font-size: 22px;
  line-height: 1.32;
  box-shadow: 0 12px 34px rgba(44, 42, 36, 0.04);
}

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

.screen-card {
  min-height: 250px;
  padding: 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.screen-card.wide {
  grid-column: span 2;
}

.screen-focus {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  border-radius: 22px;
  padding: 22px;
  background: var(--sun-pale);
}

.screen-focus strong {
  color: #252824;
  font-size: 22px;
}

.screen-focus span {
  color: var(--ink-soft);
}

.screen-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.screen-card li {
  border-radius: 999px;
  padding: 12px 14px;
  background: #f7f5ef;
}

.project-lines {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.project-lines span {
  display: block;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 198, 75, 0.36), rgba(248, 198, 75, 0.08));
}

.project-lines span:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, rgba(115, 168, 220, 0.28), rgba(115, 168, 220, 0.08));
}

.project-lines span:nth-child(3) {
  width: 58%;
  background: linear-gradient(90deg, rgba(135, 187, 150, 0.28), rgba(135, 187, 150, 0.08));
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.faq-section .section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

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

.faq-list details {
  border: 1px solid rgba(232, 229, 221, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(44, 42, 36, 0.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #343935;
  font-size: 18px;
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: #b88710;
  font-weight: 850;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  line-height: 1.58;
}

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

.pricing-note {
  max-width: 700px;
  margin: 10px auto 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.42;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.trust-points span {
  min-height: 44px;
  border: 1px solid rgba(232, 229, 221, 0.9);
  border-radius: 18px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #484e49;
  font-weight: 760;
  text-align: center;
  box-shadow: 0 10px 28px rgba(44, 42, 36, 0.045);
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.pricing-grid article {
  padding: clamp(16px, 2vw, 20px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.pricing-grid h3 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 32px);
}

.pricing-grid h3 span {
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 4px 0 14px;
  border: 1px solid rgba(232, 229, 221, 0.92);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.82);
}

.pricing-tab {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-weight: 780;
}

.pricing-tab span {
  display: block;
  color: #9b7415;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
}

.pricing-tab.is-active {
  background: #252824;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 40, 36, 0.12);
}

.pricing-tab.is-active span {
  color: #f8d66d;
}

.price-panel {
  display: grid;
  justify-items: start;
}

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

.price-panel .primary-action {
  margin-top: 6px;
}

.pricing-grid ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 24px;
  line-height: 1.34;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sun);
}

.pro-plan {
  background:
    radial-gradient(circle at 80% 4%, rgba(248, 198, 75, 0.18), transparent 16rem),
    #fff !important;
}

.main-plan {
  border-color: rgba(248, 198, 75, 0.36) !important;
  box-shadow: 0 22px 64px rgba(44, 42, 36, 0.08);
}

.beta-plan {
  background: rgba(255, 255, 255, 0.7) !important;
}

.beta-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.66fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin: clamp(18px, 4vw, 36px) 0 24px;
  border: 1px solid rgba(232, 229, 221, 0.95);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 92% 18%, rgba(248, 198, 75, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(44, 42, 36, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  scroll-margin-top: 110px;
}

.beta-request-panel.is-highlighted,
.beta-request-panel:target {
  border-color: rgba(248, 198, 75, 0.76);
  box-shadow:
    0 0 0 8px rgba(248, 198, 75, 0.1),
    0 28px 80px rgba(44, 42, 36, 0.1);
}

.beta-request-panel h2 {
  margin: 0 0 14px;
  max-width: 620px;
  color: #323732;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.beta-request-panel p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.52;
}

.beta-request-card {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  border: 1px solid rgba(232, 229, 221, 0.92);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(44, 42, 36, 0.055);
}

.beta-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.beta-field label,
.beta-request-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.beta-field label {
  display: block;
  line-height: 1.2;
}

.beta-request-card input,
.beta-request-card textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(232, 229, 221, 0.96);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 253, 248, 0.9);
  color: #343a35;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  appearance: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.beta-request-card textarea {
  min-height: 128px;
  resize: vertical;
}

.beta-request-card input:focus,
.beta-request-card textarea:focus {
  border-color: rgba(248, 198, 75, 0.78);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(248, 198, 75, 0.12);
}

.beta-request-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.beta-request-card button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.beta-request-card .primary-action,
.beta-request-card .secondary-action {
  min-height: 48px;
  white-space: nowrap;
}

.beta-request-card button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.final-cta {
  margin: 26px 0 90px;
  padding: clamp(46px, 7vw, 82px);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-main {
  width: min(100% - 44px, 920px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.legal-hero {
  margin-bottom: 30px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-weight: 750;
}

.legal-hero h1 {
  max-width: 820px;
  color: #2f3430;
  font-size: clamp(44px, 8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.legal-hero p {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.legal-updated {
  display: inline-flex;
  margin-top: 8px;
  border: 1px solid rgba(248, 198, 75, 0.38);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 250, 240, 0.9);
  color: #806521;
  font-size: 13px;
  font-weight: 750;
}

.legal-card {
  border: 1px solid rgba(232, 229, 221, 0.94);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: #383d39;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-card strong {
  color: #353a36;
}

.legal-note {
  margin-top: 26px;
  border-left: 4px solid var(--sun);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.92);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: #3f443f;
  font-weight: 750;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sunny-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 12px rgba(248, 198, 75, 0.14),
      0 28px 70px rgba(248, 198, 75, 0.28);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
      0 0 0 22px rgba(248, 198, 75, 0.08),
      0 34px 82px rgba(248, 198, 75, 0.22);
  }
}

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

@keyframes voice-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes voice-pulse-simple {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes demo-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  48% {
    transform: translateY(-7px) scale(1.015);
  }
}

@keyframes rotate-soft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(10px, -8px) rotate(2deg);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
  50% {
    transform: translate(-8px, 10px) rotate(-3deg);
  }
}

@keyframes drift-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(1deg);
  }
  50% {
    transform: translate(8px, 8px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .site-nav nav {
    display: none;
  }

  .hero,
  .ask-strip,
  .problem-section,
  .voice-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 0 76px;
  }

  .hero-visual,
  .voice-stage,
  .scatter-board {
    min-height: 520px;
  }

  .daily-preview {
    inset: 74px 0 0;
  }

  .sun-presence {
    right: 28px;
  }

  .feature-grid,
  .feeling-grid,
  .screen-grid,
  .trust-points,
  .faq-section,
  .pricing-grid,
  .beta-request-panel {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    position: static;
  }

  .pricing-grid-single {
    grid-template-columns: 1fr;
  }

  .beta-request-card {
    max-width: none;
    justify-self: stretch;
  }

  .screen-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-nav {
    padding: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

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

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .pricing-grid .primary-action,
  .pricing-grid .secondary-action,
  .final-cta .primary-action,
  .beta-request-actions .primary-action,
  .beta-request-actions .secondary-action {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .beta-request-actions {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .voice-stage,
  .scatter-board {
    min-height: 470px;
  }

  .daily-preview {
    padding: 18px;
    border-radius: 26px;
  }

  .focus-preview {
    min-height: 238px;
    padding: 24px;
  }

  .focus-preview h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

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

  .voice-bubble {
    left: 0;
    right: auto;
    max-width: 300px;
  }

  .demo-card {
    right: 0;
    bottom: 28px;
    width: min(300px, 84%);
  }

  .scatter-card {
    max-width: 210px;
    font-size: 14px;
  }

  .section,
  .problem-section,
  .voice-section,
  .feeling-section,
  .screens-section,
  .faq-section,
  .pricing-section {
    padding: 68px 0;
  }

  .beta-request-panel {
    padding: 28px;
  }

  .feature-grid article,
  .screen-card,
  .pricing-grid article,
  .beta-request-card {
    min-height: 0;
    padding: 24px;
  }

  .feature-mark {
    margin-bottom: 38px;
  }

  .feeling-grid p {
    min-height: 0;
    font-size: 19px;
  }

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