:root {
  --bg: #f6f1ea;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --surface-sky: #edf5fb;
  --surface-warm: #fbf1ea;
  --surface-sage: #eef4ef;
  --surface-ink: #0f172a;
  --ink: #1f2937;
  --ink-strong: #101827;
  --muted: #4b5563;
  --muted-soft: #6b7280;
  --line: rgba(203, 213, 225, 0.92);
  --line-soft: rgba(203, 213, 225, 0.72);
  --accent: #3f94bc;
  --accent-soft: rgba(63, 148, 188, 0.12);
  --accent-warm: #eb8d72;
  --accent-sage: #93ad94;
  --button-dark: #101827;
  --button-dark-hover: #020617;
  --shadow-sm: 0 18px 42px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 26px 68px rgba(15, 23, 42, 0.11);
  --radius-card: 28px;
  --radius-panel: 36px;
  --radius-pill: 999px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(56rem 34rem at -8% 14%, rgba(235, 141, 114, 0.17), transparent 72%),
    radial-gradient(54rem 32rem at 110% 8%, rgba(63, 148, 188, 0.15), transparent 72%),
    radial-gradient(40rem 28rem at 50% 104%, rgba(147, 173, 148, 0.12), transparent 72%),
    var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(63, 148, 188, 0.48);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -56px;
  z-index: 100;
  text-decoration: none;
  color: var(--ink-strong);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow-sm);
}

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

.font-ubuntu {
  font-family: "Inter", sans-serif;
}

.container-wide {
  width: min(var(--max-width), 92vw);
  margin-inline: auto;
}

main {
  padding-bottom: 2rem;
}

main section {
  padding: 4.8rem 0;
}

.textured-section {
  position: relative;
}

.section-shell,
.card,
.support-card,
.summary-card,
.split-panel,
.faq-item,
.faq-direct-card,
.policy-summary,
.doc-card,
.step-card,
.media-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.section-shell {
  padding: clamp(1.4rem, 2vw, 2rem);
}

.section-shell.sky {
  background: linear-gradient(180deg, rgba(237, 245, 251, 0.94), rgba(255, 255, 255, 0.86));
}

.section-shell.warm {
  background: linear-gradient(180deg, rgba(251, 241, 234, 0.96), rgba(255, 255, 255, 0.88));
}

.section-shell.sage {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.96), rgba(255, 255, 255, 0.88));
}

.hero-title,
.section-title {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: -0.045em;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.06;
}

.section-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero-subtitle,
.section-copy,
.policy-lead {
  color: var(--muted);
}

.hero-subtitle {
  margin: 1.1rem auto 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
}

.section-copy {
  max-width: 660px;
  margin: 1rem 0 0;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.6rem;
}

.section-intro .section-copy {
  margin-inline: auto;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6,
.split-grid,
.summary-grid,
.kpi-row {
  display: grid;
  gap: 1.15rem;
}

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

.grid-3,
.summary-grid,
.grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 1rem 0 0;
  transition: padding 180ms ease;
}

.site-header.scrolled {
  padding-top: 0.7rem;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink-strong);
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-wordmark {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-strong);
  padding: 0.56rem 0.9rem;
  font: inherit;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--ink-strong);
}

.nav-cta,
.link-cta,
.btn-primary,
.btn-secondary,
.btn-tertiary,
.footer-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta,
.link-cta,
.btn-primary {
  background: var(--button-dark);
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(16, 24, 39, 0.16);
}

.nav-cta:hover,
.link-cta:hover,
.btn-primary:hover {
  background: var(--button-dark-hover);
}

.btn-secondary,
.btn-tertiary {
  color: var(--ink-strong);
  border: 1px solid var(--line);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.btn-tertiary,
.footer-link-button {
  background: rgba(237, 245, 251, 0.84);
}

.nav-cta,
.link-cta {
  padding: 0.75rem 1.05rem;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.footer-link-button {
  padding: 0.95rem 1.28rem;
}

.nav-cta:hover,
.link-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover,
.footer-link-button:hover {
  transform: translateY(-1px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-shell {
  max-width: 1060px;
  text-align: center;
}

.hero-shell .actions,
.hero-shell .hero-proof-row {
  justify-content: center;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.badge,
.feature-chip,
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.84rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-frame {
  margin-top: 2.4rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(237, 245, 251, 0.95), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-main-shot,
.shot-card,
.feature-media,
.feature-shot,
.support-visual,
.summary-visual,
.flow-visual,
.doc-visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.hero-main-shot img,
.shot-card img,
.feature-shot img,
.support-visual img,
.summary-visual img,
.flow-visual img,
.doc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-shot {
  min-height: 100%;
}

.hero-side-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shot-card {
  min-height: 220px;
}

.shot-card-content,
.feature-caption,
.floating-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  text-align: left;
}

.shot-card-content strong,
.feature-caption strong,
.floating-caption strong,
.proof-card strong,
.support-card h3,
.summary-card h3,
.faq-direct-card h3,
.doc-card h3,
.step-card h3 {
  display: block;
  color: var(--ink-strong);
}

.shot-card-content p,
.feature-caption p,
.floating-caption p,
.proof-card p,
.support-card p,
.summary-card p,
.faq-direct-card p,
.faq-quick p,
.doc-card p,
.step-card p,
.split-panel p,
.policy-summary p,
.doc-links p {
  margin: 0.35rem 0 0;
}

.proof-strip {
  margin-top: 1.6rem;
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  padding: 1rem 1.05rem;
}

.proof-card p {
  color: var(--muted);
}

.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.6rem;
  align-items: center;
}

.feature-spotlight.reverse .feature-media {
  order: 2;
}

.feature-spotlight.reverse .feature-copy {
  order: 1;
}

.feature-media {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(237, 245, 251, 0.94), rgba(255, 255, 255, 0.84));
}

.feature-media.warm {
  background: linear-gradient(180deg, rgba(251, 241, 234, 0.96), rgba(255, 255, 255, 0.86));
}

.feature-media.sage {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.96), rgba(255, 255, 255, 0.86));
}

.feature-shot {
  min-height: 360px;
}

.feature-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.feature-copy .section-copy {
  margin-top: 0.95rem;
}

.support-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.support-grid-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.support-card,
.summary-card,
.doc-card,
.step-card,
.faq-direct-card {
  padding: 1.3rem;
  min-height: 100%;
}

.support-card-large {
  padding: 1.5rem;
}

.support-card .badge {
  margin-bottom: 0.9rem;
}

.split-panel {
  padding: 1.5rem;
}

.split-panel.sky {
  background: linear-gradient(180deg, rgba(237, 245, 251, 0.95), rgba(255, 255, 255, 0.86));
}

.split-panel.warm {
  background: linear-gradient(180deg, rgba(251, 241, 234, 0.96), rgba(255, 255, 255, 0.88));
}

.split-panel.sage {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.96), rgba(255, 255, 255, 0.88));
}

