:root {
  --bg: #05070f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f7f7fb;
  --muted: #b7bdd2;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #ffdf72;
  --accent-2: #9f7cff;
  --danger: #ff8e8e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* { 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:
    radial-gradient(circle at 15% 10%, rgba(159, 124, 255, 0.25), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(255, 223, 114, 0.16), transparent 30%),
    linear-gradient(135deg, #05070f 0%, #0c1020 48%, #07070d 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { font-weight: 800; letter-spacing: -0.03em; font-size: 1.35rem; }
.nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 0.95rem; }
.nav a:hover, .footer a:hover { color: var(--accent); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 0;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 48px;
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95; letter-spacing: -0.07em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.02; letter-spacing: -0.05em; margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 720px; }
.notice { color: var(--muted); font-size: 0.93rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 16px; }
.button {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button.primary { background: var(--accent); color: #121006; border-color: transparent; }
.button.secondary { background: var(--panel); backdrop-filter: blur(18px); }

.phone-card {
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 390px;
  margin-left: auto;
}
.phone-top { width: 90px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.32); margin: 0 auto 18px; }
.app-preview { background: rgba(5, 7, 15, 0.72); border: 1px solid var(--line); border-radius: 30px; padding: 22px; min-height: 520px; }
.small-label { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }
.worker-row { display: flex; justify-content: space-between; gap: 12px; padding: 16px; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; margin-bottom: 12px; }
.worker-row strong { color: var(--accent); }
.amount { font-size: 3rem; font-weight: 850; letter-spacing: -0.06em; text-align: center; margin: 72px 0 18px; }
.pay-button { text-align: center; background: linear-gradient(135deg, var(--accent), #fff2b1); color: #141006; padding: 15px; border-radius: 20px; font-weight: 850; }

.section { width: min(1180px, calc(100% - 40px)); margin: 120px auto; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .policy-card, .content-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(16px);
}
.card p, .policy-card p, .content-card p, li { color: var(--muted); }
.step { width: 36px; height: 36px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--accent); color: #121006; font-weight: 900; margin-bottom: 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.reverse > div { order: 2; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 900; margin-right: 10px; }
.policy-card:hover { background: var(--panel-strong); transform: translateY(-2px); transition: .2s ease; }

.page-hero { width: min(880px, calc(100% - 40px)); margin: 70px auto 28px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
.content-card { width: min(880px, calc(100% - 40px)); margin: 0 auto 80px; }
.content-card h2 { font-size: 1.55rem; margin-top: 34px; }
.content-card a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.warning { border-left: 4px solid var(--accent); padding-left: 16px; color: var(--text) !important; }

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.footer strong { color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .split { grid-template-columns: 1fr; }
  .phone-card { margin: 0; max-width: 100%; }
  .grid.three, .grid.four { grid-template-columns: 1fr; }
  .reverse > div { order: initial; }
  .footer { flex-direction: column; }
}
