:root {
  --red: #E3000F;
  --orange: #EF7C00;
  --yellow: #FBB900;
  --bg: #070707;
  --bg2: #101010;
  --ink: #f4efe6;
  --muted: #9a9388;
  --line: rgba(244, 239, 230, .12);
  --font: "Sora", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--orange); }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.logo {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
}
.logo img { height: 28px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 16px; }
.site-nav ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink); font-weight: 600; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.site-nav .current-menu-item a,
.site-nav a:hover { color: var(--yellow); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: transparent; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 6px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ff2a38; color: #fff; }
.btn-yellow { background: var(--yellow); color: #111; }
.btn-yellow:hover { color: #111; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--line); clip-path: none; border-radius: 999px; }
.btn-dark { background: #fff; color: #111; }

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    radial-gradient(520px circle at var(--mx, 70%) var(--my, 40%), rgba(227, 0, 15, .22), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(251, 185, 0, .12), transparent 28%),
    #070707;
}
.rings {
  position: absolute;
  right: -12vw;
  top: 50%;
  translate: 0 -50%;
  width: min(720px, 70vw);
  aspect-ratio: 1;
  pointer-events: none;
}
.rings i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: pulse 6s ease-out infinite;
}
.rings i:nth-child(1) { border-color: var(--red); inset: 8%; animation-delay: 0s; }
.rings i:nth-child(2) { border-color: var(--orange); inset: 22%; animation-delay: .8s; }
.rings i:nth-child(3) { border-color: var(--yellow); inset: 36%; animation-delay: 1.6s; }
.rings i:nth-child(4) {
  inset: 48%;
  background: radial-gradient(circle, var(--red), transparent 70%);
  border: 0;
  animation: glow 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.82); opacity: .15; }
  40% { opacity: .9; }
  100% { transform: scale(1.12); opacity: 0; }
}
@keyframes glow {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: end;
}
.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.06em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.line-orange { color: var(--orange); }
.line-yellow { color: var(--yellow); }
.lead { max-width: 42ch; color: #d7d0c6; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.hero-stats b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -.04em;
}
.hero-stats span { color: var(--muted); font-size: .85rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0b0b0b;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  padding: 14px 0;
  font-family: var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--orange);
}
.marquee-track span:nth-child(3n) { color: var(--red); }
.marquee-track span:nth-child(3n+1) { color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.bands { display: grid; }
.band {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 42px 6vw;
  color: #fff;
  min-height: 160px;
  transition: padding-left .25s ease;
}
.band:hover { padding-left: 8vw; color: #fff; }
.band span {
  font-family: var(--display);
  font-size: 1.4rem;
  opacity: .55;
}
.band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.band p { margin: 6px 0 0; max-width: 46ch; }
.band em { font-style: normal; font-weight: 700; }
.band-red { background: var(--red); }
.band-orange { background: var(--orange); }
.band-yellow { background: var(--yellow); color: #111; }
.band-yellow:hover { color: #111; }

.promo-band { padding: 72px 0; background: linear-gradient(90deg, #1a0707, #2a1400 60%, #1a1200); }
.promo-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 8px 0 24px;
}

.section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.section-head h2, .page-hero h1, .prose h1, .prose h2, .billboard .phone-xl {
  font-family: var(--display);
  letter-spacing: -.04em;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0; text-transform: uppercase; }

.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}
.plan-card.is-featured { border-color: var(--red); background: #160808; }
.plan-badge {
  align-self: flex-start;
  background: var(--yellow);
  color: #111;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 8px;
  text-transform: uppercase;
}
.plan-card h3 { margin: 0; font-size: 1.15rem; }
.plan-speed, .plan-meta, .plan-note { color: var(--muted); margin: 0; font-size: .9rem; }
.plan-price { margin: 8px 0; }
.plan-price strong { font-family: var(--display); font-size: 1.9rem; }
.plan-price .old { color: var(--muted); text-decoration: line-through; margin-right: 8px; }
.plan-card .btn { margin-top: auto; }
.meter {
  height: 6px;
  background: #222;
  margin: 8px 0 4px;
  overflow: hidden;
}
.meter > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}

.billboard { padding: 80px 0 90px; text-align: center; }
.phone-xl {
  display: block;
  font-size: clamp(2rem, 8vw, 5.5rem);
  color: #fff;
  line-height: .95;
  margin: 8px 0 16px;
}
.phone-xl:hover { color: var(--yellow); }
.quick-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.quick-row a {
  color: #fff;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(227,0,15,.35), transparent 30%),
    linear-gradient(160deg, #070707, #1a0a00);
  color: #fff;
  padding: 56px 0 40px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  text-transform: uppercase;
  margin: 0;
}
.page-body, .page-intro { padding: 36px 0 64px; }
.prose { max-width: 76ch; color: #ddd6cc; }
.prose h2 { margin-top: 1.6em; color: #fff; }
.news-archive, .news-card { display: grid; gap: 18px; padding-bottom: 48px; }
.news-card { background: var(--bg2); padding: 24px; border: 1px solid var(--line); }
.news-card h2 { margin: 0 0 8px; }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; }
.contact-cards { display: grid; gap: 16px; }
.contact-cards article, aside {
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 22px;
}
.hours { width: 100%; border-collapse: collapse; }
.hours td, .hours th { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-weight: 700; margin-bottom: 12px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}
.contact-form .hp { position: absolute; left: -9999px; }
.form-ok { background: #143016; padding: 10px 12px; }
.form-err { background: #3a1010; padding: 10px 12px; }

.site-footer { background: #050505; color: #d7d0c6; padding: 48px 0 20px; border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow)) 1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 28px; }
.footer-logo { height: 36px; margin-bottom: 16px; background: #fff; padding: 6px 10px; border-radius: 999px; width: auto; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.cookie-open { background: none; border: 0; color: var(--yellow); cursor: pointer; font: inherit; }
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #161616; color: #fff; z-index: 40; padding: 16px 0;
  border-top: 2px solid var(--red);
}
.cookie-inner { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.cookie-actions { display: flex; gap: 8px; }

@media (max-width: 980px) {
  .hero-grid, .plan-grid, .contact-layout, .footer-grid, .contact-form .form-grid, .band {
    grid-template-columns: 1fr;
  }
  .hero-stats { border-left: 0; padding-left: 0; grid-template-columns: repeat(3, 1fr); }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px; right: 16px; left: 16px;
    background: #111;
    border: 1px solid var(--line);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; }
}
@media (max-width: 640px) {
  .plan-grid, .footer-grid, .hero-stats, .cookie-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 36px 0 48px; }
}
