:root {
  --ink: #091a2a;
  --ink-soft: #17324a;
  --sea: #0f4c5c;
  --reef: #f26b3a;
  --sand: #f3ede4;
  --mist: #d6e2e8;
  --white: #ffffff;
  --muted: #6b7c8e;
  --line: rgba(9, 26, 42, 0.12);
  --shadow: 0 20px 60px rgba(6, 18, 29, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 107, 58, 0.10), transparent 25%),
    linear-gradient(180deg, #f9f6f1 0%, #eef4f6 48%, #ffffff 100%);
}

a {
  text-decoration: none;
}

.top-note {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.top-note strong {
  color: var(--white);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 26, 42, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-word {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white) !important;
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-cta,
.button-primary {
  background: var(--reef);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(242, 107, 58, 0.28);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  color: var(--white);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reef);
  box-shadow: 0 0 0 6px rgba(242, 107, 58, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: calc(100vh - 126px);
  background: #081723;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-video {
  opacity: 0.28;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 16, 27, 0.90) 5%, rgba(9, 26, 42, 0.74) 44%, rgba(15, 76, 92, 0.62) 100%),
    radial-gradient(circle at 80% 15%, rgba(242, 107, 58, 0.22), transparent 20%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -28% auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 58, 0.18), transparent 62%);
  filter: blur(18px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 22px 0 18px;
}

.hero h1 span {
  display: block;
  color: #ffd7c8;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel,
.section-card,
.service-card,
.gear-card,
.advantage-card,
.step-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  padding: 28px;
  max-width: 420px;
}

.hero-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.hero-panel ul {
  padding-left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.metric-strip {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section-shell {
  padding: 96px 0;
}

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

.section-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--reef);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.service-card,
.gear-card,
.advantage-card,
.step-card,
.section-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(9, 26, 42, 0.08);
  padding: 28px;
  height: 100%;
}

.service-card i,
.gear-card i,
.advantage-card i,
.step-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(242, 107, 58, 0.12);
  color: var(--reef);
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3,
.gear-card h3,
.advantage-card h3,
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p,
.gear-card p,
.advantage-card p,
.step-card p,
.section-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.service-list,
.gear-list,
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-list span,
.gear-list span,
.city-list span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9, 26, 42, 0.06);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.fact-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(9, 26, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  box-shadow: 0 16px 38px rgba(6, 18, 29, 0.08);
}

.fact-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--reef);
  font-weight: 800;
  margin-bottom: 12px;
}

.fact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.fact-card p,
.fact-card li {
  color: var(--muted);
  line-height: 1.75;
}

.fact-list {
  margin: 0;
  padding-left: 18px;
}

.fact-list li + li {
  margin-top: 8px;
}

.network-band {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(242, 107, 58, 0.16), transparent 22%),
    linear-gradient(135deg, #081722 0%, #102f43 55%, #0f4c5c 100%);
  color: var(--white);
  overflow: hidden;
}

.network-band .section-heading p,
.network-band .section-heading h2,
.network-band .section-kicker {
  color: var(--white);
}

.network-band .section-kicker {
  color: #ffd6c6;
}

.route-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  height: 100%;
}

.route-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.route-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  line-height: 1.75;
}

.route-card strong {
  display: inline-block;
  color: #ffd6c6;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.city-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}

.city-panel h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.city-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.city-panel .city-list span {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
}

.quote-banner {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f26b3a 0%, #f58b47 100%);
  color: var(--white);
  box-shadow: 0 26px 60px rgba(242, 107, 58, 0.24);
}

.quote-banner h3,
.quote-banner p {
  color: var(--white);
}

.quote-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.quote-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.quote-list i {
  margin-top: 4px;
}

.footer-shell {
  background: #07131d;
  color: rgba(255, 255, 255, 0.76);
  padding: 38px 0 26px;
}

.footer-shell h4,
.footer-shell h5,
.footer-shell a {
  color: var(--white);
}

.footer-meta {
  font-size: 14px;
  line-height: 1.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portal-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.portal-panel {
  max-width: 760px;
  margin: 40px auto;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(9, 26, 42, 0.08);
  box-shadow: 0 24px 70px rgba(9, 26, 42, 0.14);
  backdrop-filter: blur(12px);
}

.portal-panel .brand-word {
  color: var(--ink);
  font-size: 2.4rem;
  margin-bottom: 26px;
}

.portal-lock {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--sea) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 26px;
  box-shadow: 0 18px 34px rgba(9, 26, 42, 0.18);
}

.portal-panel h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.portal-panel p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(242, 107, 58, 0.10), transparent 24%),
    linear-gradient(180deg, #f8f4ee 0%, #edf4f6 100%);
}

