﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #ff1a0a;
  --orange-light: #ff3b24;
  --orange-dim: rgba(255,26,10,0.12);
  --orange-border: rgba(255,26,10,0.32);
  --bg: #030712;
  --surface: #0f172a;
  --card: #0d1117;
  --border: #1f2937;
  --border2: #374151;
  --text: #f9fafb;
  --muted: #9ca3af;
  --dim: #6b7280;
  --green: #4ade80;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); background: rgba(3,7,18,0.9); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.logo-mark-img { width: 42px; height: 42px; object-fit: cover; object-position: center; border-radius: 8px; filter: saturate(1.12) contrast(1.08); }
.logo-wordmark { display: flex; flex-direction: column; justify-content: center; color: var(--orange); font-size: 17px; line-height: 0.92; letter-spacing: 0.08em; font-weight: 950; text-transform: uppercase; text-shadow: 0 0 18px rgba(255,26,10,0.18); }
.logo-wordmark span:first-child { letter-spacing: 0.12em; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.page-hero { position: relative; padding: 92px 24px 48px; border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -220px; left: 50%; transform: translateX(-50%); width: 860px; height: 520px; background: radial-gradient(ellipse at center, rgba(255,26,10,0.14), transparent 65%); pointer-events: none; }
.hero-inner { max-width: 920px; margin: 0 auto; position: relative; }
.eyebrow { color: var(--orange-light); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
h1 { font-size: clamp(36px, 6vw, 66px); line-height: 1.03; letter-spacing: -0.035em; font-weight: 950; margin-bottom: 18px; }
.hero-copy { max-width: 700px; color: var(--muted); font-size: 17px; }
main { max-width: 920px; margin: 0 auto; padding: 46px 24px 84px; }
.policy-panel { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; margin-bottom: 18px; }
.policy-panel strong { color: var(--text); }
h2 { font-size: clamp(22px, 3vw, 30px); line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.015em; }
h3 { font-size: 16px; margin: 20px 0 8px; }
p { color: var(--muted); margin-bottom: 14px; }
ul { margin: 12px 0 4px 18px; color: var(--muted); }
li { margin-bottom: 8px; }
.notice { border: 1px solid var(--orange-border); background: rgba(255,26,10,0.06); border-radius: 14px; padding: 18px 20px; color: var(--muted); margin-bottom: 20px; }
.notice strong { color: var(--orange-light); }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 800; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); }
.btn-secondary { border: 1px solid var(--border2); color: var(--text); }
.btn-secondary:hover { border-color: var(--orange-border); color: var(--orange-light); }
.offer-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.offer { border: 1px solid var(--border); border-radius: 14px; padding: 16px; background: rgba(255,255,255,0.02); }
.offer-title { color: var(--text); font-weight: 850; margin-bottom: 4px; }
.offer-meta { color: var(--muted); font-size: 13px; }
footer { border-top: 1px solid var(--border); padding: 32px 24px; color: var(--dim); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--muted); }
@media (max-width: 680px) {
  .nav-links { display: none; }
  .page-hero { padding-top: 64px; }
  .policy-panel { padding: 22px; }
  .offer-list { grid-template-columns: 1fr; }
}
