:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #23272b;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #202326;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 25px 70px rgba(31, 35, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 36px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 900;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #111;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(245,158,11,.28);
}
nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: 14px; font-weight: 800; }
nav a:hover, nav a.active { color: var(--primary-dark); }

.hero { padding: 92px 0 76px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 68%);
  top: -180px;
  right: -100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 68px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.hero h1, .legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.hero-copy > p {
  color: var(--muted);
  font-size: 18px;
  margin: 24px 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--primary); color: #151515; box-shadow: 0 14px 30px rgba(245,158,11,.25); }
.button.secondary { background: white; border: 1px solid var(--border); }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-weight: 800; font-size: 14px; }
.trust-row span::before { content: "•"; color: var(--primary-dark); margin-right: 7px; }

.hero-card {
  background: linear-gradient(155deg, #1e2226, #111315);
  color: white;
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(17,19,21,.28);
  transform: rotate(1.5deg);
}
.dashboard-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.dashboard-head small { color: rgba(255,255,255,.55); }
.dashboard-head h3 { margin: 4px 0 0; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 7px rgba(245,158,11,.12); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); padding: 18px; border-radius: 18px; }
.stat strong { display: block; font-size: 24px; }
.stat span { color: rgba(255,255,255,.58); font-size: 13px; }
.stat.warning strong { color: var(--primary); }
.tool-panel { margin-top: 14px; background: white; color: var(--text); border-radius: 20px; padding: 8px 18px; }
.tool-row { display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.tool-row:last-child { border-bottom: 0; }
.tool-row strong { color: var(--primary-dark); }

.section { padding: 88px 0; }
.section.alt { background: #efefec; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .split-section h2, .cta h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.section-heading p, .split-section > div > p { color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31,35,39,.04);
}
.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(245,158,11,.14);
  color: var(--primary-dark);
  font-weight: 900;
}
.feature-card h3 { margin: 18px 0 8px; }
.feature-card p { margin: 0; color: var(--muted); }

.split-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.privacy-panel { display: grid; gap: 14px; }
.privacy-item { display: flex; gap: 14px; padding: 20px; background: white; border-radius: 18px; border: 1px solid var(--border); }
.privacy-item > span {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245,158,11,.14);
  color: var(--primary-dark);
  font-weight: 900;
}
.privacy-item p { margin: 4px 0 0; color: var(--muted); }

.cta { padding: 70px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--secondary), #111315);
  color: white;
  padding: 42px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}
.light-button { background: var(--primary); color: #151515; white-space: nowrap; }

.legal-main { min-height: 70vh; }
.legal-hero { padding: 72px 0 34px; text-align: center; }
.legal-hero h1 { font-size: clamp(40px, 6vw, 64px); }
.legal-hero p { color: var(--muted); }
.legal-section { padding: 20px 0 80px; }
.legal-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 50px rgba(31,35,39,.07);
}
.legal-card > p:first-child { font-size: 18px; color: var(--muted); padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.legal-card h2 { margin-top: 32px; margin-bottom: 8px; font-size: 22px; }
.legal-card p { color: #5d6369; }
.legal-card a { color: var(--primary-dark); font-weight: 800; }
.legal-links { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; }
.legal-links a { color: var(--primary-dark); font-weight: 900; }

footer { background: #111315; color: white; padding: 56px 0 24px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 32px; }
.footer-wrap p { color: rgba(255,255,255,.56); max-width: 440px; }
.footer-links { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.72); }
.contact a { color: var(--primary); }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 14px; }

@media (max-width: 900px) {
  .hero-grid, .split-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { transform: none; }
}
@media (max-width: 640px) {
  nav { gap: 14px; }
  nav a { font-size: 12px; }
  .hero { padding-top: 62px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-box, .footer-wrap, .legal-links { flex-direction: column; align-items: flex-start; }
  .cta-box { padding: 30px 24px; }
}
