:root {
  --bg-navy-950: #0A192F;
  --bg-navy-900: #0E2238;
  --bg-panel: #16324F;
  --accent-cyan: #00E5FF;
  --accent-orange: #FF5722;
  --text-primary: #F0F7FF;
  --text-muted: #A0B0C0;
  --success: #00E676;
  --warning: #FFB300;
  --section-wine: #2B1216;
  --section-indigo: #151B3A;
  --header-height: 72px;
  --radius: 18px;
  --line-glow: rgba(0, 229, 255, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --font-heading: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  background: var(--bg-navy-950);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: var(--bg-navy-950);
  background-image:
    radial-gradient(circle at 85% 8%, rgba(0, 229, 255, 0.09), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(255, 87, 34, 0.06), transparent 28%),
    linear-gradient(180deg, var(--bg-navy-950), var(--bg-navy-900) 45%, var(--bg-navy-950));
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul,
ol {
  list-style: none;
}

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

a:hover {
  color: #7cf0ff;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

::selection {
  background: rgba(0, 229, 255, 0.25);
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 3000;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--accent-cyan);
  color: #04121f;
  font-weight: 800;
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.4);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  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;
}

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

.section {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
}

.section--wine {
  background: var(--section-wine);
}

.section--indigo {
  background: var(--section-indigo);
}

.section--slash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 72%, rgba(0, 229, 255, 0.08) 72% 72.5%, transparent 72.5%);
  pointer-events: none;
}

.section--slash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 20%, rgba(255, 87, 34, 0.04) 20% 20.5%, transparent 20.5%);
  pointer-events: none;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid--split {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.grid--thirds {
  grid-template-columns: repeat(3, 1fr);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-cyan);
}

.breadcrumb__sep {
  color: rgba(160, 176, 192, 0.5);
}

.breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 600;
}

.site-main--inset {
  padding-top: calc(var(--header-height) + 32px);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(44px, 9vw, 120px)) 0 clamp(36px, 6vw, 72px);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0 78%, rgba(0, 229, 255, 0.05) 78% 79%, transparent 79%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(10, 25, 51, 0.96), rgba(10, 25, 51, 0.72) 62%, rgba(10, 25, 51, 0));
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header[data-scrolled="true"] {
  background: rgba(10, 25, 51, 0.97);
  border-bottom-color: var(--line-glow);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--accent-cyan), var(--warning), var(--accent-orange));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.6);
  pointer-events: none;
  transition: width 0.18s linear;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1480px, 100% - 56px);
  height: var(--header-height);
  margin-inline: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  color: var(--text-primary);
}

.site-logo:hover {
  color: var(--text-primary);
}

.site-logo__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
  color: #06121f;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  clip-path: polygon(0 14%, 14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.24);
}

.site-logo__text {
  display: grid;
  gap: 3px;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.site-logo__name span {
  color: var(--accent-cyan);
}

.site-logo__slogan {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav__link:hover {
  color: var(--accent-cyan);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--accent-cyan);
}

.site-header__action {
  flex: none;
  margin-left: 12px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(255, 87, 34, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header__cta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
}

.site-header__cta:hover {
  background: #ff6b3d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 87, 34, 0.55);
}

.site-nav-toggle {
  display: none;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  background: rgba(0, 229, 255, 0.06);
}

.site-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-cyan);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
  color: var(--text-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button--primary {
  background: var(--accent-cyan);
  color: #06121f;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.22);
}

.button--primary:hover {
  background: #33ebff;
  box-shadow: 0 0 42px rgba(0, 229, 255, 0.42);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(0, 229, 255, 0.42);
  background: transparent;
  color: var(--accent-cyan);
}

.button--ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent-orange);
}

.display-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 58ch;
}

.panel {
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 24px;
  background: rgba(22, 50, 79, 0.68);
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 50, 79, 0.9), rgba(14, 34, 56, 0.9));
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
}

