:root {
  --ink: #102026;
  --muted: #5e6f76;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #dfe8e5;
  --teal: #087f8c;
  --teal-dark: #07545f;
  --mint: #dff4ee;
  --gold: #c8912d;
  --coral: #d95f4b;
  --shadow: 0 22px 55px rgba(16, 32, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 232, 229, 0.8);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  min-width: 178px;
  overflow: hidden;
  padding: 4px 8px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, rgba(34, 198, 58, 0.34) 50%, transparent 62%);
  content: "";
  inset: -45%;
  position: absolute;
  transform: translateX(-78%) rotate(8deg);
  animation: logoShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.brand:hover {
  box-shadow: 0 12px 26px rgba(34, 198, 58, 0.16);
  transform: translateY(-1px) scale(1.03);
}

.brand-logo {
  animation: logoFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 5px 12px rgba(34, 198, 58, 0.14));
  height: 58px;
  object-fit: contain;
  position: relative;
  width: 178px;
  z-index: 1;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes logoShine {
  0%,
  58% {
    transform: translateX(-78%) rotate(8deg);
  }

  76%,
  100% {
    transform: translateX(78%) rotate(8deg);
  }
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-weight: 800;
}

.main-nav a {
  color: #263a41;
  padding: 8px 2px;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--mint);
  color: var(--teal-dark);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 8px;
  width: 40px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
}

.hero {
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 20, 24, 0.88), rgba(10, 20, 24, 0.48) 48%, rgba(10, 20, 24, 0.15)),
    linear-gradient(0deg, rgba(16, 32, 38, 0.46), rgba(16, 32, 38, 0));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  padding: 168px clamp(20px, 6vw, 76px) 92px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.future-band h2,
.contact-panel h2 {
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 8.8vw, 88px);
  max-width: 720px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions,
.future-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(8, 127, 140, 0.24);
}

.secondary,
.ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.outline {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--teal-dark);
}

.disabled-link {
  cursor: not-allowed;
  opacity: 0.72;
}

.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.stats-band div {
  border-right: 1px solid var(--line);
  padding: 28px clamp(20px, 4vw, 56px);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: 18px;
}

.stats-band span {
  color: var(--muted);
  margin-top: 7px;
}

.section {
  padding: 88px clamp(20px, 5vw, 70px);
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.future-band h2,
.contact-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 16px auto 0;
  max-width: 680px;
}

.plans-grid,
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.plan-card,
.services-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 485px;
}

.plan-card.featured {
  border-color: rgba(8, 127, 140, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.plan-label {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card h3,
.services-grid h3 {
  font-size: 24px;
  margin: 14px 0 0;
}

.speed {
  color: var(--teal-dark);
  font-size: 42px;
  font-weight: 800;
  margin: 18px 0 0;
}

.price {
  color: var(--coral);
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 0;
}

.plan-desc,
.services-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.plan-card ul {
  color: #35484f;
  line-height: 1.9;
  margin: 16px 0 24px;
  padding-left: 20px;
}

.plan-card .button {
  margin-top: auto;
}

.services-section {
  background: #eef5f2;
}

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

.icon {
  align-items: center;
  background: var(--mint);
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 26px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1160px;
}

.gallery-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.local-photo::after {
  background: linear-gradient(180deg, rgba(8, 127, 140, 0), rgba(8, 127, 140, 0.22));
  content: "";
  inset: 0;
  position: absolute;
}

.crop-bottom img {
  height: 118%;
  object-position: center top;
}

.gallery-item figcaption {
  background: rgba(16, 32, 38, 0.82);
  bottom: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  left: 12px;
  padding: 9px 12px;
  position: absolute;
  right: 12px;
  z-index: 1;
}

.gallery-message {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 28px;
}

.gallery-message h3 {
  font-size: 24px;
  margin: 18px 0 10px;
}

.gallery-message p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.future-band {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 58px clamp(20px, 5vw, 70px);
}

.future-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 700px;
}

.payment-section {
  background: var(--white);
}

.payment-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.payment-card {
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
}

.payment-card h3 {
  font-size: 23px;
  margin: 18px 0 0;
}

.payment-card p {
  color: var(--muted);
  line-height: 1.65;
}

.coords {
  background: var(--mint);
  border-radius: 8px;
  color: var(--teal-dark);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: auto 0 18px;
  padding: 11px 12px;
}

.bank-card {
  background: linear-gradient(180deg, #f8fbfa, #fff8ec);
}

.tv-section {
  background: linear-gradient(135deg, #0d1b20 0%, #102026 48%, #123d3c 100%);
  color: var(--white);
}

.tv-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1160px;
}

.tv-copy h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  margin: 0;
}

.tv-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 560px;
}

.tv-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.tv-features span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.tv-frame {
  margin: 0 auto;
  max-width: 620px;
  width: 100%;
}

.tv-screen {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 70% 26%, rgba(41, 215, 255, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(8, 127, 140, 0.45), rgba(16, 32, 38, 0.96)),
    url("assets/internet-hero-local.png") center / cover;
  border: 10px solid #071114;
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
}

.tv-screen::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 6px);
  content: "";
  inset: 0;
  position: absolute;
}

