:root {
  --bg: #110b28;
  --bg-soft: #1a1240;
  --panel: rgba(21, 13, 48, 0.86);
  --panel-strong: rgba(15, 10, 34, 0.95);
  --panel-border: rgba(195, 175, 255, 0.18);
  --text: #f9f8ff;
  --muted: #d1c9ef;
  --accent: #ff7b3f;
  --accent-bright: #ffb347;
  --signal: #6b7bff;
  --signal-soft: #9dc3ff;
  --violet: #7d68ff;
  --violet-soft: #a89eff;
  --pink: #cc4cff;
  --navy: #12398d;
  --orange-soft: #ff8d57;
  --shadow: 0 24px 80px rgba(11, 6, 28, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1220px;
  --content-pad: clamp(1.2rem, 2vw, 1.8rem);
  --headline: "Franklin Gothic Medium", "Arial Narrow", "Trebuchet MS", sans-serif;
  --body: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(167, 148, 255, 0.24), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(255, 127, 63, 0.18), transparent 22%),
    radial-gradient(circle at 70% 56%, rgba(39, 78, 212, 0.16), transparent 24%),
    linear-gradient(180deg, #0f0a23 0%, #17103a 34%, #0a0d23 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 70%);
  opacity: 0.45;
}

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

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

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(16, 10, 34, 0.8);
  border-bottom: 1px solid rgba(186, 168, 255, 0.12);
}

.header-shell,
.footer-shell,
.page-shell,
.hero,
.section-shell,
.contact-band,
.mini-cta {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--headline);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--accent-bright);
  letter-spacing: 0.11em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

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

.site-nav a {
  color: var(--muted);
  padding: 0.85rem 0.9rem;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  background: rgba(138, 120, 255, 0.16);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.92rem 1.15rem;
  background: linear-gradient(135deg, #ff5b63, var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(255, 123, 63, 0.28);
  font-weight: 700;
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0;
}

.icon-inline {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

main {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 1.4rem;
  padding: clamp(2.2rem, 4vw, 4rem);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(5, 11, 20, 0.96) 0%, rgba(7, 16, 27, 0.82) 52%, rgba(7, 16, 27, 0.54) 100%),
    radial-gradient(circle at 75% 26%, rgba(43, 121, 255, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(10, 24, 40, 0.5), rgba(8, 17, 29, 0.94));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18% 5% 12% auto;
  width: min(42%, 470px);
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 148, 255, 0.24), transparent 42%),
    linear-gradient(transparent 42%, rgba(32, 148, 255, 0.28) 42%, rgba(32, 148, 255, 0.28) 43%, transparent 43%),
    linear-gradient(60deg, transparent 47%, rgba(103, 199, 255, 0.46) 48%, transparent 49%),
    linear-gradient(120deg, transparent 45%, rgba(103, 199, 255, 0.26) 46%, transparent 47%);
  opacity: 0.78;
  clip-path: polygon(0 18%, 28% 0, 76% 4%, 100% 24%, 100% 82%, 74% 100%, 18% 92%, 0 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 860px;
}

.hero-main {
  display: grid;
  gap: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-bright);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-family: var(--headline);
  letter-spacing: -0.025em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 5.55rem);
}

.hero-copy,
.page-intro {
  max-width: 38rem;
  color: #d2dbeb;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.hero .button-row {
  margin-top: 0.25rem;
}

.highlight {
  color: var(--accent-bright);
}

.button-row,
.pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(168, 190, 227, 0.18);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #ff5d62, var(--accent));
  box-shadow: 0 18px 45px rgba(255, 123, 63, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(167, 149, 255, 0.22);
}

.button-ghost {
  background: transparent;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 36rem;
  margin-top: 1.85rem;
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 172, 208, 0.14);
  border-radius: 18px;
  background: rgba(10, 20, 32, 0.7);
}

.signal-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.12rem;
}

.signal-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.signal-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(32, 148, 255, 0.24), rgba(32, 148, 255, 0.08));
  color: var(--signal-soft);
  flex: none;
}

