:root {
  --bg: #0a0d0c;
  --bg-soft: #101513;
  --surface: #141a17;
  --surface-2: #1b231f;
  --text: #f3f5f2;
  --muted: #a7b0aa;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --accent: #a6c8ad;
  --accent-strong: #78a984;
  --accent-text: #0a140d;
  --header: rgba(10, 13, 12, 0.8);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

html[data-theme="light"] {
  --bg: #f5f7f4;
  --bg-soft: #edf1ed;
  --surface: #ffffff;
  --surface-2: #e4eae5;
  --text: #111612;
  --muted: #5e6961;
  --line: rgba(17, 22, 18, 0.13);
  --line-strong: rgba(17, 22, 18, 0.25);
  --accent: #477a56;
  --accent-strong: #2f6840;
  --accent-text: #ffffff;
  --header: rgba(245, 247, 244, 0.84);
  --shadow: 0 24px 80px rgba(29, 45, 33, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-text);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}

.logo-light-theme {
  display: none;
}

html[data-theme="light"] .logo-dark-theme {
  display: none;
}

html[data-theme="light"] .logo-light-theme {
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.segmented {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}

.lang-button,
.theme-button,
.menu-toggle,
.filter-button {
  border: 0;
  color: var(--muted);
  background: none;
  cursor: pointer;
}

.lang-button {
  padding: 7px 3px;
  font-weight: 750;
}

.lang-button.active {
  color: var(--text);
}

.theme-button {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.theme-button:hover {
  border-color: var(--accent);
}

.theme-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-moon,
html[data-theme="light"] .icon-sun {
  display: none;
}

html[data-theme="light"] .icon-moon {
  display: block;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 170px 0 94px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -130px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%);
  filter: blur(10px);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow > span:first-child {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-ghost {
  border-color: var(--line-strong);
}

.button-ghost:hover {
  border-color: var(--accent);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 590px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  padding: 20px 12px 0 0;
}

.hero-proof strong {
  font-size: 20px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-console {
  padding: 16px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface) 89%, transparent);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.console-top,
.console-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.console-top {
  padding: 2px 2px 14px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f06a62;
  box-shadow: 0 0 0 5px rgba(240, 106, 98, 0.12);
  animation: pulse 1.8s ease infinite;
}

.console-screen {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, transparent 48%, var(--line) 49%, transparent 50%),
    radial-gradient(circle at center, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%),
    var(--bg-soft);
}

.console-screen::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid var(--line);
}

.frame-corners {
  position: absolute;
  inset: 7%;
  z-index: 1;
  background:
    linear-gradient(var(--accent), var(--accent)) left top / 30px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left top / 1px 30px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top / 30px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top / 1px 30px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left bottom / 30px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left bottom / 1px 30px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 30px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 1px 30px no-repeat;
}

.signal-line {
  position: absolute;
  height: 1px;
  background: var(--line-strong);
  transform-origin: left;
}

.signal-one {
  width: 40%;
  top: 28%;
  left: 8%;
  transform: rotate(17deg);
}

.signal-two {
  width: 48%;
  right: 3%;
  bottom: 25%;
  transform: rotate(-22deg);
}

.console-center {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.console-center span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.console-center strong {
  margin-top: 12px;
  color: var(--accent);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.06em;
}

.console-stats {
  gap: 8px;
  padding-top: 14px;
}

.console-stats > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 9px 10px;
  border: 1px solid var(--line);
}

.console-stats strong {
  color: var(--text);
  font-size: 12px;
}

.service-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.service-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 120px 0;
}

.intro-grid,
.terms-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 130px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(37px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.intro-copy > p,
.section-heading > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.capability-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.capability-grid article > span,
.rate-group-title > span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.capability-grid h3 {
  margin: 55px 0 12px;
  font-size: 17px;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.rates-section {
  background: var(--bg-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading > p {
  margin-bottom: 4px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

.rate-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  border-top: 1px solid var(--line-strong);
}

.rate-group[hidden] {
  display: none;
}

.rate-group-title {
  padding: 30px 30px 30px 0;
}

.rate-group-title h3 {
  max-width: 260px;
  margin: 20px 0 6px;
  font-size: 22px;
  line-height: 1.2;
}

.rate-group-title p {
  color: var(--muted);
  font-size: 12px;
}

.rate-list {
  border-left: 1px solid var(--line);
}

.rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
  padding: 14px 4px 14px 30px;
  border-bottom: 1px solid var(--line);
}

.rate-row > span {
  color: var(--muted);
}

.rate-row strong {
  text-align: right;
  letter-spacing: -0.02em;
}

.rate-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 30px 0 30px 30px;
  border-left: 1px solid var(--line);
}

.package-card {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.package-card p {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 14px;
}

.package-card strong {
  font-size: clamp(21px, 2.25vw, 29px);
  letter-spacing: -0.04em;
}

.package-card > span {
  color: var(--muted);
  font-size: 11px;
}

.detailed-card {
  min-height: 430px;
  justify-content: flex-start;
}

.detailed-card.compact-card {
  min-height: 350px;
}

.package-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.package-heading p {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.package-heading > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.package-heading strong {
  display: block;
  margin-top: 2px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.package-note,
.package-card .package-note {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.package-content {
  border-left: 1px solid var(--line);
}

.package-content .package-grid {
  border-left: 0;
}

.group-note {
  margin: 0 0 30px 30px;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.package-card.featured {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

.package-card.featured p,
.package-card.featured > span {
  color: color-mix(in srgb, var(--accent-text) 72%, transparent);
}

.package-card.featured .package-heading {
  border-color: color-mix(in srgb, var(--accent-text) 22%, transparent);
}

.package-card.featured .package-heading p,
.package-card.featured .package-note,
.package-card.featured .feature-list li,
.package-card.featured .package-heading > span {
  color: color-mix(in srgb, var(--accent-text) 76%, transparent);
}

.package-card.featured .feature-list li {
  border-color: color-mix(in srgb, var(--accent-text) 18%, transparent);
}

.package-card.featured .feature-list li::before {
  color: var(--accent-text);
}

.popular {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 7px;
  border: 1px solid color-mix(in srgb, var(--accent-text) 30%, transparent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.terms-section {
  background: var(--bg);
}

.terms-card {
  border-top: 1px solid var(--line-strong);
}

.terms-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-card li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.terms-card li > span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.terms-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #8fb497;
  color: #0b130d;
}

.contact-grid {
  opacity: 0.14;
  background-image:
    linear-gradient(#0b130d 1px, transparent 1px),
    linear-gradient(90deg, #0b130d 1px, transparent 1px);
  mask-image: none;
}

.contact-layout {
  position: relative;
  align-items: end;
}

.light-index {
  color: #25432c;
}

.contact-copy > p {
  max-width: 620px;
  color: rgba(11, 19, 13, 0.72);
}

.button-light {
  margin-top: 22px;
  background: #0b130d;
  color: #f2f5f1;
}

.site-footer {
  padding: 72px 0 28px;
  background: #070908;
  color: #f3f5f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.9fr;
  gap: 40px;
  padding-bottom: 62px;
}

.footer-brand {
  align-self: flex-start;
}

.footer-logo {
  display: block !important;
  width: 230px;
}

.footer-grid p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #919a94;
  font-size: 14px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  color: #c7cdc9;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #747c77;
  font-size: 12px;
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

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

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    gap: 6px;
    border: 1px solid var(--line);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions {
    justify-self: end;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-layout,
  .intro-grid,
  .terms-layout,
  .contact-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-console {
    width: min(100%, 550px);
    transform: none;
  }

  .service-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 22px;
    padding: 18px 0;
  }

  .section-heading {
    gap: 26px;
  }

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

  .capability-grid article {
    min-height: auto;
  }

  .capability-grid h3 {
    margin-top: 34px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 68px;
    gap: 9px;
  }

  .brand-logo {
    width: 145px;
  }

  .site-nav {
    top: 68px;
  }

  .segmented {
    margin-left: 3px;
  }

  .theme-button {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 72px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 65px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 43px;
  }

  .hero-proof > div {
    padding-right: 8px;
  }

  .hero-console {
    padding: 10px;
  }

  .service-strip i {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .intro-grid,
  .terms-layout,
  .contact-layout {
    gap: 40px;
  }

  .rate-group {
    grid-template-columns: 1fr;
  }

  .rate-group-title {
    padding-right: 0;
  }

  .rate-list,
  .package-grid,
  .package-content {
    border-left: 0;
  }

  .rate-row {
    min-height: 62px;
    padding-left: 0;
    font-size: 14px;
  }

  .rate-row strong {
    font-size: 14px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    padding: 0 0 30px;
  }

  .package-card {
    min-height: 140px;
  }

  .detailed-card,
  .detailed-card.compact-card {
    min-height: auto;
  }

  .package-card strong {
    font-size: 26px;
  }

  .group-note {
    margin-left: 0;
  }

  .contact-section {
    padding: 80px 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 122px;
  }

  .hero-proof {
    gap: 5px;
  }

  .hero-proof strong {
    font-size: 18px;
  }
}
