:root {
  --navy-950: #071224;
  --navy-900: #0c1b33;
  --navy-800: #142947;
  --navy-700: #203e63;
  --orange-500: #f59d2a;
  --orange-400: #ffb24a;
  --orange-100: #fff4df;
  --ink: #152033;
  --muted: #617089;
  --line: #dbe3ee;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --shadow: 0 20px 60px rgba(12, 27, 51, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(245, 157, 42, 0.16), transparent 36rem),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 42%, #f8fafc 100%);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  pointer-events: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(245, 157, 42, 0.45);
  border-radius: 0.7rem;
  color: var(--orange-500);
  background:
    linear-gradient(135deg, rgba(245, 157, 42, 0.15), rgba(12, 27, 51, 0.04)),
    #ffffff;
  box-shadow: 0 8px 24px rgba(12, 27, 51, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.brand-name {
  font-size: 1.1rem;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.site-nav a,
.site-footer a {
  color: var(--navy-700);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--orange-500);
}

main {
  overflow: hidden;
}

.hero,
.section,
.page-hero {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-content {
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 10vw, 5.85rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-500), #e87f16);
  box-shadow: 0 14px 36px rgba(245, 157, 42, 0.28);
}

.button-primary:hover {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
  padding: 1rem;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(12, 27, 51, 0.92), rgba(32, 62, 99, 0.95)),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -18% auto auto 58%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(245, 157, 42, 0.16);
  filter: blur(24px);
  pointer-events: none;
}

.signal-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.signal-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 0.35rem rgba(245, 157, 42, 0.15);
  flex: 0 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.contact-card,
.status-section {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(12, 27, 51, 0.06);
}

.feature-card {
  padding: 1.25rem;
}

.feature-card p,
.contact-card p,
.page-hero p {
  color: var(--muted);
}

.status-section {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.78), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.status-section h2 {
  max-width: 48rem;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-card h2 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.contact-card a {
  color: var(--navy-900);
  font-weight: 800;
  text-decoration-color: rgba(245, 157, 42, 0.45);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.muted {
  color: var(--muted);
}

.page-hero {
  max-width: 760px;
  padding: 5rem 0 2rem;
}

.page-hero h1 {
  max-width: 12ch;
}

.policy-hero,
.policy-content {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.policy-hero {
  padding: 4rem 0 2rem;
}

.policy-hero h1 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
}

.policy-hero p {
  color: var(--muted);
}

.policy-date {
  margin-bottom: 1.25rem;
  color: var(--navy-700);
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--navy-700);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration-color: rgba(245, 157, 42, 0.45);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
}

.back-link:hover {
  color: var(--orange-500);
}

.policy-content {
  padding-bottom: 5rem;
}

.policy-content section {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: 0.45rem;
}

.policy-content a {
  color: var(--navy-900);
  font-weight: 800;
  text-decoration-color: rgba(245, 157, 42, 0.45);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    padding-top: 5.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 12rem;
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