.location-badge,
.floating-panel,
.media-card,
.mini-card,
.glass-card {
  border: 1px solid rgba(138, 165, 202, 0.14);
  background: rgba(8, 17, 28, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: end;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.location-badge strong {
  display: block;
  font-size: 0.9rem;
}

.location-badge span {
  color: var(--signal-soft);
  font-size: 1.05rem;
}

.floating-panel {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  padding: 1.25rem;
  border-radius: 28px;
}

.section {
  padding: 4.8rem 0;
}

.section-tight {
  padding-top: 2.8rem;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.section-copy {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 275px;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 26px;
  border: 1px solid rgba(136, 164, 204, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 11, 18, 0.08) 0%, rgba(5, 11, 18, 0.94) 78%),
    var(--card-image, linear-gradient(135deg, rgba(32, 148, 255, 0.26), rgba(223, 69, 72, 0.08)));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: grid;
  align-content: end;
  gap: 0.5rem;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0.1), rgba(8, 17, 29, 0.96));
  z-index: -1;
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: span 6;
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(4, 14, 24, 0.68);
  color: var(--signal-soft);
  border: 1px solid rgba(129, 163, 206, 0.18);
}

.service-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.45rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.reason-grid,
.feature-grid,
.testimonial-grid,
.split-grid,
.metric-grid,
.footer-grid,
.route-grid {
  display: grid;
  gap: 1rem;
}

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

.glass-card {
  padding: 1.35rem;
  border-radius: 22px;
}

.reason-card {
  text-align: center;
}

.reason-card .signal-icon {
  margin: 0 auto 0.9rem;
}

.reason-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.content-card,
.bundle-card,
.testimonial-card,
.contact-card,
.detail-card,
.route-card {
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(188, 171, 255, 0.14);
  background: rgba(18, 11, 40, 0.86);
  box-shadow: var(--shadow);
}

.content-card h3,
.bundle-card h3,
.detail-card h3,
.route-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.content-card p,
.bundle-card p,
.detail-card p,
.route-card p,
.testimonial-card blockquote,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.check-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), var(--signal-soft));
  box-shadow: 0 0 0 5px rgba(32, 148, 255, 0.12);
  flex: none;
}

.bundle-stack,
.detail-stack,
.service-route-stack {
  display: grid;
  gap: 1rem;
}

.bundle-card {
  display: grid;
  gap: 0.85rem;
}

.bundle-row,
.route-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.bundle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--signal-soft);
  background: rgba(32, 148, 255, 0.1);
  border: 1px solid rgba(32, 148, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.discount {
  text-align: right;
  color: var(--accent-bright);
  font-family: var(--headline);
  font-size: 1.9rem;
  line-height: 0.95;
}

.discount small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: grid;
  gap: 1.1rem;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent-bright);
  line-height: 0.8;
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.stars {
  color: #ff6466;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.contact-band {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(145, 174, 214, 0.14);
  background:
    radial-gradient(circle at 85% 15%, rgba(223, 69, 72, 0.16), transparent 24%),
    rgba(7, 16, 27, 0.92);
  box-shadow: var(--shadow);
}

.contact-band-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-band h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-band p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.footer-shell {
  padding: 2rem 0 3rem;
}

.footer-panel {
  padding: 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(185, 168, 255, 0.16);
  background: linear-gradient(180deg, rgba(18, 11, 40, 0.92), rgba(12, 10, 30, 0.96));
}

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

.footer-column h3 {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-column li,
.footer-column p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-shell {
  padding-top: 1.5rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.breadcrumbs a {
  color: #dbe6f7;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(17, 11, 39, 0.92) 0%, rgba(29, 18, 69, 0.82) 56%, rgba(14, 15, 44, 0.66) 100%),
    linear-gradient(180deg, rgba(115, 95, 255, 0.18), rgba(17, 11, 39, 0.22)),
    var(--hero-image, linear-gradient(135deg, rgba(125, 104, 255, 0.14), rgba(255, 123, 63, 0.12)));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -9% -24% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125, 104, 255, 0.32), transparent 58%),
    radial-gradient(circle at 60% 40%, rgba(255, 123, 63, 0.18), transparent 38%);
  opacity: 0.95;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 1.4rem;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.9rem);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(175, 157, 255, 0.18);
  background: rgba(33, 19, 73, 0.6);
  color: #efeaff;
}

.media-card {
  overflow: hidden;
  border-radius: 28px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid,
.metric-grid {
  margin-top: 1.4rem;
}

.detail-card h3,
.metric-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.metric-card {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(188, 171, 255, 0.14);
  background: rgba(20, 12, 44, 0.85);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--headline);
  font-size: 2rem;
  color: var(--accent-bright);
}