.legal-shell {
  padding: 52px 0 72px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.legal-back:hover {
  color: var(--reef);
}

.legal-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(9, 26, 42, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(9, 26, 42, 0.12);
}

.legal-hero {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(6, 16, 27, 0.92) 0%, rgba(9, 26, 42, 0.82) 48%, rgba(15, 76, 92, 0.74) 100%),
    radial-gradient(circle at top right, rgba(242, 107, 58, 0.18), transparent 25%);
  color: var(--white);
}

.legal-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.96;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.legal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.legal-body {
  padding: 42px;
}

.legal-intro {
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(242, 107, 58, 0.10) 0%, rgba(15, 76, 92, 0.08) 100%);
  border: 1px solid rgba(9, 26, 42, 0.06);
  margin-bottom: 34px;
}

.legal-intro p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.legal-section + .legal-section {
  margin-top: 34px;
}

.legal-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-section ul {
  padding-left: 18px;
  margin: 0;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-contact {
  margin-top: 38px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--sea) 100%);
  color: var(--white);
}

.legal-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.legal-contact p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.legal-contact a {
  color: var(--white);
}

@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(7, 19, 29, 0.92);
  }

  .nav-cta {
    margin-top: 10px;
  }

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

@media (max-width: 767px) {
  .top-note {
    font-size: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    padding: 52px 0 42px;
  }

  .hero-panel {
    max-width: none;
  }

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

  .section-shell {
    padding: 78px 0;
  }

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

  .button-primary,
  .button-secondary,
  .nav-cta {
    width: 100%;
  }

  .portal-panel {
    padding: 30px 22px;
    margin: 20px;
  }
}

.site-body {
  min-height: 100vh;
}

.hero video {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 107, 58, 0.18), transparent 20%),
    linear-gradient(140deg, #081623 0%, #0d2739 48%, #10485a 100%);
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 16, 27, 0.92) 5%, rgba(9, 26, 42, 0.76) 44%, rgba(15, 76, 92, 0.64) 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

.hero-inner {
  padding: 90px 0 110px;
}

.hero-mesh {
  position: absolute;
  inset: auto 10% 12% auto;
  width: 360px;
  height: 360px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  transform: rotate(8deg);
  opacity: 0.65;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signal-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.panel-kicker,
.metric-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.metric-label {
  color: rgba(255, 255, 255, 0.76);
}

.panel-kicker::before,
.metric-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reef);
  box-shadow: 0 0 0 6px rgba(242, 107, 58, 0.16);
}

.data-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: var(--shadow);
}

.data-row + .data-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-row strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}

.data-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.metric-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
}

.quote-list-light {
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
}

.quote-list-light li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.quote-list-light li + li {
  margin-top: 10px;
}

.quote-list-light i {
  color: #ffd7c8;
  margin-top: 4px;
}

.quote-list-light span {
  color: rgba(255, 255, 255, 0.86);
}

.video-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(9, 26, 42, 0.08);
  box-shadow: 0 24px 70px rgba(9, 26, 42, 0.12);
}

.video-band-copy h3 {
  font-size: 1.8rem;
  margin: 16px 0 10px;
}

.video-band-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.video-band-media {
  position: relative;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #081723;
}

.video-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 22, 35, 0.12), rgba(15, 76, 92, 0.14));
}

.video-band-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-band {
  background:
    linear-gradient(180deg, rgba(15, 76, 92, 0.04), rgba(15, 76, 92, 0.08)),
    linear-gradient(180deg, #edf5f6 0%, #f7fafb 100%);
}

.quote-banner h3,
.portal-panel h1 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a + a {
  margin-left: 0;
}

@media (max-width: 1199px) {
  .hero-mesh {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .video-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-inner {
    padding: 68px 0 88px;
  }

  .hero-mesh {
    width: 220px;
    height: 220px;
    opacity: 0.35;
  }
}