.card__title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.card__meta {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.stat-block {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 16px 16px 0;
  background: rgba(0, 229, 255, 0.06);
}

.stat-block__value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-cyan);
}

.stat-block__label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--cyan {
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
}

.tag--orange {
  border: 1px solid rgba(255, 87, 34, 0.32);
  background: rgba(255, 87, 34, 0.1);
  color: var(--accent-orange);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--bg-navy-900), var(--bg-panel));
  box-shadow: var(--shadow);
}

.media-frame::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(240, 247, 255, 0.46);
  background-image:
    radial-gradient(circle at 24% 22%, rgba(0, 229, 255, 0.14), transparent 28%),
    radial-gradient(circle at 80% 76%, rgba(255, 87, 34, 0.12), transparent 30%),
    linear-gradient(115deg, transparent 0 58%, rgba(0, 229, 255, 0.06) 58% 58.6%, transparent 58.6%),
    linear-gradient(30deg, transparent 0 70%, rgba(255, 255, 255, 0.025) 70% 70.2%, transparent 70.2%);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0, rgba(10, 25, 51, 0.5) 100%);
}

.media-frame--16-9 {
  aspect-ratio: 16 / 9;
}

.media-frame--4-3 {
  aspect-ratio: 4 / 3;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--has-image::before {
  content: "";
  background: transparent;
}

.media-frame--has-image::after {
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(10, 25, 51, 0.45));
}

.data-dial {
  --progress: 0;
  --dial-color: var(--accent-cyan);
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(var(--dial-color) calc(var(--progress) * 1%), rgba(255, 255, 255, 0.08) 0);
}

.data-dial::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  background: var(--bg-navy-900);
}

.data-dial__value {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--dial-color);
}

.site-footer {
  position: relative;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #071120, #080f1c);
  border-top: 1px solid rgba(0, 229, 255, 0.14);
  padding: 72px 0 40px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  width: min(1480px, 100% - 56px);
  margin-inline: auto;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 44px;
}

.site-footer__brand {
  display: grid;
  justify-items: start;
  align-content: start;
}

.site-footer__about {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer__trust {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 2px solid var(--accent-cyan);
  border-radius: 0 12px 12px 0;
  background: rgba(0, 229, 255, 0.045);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 16px;
}

.site-footer__heading {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding-bottom: 12px;
  position: relative;
}

.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-orange);
}

.site-footer__list {
  display: grid;
  gap: 9px;
}

.site-footer__list a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--accent-cyan);
  padding-left: 5px;
}

.site-footer__contact {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.site-footer__note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(160, 176, 192, 0.78);
  font-size: 0.85rem;
  line-height: 1.7;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.site-footer__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: indicator 2.4s ease-in-out infinite;
}

.site-footer__copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer__icp {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.site-footer__icp a {
  color: var(--text-muted);
}

.site-footer__icp a:hover {
  color: var(--accent-cyan);
}

@keyframes indicator {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@media (max-width: 960px) {
  .grid--split {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 16px;
    right: 16px;
    display: block;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    margin-left: 0;
    padding: 16px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 20px;
    background: rgba(10, 25, 51, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    display: grid;
    gap: 4px;
  }

  .site-nav__link {
    display: flex;
    width: 100%;
    padding: 13px 16px;
    font-size: 1.03rem;
  }

  .site-nav__link[aria-current="page"] {
    background: rgba(0, 229, 255, 0.08);
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-header__action {
    margin-left: auto;
  }

  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .site-footer__inner {
    width: 100%;
    padding-inline: 20px;
  }

  .site-header__inner {
    width: 100%;
    padding-inline: 14px;
    gap: 10px;
  }

  .site-logo__mark {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .site-logo__slogan {
    display: none;
  }

  .site-logo__name {
    font-size: 1.08rem;
  }

  .site-header__cta {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .site-header__cta::before {
    width: 5px;
    height: 5px;
  }

  .site-nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

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

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
}

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