:root {
  color-scheme: dark;
  --navy: #1e2d6b;
  --navy-dark: #141f4e;
  --navy-mid: #2c3e7a;
  --amber: #f5a623;
  --amber-light: #ffbe4d;
  --amber-dark: #d4861a;
  --off-white: #f4f6fb;
  --gray: #8a93b0;
  --gray-light: #e8ecf5;
  --bg: var(--navy-dark);
  --bg-soft: var(--navy);
  --surface: var(--navy);
  --surface-2: var(--navy-mid);
  --surface-light: var(--off-white);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dark: #111827;
  --text-soft: #5c6680;
  --line: rgba(245, 166, 35, 0.22);
  --line-strong: rgba(245, 166, 35, 0.42);
  --primary: var(--amber);
  --primary-strong: var(--amber-light);
  --secondary: var(--navy-mid);
  --accent: var(--amber);
  --success: var(--amber);
  --danger: #d95555;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(20, 31, 78, 0.28);
  --shadow-soft: 0 18px 50px rgba(20, 31, 78, 0.14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 78px;
  --font: "DM Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Exo 2", "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.2vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  background: rgba(245, 166, 35, 0.35);
  color: var(--navy-dark);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 198, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(138, 92, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #081422, #0b1828 60%, #07111f);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.section-copy p {
  margin-top: 18px;
  font-size: 1.04rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.center .eyebrow {
  justify-content: center;
}

.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--navy-dark);
  box-shadow: 0 18px 34px rgba(20, 143, 244, 0.32);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--primary);
  background: rgba(245, 166, 35, 0.12);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 17, 31, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.narrow {
  max-width: 860px;
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(57, 198, 255, 0.18), rgba(255, 200, 87, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.media-frame:hover::after,
.media-frame:focus-visible::after {
  opacity: 1;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.media-frame:hover img,
.media-frame:focus-visible img {
  transform: scale(1.035);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #03101e;
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
