:root {
  --bg: #f7f1e8;
  --surface: #fffaf2;
  --surface-2: #ecd9bd;
  --accent: #ECC89C;
  --accent-dark: #8a5b2f;
  --text: #2e2b26;
  --muted: #6f665b;
  --border: #dfc9aa;
  --shadow: 0 24px 70px rgba(91, 61, 31, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(236, 200, 156, 0.38), transparent 34rem),
    linear-gradient(180deg, var(--bg), #fffdf8);
  color: var(--text);
}

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

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 70px auto 90px;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin: 14px 0 24px;
  max-width: 760px;
}

.subcopy {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 620px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
}

.btn.primary {
  background: var(--text);
  color: #fffaf2;
  border-color: var(--text);
}

.btn.secondary {
  background: rgba(255, 250, 242, 0.72);
}

.hero-card {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.flow-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 700;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(236, 200, 156, 0.28);
}

.flow-step {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
}

.flow-step.active {
  background: var(--accent);
}

.flow-step.done {
  background: #efe3d1;
}

.flow-step p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.flow-line {
  width: 2px;
  height: 38px;
  background: var(--border);
  margin: 0 auto;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 92px;
}

.section h2,
.keante h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 10px 0 28px;
}

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

article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
}

article span {
  color: var(--accent-dark);
  font-weight: 900;
}

article p,
.keante p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.keante {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 92px;
  padding: 42px;
  border-radius: 36px;
  background: var(--text);
  color: #fffaf2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.keante p { color: #e9ded0; max-width: 680px; }

.keante .section-label { color: var(--accent); }

.keante .btn.primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px 24px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 50px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 820px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; margin-top: 32px; }
  .grid { grid-template-columns: 1fr; }
  .keante { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 8px; }
}