.live-badge {
  background: var(--coral);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  left: 18px;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
  z-index: 1;
}

.play-button {
  border-bottom: 32px solid transparent;
  border-left: 48px solid rgba(255, 255, 255, 0.92);
  border-top: 32px solid transparent;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-42%, -50%);
  z-index: 1;
}

.tv-signal {
  bottom: 22px;
  display: flex;
  gap: 7px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.tv-signal span {
  animation: tvPulse 1.4s ease-in-out infinite;
  background: #5fe7ff;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.tv-signal span:nth-child(2) {
  animation-delay: 0.18s;
}

.tv-signal span:nth-child(3) {
  animation-delay: 0.36s;
}

.tv-screen p {
  bottom: 18px;
  font-size: 22px;
  font-weight: 800;
  left: 20px;
  margin: 0;
  position: absolute;
  z-index: 1;
}

.tv-stand {
  background: #071114;
  height: 18px;
  margin: 0 auto;
  position: relative;
  width: 34%;
}

.tv-stand::after {
  background: #071114;
  border-radius: 8px 8px 0 0;
  content: "";
  height: 12px;
  left: -38px;
  position: absolute;
  right: -38px;
  top: 18px;
}

@keyframes tvPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.78);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-panel,
.account-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 38px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1160px;
  padding: clamp(24px, 5vw, 52px);
}

.account-section {
  background: #f8fbfa;
}

.contact-panel p,
.account-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.account-status,
.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.account-status span,
.contact-info span {
  border-left: 4px solid var(--teal);
  color: #35484f;
  font-weight: 700;
  padding-left: 12px;
}

.account-form,
.contact-form {
  display: grid;
  gap: 16px;
}

.account-form label,
.contact-form label {
  color: #35484f;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.account-form {
  background: #eef5f2;
  border-radius: 8px;
  padding: 24px;
}

.account-form p {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.location-button {
  justify-self: start;
  min-height: 44px;
}

.account-result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 9px;
  padding: 16px;
}

.account-result strong {
  color: var(--ink);
}

.account-result span {
  color: var(--muted);
}

.account-form input,
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  width: 100%;
}

.account-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 127, 140, 0.12);
}

.form-note {
  color: var(--teal-dark);
  font-weight: 700;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: #0b171b;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 70px);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .main-nav.open {
    display: flex;
  }

  .stats-band,
  .plans-grid,
  .payment-grid,
  .services-grid,
  .contact-panel,
  .account-panel {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .services-grid {
    max-width: 680px;
  }

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

  .tv-layout {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .future-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 130px 18px 64px;
  }

  .button {
    width: 100%;
  }

  .stats-band div,
  .section,
  .future-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-band div {
    border-right: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
