@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --bg: #000417;
  --bg-2: #0e0737;
  --panel: #22154a;
  --panel-2: #282152;
  --ink: #ffffff;
  --muted: #9699d7;
  --line: rgba(177, 151, 255, 0.28);
  --cyan: #6715ff;
  --blue: #3344c0;
  --lime: #f7b500;
  --orange: #56a8ff;
  --danger: #a227ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Kanit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(103, 21, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 85% 15%, rgba(86, 168, 255, 0.18), transparent 24rem),
    radial-gradient(50% 50% at 50% 50%, var(--bg-2), var(--bg));
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(145, 145, 145, 0.16);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 0 42px rgba(177, 151, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-link {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.nav-link:hover,
.nav-item.active > .nav-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 7, 55, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  border-color: rgba(167, 166, 255, 0.68);
  background: linear-gradient(110deg, #4a5abe -5.92%, #3d0d9d 131.53%);
  color: var(--ink);
  font-weight: 900;
  text-shadow: none;
  box-shadow: none;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.22);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 4, 23, 0.86) 0%, rgba(0, 4, 23, 0.58) 42%, rgba(14, 7, 55, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 4, 23, 0.08), rgba(0, 4, 23, 0.52));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.28);
  transform-origin: center 58%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 36%;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 88px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 7vw, 7.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-copy,
.lead {
  max-width: 720px;
  color: #d6e4f2;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.62;
}

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-strip div {
  min-height: 116px;
  padding: 22px;
  background: rgba(34, 21, 74, 0.86);
}

.metric {
  display: block;
  color: var(--lime);
  font-size: 1.8rem;
  font-weight: 950;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head > div .lead {
  margin-top: 22px;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 950;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(158deg, rgba(54, 41, 74, 0.8), rgba(40, 33, 82, 0.8), rgba(27, 24, 90, 0.72), rgba(13, 16, 98, 0.64));
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p,
.feature-list,
.small {
  color: var(--muted);
  line-height: 1.65;
}

.card.accent {
  border-color: rgba(105, 105, 255, 0.72);
  background: linear-gradient(158deg, rgba(54, 41, 74, 0.88), rgba(40, 33, 82, 0.88), rgba(27, 24, 90, 0.82), rgba(13, 16, 98, 0.76), rgba(0, 7, 106, 0.72));
  box-shadow: 0 0 42px rgba(184, 143, 255, 0.25);
}

.vision-mission {
  display: block;
}

.vision-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.vision-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(105, 105, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(158deg, rgba(54, 41, 74, 0.5), rgba(40, 33, 82, 0.42), rgba(27, 24, 90, 0.38)),
    var(--panel);
  box-shadow: var(--shadow);
}

.vision-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.2;
  font-weight: 900;
}

.vision-card:first-child {
  min-height: 430px;
  border-color: rgba(105, 105, 255, 0.9);
}

.vision-card:first-child p {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  line-height: 1.03;
}

.vision-card.accent {
  border-color: rgba(247, 181, 0, 0.58);
  background:
    linear-gradient(158deg, rgba(247, 181, 0, 0.08), rgba(58, 20, 94, 0.5), rgba(0, 7, 106, 0.38)),
    var(--panel);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.broadcast-visual {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 7, 55, 0.16), rgba(0, 4, 23, 0.82)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1600&q=80") center / cover;
  position: relative;
  overflow: hidden;
}

.broadcast-visual::after {
  content: "LIVE SIGNAL / AI CONTROL ROOM";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 181, 0, 0.5);
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(0, 4, 23, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: stretch;
}

.values-statement {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(158deg, rgba(54, 41, 74, 0.78), rgba(40, 33, 82, 0.7), rgba(13, 16, 98, 0.58)),
    rgba(255, 255, 255, 0.035);
}

.values-statement .eyebrow {
  margin-bottom: 28px;
}

.values-statement h2 {
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 0.92;
}

.values-grid {
  grid-template-rows: repeat(3, 1fr);
}

.values-grid .card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1;
}

.feature-list {
  padding-left: 18px;
}

.feature-list li {
  margin: 10px 0;
}

.page-hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 4, 23, 0.94), rgba(14, 7, 55, 0.62)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.88));
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  transform: scale(1.7);
  filter: saturate(1.15) contrast(1.08);
}

.service-card.production {
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1000&q=80") center / cover;
}

.service-card.observing {
  background: url("../dota-observing-card.png") center 52% / cover no-repeat;
}

.service-card.replay {
  background: url("https://images.unsplash.com/photo-1552820728-8b83bb6b773f?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.service-card.social {
  background: url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.tech-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 0 42px rgba(184, 143, 255, 0.2);
}

.media-showcase,
.placeholder-panel {
  margin-top: 24px;
}

.media-showcase {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius);
  background: #000417;
  box-shadow: none;
}

.placeholder-panel {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 34px;
  border: 1px dashed rgba(251, 190, 0, 0.6);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(65, 74, 214, 0.22), rgba(87, 22, 126, 0.18)),
    rgba(255, 255, 255, 0.035);
}

