@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: light dark;
  --ink: #292727;
  --muted: #716b68;
  --paper: #faf8f4;
  --surface: #fffefc;
  --surface-soft: #f2eeea;
  --selected: #f8ece9;
  --line: #ded7d1;
  --red: #d92d27;
  --red-dark: #ae201c;
  --red-wash: #f8e4e1;
  --yellow: #ffca28;
  --yellow-text: #765000;
  --yellow-wash: #fff4c4;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(41, 39, 39, 0.08);
  --shadow-lg: 0 28px 70px rgba(41, 39, 39, 0.16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-width: 1160px;
  --font-sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 202, 40, 0.22), transparent 24rem),
    radial-gradient(circle at 6% 34%, rgba(217, 45, 39, 0.1), transparent 26rem),
    var(--paper);
  content: "";
}

a {
  color: var(--red-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 7.4vw, 6.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.9rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  padding-block: 18px;
}

.nav-shell {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-dot {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--red-wash);
  color: var(--red-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--red);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(41, 39, 39, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: #171616;
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 254, 252, 0.76);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.availability::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 45, 39, 0.13);
  content: "";
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  content: "";
}

.phone-stage::before {
  width: 470px;
  height: 470px;
  border-radius: 42% 58% 63% 37% / 44% 42% 58% 56%;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.phone-stage::after {
  top: 66px;
  right: 2%;
  width: 120px;
  height: 120px;
  border-radius: 36% 64% 46% 54% / 61% 39% 61% 39%;
  background: var(--red);
  transform: rotate(16deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(320px, 82vw);
  padding: 11px;
  border: 1px solid rgba(41, 39, 39, 0.18);
  border-radius: 44px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.2deg);
}

.phone-screen {
  min-height: 540px;
  overflow: hidden;
  padding: 28px 19px 20px;
  border-radius: 34px;
  background: var(--paper);
  color: #292727;
}

.phone-island {
  width: 86px;
  height: 24px;
  margin: -20px auto 23px;
  border-radius: 999px;
  background: var(--ink);
}

.phone-kicker {
  margin-bottom: 5px;
  color: #716b68;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phone-title {
  margin-bottom: 18px;
  color: #292727;
  font-size: 1.65rem;
}

.practice-card {
  padding: 16px;
  border: 1px solid #ded7d1;
  border-radius: var(--radius-lg);
  background: #fffefc;
  box-shadow: var(--shadow-sm);
}

.practice-card + .practice-card {
  margin-top: 12px;
}

.practice-card.muted-card {
  opacity: 0.72;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.scene-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: var(--radius-md);
  background: #fff4c4;
  font-size: 1.2rem;
}

.level-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f8e4e1;
  color: #ae201c;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dialogue-line {
  max-width: 87%;
  margin-bottom: 9px;
  padding: 10px 12px;
  border-radius: 14px 14px 14px 4px;
  background: #f2eeea;
  color: #292727;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
}

.dialogue-line.user {
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
  background: var(--red);
  color: var(--white);
}

.progress-line {
  height: 5px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e4df;
}

.progress-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: 85px;
  max-width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
  transform: rotate(-3deg);
}

.floating-note span {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  padding-bottom: 38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 252, 0.74);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  padding: 22px 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: rgba(242, 238, 234, 0.72);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading p,
.topic-layout p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.step-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 66px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.step-card:nth-child(2) .step-number {
  background: var(--red-wash);
  color: var(--red-dark);
}

.step-card:nth-child(3) .step-number {
  background: var(--yellow-wash);
  color: var(--yellow-text);
}

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

.topic-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.topic-cloud {
  display: flex;
  min-height: 380px;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 12px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.topic-chip:nth-child(3n + 1) {
  border-color: rgba(217, 45, 39, 0.22);
  background: var(--red-wash);
}

.topic-chip:nth-child(3n + 2) {
  border-color: rgba(118, 80, 0, 0.2);
  background: var(--yellow-wash);
}

.privacy-promo {
  padding: 82px 0;
}

.privacy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 6vw, 65px);
  border-radius: var(--radius-xl);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  color: #dcd5d0;
}

.privacy-card h2 {
  max-width: 770px;
  margin-bottom: 14px;
  color: var(--white);
}

