:root {
  --bg: #f4efe7;
  --bg-strong: #0f172a;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-dark: rgba(15, 23, 42, 0.82);
  --text: #132238;
  --text-soft: #516074;
  --light: #f8fafc;
  --line: rgba(19, 34, 56, 0.12);
  --accent: #b45309;
  --accent-strong: #7c2d12;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 83, 9, 0.14), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #fbfaf7 48%, #efe6d8 100%);
}

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

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 24px clamp(20px, 4vw, 48px) 48px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.28), transparent 28%),
    radial-gradient(circle at left center, rgba(148, 163, 184, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  color: var(--light);
}

.nav,
.hero-grid,
.section,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(248, 250, 252, 0.86);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(56px, 14vh, 128px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero .eyebrow {
  color: #fdba74;
}

h1,
h2,
h3,
dt,
strong {
  font-family: "Trebuchet MS", Arial, sans-serif;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(248, 250, 252, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: white;
}

.button-secondary {
  border-color: rgba(248, 250, 252, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(248, 250, 252, 0.88);
}

.hero-points li::before {
  content: "+ ";
  color: #fdba74;
  font-weight: 700;
}

.hero-card,
.card,
.feature-list article {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background: var(--surface-dark);
  backdrop-filter: blur(12px);
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.92rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.hero-card h2 {
  margin: 20px 0 12px;
  font-size: 1.8rem;
}

.hero-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.86);
}

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

.stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
}

dt {
  margin-bottom: 8px;
  color: #fdba74;
}

dd {
  margin: 0;
  color: var(--light);
}

.section {
  padding: clamp(56px, 9vw, 96px) clamp(20px, 4vw, 48px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.section-light {
  color: var(--text);
}

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

.card,
.feature-list article {
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.card h3,
.feature-list h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p,
.feature-list p,
.visual-copy p,
.image-break-overlay p,
.footer p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.section-dark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  color: var(--light);
}

.visual {
  position: relative;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 32px;
}

.visual-copy,
.visual-copy p {
  color: rgba(248, 250, 252, 0.82);
}

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

.section-accent {
  background: linear-gradient(180deg, rgba(180, 83, 9, 0.08), rgba(124, 45, 18, 0.12));
}

.narrow {
  max-width: 680px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(124, 45, 18, 0.12);
  box-shadow: var(--shadow);
}

.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 16px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
}

.steps span {
  display: block;
  margin-top: 10px;
  line-height: 1.7;
  color: var(--text-soft);
}

.section-image-break {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 420px;
  margin: 0 auto 56px;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(51, 65, 85, 0.96));
}

.image-break-overlay {
  max-width: 760px;
  padding: clamp(36px, 6vw, 72px);
  color: var(--light);
}

.image-break-overlay p {
  color: rgba(248, 250, 252, 0.86);
}

.footer {
  padding: 0 20px 40px;
  text-align: center;
}

.footer p + p {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-dark,
  .cards.three,
  .feature-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-card,
  .card,
  .feature-list article,
  .steps li {
    border-radius: 20px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