.route-grid {
  margin-top: 1.4rem;
}

.route-card {
  display: grid;
  gap: 0.85rem;
}

.route-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.route-card li {
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
}

.route-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--accent-bright);
  flex: none;
}

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

.contact-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: #fff;
}

.subtle {
  color: var(--muted);
}

.home-first {
  padding-top: 1.55rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border: 1px solid rgba(196, 177, 255, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(127, 104, 255, 0.96) 0%, rgba(96, 87, 245, 0.92) 34%, rgba(32, 41, 141, 0.96) 70%, rgba(17, 24, 90, 0.98) 100%);
  box-shadow: var(--shadow);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 84% 22%, rgba(255, 123, 63, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 140px 140px, 140px 140px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 88%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 124px minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 1.75rem;
  align-items: stretch;
}

.home-side-rail {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-right: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.side-label {
  color: rgba(255, 243, 214, 0.96);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-dots {
  width: 42px;
  height: 42px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.55;
}

.rail-point {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rail-point strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #f3f6fb;
  font-size: 1.05rem;
  font-family: var(--headline);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rail-point span {
  color: rgba(240, 235, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-hero-copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 0.8rem 0;
}

.home-hero-copy h1 {
  max-width: 8.3ch;
  margin-top: 1rem;
  font-size: clamp(2.6rem, 5.4vw, 5.15rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(21, 18, 74, 0.28);
}

.home-accent {
  color: #fff4ca;
}

.home-hero-copy .hero-copy {
  max-width: 34rem;
  margin: 1.35rem 0 1.55rem;
}

.hero-footnote {
  max-width: 35rem;
  margin: 1.15rem 0 0;
  color: rgba(244, 241, 255, 0.84);
  line-height: 1.7;
}

.hero-service-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.hero-service-ribbon a {
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf5;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.hero-service-ribbon a:hover,
.hero-service-ribbon a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-service-ribbon a:nth-child(1) {
  background: linear-gradient(160deg, rgba(107, 120, 255, 0.36), rgba(34, 78, 208, 0.36));
}

.hero-service-ribbon a:nth-child(2) {
  background: linear-gradient(160deg, rgba(18, 60, 151, 0.42), rgba(8, 31, 96, 0.42));
}

.hero-service-ribbon a:nth-child(3) {
  background: linear-gradient(160deg, rgba(255, 111, 61, 0.42), rgba(255, 141, 42, 0.42));
}

.hero-service-ribbon a:nth-child(4) {
  background: linear-gradient(160deg, rgba(196, 12, 255, 0.42), rgba(123, 31, 255, 0.42));
}

.hero-service-ribbon a:nth-child(5) {
  background: linear-gradient(160deg, rgba(79, 100, 255, 0.42), rgba(123, 111, 255, 0.42));
}

.hero-service-ribbon a:nth-child(6) {
  background: linear-gradient(160deg, rgba(255, 141, 68, 0.42), rgba(255, 93, 89, 0.42));
}

.home-hero-visual {
  position: relative;
  display: grid;
  align-content: start;
  padding-top: 0.8rem;
}

.hero-location-card {
  position: absolute;
  top: 1.55rem;
  right: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(39, 26, 91, 0.42);
  backdrop-filter: blur(14px);
}

.hero-location-card strong {
  display: block;
  font-size: 0.88rem;
}

.hero-location-card span {
  color: #fff4ca;
  font-size: 1rem;
}

.hero-city-frame {
  position: relative;
  margin: 0;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 90%, 86% 100%, 0 100%, 0 15%);
  background: rgba(20, 15, 59, 0.84);
  box-shadow: var(--shadow);
}

.hero-city-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(47, 39, 112, 0.1), rgba(10, 10, 33, 0.42)),
    linear-gradient(135deg, rgba(255, 255, 255, 0) 58%, rgba(209, 76, 255, 0.2) 58%, rgba(209, 76, 255, 0.2) 100%);
  pointer-events: none;
}

.hero-city-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-coordinates {
  position: absolute;
  right: 1.25rem;
  bottom: 1.05rem;
  z-index: 2;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-cloud {
  position: absolute;
  inset: 3.75rem 1rem 3.75rem 1rem;
  z-index: 2;
  pointer-events: none;
}

.hero-service-tile {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 0.18rem;
  width: 132px;
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 24px 48px rgba(15, 10, 40, 0.4);
  pointer-events: auto;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-service-tile span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.hero-service-tile strong {
  font-family: var(--headline);
  font-size: 1.18rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-service-tile:hover,
.hero-service-tile:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 60px rgba(15, 10, 40, 0.48);
}

.hero-service-tile--internet {
  top: 13%;
  left: 3%;
  transform: rotate(-14deg);
  background: linear-gradient(160deg, #6b78ff, #224ed0);
}

.hero-service-tile--voip {
  top: 6%;
  right: 10%;
  transform: rotate(15deg);
  background: linear-gradient(160deg, #123c97, #081f60);
}

.hero-service-tile--security {
  top: 41%;
  right: 0;
  transform: rotate(10deg);
  background: linear-gradient(160deg, #ff6f3d, #ff8d2a);
}

.hero-service-tile--sound {
  bottom: 5%;
  left: 14%;
  transform: rotate(-16deg);
  background: linear-gradient(160deg, #c40cff, #7b1fff);
}

.hero-service-tile--it {
  top: 48%;
  left: 27%;
  transform: rotate(9deg);
  background: linear-gradient(160deg, #4f64ff, #7b6fff);
}

.hero-service-tile--bundles {
  bottom: 11%;
  right: 19%;
  transform: rotate(-8deg);
  background: linear-gradient(160deg, #ff8d44, #ff5d59);
}

.home-solutions {
  position: relative;
  padding-top: 0.2rem;
}

.solutions-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.solution-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.solution-panel {
  position: relative;
  min-height: 430px;
  padding: 1.1rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(185, 168, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 11, 18, 0.08) 0%, rgba(5, 11, 18, 0.94) 62%),
    var(--solution-image);
  background-size: cover;
  background-position: var(--solution-position, center);
  display: grid;
  align-content: end;
  gap: 0.65rem;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
  box-shadow: 0 16px 44px rgba(2, 8, 16, 0.24);
}

.solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 30, 0.02), rgba(8, 17, 28, 0.92) 64%, rgba(8, 17, 28, 0.98));
}

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

.solution-panel:hover,
.solution-panel:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 179, 71, 0.42);
  box-shadow: 0 24px 54px rgba(2, 8, 16, 0.36);
}

.solution-number {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--headline);
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 0.9;
  color: rgba(247, 249, 252, 0.62);
}

.solution-panel h3 {
  font-size: 1.85rem;
  line-height: 1.02;
}

.solution-panel p {
  margin: 0;
  color: #c6d2e3;
  line-height: 1.62;
}

.local-proof-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(196, 177, 255, 0.16);
  border-bottom: 1px solid rgba(196, 177, 255, 0.16);
}

.local-proof-lead h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.92;
}

.local-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-stat {
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 1px solid rgba(120, 150, 188, 0.16);
}

.proof-stat strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--headline);
  font-size: 1.7rem;
  color: #f4f7fb;
}

.proof-stat span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.bundles-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: stretch;
}

