:root {
  --bg: #071225;
  --bg-2: #0a1b36;
  --panel: rgba(10, 24, 49, 0.82);
  --panel-2: rgba(8, 18, 37, 0.92);
  --border: rgba(212, 170, 82, 0.55);
  --border-soft: rgba(212, 170, 82, 0.22);
  --gold: #d9a64b;
  --gold-2: #f1bd5d;
  --text: #f5f0e8;
  --muted: #c8d1e1;
  --soft: #9ca9c2;
  --danger: #ffb7a8;
  --success: #b7efc5;
  --info: #b7d7ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 18%, rgba(217,166,75,0.20), transparent 16%),
    radial-gradient(circle at 18% 72%, rgba(217,166,75,0.08), transparent 14%),
    linear-gradient(180deg, #06101f 0%, #08152a 30%, #0a1b36 100%);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(rgba(255, 210, 120, 0.10) 0.6px, transparent 0.8px),
    radial-gradient(rgba(255,255,255,0.035) 0.5px, transparent 0.75px);
  background-position: 0 0, 22px 18px;
  background-size: 24px 24px, 26px 26px;
  opacity: 0.55;
  mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  display: flex; align-items: center; gap: 16px; text-transform: uppercase;
  letter-spacing: 0.22em; font-weight: 700; font-size: 0.84rem; color: var(--gold-2);
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, rgba(217,166,75,0.7), transparent);
}
.hero { position: relative; padding: 72px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 28px; align-items: start; }
.hero-copy { padding-top: 24px; }
.headline {
  margin: 22px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.headline .accent { color: var(--gold-2); }
.subhead {
  max-width: 760px;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  color: var(--muted);
  margin: 0 0 28px;
}
.hero-card, .panel, .faq-item, .policy-card {
  background: linear-gradient(180deg, rgba(8, 18, 37, 0.94), rgba(10, 24, 49, 0.82));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px);
}
.hero-card, .panel, .policy-card { padding: 22px; }
.price-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 999px; color: #111827;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-weight: 800; font-size: 0.96rem; box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.price-badge small { font-weight: 700; opacity: 0.82; }
.quick-points { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.quick-points li { display: flex; gap: 10px; color: var(--muted); font-size: 0.98rem; }
.quick-points li::before { content: "•"; color: var(--gold-2); font-weight: 900; }
.cta-row, .chip-row, .next-step-actions, .legal-links, .utility-links { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-row { margin-top: 28px; gap: 14px; }
.chip-row { margin-top: 14px; }
.btn, .text-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 18px; border-radius: 14px;
  border: 1px solid transparent; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}
.btn:hover, .text-btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #111827; background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.btn-secondary {
  color: var(--text); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04);
}
.text-btn {
  min-height: 42px; border-radius: 999px; background: rgba(255,255,255,0.03);
  color: var(--muted); border-color: rgba(255,255,255,0.12); font-weight: 600; font-size: 0.95rem;
}
.btn[aria-disabled="true"], .text-btn[aria-disabled="true"] {
  opacity: 0.55; pointer-events: none; cursor: not-allowed;
}
.band, .policy-band, .notice-band {
  margin: 24px 0 0; padding: 12px 18px; border-radius: 14px; text-align: center;
  border: 1px solid var(--border-soft); background: rgba(217,166,75,0.10); color: var(--text);
  font-weight: 700; letter-spacing: 0.02em;
}
.policy-band, .notice-band {
  text-align: left; margin-top: 18px; font-weight: 500; color: var(--muted);
  border-color: rgba(183,215,255,0.18); background: rgba(183,215,255,0.06);
}
.section { padding: 24px 0 10px; }
.section-title {
  margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1; letter-spacing: -0.02em;
}
.section-copy { margin: 0 0 18px; color: var(--muted); max-width: 900px; }
.grid-3, .grid-2, .form-wrap, .channel-grid, .policy-grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2, .policy-grid { grid-template-columns: repeat(2, 1fr); }
.form-wrap { grid-template-columns: 0.95fr 1.05fr; gap: 22px; align-items: start; }
.panel h3, .policy-card h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--text); }
.panel p, .panel li, .policy-card p, .policy-card li { color: var(--muted); margin: 0; }
.panel ul, .policy-card ul { padding-left: 18px; margin: 0; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(217,166,75,0.34), transparent); margin: 28px 0; }
form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.hint, .field-note, .micro { font-size: 0.88rem; color: var(--soft); }
input, select, textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--text); border-radius: 12px; padding: 14px; font: inherit; outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(217,166,75,0.65); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 3px rgba(217,166,75,0.12);
}
textarea { min-height: 132px; resize: vertical; }
.status {
  display: none; margin-top: 8px; padding: 14px 16px; border-radius: 14px; font-size: 0.95rem; border: 1px solid transparent;
}
.status.show { display: block; }
.status.good { background: rgba(183, 239, 197, 0.08); border-color: rgba(183, 239, 197, 0.28); color: var(--success); }
.status.warn { background: rgba(255, 183, 168, 0.08); border-color: rgba(255, 183, 168, 0.28); color: var(--danger); }
.status.info { background: rgba(183, 215, 255, 0.08); border-color: rgba(183, 215, 255, 0.28); color: var(--info); }
.summary-box {
  margin-top: 12px; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.03);
}
.summary-box pre {
  margin: 0; white-space: pre-wrap; word-break: break-word; color: var(--muted);
  font: 0.9rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.consent-list { display: grid; gap: 10px; margin: 6px 0 2px; }
.checkline {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.03);
  color: var(--muted); font-size: 0.93rem; font-weight: 500;
}
.checkline input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; }
.trap-wrap {
  position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important;
  height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important;
}
.faq { display: grid; gap: 14px; }
.faq-item { padding: 18px; }
.faq-item h4 { margin: 0 0 8px; font-size: 1rem; }
.channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 12px; }
.channel-card {
  padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.03);
}
.channel-card h4 { margin: 0 0 6px; font-size: 1rem; color: var(--text); }
.channel-card p { margin: 0 0 10px; color: var(--soft); font-size: 0.92rem; }
.route-note { margin-top: 10px; color: var(--soft); font-size: 0.9rem; }
.footer { padding: 38px 0 48px; color: var(--soft); }
.footer-inner {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-stack { display: grid; gap: 10px; justify-items: end; text-align: right; }
.contact-line { color: var(--muted); font-size: 0.95rem; }
.policy-header { padding: 56px 0 18px; }
.breadcrumb { color: var(--soft); font-size: 0.94rem; margin-bottom: 10px; }
.page-lead { max-width: 880px; color: var(--muted); }
.policy-main { padding: 12px 0 48px; }
.policy-card h2 {
  margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; letter-spacing: -0.02em;
}
.muted-link { color: var(--gold-2); }
@media (max-width: 980px) {
  .hero-grid, .form-wrap, .grid-3, .grid-2, .channel-grid, .policy-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .contact-stack { justify-items: start; text-align: left; }
}
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .hero-card, .panel, .faq-item, .policy-card { padding: 18px; }
  .btn, .text-btn { width: 100%; }
}
