
:root {
  --bg: #fff7ee;
  --surface: rgba(255,255,255,0.9);
  --surface-soft: rgba(255,255,255,0.72);
  --text: #23180d;
  --muted: #6d5c46;
  --line: rgba(122, 84, 17, 0.12);
  --orange: #ff7a00;
  --orange-2: #ffb547;
  --green: #daf8d8;
  --shadow: 0 18px 40px rgba(215, 125, 0, 0.12);
  --radius: 24px;
  --max: 1120px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,208,124,0.55), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fff2de 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255,248,239,0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}
.hero { padding: 68px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,181,71,0.2);
  color: #8b5b00;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
h1, h2, h3 {
  margin: 0 0 14px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); max-width: 12ch; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
.lede, .section-heading p, .legal-wrap p { color: var(--muted); font-size: 1.05rem; max-width: 66ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}
.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 14px 30px rgba(255,122,0,0.28);
}
.button-secondary {
  background: white;
  border: 1px solid var(--line);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.hero-points li {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: #5c482e;
}
.hero-panel {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,244,220,0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mock-app {
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, #fffefb, #fff8ec);
}
.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  background: white;
  border: 1px solid var(--line);
}
.pill-warning { background: #fff0cf; color: #9a6200; }
.task-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(122,84,17,0.1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.task-card p { margin: 4px 0 0; color: var(--muted); font-size: 0.93rem; }
.status {
  white-space: nowrap;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1d8;
  color: #996100;
  font-size: 0.82rem;
  font-weight: 800;
}
.status-ok { background: var(--green); color: #2d6a2d; }
.section { padding: 72px 0; }
.section-soft {
  background: rgba(255,255,255,0.44);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { margin-bottom: 32px; max-width: 760px; }
.feature-grid, .steps, .footer-grid {
  display: grid;
  gap: 22px;
}
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); }
.feature-card, .step-card, .legal-wrap, .info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card, .step-card { padding: 24px; }
.feature-card ul, .info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}
.page-main { min-height: calc(100vh - 100px); }
.legal-wrap { padding: 32px; max-width: 860px; }
.legal-wrap h2 { font-size: 1.3rem; margin-top: 24px; }
.info-card { padding: 22px; margin-top: 22px; }
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
  padding: 34px 0 42px;
}
.footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
.footer-copy, .footer-links, .site-footer p { color: var(--muted); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 8px; }
@media (max-width: 900px) {
  .hero-grid, .feature-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 14px 0; }
  .section { padding: 56px 0; }
  .legal-wrap, .feature-card, .step-card { padding: 22px; }
}
