:root {
  --bg: #061225;
  --bg-soft: #0b1b34;
  --panel: rgba(10, 25, 48, 0.78);
  --panel-strong: rgba(8, 20, 40, 0.92);
  --border: rgba(162, 209, 255, 0.16);
  --text: #edf6ff;
  --muted: #a8c4e3;
  --blue: #208aef;
  --blue-bright: #4b8ef7;
  --cyan: #5dd6ff;
  --pink: #ff72b6;
  --gold: #f6c453;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --gradient: linear-gradient(135deg, var(--blue), var(--cyan));
  --font-main: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(32, 138, 239, 0.14), transparent 34%),
    linear-gradient(180deg, #071224 0%, #040b15 100%);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: #9ae8ff;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.bg-orb-one {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(32, 138, 239, 0.32), rgba(32, 138, 239, 0));
}

.bg-orb-two {
  right: -12rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(93, 214, 255, 0.22), rgba(93, 214, 255, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(4, 11, 21, 0.78);
  border-bottom: 1px solid rgba(162, 209, 255, 0.08);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--blue), #7bdcff);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(32, 138, 239, 0.28);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: var(--cyan);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

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

.button-primary {
  background: var(--gradient);
  color: #04111f;
  box-shadow: 0 16px 40px rgba(32, 138, 239, 0.24);
}

.button-primary:hover {
  color: #04111f;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  color: var(--text);
  border-color: rgba(93, 214, 255, 0.45);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.hero-simple {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 960px;
  min-height: calc(100vh - 172px);
  padding: 5.4rem 0 4.4rem;
}

.hero-panel {
  position: relative;
  width: min(100%, 780px);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: 34px;
  border: 1px solid rgba(162, 209, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 31, 58, 0.92), rgba(6, 18, 37, 0.96)),
    radial-gradient(circle at top, rgba(93, 214, 255, 0.12), transparent 42%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  text-align: center;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -30% auto auto 50%;
  width: 24rem;
  height: 24rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(93, 214, 255, 0.16), rgba(93, 214, 255, 0));
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-panel .hero-text {
  max-width: 37rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.14rem;
}

.narrow-text {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.84rem;
}

.hero-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 214, 255, 0.22);
  background: rgba(93, 214, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-panel .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.mini-points span,
.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
}

.mode-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.mode-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(162, 209, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mode-chip:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(93, 214, 255, 0.3);
}

.mode-chip:focus-visible,
.mode-modal-close:focus-visible {
  outline: 2px solid rgba(93, 214, 255, 0.8);
  outline-offset: 3px;
}

.mode-chip:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 114, 182, 0.14), rgba(255, 255, 255, 0.04));
}

.mode-chip:nth-child(2) {
  background: linear-gradient(180deg, rgba(93, 214, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.mode-chip:nth-child(3) {
  background: linear-gradient(180deg, rgba(246, 196, 83, 0.16), rgba(255, 255, 255, 0.04));
}

.mode-chip:nth-child(4) {
  background: linear-gradient(180deg, rgba(75, 142, 247, 0.16), rgba(255, 255, 255, 0.04));
}

.mode-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.mode-modal[hidden] {
  display: none;
}

.mode-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 21, 0.72);
  backdrop-filter: blur(10px);
}

.mode-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(162, 209, 255, 0.18);
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.97), rgba(6, 18, 37, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.mode-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mode-modal-eyebrow {
  margin: 0;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.mode-modal-panel h2 {
  margin: 0.55rem 0 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.mode-modal-summary {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-stage {
  display: flex;
  justify-content: flex-end;
}

.stage-frame,
.legal-card,
.contact-form-panel {
  width: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(12, 31, 58, 0.95), rgba(7, 20, 39, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stage-frame {
  max-width: 520px;
  padding: 1.15rem;
}

.stage-topbar,
.stage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.stage-pill,
.stage-note,
.legal-updated {
  color: var(--muted);
  font-weight: 600;
}

.stage-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(93, 214, 255, 0.08);
  border: 1px solid rgba(93, 214, 255, 0.22);
  color: var(--cyan);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.mode-tile,
.info-card,
.link-card,
.callout-box {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.mode-tile {
  min-height: 200px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.mode-tile::before {
  content: '';
  position: absolute;
  inset: auto -35% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  opacity: 0.18;
}

.pink-tile::before {
  background: var(--pink);
}

.cyan-tile::before {
  background: var(--cyan);
}

.gold-tile::before {
  background: var(--gold);
}

.blue-tile::before {
  background: var(--blue-bright);
}

.mode-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mode-tile h2,
.section-heading h2,
.legal-card h2,
.info-card h2,
.contact-form-panel h2 {
  margin: 0.45rem 0 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.mode-tile h2 {
  font-size: 1.25rem;
}

.mode-tile p:last-child,
.info-card p,
.link-card span,
.callout-box p,
.legal-card p,
.legal-list,
.footer-copy,
.field span,
.status-note {
  color: var(--muted);
}

.stage-footer {
  padding: 0.4rem 0.15rem 0.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-block,
.legal-main,
.contact-main {
  padding-bottom: 3.4rem;
}

.section-block {
  padding-top: 2rem;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.legal-card h2,
.page-hero h1,
.info-card h2,
.contact-form-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.compact-heading h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

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

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.link-card,
.contact-form-panel,
.legal-card {
  padding: 1.3rem;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.link-card {
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 214, 255, 0.4);
}

.link-card strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
}

.page-hero {
  padding: 4.2rem 0 1.4rem;
}

.legal-main,
.contact-main {
  padding-top: 0.2rem;
}

.legal-card h2 {
  margin-top: 1.8rem;
  font-size: 1.34rem;
}

.legal-tabs {
  display: inline-flex;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-tab-button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.legal-tab-button:hover {
  color: var(--text);
}

.legal-tab-button.is-active {
  background: rgba(93, 214, 255, 0.12);
  color: var(--text);
}

.legal-tab-button:focus-visible {
  outline: 2px solid rgba(93, 214, 255, 0.8);
  outline-offset: 2px;
}

.legal-panel[hidden] {
  display: none;
}

.legal-card h2:first-of-type {
  margin-top: 1.1rem;
}

.legal-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.callout-box {
  margin-bottom: 1rem;
  background: rgba(93, 214, 255, 0.06);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card-large h2,
.info-card h2 {
  font-size: 1.45rem;
}

.compact-list {
  margin-top: 0.2rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.contact-form {
  margin-top: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field span {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(162, 209, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.92rem 1rem;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7ea6cf;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(93, 214, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(93, 214, 255, 0.12);
}

.field select option {
  color: #000;
  background: #fff;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.status-note {
  margin: 0;
}

.site-footer {
  border-top: 1px solid rgba(162, 209, 255, 0.08);
  background: rgba(4, 11, 21, 0.72);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-copy {
  margin: 0.2rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

body.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .contact-layout,
  .footer-shell,
  .three-up,
  .link-cards {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    padding: 0.95rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.9rem 1rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-simple {
    min-height: auto;
    padding-bottom: 3.2rem;
  }

  .page-hero {
    padding-top: 2.9rem;
  }

  .mode-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stage-topbar,
  .stage-footer,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-panel {
    padding: 1.35rem;
    border-radius: 26px;
  }

  .mode-strip {
    grid-template-columns: 1fr;
  }

  .legal-tabs {
    width: 100%;
  }

  .legal-tab-button {
    flex: 1;
  }

  .stage-frame,
  .legal-card,
  .contact-form-panel,
  .info-card,
  .link-card {
    border-radius: 24px;
  }
}