.placeholder-panel h3 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.placeholder-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.media-showcase + .grid,
.placeholder-panel + .grid {
  margin-top: 18px;
}

.tech-panel {
  padding: 34px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-panel:first-child {
  border-right: 1px solid var(--line);
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pipeline span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 21, 74, 0.78);
  color: #d9e7f5;
  font-weight: 800;
}

.pricing-layout,
.calculator-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.calculator-layout {
  grid-template-columns: minmax(0, 1200px);
  justify-content: center;
}

.calculator {
  padding: 0;
  overflow: hidden;
}

.calculator-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.58fr);
  gap: 28px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(103, 21, 255, 0.16), rgba(86, 168, 255, 0.08)),
    rgba(0, 0, 0, 0.14);
}

.calculator-head h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.calculator-summary {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(247, 181, 0, 0.4);
  border-radius: var(--radius);
  background: rgba(0, 4, 23, 0.4);
}

.summary-label,
.option-title {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  padding: 28px;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.calculator label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #dce9f7;
  font-weight: 800;
  line-height: 1.35;
}

.calculator label input {
  width: 100%;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.calculator .check-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.calculator .check-option::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.calculator .check-option[aria-pressed="true"] {
  border-color: rgba(247, 181, 0, 0.72);
  background: rgba(103, 21, 255, 0.28);
}

.calculator .check-option[aria-pressed="true"]::before {
  border-color: #ffffff;
  background:
    linear-gradient(135deg, transparent 48%, #ffffff 49% 58%, transparent 59%),
    linear-gradient(45deg, transparent 42%, #ffffff 43% 52%, transparent 53%),
    var(--cyan);
}

.check-option span {
  justify-self: end;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--cyan);
}

.total {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  line-height: 1;
  color: var(--lime);
  font-weight: 950;
  white-space: nowrap;
}

.calculator-note {
  margin: 0;
  padding: 0 28px 28px;
}

.calculator-cta[hidden] {
  display: none;
}

.packages-section .section-head {
  align-items: start;
}

.package-head {
  display: block;
  max-width: 850px;
}

.package-head .lead {
  margin-top: 20px;
}

.package-matrix {
  overflow: hidden;
  padding: 0;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) repeat(3, minmax(190px, 1fr));
  border-bottom: 1px solid rgba(177, 151, 255, 0.2);
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-row > div {
  min-width: 0;
  padding: 16px 18px;
  color: var(--muted);
  line-height: 1.45;
  border-right: 1px solid rgba(177, 151, 255, 0.2);
}

.matrix-row > div:last-child {
  border-right: 0;
}

.matrix-row > div:first-child {
  color: var(--ink);
  font-weight: 900;
}

.matrix-header strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.matrix-actions > div {
  display: flex;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

[data-contact-form] {
  align-self: center;
}

.form-note {
  margin: 0 0 16px;
  color: #dce9f7;
  font-weight: 800;
}

[data-contact-form] .button {
  margin-top: 16px;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #dce9f7;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--lime);
}

.form-status[data-state="error"] {
  color: #ff9cba;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.spam-field,
[data-form-started-at] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-band {
  padding: 76px 0;
  background:
    linear-gradient(100deg, #32387a -22.5%, #3a145e 130.2%),
    var(--panel);
  border-block: 1px solid var(--line);
  box-shadow: 0 0 48px rgba(67, 56, 138, 0.48);
}

.contact-page {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.contact-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-copy {
  align-self: center;
  padding: 30px 0;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy .feature-list {
  max-width: 620px;
}

.site-footer {
  padding: 42px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-rights {
  width: 100%;
  margin: 0;
  color: #d6e4f2;
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(5, 7, 13, 0.96);
    background: radial-gradient(50% 50% at 50% 50%, var(--bg-2), var(--bg));
    border-bottom: 1px solid var(--line);
  }

  .nav-item,
  .dropdown-menu {
    position: static;
  }

  .dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 4px;
    box-shadow: none;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-strip,
  .section-head,
  .calculator-head,
  .calculator-body,
  .calculator-inputs,
  .split,
  .grid.three,
  .grid.two,
  .tech-band,
  .pipeline,
  .pricing-layout,
  .calculator-layout,
  .vision-mission,
  .vision-stack,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .tech-panel:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-statement {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 58px;
  }

  .section {
    padding: 62px 0;
  }

  .card,
  .tech-panel {
    padding: 20px;
  }

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

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

  .calculator-head,
  .calculator-body {
    padding: 22px;
  }

  .calculator-summary {
    min-height: 0;
  }

  .calculator-note {
    padding: 0 22px 22px;
  }

  .package-matrix {
    overflow-x: auto;
  }

  .matrix-row {
    grid-template-columns: minmax(150px, 0.8fr) repeat(3, minmax(170px, 1fr));
    min-width: 700px;
  }

}
