:root {
  color-scheme: light;
  --bg: #fffaf1;
  --bg-soft: #fff3e2;
  --paper: #fffdf9;
  --ink: #29211f;
  --ink-soft: #413532;
  --muted: #80706b;
  --border: #eadfce;
  --border-strong: #d8c7b0;
  --primary: #be6f8a;
  --primary-dark: #9f526e;
  --accent: #23a99a;
  --gold: #d7a437;
  --shadow: 0 8px 30px rgb(41 33 31 / 0.08);
  --shadow-strong: 0 18px 60px rgb(41 33 31 / 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.static-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--border);
  background: rgb(255 250 241 / 0.94);
  backdrop-filter: blur(14px);
}

.static-brand img {
  width: 168px;
  height: auto;
}

.static-nav nav,
.static-nav-actions,
.static-actions,
.static-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.static-nav nav {
  justify-content: center;
}

.static-nav a,
.static-footer a {
  font-weight: 750;
  text-decoration: none;
}

.static-nav nav a,
.static-link,
.static-footer a {
  color: var(--ink-soft);
}

.static-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 16px;
  padding: 0 24px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease;
}

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

.static-button-primary {
  background: var(--primary);
  color: #fffdf9;
  box-shadow: 0 10px 24px rgb(190 111 138 / 0.25);
}

.static-button-primary:hover {
  background: var(--primary-dark);
}

.static-button-ghost {
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink-soft);
}

.static-hero,
.static-section,
.static-cta,
.static-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.static-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 0 86px;
}

.static-eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.static-hero-copy > p:not(.static-eyebrow),
.static-section > div > p,
.static-section > p,
.static-cta p,
.static-card p,
.static-steps p,
.static-faq-grid p,
.static-price-card li,
.static-footer p,
.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 17px;
}

.static-hero-copy > p:not(.static-eyebrow) {
  max-width: 650px;
  font-size: 21px;
}

.static-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.static-hero-visual,
.static-export-visual {
  margin: 0;
}

.static-hero-visual img,
.static-export-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.static-section {
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.static-section-alt {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--bg-soft);
}

.static-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.static-card-grid,
.static-steps,
.static-pricing-grid,
.static-faq-grid {
  display: grid;
  gap: 18px;
}

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

.static-card,
.static-steps article,
.static-price-card,
.static-faq-grid article,
.legal-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.static-card,
.static-steps article,
.static-faq-grid article {
  padding: 24px;
}

.static-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.static-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fffdf9;
  font-weight: 900;
}

.static-check-list,
.static-price-card ul {
  padding: 0;
  list-style: none;
}

.static-check-list li,
.static-price-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
}

.static-check-list li::before,
.static-price-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  content: "\2713";
}

.static-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.static-price-card {
  position: relative;
  padding: 32px;
}

.static-price-card-featured {
  border-color: var(--primary);
  border-width: 2px;
}

.static-badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--primary);
  color: #fffdf9;
  font-size: 12px;
  font-weight: 900;
}

.static-price {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.static-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.static-yearly {
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff1f5;
  color: var(--primary-dark);
  font-weight: 850;
}

.static-price-card .static-button {
  width: 100%;
  margin-top: 20px;
}

.static-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.static-cta {
  max-width: none;
  width: 100%;
  padding: 96px max(24px, calc((100vw - 980px) / 2));
  border-top: 1px solid var(--border);
  background: var(--ink);
  color: #fffdf9;
  text-align: center;
}

.static-cta h2,
.static-cta p {
  margin-right: auto;
  margin-left: auto;
  color: inherit;
}

.static-cta .static-button {
  margin-top: 20px;
}

.static-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 48px 0 34px;
}

.static-footer img {
  width: 160px;
  margin-bottom: 16px;
}

.static-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.static-footer-bottom {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-card {
  padding: clamp(26px, 5vw, 56px);
}

.legal-card h1 {
  margin-bottom: 8px;
  font-size: clamp(42px, 7vw, 68px);
}

.legal-meta {
  color: var(--primary-dark);
  font-weight: 850;
}

.legal-body h2 {
  margin: 34px 0 12px;
  font-size: 26px;
}

.legal-body h3 {
  margin-top: 24px;
}

.legal-body a {
  color: var(--primary-dark);
  font-weight: 850;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.legal-body th,
.legal-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  background: var(--bg-soft);
}

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

  .static-nav nav {
    display: none;
  }

  .static-hero,
  .static-section-split,
  .static-footer {
    grid-template-columns: 1fr;
  }

  .static-hero {
    min-height: auto;
  }

  .static-steps,
  .static-pricing-grid,
  .static-faq-grid {
    grid-template-columns: 1fr;
  }

  .static-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .static-nav {
    padding: 14px 18px;
  }

  .static-brand img {
    width: 148px;
  }

  .static-link {
    display: none;
  }

  .static-hero,
  .static-section,
  .static-cta,
  .static-footer {
    width: min(100% - 32px, 1180px);
  }

  .static-section-alt,
  .static-cta {
    width: 100%;
  }

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

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }
}
