:root {
  --navy-950: #04111f;
  --navy-900: #071a2d;
  --navy-800: #0b2a46;
  --navy-700: #123d61;
  --green: #31b66a;
  --green-soft: #a8ecc4;
  --sky: #77d7ef;
  --violet: #8277ef;
  --rose: #e45478;
  --ink: #112236;
  --muted: #5e6e80;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #dfe7ef;
  --shadow: 0 24px 70px rgba(7, 26, 45, 0.16);
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-soft);
}

.brand-mark svg,
.mini-mark svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 5px rgba(168,236,196,.12);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 13%, rgba(119,215,239,.18), transparent 30%),
    radial-gradient(circle at 84% 23%, rgba(130,119,239,.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #0a3042 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(4,17,31,.34));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding-top: 105px;
  padding-bottom: 80px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-soft);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--green);
  color: #032013;
}

.button-primary:hover {
  background: #44cb7d;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.46);
  background: rgba(255,255,255,.11);
}

.quiet-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-size: .93rem;
}

.quiet-note span {
  color: var(--green-soft);
}

.hero-art {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 9%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,182,106,.28), transparent 64%);
  filter: blur(26px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.orbit-one {
  width: 430px;
  height: 430px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 335px;
  height: 335px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

.orbit-three {
  width: 510px;
  height: 240px;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%) rotate(-28deg);
  animation-delay: -4s;
}

.art-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}

.art-card-main {
  left: 50%;
  top: 50%;
  width: min(360px, 82%);
  min-height: 245px;
  padding: 34px;
  border-radius: 28px;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.mini-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  color: var(--green-soft);
}

.art-card-main p {
  margin-bottom: 7px;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.art-card-main strong {
  display: block;
  max-width: 250px;
  font-size: 1.75rem;
  line-height: 1.16;
  letter-spacing: -.035em;
}

.art-card-small {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 700;
}

.top-card {
  right: 2%;
  top: 15%;
  animation: drift 6s ease-in-out infinite;
}

.bottom-card {
  left: -2%;
  bottom: 18%;
  animation: drift 7s ease-in-out infinite reverse;
}

.card-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(168,236,196,.16);
  color: var(--green-soft);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.hero-glow-one {
  width: 250px;
  height: 250px;
  right: -70px;
  top: 120px;
  background: rgba(228,84,120,.16);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: 22%;
  bottom: -180px;
  background: rgba(119,215,239,.12);
}

.principles {
  padding: 120px 0;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 1.05rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.principle-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,182,106,.18), transparent 67%);
}

.principle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49,182,106,.35);
  box-shadow: 0 20px 50px rgba(7,26,45,.09);
}

.principle-number {
  display: inline-flex;
  margin-bottom: 90px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
}

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

.status-section {
  padding: 120px 0;
  background: var(--white);
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
  padding: 64px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(119,215,239,.13), transparent 27%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.status-panel h2 {
  max-width: 520px;
}

.status-panel > div:first-child > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.status-item strong,
.status-item small {
  display: block;
}

.status-item strong {
  margin-bottom: 2px;
}

.status-item small {
  color: rgba(255,255,255,.52);
}

.check,
.pulse,
.empty-dot {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
}

.check {
  background: rgba(49,182,106,.2);
  color: var(--green-soft);
  font-weight: 900;
}

.pulse {
  position: relative;
  background: rgba(119,215,239,.16);
}

.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--sky);
}

.pulse::before {
  width: 9px;
  height: 9px;
}

.pulse::after {
  width: 9px;
  height: 9px;
  animation: ping 1.8s ease-out infinite;
}

.empty-dot {
  border: 1px solid rgba(255,255,255,.26);
}

.closing {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(49,182,106,.12), transparent 34%),
    var(--paper);
}

.closing-inner {
  max-width: 790px;
}

.closing p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 14px;
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green);
}

.site-footer {
  padding: 34px 0;
  background: var(--navy-950);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  font-size: 1.05rem;
}

.footer-inner p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.5);
  font-size: .84rem;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: .9rem;
}

.footer-inner a:hover {
  color: var(--white);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  padding: 28px 0;
  background: var(--navy-950);
}

.legal-main {
  padding: 72px 0 100px;
}

.legal-card {
  max-width: 840px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7,26,45,.08);
}

.legal-card h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: none;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .72; }
  50% { transform: translate(-50%, -50%) scale(1.025); opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ping {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 130px;
  }

  .hero-art {
    min-height: 430px;
  }

  .section-heading {
    gap: 16px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .principle-number {
    margin-bottom: 48px;
  }

  .status-panel {
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 78px;
  }

  .header-status {
    padding: 8px 10px;
    font-size: .75rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 55px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 370px;
  }

  .art-card-main {
    padding: 28px;
  }

  .top-card {
    right: -2%;
  }

  .bottom-card {
    left: -2%;
  }

  .principles,
  .status-section,
  .closing {
    padding: 82px 0;
  }

  .status-panel,
  .legal-card {
    padding: 32px 24px;
  }

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