:root {
  color-scheme: dark;
  --ink: #18082f;
  --ink-raised: #2a1740;
  --white: #fff9f2;
  --muted: #d5bedf;
  --pink: #ff4aa2;
  --cyan: #73e7f3;
  --yellow: #ffd23f;
  --line: rgba(115, 231, 243, 0.22);
  --max: 800px;
}

* { box-sizing: border-box; }

html { background: var(--ink); scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(255, 74, 162, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 231, 243, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(255, 74, 162, 0.23), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(115, 231, 243, 0.15), transparent 30rem),
    var(--ink);
  background-size: 18px 18px, 18px 18px, auto, auto, auto;
  color: var(--white);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-underline-offset: .2em; }
a:hover { color: #bcf8ff; }
a:focus-visible { border-radius: 4px; outline: 3px solid var(--yellow); outline-offset: 4px; }

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 210, 63, .55);
  border-radius: 10px;
  background: linear-gradient(145deg, #44225d, #251139);
  color: var(--yellow);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 10px 34px rgba(255, 74, 162, .14);
}

.site-nav { display: flex; gap: 18px; font-size: .9rem; }
.site-nav a { color: var(--muted); }
.site-nav a[aria-current="page"] { color: var(--cyan); font-weight: 750; }

main { padding-block: clamp(52px, 10vw, 90px) 66px; }
.hero { display: grid; gap: clamp(56px, 10vw, 96px); }
.hero-copy { max-width: 720px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; text-wrap: balance; }
h1 { max-width: 15ch; margin: 0; font-size: clamp(2.3rem, 8vw, 4.7rem); line-height: .98; letter-spacing: -.048em; }
h2 { margin: 0 0 10px; font-size: 1.18rem; }

.lede { max-width: 58ch; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 3vw, 1.25rem); }

.updated,
.status {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255, 210, 63, .4);
  border-radius: 999px;
  background: rgba(255, 210, 63, .09);
  color: #ffe987;
  font-size: .78rem;
  font-weight: 750;
}

.updated { margin-top: 24px; }
.status { margin-bottom: 28px; }

.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 18px; border-radius: 13px; background: linear-gradient(135deg, var(--pink), #ff8bc0); color: #260919; font-weight: 850; text-decoration: none; box-shadow: 0 12px 34px rgba(255, 74, 162, .22); }
.button:hover { background: #ff9dca; color: #260919; }
.text-link { font-weight: 750; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature, .content section { margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(74, 37, 96, .55), rgba(35, 16, 53, .84)); }
.feature > span { display: grid; width: 44px; height: 44px; margin-bottom: 20px; place-items: center; border-radius: 13px; background: rgba(115, 231, 243, .1); color: var(--yellow); font-weight: 850; }
.feature p, .content p { margin: 0; color: var(--muted); }

.content { display: grid; gap: 16px; margin-top: clamp(48px, 8vw, 76px); }
.content p + p { margin-top: 12px; }
.contact-card { display: grid; gap: 8px; }
.contact-card strong { color: var(--yellow); font-size: 1.1rem; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding-block: 26px 38px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; justify-content: space-between; }
}

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