.privacy-card p {
  max-width: 670px;
  margin-bottom: 0;
}

.privacy-card .eyebrow {
  color: #ff8a85;
}

.privacy-card .button {
  background: var(--yellow);
  color: #292727;
  white-space: nowrap;
}

.privacy-card .button:hover {
  color: #292727;
}

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

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

/* Legal and support pages */
.policy-hero {
  padding: 72px 0 58px;
}

.policy-hero h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.policy-hero > .container > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.email-link-panel {
  max-width: 720px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 254, 252, 0.88);
  box-shadow: var(--shadow-sm);
}

.email-link-panel p {
  margin-bottom: 20px;
  color: var(--muted);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.meta-pill {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.policy-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 760px);
  align-items: start;
  justify-content: center;
  gap: clamp(38px, 7vw, 90px);
  padding: 52px 0 110px;
}

.policy-nav {
  position: sticky;
  top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.policy-nav strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-nav a {
  display: block;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.policy-nav a:hover {
  background: var(--red-wash);
  color: var(--red-dark);
}

.policy-content {
  min-width: 0;
}

.plain-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.summary-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.summary-card:nth-child(2) {
  background: var(--red-wash);
}

.summary-card:nth-child(3) {
  background: var(--yellow-wash);
}

.summary-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.93rem;
}

.policy-section {
  padding: 6px 0 48px;
  scroll-margin-top: 24px;
}

.policy-section + .policy-section {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.policy-section h3 {
  margin: 28px 0 10px;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section li + li {
  margin-top: 9px;
}

.policy-section ul {
  padding-left: 1.25rem;
}

.data-table {
  overflow: hidden;
  margin: 22px 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.data-row {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 24px;
  padding: 18px 20px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.data-row + .data-row {
  border-top: 1px solid var(--line);
}

.data-row strong {
  font-size: 0.9rem;
}

.data-row p {
  margin: 0;
  font-size: 0.88rem;
}

.service-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.service-list strong {
  display: block;
  color: var(--ink);
}

.contact-hero {
  padding-bottom: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 4vw, 42px);
  padding: 30px 0 110px;
}

.contact-email-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.contact-email-card-accent {
  border-color: rgba(217, 45, 39, 0.2);
  background: var(--red-wash);
}

.contact-email-card h2 {
  margin: 12px 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-email-card p {
  margin: 0 0 26px;
  color: var(--muted);
}

.contact-email-address {
  display: inline-flex;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(217, 45, 39, 0.24);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-email-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #fff9f3;
    --muted: #c9c0ba;
    --paper: #1b1919;
    --surface: #262323;
    --surface-soft: #312d2b;
    --selected: #3a2b29;
    --line: #4b4440;
    --red-dark: #ff8a85;
    --red-wash: #3a2b29;
    --yellow-text: #ffdc70;
    --yellow-wash: #3a3524;
    --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.35);
  }

  body::before {
    background:
      radial-gradient(circle at 90% 5%, rgba(255, 202, 40, 0.1), transparent 24rem),
      radial-gradient(circle at 6% 34%, rgba(217, 45, 39, 0.1), transparent 26rem),
      var(--paper);
  }

  .button-secondary,
  .trust-grid {
    background: rgba(38, 35, 35, 0.82);
  }

  .brand-mark {
    background: #fffefc;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .topic-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 720px);
  }

  .phone-stage {
    min-height: 560px;
  }

  .floating-note {
    right: 8%;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 48px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
  }

  .privacy-card .button {
    justify-self: start;
  }

  .policy-shell {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 3px;
  }

  .policy-nav strong {
    display: none;
  }

  .policy-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-block: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links a {
    padding-inline: 10px;
  }

  .nav-optional {
    display: none;
  }

  .hero {
    padding: 48px 0 62px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-stage::before {
    width: 360px;
    height: 360px;
  }

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

  .floating-note {
    right: 0;
    bottom: 32px;
  }

  .trust-grid,
  .plain-summary {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 80px 0;
  }

  .topic-cloud {
    min-height: 320px;
    padding: 24px 16px;
  }

  .privacy-promo {
    padding: 58px 0;
  }

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

  .policy-hero {
    padding: 48px 0 32px;
  }

  .policy-shell {
    padding-top: 28px;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-email-note {
    grid-column: auto;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