.bundle-narrative {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(120, 150, 188, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.96), rgba(7, 16, 28, 0.9)),
    radial-gradient(circle at left bottom, rgba(32, 148, 255, 0.12), transparent 26%);
  overflow: hidden;
}

.bundle-narrative::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -6%;
  width: 58%;
  height: 46%;
  border: 1px solid rgba(84, 119, 173, 0.22);
  border-radius: 18px;
  opacity: 0.45;
  transform: perspective(800px) rotateX(66deg);
}

.bundle-narrative .section-title {
  max-width: 11ch;
  margin: 0.5rem 0 0.9rem;
}

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

.bundle-rail-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.55rem;
  border: 1px solid rgba(120, 150, 188, 0.12);
  border-radius: 24px;
  background: rgba(8, 17, 28, 0.92);
  box-shadow: var(--shadow);
}

.bundle-rail-card--strong {
  background:
    radial-gradient(circle at 90% 88%, rgba(223, 69, 72, 0.14), transparent 22%),
    rgba(8, 17, 28, 0.96);
}

.bundle-kicker {
  color: var(--accent-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.bundle-rail-card h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.bundle-rail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bundle-save {
  margin-top: auto;
  color: var(--muted);
  font-size: 1rem;
}

.bundle-save strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--accent-bright);
  font-family: var(--headline);
  font-size: 3rem;
  line-height: 0.92;
}

