:root {
  --bg: #f7f3ea;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --border: rgba(18, 18, 18, 0.1);
  --text: #131313;
  --muted: #6e6a63;
  --shadow: 0 24px 80px rgba(22, 20, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(255, 214, 143, 0.18), transparent 28%),
    linear-gradient(180deg, #fcfaf5 0%, var(--bg) 100%);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 1px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #121212;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}

.brand-mark.logo-mark {
  overflow: hidden;
  background: transparent;
  color: inherit;
  margin-right: -7px;
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link,
.button,
.button-secondary {
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: 180ms ease;
}

.nav-link {
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

.nav-link:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 170px;
  padding: 15px 22px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.button {
  background: #121212;
  color: #fff;
  border-color: #121212;
}

.button:hover {
  background: #232323;
}

.button-secondary {
  background: #fff;
  color: #121212;
}

.hero-card,
.content-card,
.feature-card,
.faq-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy,
.section-copy,
.content-card p,
.content-card li {
  color: #47433d;
  line-height: 1.65;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel {
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.hero-panel-title {
  font-size: clamp(1.95rem, 2.65vw, 2.85rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.08;
}

.hero-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 24px;
  color: #34312d;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
}

.hero-list li {
  line-height: 1.35;
}

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

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

.feature-grid.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.section-head {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.content-card {
  padding: 32px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.content-card h3 {
  margin: 26px 0 10px;
  font-size: 1.15rem;
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card ul {
  margin: 0;
  padding-left: 20px;
}

.content-card li + li,
.feature-card li + li {
  margin-top: 8px;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: #34312d;
  line-height: 1.45;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
}

.simple-table th,
.simple-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: #34312d;
  line-height: 1.45;
}

.simple-table th {
  color: var(--text);
  background: #f7f3ea;
}

.simple-table tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
  color: #34312d;
}

.faq-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.faq-card {
  padding: 24px 28px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.faq-card p {
  margin: 0;
}

.how-to-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.how-to-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.how-to-step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #121212;
  color: #fff;
  font-weight: 800;
}

.how-to-step h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.how-to-step p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 4px 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.legal-list {
  display: grid;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero-card,
  .content-grid,
  .how-to-steps,
  .feature-grid,
  .feature-grid.two-column,
  .feature-grid.four-column {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .hero-card,
  .content-card,
  .feature-card,
  .faq-card {
    border-radius: 26px;
  }

  .hero-card {
    padding: 28px 22px;
  }

  .content-card,
  .feature-card,
  .faq-card {
    padding: 22px;
  }

  .nav-links,
  .nav-actions,
  .hero-actions {
    width: 100%;
  }

  .nav-actions .button,
  .nav-actions .button-secondary,
  .hero-actions .button,
  .hero-actions .button-secondary {
    flex: 1 1 180px;
    min-width: 0;
  }
}