.split-list,
.flow-list,
.policy-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.split-list-item,
.flow-list li,
.policy-list li {
  padding: 0.92rem 0.98rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-soft);
}

.summary-grid {
  margin-top: 1.2rem;
}

.faq-grid,
.faq-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-group {
  margin-top: 1.2rem;
}

.faq-item {
  overflow: hidden;
  margin-top: 0.85rem;
}

.faq-button {
  width: 100%;
  padding: 1.05rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.faq-item.open .faq-panel {
  display: block;
}

.role-next-step {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.role-next-step .actions,
.role-next-step .btn-primary,
.role-next-step .btn-secondary,
.role-next-step .btn-tertiary {
  align-self: flex-start;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink-strong);
  font-weight: 700;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(248, 250, 252, 0.92);
  color: var(--ink-strong);
  font-size: 0.9rem;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--ink-strong);
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
}

.checklist li {
  margin: 0.42rem 0;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.doc-card ul,
.policy-article ul {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
}

.doc-card li,
.policy-article li {
  margin: 0.38rem 0;
}

.policy-summary {
  padding: 1.2rem;
}

.policy-summary strong {
  color: var(--ink-strong);
}

.policy-article {
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
}

.policy-article > p:first-child {
  margin-top: 0;
}

.policy-article h2 {
  margin: 1.35rem 0 0;
  font-size: 1.28rem;
  color: var(--ink-strong);
}

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

.policy-links,
.footer-link-list,
.legal-links,
.doc-links {
  display: grid;
  gap: 0.55rem;
}

.policy-links {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.policy-links a,
.footer-link-list a,
.legal-links a,
.footer-contact-btn {
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.policy-links a:hover,
.footer-link-list a:hover,
.legal-links a:hover,
.footer-contact-btn:hover {
  color: var(--ink-strong);
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-shell {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

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

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

.footer-definition {
  margin: 1rem 0 0;
  max-width: 320px;
  font-weight: 600;
  color: var(--ink-strong);
}

.footer-trust {
  margin: 0.68rem 0 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  color: var(--ink-strong);
  font-weight: 700;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted-soft);
  font-size: 0.94rem;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

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

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(4px);
}

.dialog-backdrop.show {
  display: flex;
}

.dialog {
  width: min(460px, 100%);
  padding: 1.3rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.dialog p {
  color: var(--muted);
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-small {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.5rem 0.78rem;
}

.reveal,
.fade-in,
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible,
.fade-in.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page .reveal,
.legal-page .fade-in,
.legal-page .fade-in-up,
.legal-page .reveal.visible,
.legal-page .fade-in.visible,
.legal-page .fade-in-up.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.legal-page .policy-article ul,
.legal-page .policy-article ol {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.legal-page .policy-article li {
  margin: 0.22rem 0;
}

.legal-page .split-list {
  gap: 0.55rem;
}

.legal-page .split-list-item {
  padding: 0.72rem 0.86rem;
}

.subtitle-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.subtitle-word.visible {
  opacity: 1;
}

h2[id] {
  scroll-margin-top: 120px;
}

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

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

  .reveal,
  .fade-in,
  .fade-in-up,
  .subtitle-word {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-showcase,
  .feature-spotlight,
  .proof-strip-grid,
  .footer-grid,
  .support-grid-small,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .feature-spotlight.reverse .feature-media,
  .feature-spotlight.reverse .feature-copy {
    order: initial;
  }

  .hero-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .footer-definition,
  .footer-trust {
    max-width: none;
  }
}

@media (max-width: 900px) {
  main section {
    padding: 4rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6,
  .split-grid,
  .summary-grid,
  .faq-grid,
  .faq-direct-grid,
  .support-grid-large,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 72px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero-frame {
    border-radius: 30px;
  }

  .feature-shot {
    min-height: 300px;
  }

  .footer-shell {
    border-radius: 30px;
  }

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

@media (max-width: 640px) {
  .container-wide {
    width: min(var(--max-width), 94vw);
  }

  .nav-wrap,
  .card,
  .support-card,
  .summary-card,
  .split-panel,
  .faq-item,
  .faq-direct-card,
  .policy-summary,
  .doc-card,
  .step-card,
  .feature-media,
  .hero-main-shot,
  .shot-card,
  .comparison-wrap,
  .policy-article {
    border-radius: 24px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .actions {
    width: 100%;
  }

  .actions a,
  .actions button {
    width: 100%;
  }

  .faq-button {
    padding-right: 3rem;
  }
}
