:root {
  --bg: #f4efe7;
  --surface: rgba(255, 251, 247, 0.78);
  --surface-strong: #fbf6ef;
  --ink: #13281f;
  --muted: #52635a;
  --line: rgba(19, 40, 31, 0.14);
  --accent: #b46a3c;
  --accent-deep: #8f4e24;
  --accent-soft: #ead2bf;
  --evergreen: #1d3a2f;
  --evergreen-soft: #2f5042;
  --white: #fffdf8;
  --shadow: 0 32px 80px rgba(32, 31, 27, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(19, 40, 31, 0.12);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(180, 106, 60, 0.16), transparent 32%),
    linear-gradient(180deg, #f8f1e6 0%, #f4efe7 45%, #ede5db 100%);
  color: var(--ink);
  overflow-x: hidden;
}

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

a,
button {
  touch-action: manipulation;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(251, 246, 239, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(32, 31, 27, 0.08);
}

.skip-link {
  position: absolute;
  left: 24px;
  top: -64px;
  z-index: 40;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--evergreen);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 18px;
}

.brand-mark,
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--evergreen);
  color: var(--white) !important;
  font-weight: 700;
}

main {
  display: grid;
  gap: 28px;
}

section {
  border-radius: calc(var(--radius-xl) + 8px);
  scroll-margin-top: 120px;
}

.hero-section,
.credibility-section,
.process-section,
.benefits-section,
.closing-section {
  position: relative;
  overflow: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  min-height: 720px;
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(251, 244, 235, 0.72)),
    linear-gradient(145deg, rgba(180, 106, 60, 0.12), rgba(29, 58, 47, 0.12));
  box-shadow: var(--shadow);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 58, 47, 0.18), transparent 68%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 720px;
}

.eyebrow {
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(180, 106, 60, 0.55);
  outline-offset: 4px;
}

.button-primary {
  background: var(--evergreen);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--evergreen-soft);
}

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

.button-ghost {
  border-color: rgba(255, 253, 248, 0.4);
  background: transparent;
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--evergreen);
}

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

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.hero-notes li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(19, 40, 31, 0.96), rgba(29, 58, 47, 0.9));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.panel-card,
.workflow-strip {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 2.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.panel-card p,
.workflow-strip p {
  color: rgba(255, 253, 248, 0.78);
}

.panel-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.7);
}

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

.workflow-strip span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
}

.credibility-section {
  padding: 56px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(248, 240, 229, 0.95));
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

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

.proof-card,
.benefit-card,
.step-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.proof-value {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.credibility-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
}

.credibility-banner p {
  color: var(--ink);
  font-weight: 700;
}

.process-section {
  padding: 56px;
  background: linear-gradient(180deg, rgba(29, 58, 47, 0.98), rgba(20, 39, 32, 0.98));
  box-shadow: var(--shadow);
}

.process-section .section-heading,
.process-section .section-heading h2,
.process-section .section-heading p {
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.step-card h3,
.step-card p,
.step-number {
  color: var(--white);
}

.step-number {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-visual {
  display: flex;
}

.dashboard-frame {
  width: 100%;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(180, 106, 60, 0.16), transparent 35%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard-header,
.dashboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 4px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.92rem;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 14px 0;
}

.dashboard-column {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-column h4 {
  margin-bottom: 14px;
  color: var(--white);
}

.mini-card {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.mini-card.accent {
  background: rgba(234, 210, 191, 0.96);
}

.mini-card strong,
.mini-card p {
  color: var(--ink);
}

.benefits-section {
  padding: 56px;
  background: linear-gradient(180deg, rgba(248, 239, 228, 0.88), rgba(255, 253, 248, 0.9));
  box-shadow: var(--shadow);
}

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

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.closing-section {
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(180, 106, 60, 0.14), rgba(19, 40, 31, 0.18)),
    linear-gradient(180deg, #203e31, #142820);
  box-shadow: var(--shadow);
}

.closing-card {
  padding: 64px 56px;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(29, 58, 47, 0.94), rgba(19, 40, 31, 0.96));
}

.closing-card h2,
.closing-card p {
  max-width: 800px;
  color: var(--white);
}

.closing-card .eyebrow {
  color: #f2c7ac;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 24px 8px 10px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
}

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

.footer-meta {
  text-align: right;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(19, 40, 31, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.cookie-banner p {
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.92rem;
}

.legal-body {
  min-height: 100vh;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 1.7rem;
}

.legal-page a {
  color: var(--evergreen);
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 700;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .proof-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-meta {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

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

  .hero-section,
  .credibility-section,
  .process-section,
  .benefits-section,
  .closing-card {
    padding: 28px;
  }

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

  .panel-grid,
  .workflow-strip,
  .dashboard-columns,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .credibility-banner,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
}
