:root {
  color-scheme: light;
  --bg: #f3f2ec;
  --bg-soft: #fbfaf6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-dark: #122231;
  --ink: #17212b;
  --muted: #5f6a75;
  --line: rgba(23, 33, 43, 0.1);
  --brand: #0f8d7d;
  --brand-deep: #0d3a46;
  --accent: #f4b942;
  --danger: #c44c4c;
  --shadow: 0 24px 60px rgba(24, 34, 47, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(15, 141, 125, 0.16), transparent 28%),
    radial-gradient(circle at top left, rgba(244, 185, 66, 0.12), transparent 20%),
    linear-gradient(180deg, #fdfcf8 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

code {
  font-family: "Cascadia Code", "Consolas", monospace;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(253, 252, 248, 0.78);
  border-bottom: 1px solid rgba(23, 33, 43, 0.06);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--brand) 0%, #0f6574 100%);
  box-shadow: 0 10px 24px rgba(15, 141, 125, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--muted);
}

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

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

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

.button:disabled,
.button.disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #0b6d74 100%);
  box-shadow: 0 16px 30px rgba(15, 141, 125, 0.22);
}

.button-secondary {
  color: var(--brand-deep);
  border-color: rgba(15, 141, 125, 0.16);
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  padding: 52px 0 36px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    linear-gradient(160deg, rgba(15, 141, 125, 0.1), transparent 55%);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.22), transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.display {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-description,
.section-copy,
.card-copy,
.faq-answer,
.legal-copy,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-description {
  max-width: 42rem;
  margin: 20px 0 24px;
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 20px;
  border-radius: 24px;
  color: #ebf6ff;
  background:
    linear-gradient(180deg, #102231 0%, #163145 100%);
  box-shadow: 0 18px 32px rgba(16, 34, 49, 0.18);
}

.stat-card strong {
  display: block;
  font-size: 1.85rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(235, 246, 255, 0.74);
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 58, 70, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
  box-shadow: 0 12px 26px rgba(24, 34, 47, 0.06);
}

.section {
  padding: 36px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-title {
  margin: 8px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

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

.feature-card,
.pricing-card,
.faq-card,
.legal-card,
.contact-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.feature-icon,
.pricing-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #0b6272 100%);
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 26px 22px;
  border-radius: 26px;
  border: 1px solid rgba(13, 58, 70, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep);
  background: rgba(244, 185, 66, 0.24);
}

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

.pricing-card.featured {
  color: #eef6ff;
  background:
    linear-gradient(180deg, #0f2433 0%, #15364b 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured .card-copy,
.pricing-card.featured .price-note,
.pricing-card.featured .price-features li,
.pricing-card.featured .plan-note {
  color: rgba(238, 246, 255, 0.78);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(15, 141, 125, 0.12);
}

.pricing-card.featured .plan-label {
  color: #ffffff;
  background: rgba(244, 185, 66, 0.16);
}

.price-display {
  margin: 18px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.price-note,
.plan-note {
  margin: 0 0 14px;
  color: var(--muted);
}

.price-features {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-features li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.faq-grid,
.legal-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-question {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.legal-page {
  padding: 48px 0 64px;
}

.legal-hero {
  margin-bottom: 22px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, #102231 0%, #17354b 100%);
  color: #eef6ff;
  box-shadow: 0 22px 44px rgba(16, 34, 49, 0.18);
}

.legal-hero .eyebrow,
.legal-hero .legal-copy {
  color: rgba(238, 246, 255, 0.82);
}

.legal-hero .eyebrow::before {
  background: var(--accent);
}

.legal-title {
  margin: 8px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.98;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
}

.legal-content {
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 0;
  font-size: 1.28rem;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.legal-content ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-aside {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: var(--shadow);
  height: fit-content;
}

.aside-title {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

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

.aside-list a {
  color: var(--brand-deep);
  text-decoration: none;
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

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

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

.micro-note {
  font-size: 0.88rem;
  color: var(--muted);
}

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

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

@media (max-width: 860px) {
  .card-grid,
  .pricing-grid,
  .faq-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .footer-panel,
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: start;
  }

  .nav {
    gap: 14px;
  }
}

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

  .hero-panel,
  .feature-card,
  .pricing-card,
  .faq-card,
  .legal-card,
  .contact-card,
  .legal-content,
  .legal-aside,
  .footer-panel {
    padding: 22px;
  }

  .hero {
    padding-top: 28px;
  }

  .trust-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
