@font-face {
  font-family: "Prompt";
  src: url("/assets/prompt-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("/assets/prompt-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background-top: #070b12;
  --background-mid: #0a101b;
  --background-bottom: #101622;
  --ink: #edeff7;
  --muted: #9699a0;
  --primary: #008bff;
  --primary-soft: #66b9ff;
  --panel: rgba(20, 24, 34, 0.83);
  --panel-raised: rgba(27, 34, 49, 0.9);
  --border: rgba(134, 154, 191, 0.34);
  --success: #51d88a;
  --warning: #ffb55c;
  --shadow: rgba(0, 0, 0, 0.48);
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 139, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(128, 51, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 52% 100%, rgba(102, 185, 255, 0.08), transparent 34rem),
    linear-gradient(145deg, var(--background-top), var(--background-mid) 48%, var(--background-bottom));
  font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.26;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 0.7px, transparent 0.9px),
    radial-gradient(circle, rgba(102, 185, 255, 0.42) 0 0.6px, transparent 0.8px);
  background-position: 0 0, 24px 31px;
  background-size: 54px 54px, 77px 77px;
  pointer-events: none;
}

a {
  color: var(--primary-soft);
  text-underline-offset: 0.22em;
}

a:hover {
  color: #a8d8ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(134, 154, 191, 0.18);
  background: rgba(7, 11, 18, 0.76);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.header-inner,
.page-shell,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 500;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 139, 255, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(134, 154, 191, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.page-shell {
  padding-block: 72px 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin-bottom: 42px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(102, 185, 255, 0.34);
  border-radius: 999px;
  color: var(--primary-soft);
  background: rgba(0, 139, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(81, 216, 138, 0.72);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin: 18px 0 14px;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
  background: linear-gradient(95deg, var(--ink) 18%, var(--primary-soft) 76%, #a97bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.hero-icon {
  width: clamp(104px, 16vw, 164px);
  height: auto;
  border-radius: 30%;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 56px rgba(0, 139, 255, 0.2);
}

.glass-panel,
.link-card,
.contact-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(49, 70, 98, 0.23), rgba(0, 139, 255, 0.08) 48%, rgba(18, 22, 32, 0.72)),
    var(--panel);
  box-shadow:
    0 28px 62px -24px rgba(0, 139, 255, 0.3),
    0 24px 54px -20px var(--shadow);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.glass-panel {
  padding: clamp(24px, 5vw, 50px);
  border-radius: 28px;
}

.document-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(134, 154, 191, 0.2);
}

.document-head h2 {
  margin-bottom: 5px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
}

.document-head p,
.section-intro,
.meta {
  color: var(--muted);
}

.document-section {
  padding-top: 34px;
}

.document-section + .document-section {
  margin-top: 34px;
  border-top: 1px solid rgba(134, 154, 191, 0.18);
}

.document-section h2 {
  margin-bottom: 18px;
  color: var(--primary-soft);
  font-size: 1.12rem;
  font-weight: 500;
}

.document-section h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 500;
}

.document-section p,
.document-section li {
  color: #c9ccd5;
}

.document-section ul,
.document-section ol {
  margin: 10px 0 0;
  padding-left: 1.35rem;
}

.document-section li + li {
  margin-top: 8px;
}

.callout {
  margin: 26px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(102, 185, 255, 0.3);
  border-radius: 18px;
  color: #d9ecff;
  background: rgba(0, 139, 255, 0.09);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.link-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
}

.link-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 139, 255, 0.14);
  filter: blur(18px);
  content: "";
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 185, 255, 0.58);
}

.card-kicker {
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-card h2 {
  margin: 20px 0 10px;
  font-size: 1.45rem;
  font-weight: 500;
}

.link-card p {
  max-width: 430px;
  color: var(--muted);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary-soft);
  font-size: 0.92rem;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 24px;
}

.contact-card h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid rgba(102, 185, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 139, 255, 0.92);
  box-shadow: 0 14px 30px -12px rgba(0, 139, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: #1595ff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px 42px;
  border-top: 1px solid rgba(134, 154, 191, 0.16);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .page-shell {
    padding-block: 50px 68px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-icon {
    grid-row: 1;
    width: 88px;
    border-radius: 24px;
  }

  .document-head,
  .contact-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .header-inner,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .glass-panel,
  .link-card,
  .contact-card {
    border-radius: 22px;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #111827;
    background: #fff;
    font-size: 11pt;
  }

  body::before,
  .site-header,
  .hero-icon,
  .site-footer {
    display: none;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  h1 {
    color: #111827;
    background: none;
    -webkit-text-fill-color: #111827;
  }

  .glass-panel {
    padding: 0;
    border: 0;
    color: #111827;
    background: #fff;
    box-shadow: none;
  }

  .document-section p,
  .document-section li,
  .document-head p,
  .meta {
    color: #374151;
  }
}
