:root {
  --ink: #06080e;
  --panel: #101620;
  --lime: #c7ff3d;
  --cyan: #55e6ff;
  --cloud: #f7faff;
  --muted: #98a6ba;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cloud);
  background:
    radial-gradient(circle at 92% 4%, rgb(85 230 255 / 13%), transparent 31rem),
    radial-gradient(circle at 2% 82%, rgb(199 255 61 / 8%), transparent 28rem),
    linear-gradient(180deg, #080b13, var(--ink));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 110px 110px;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-size: 26px;
  font-weight: 950;
}
.brand strong { display: block; font-size: 21px; letter-spacing: .08em; }
.brand small { display: block; color: var(--cyan); font-size: 10px; letter-spacing: .16em; font-weight: 800; margin-top: 2px; }
nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 700; }
nav a:hover, nav a:focus-visible { color: var(--lime); }
.hero, .policy, .support, footer { position: relative; z-index: 1; max-width: 1160px; margin: auto; }
.hero { min-height: 590px; padding: 112px 28px 80px; }
.eyebrow { color: var(--lime); font-size: 12px; letter-spacing: .16em; font-weight: 900; }
.eyebrow span { display: inline-block; width: 9px; height: 9px; margin-right: 10px; border-radius: 50%; background: currentColor; }
.hero h1 { max-width: 900px; margin: 25px 0; font-size: clamp(54px, 8vw, 105px); line-height: .92; letter-spacing: -.065em; text-transform: uppercase; }
.hero > p { max-width: 730px; color: var(--muted); font-size: clamp(18px, 2.2vw, 25px); line-height: 1.55; }
.status-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.status-row span { border: 1px solid rgb(255 255 255 / 10%); border-radius: 12px; background: rgb(255 255 255 / 4%); color: var(--muted); padding: 12px 20px; font-size: 11px; letter-spacing: .1em; font-weight: 850; }
.policy { padding: 80px 28px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; border-bottom: 1px solid rgb(255 255 255 / 10%); padding-bottom: 25px; }
.section-heading p, .effective span, .app-id span { color: var(--cyan); font-size: 11px; letter-spacing: .15em; font-weight: 850; }
.section-heading h2, .support h2 { margin: 8px 0 0; font-size: clamp(35px, 5vw, 58px); line-height: 1; text-transform: uppercase; }
.effective { text-align: right; }
.effective strong { display: block; color: var(--lime); margin-top: 8px; }
.summary-card { display: flex; gap: 18px; align-items: flex-start; margin: 34px 0; padding: 25px; border-radius: 22px; border: 1px solid rgb(199 255 61 / 33%); background: rgb(199 255 61 / 8%); }
.summary-card .pulse { flex: none; width: 13px; height: 13px; margin-top: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 24px rgb(199 255 61 / 55%); }
.summary-card strong { color: var(--lime); text-transform: uppercase; letter-spacing: .06em; }
.summary-card p { margin: 7px 0 0; color: var(--muted); line-height: 1.6; }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.policy-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 25px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 22px; background: rgb(16 22 32 / 90%); }
.number { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--cyan); background: rgb(85 230 255 / 11%); font-weight: 900; }
.policy-grid h3 { margin: 2px 0 9px; font-size: 17px; text-transform: uppercase; }
.policy-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.support { margin-top: 40px; margin-bottom: 60px; padding: 50px; display: grid; grid-template-columns: 1.4fr .8fr; gap: 50px; border-radius: 28px; border: 1px solid rgb(85 230 255 / 28%); background: linear-gradient(135deg, rgb(85 230 255 / 9%), rgb(16 22 32 / 96%)); }
.support > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; max-width: 690px; }
.app-id { display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 25px; border-radius: 20px; background: rgb(6 8 14 / 55%); }
.app-id code { color: var(--cloud); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; margin-bottom: 20px; }
.app-id strong { color: var(--lime); }
footer { padding: 28px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); border-top: 1px solid rgb(255 255 255 / 8%); font-size: 12px; }

@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero { min-height: auto; padding-top: 80px; }
  .policy-grid, .support { grid-template-columns: 1fr; }
  .support { margin-inline: 18px; padding: 28px; }
  .section-heading, footer { align-items: flex-start; flex-direction: column; }
  .effective { text-align: left; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
