:root {
  --ink: #102a28;
  --sage: #3d5552;
  --paper: #eef5f3;
  --paper-deep: #d9ebe6;
  --teal: #0b6e6a;
  --teal-deep: #085450;
  --foam: #f7fffd;
  --cream: #f7fbfa;
  --line: rgba(16, 42, 40, 0.1);
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --radius-md: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --shadow-card: 0 0 0 1px rgba(16, 42, 40, 0.06),
    0 1px 2px rgba(16, 42, 40, 0.04);
  --shadow-phone: 0 28px 64px -18px rgba(8, 84, 80, 0.32),
    0 0 0 1px rgba(16, 42, 40, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  text-wrap: pretty;
  margin: 0;
}

::selection {
  background: color-mix(in srgb, var(--teal) 22%, transparent);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  border-radius: 8px;
  background: var(--teal);
  color: var(--foam);
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .shell {
    width: min(100% - 3rem, var(--shell));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a:not(.button) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
}

.nav-desktop a:not(.button):hover {
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 150ms var(--ease), opacity 150ms var(--ease);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 1rem;
}

.nav-mobile-inner a:not(.button) {
  padding: 0.85rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.nav-mobile-inner .button {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms var(--ease), color 150ms var(--ease),
    border-color 150ms var(--ease), transform 150ms var(--ease);
}

.button.sm {
  min-height: 2.25rem;
  padding: 0 0.95rem;
  font-size: 0.875rem;
}

.button.lg {
  min-height: 3rem;
  padding: 0 1.25rem;
  font-size: 1rem;
}

.button.primary {
  background: var(--teal);
  color: var(--foam);
}

.button.primary:hover {
  background: var(--teal-deep);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost:hover {
  background: var(--cream);
}

.button.foam {
  background: var(--foam);
  color: var(--teal-deep);
  width: 100%;
  border: 0;
}

.button.foam:hover {
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-wash {
  pointer-events: none;
  position: absolute;
  inset: 0 0 auto;
  height: 20rem;
  background:
    radial-gradient(
      900px 420px at 12% -10%,
      color-mix(in srgb, var(--teal) 14%, transparent),
      transparent 60%
    ),
    radial-gradient(
      720px 380px at 92% 0%,
      color-mix(in srgb, var(--teal) 10%, transparent),
      transparent 55%
    );
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 6rem 0;
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.eyebrow.light {
  color: var(--paper-deep);
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 0.95;
}

.lead,
.section-lead {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--sage);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--sage);
}

@media (min-width: 640px) {
  .hero-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-points li {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.phone-wrap {
  position: relative;
  width: min(100%, 18rem);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .phone-wrap {
    margin-inline: 0 0;
    margin-left: auto;
  }
}

.phone-rings {
  pointer-events: none;
  position: absolute;
  inset: -2.5rem;
}

.phone-rings::before,
.phone-rings::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--teal) 15%, transparent);
  border-radius: 999px;
}

.phone-rings::after {
  inset: 0;
  opacity: 0.7;
  animation: ping-ring 4.8s ease-out infinite;
}

.phone {
  position: relative;
  border-radius: var(--radius-2xl);
  background: var(--ink);
  padding: 0.5rem;
  box-shadow: var(--shadow-phone);
}

.phone-screen {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--cream);
  padding: 0 1rem 1.25rem;
}

.phone-status {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0.25rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  font-variant-numeric: tabular-nums;
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  width: 6rem;
  height: 1.25rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--ink);
}

.phone-app {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.phone-sub {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--sage);
}

.phone-card {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 0.85rem 0.9rem;
  box-shadow: var(--shadow-card);
}

.phone-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pulse-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--teal);
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--teal);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.phone-next {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--sage);
}

.phone-clock {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.phone-clock span {
  color: var(--sage);
  font-size: 0.85em;
}

.phone-cta {
  display: flex;
  width: 100%;
  margin-top: 0.85rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--foam);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.phone-cta.is-done {
  background: var(--paper-deep);
  color: var(--teal-deep);
}

.phone-lock {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--sage);
}