.quote-band {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(196, 177, 255, 0.16);
}

.quote-lead {
  max-width: 46rem;
  margin-bottom: 1.35rem;
}

.quote-lead h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1;
}

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

.quote-column {
  padding-top: 1.05rem;
  border-top: 1px solid rgba(120, 150, 188, 0.14);
}

.quote-column blockquote {
  margin: 0 0 1.1rem;
  color: #dbe5f5;
  line-height: 1.8;
  font-style: italic;
}

.quote-column footer {
  color: #f4f7fb;
  font-weight: 700;
}

.quote-column footer span {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-weight: 400;
}

.mountain-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(196, 177, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(22, 13, 48, 0.88), rgba(22, 13, 48, 0.48)),
    url("../assets/images/hero-el-paso-network.png") center 72% / cover no-repeat;
  box-shadow: var(--shadow);
}

.mountain-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.94;
}

.mountain-cta p {
  margin: 0.5rem 0 0;
  color: #f0f4fb;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .page-hero-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(146, 175, 214, 0.15);
    background: rgba(5, 12, 20, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  body.nav-open .nav-toggle span {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span::before {
    transform: translateY(0) rotate(90deg);
  }

  body.nav-open .nav-toggle span::after {
    opacity: 0;
  }

  .header-cta {
    display: none;
  }

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

  .testimonial-grid,
  .service-grid,
  .hero-pill-grid,
  .feature-grid,
  .metric-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .solutions-intro,
  .local-proof-band,
  .bundles-layout,
  .bundle-showcase,
  .quote-columns {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 12;
  }

  .contact-band-shell,
  .bundle-row,
  .route-row,
  .footer-bottom,
  .section-title-row,
  .mountain-cta {
    flex-direction: column;
    align-items: start;
  }

  .home-side-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .home-side-rail {
    order: 2;
  }

  .home-hero-copy {
    order: 1;
  }

  .home-hero-visual {
    order: 3;
  }

  .side-label,
  .side-dots {
    display: none;
  }

  .hero-city-frame img {
    min-height: 420px;
  }

  .hero-service-cloud {
    inset: 4rem 1rem 4rem;
  }

  .hero-service-tile {
    width: 112px;
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .header-shell {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-shell,
  .footer-shell,
  .page-shell,
  .hero,
  .section-shell,
  .contact-band,
  .mini-cta {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .hero,
  .page-hero,
  .footer-panel,
  .contact-band {
    border-radius: 24px;
  }

  h1,
  .page-hero h1 {
    line-height: 1.03;
  }

  .signal-list,
  .reason-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .brand-subtitle {
    display: none;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 48px);
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    display: none;
  }

  .location-badge {
    justify-self: start;
  }

  .hero::after {
    opacity: 0.6;
  }

  .home-hero {
    padding: 1rem;
    border-radius: 24px;
  }

  .home-side-rail,
  .local-proof-grid,
  .solution-strip,
  .bundle-showcase,
  .quote-columns {
    grid-template-columns: 1fr;
  }

  .solution-panel {
    min-height: 280px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.15rem, 10.2vw, 3.35rem);
    max-width: none;
  }

  .home-hero-copy .hero-copy,
  .hero-footnote {
    max-width: none;
  }

  .hero-service-ribbon {
    gap: 0.55rem;
  }

  .hero-service-ribbon a {
    font-size: 0.74rem;
  }

  .hero-location-card {
    position: static;
    margin-bottom: 0.9rem;
  }

  .hero-city-frame {
    clip-path: none;
    border-radius: 22px;
  }

  .hero-city-frame img {
    min-height: 300px;
  }

  .hero-coordinates {
    position: static;
    margin-top: 0.7rem;
    font-size: 0.74rem;
  }

  .hero-service-cloud {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
    pointer-events: auto;
  }

  .hero-service-tile {
    position: static;
    width: 100%;
    aspect-ratio: 1 / 0.88;
    transform: none !important;
    border-radius: 22px;
  }

  .proof-stat {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(120, 150, 188, 0.16);
    padding-top: 0.9rem;
  }

  .bundle-narrative,
  .bundle-rail-card,
  .mountain-cta {
    padding: 1.25rem;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.52rem 0.68rem;
    font-size: 0.84rem;
    background: rgba(255, 255, 255, 0.03);
  }
}