.lock-icon {
  width: 0.9rem;
  height: 0.9rem;
  border: 1.75px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border: 1.75px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.section {
  border-top: 1px solid var(--line);
  padding: 5rem 0;
  scroll-margin-top: 6rem;
}

.section-alt {
  background: color-mix(in srgb, var(--cream) 50%, transparent);
}

.section h2 {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.cards-3 {
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: var(--radius-xl);
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.card.tall {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.card.tall h3 {
  margin-top: 1.5rem;
  font-size: 1.75rem;
}

.card p {
  margin-top: 0.75rem;
  color: var(--sage);
}

.step-index,
.kicker {
  font-family: var(--font-display);
  color: var(--teal);
}

.step-index {
  font-size: 1.5rem;
}

.kicker {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.timeline {
  display: grid;
  gap: 2rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 2.5rem;
    right: -2rem;
    height: 1px;
    background: var(--line);
  }
}

.timeline-item {
  position: relative;
}

.timeline-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--foam);
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.timeline-item h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.timeline-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--sage);
}

.privacy-grid {
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.privacy-card {
  display: flex;
  gap: 1rem;
}

.privacy-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.icon-badge {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  border-radius: 8px;
  background: var(--paper-deep);
  color: var(--teal-deep);
}

.icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.audience-grid {
  display: grid;
  gap: 1px;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--line);
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-grid li {
  background: var(--cream);
  padding: 1.75rem;
}

.audience-grid h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.audience-grid p {
  margin-top: 0.75rem;
  color: var(--sage);
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.05rem;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.15rem;
  color: var(--sage);
}

.cta-panel {
  display: grid;
  gap: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--teal-deep);
  color: var(--foam);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-phone);
}

@media (min-width: 640px) {
  .cta-panel {
    padding: 3.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.cta-copy h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--foam);
}

.cta-copy p:not(.eyebrow) {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 1.125rem;
  color: var(--paper-deep);
}

.cta-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.field legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--paper-deep);
}

.optional {
  font-weight: 400;
  opacity: 0.8;
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid color-mix(in srgb, var(--foam) 18%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--ink) 18%, transparent);
  color: var(--foam);
  padding: 0 0.9rem;
  font: inherit;
}

.field input::placeholder {
  color: color-mix(in srgb, var(--foam) 45%, transparent);
}

.platforms {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--foam) 14%, transparent);
  color: var(--foam);
  font-size: 0.9rem;
  cursor: pointer;
}

.chip:has(input:checked) {
  background: color-mix(in srgb, var(--foam) 16%, transparent);
  border-color: color-mix(in srgb, var(--foam) 35%, transparent);
}

.chip input {
  accent-color: var(--foam);
}

.form-error,
.form-success,
.form-note {
  font-size: 0.875rem;
}

.form-error {
  color: #ffd0d0;
}

.form-success {
  color: var(--paper-deep);
}

.form-note {
  color: color-mix(in srgb, var(--paper-deep) 85%, transparent);
}

.form-note a {
  color: var(--foam);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-tag {
  margin-top: 0.75rem;
  max-width: 22rem;
  font-size: 0.9rem;
  color: var(--sage);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
}

.footer-links a {
  text-decoration: none;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.55;
  }
}

@keyframes ping-ring {
  0% {
    transform: scale(0.86);
    opacity: 0.35;
  }
  70% {
    opacity: 0.08;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.rise-in {
  animation: rise-in 500ms var(--ease) both;
}

.rise-in-2 {
  animation: rise-in 500ms 80ms var(--ease) both;
}

.rise-in-3 {
  animation: rise-in 500ms 160ms var(--ease) both;
}

.rise-in-4 {
  animation: rise-in 500ms 240ms var(--ease) both;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
