:root {
  color-scheme: light;
  --ink: #111413;
  --ink-soft: #303733;
  --paper: #f4f8f2;
  --mist: #e8f1ea;
  --white: #ffffff;
  --night: #0c0d0d;
  --charcoal: #171817;
  --line: rgba(17, 20, 19, 0.14);
  --line-dark: rgba(255, 255, 255, 0.2);
  --teal: #00a7a5;
  --teal-dark: #087775;
  --magenta: #e84c9a;
  --magenta-dark: #b92d72;
  --amber: #efb33f;
  --lime: #b7d85a;
  --coral: #f36f5f;
  --muted: #6a746e;
  --radius: 8px;
  --content: min(1180px, calc(100% - 40px));
  --shadow: 0 28px 80px rgba(12, 13, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
strong,
span,
a,
button,
summary,
label,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: inherit;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.8rem, 8vw, 8.6rem);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.18rem, 4.3vw, 4.7rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 22px;
}

li + li {
  margin-top: 10px;
}

li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 999px;
  content: "";
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--night);
  background: var(--white);
  border: 2px solid var(--night);
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--content);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 10px;
  color: var(--white);
  background: rgba(12, 13, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(12, 13, 13, 0.9);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.brand,
.nav-links,
.header-cta,
.button,
.select-package,
.direct-contact,
.footer-links {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--night);
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 1000;
  line-height: 1;
  box-shadow: inset 0 0 0 4px rgba(232, 76, 154, 0.12);
}

.brand-copy {
  display: grid;
  gap: 1px;
  font-weight: 950;
  line-height: 1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-cta {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-cta {
  justify-content: center;
  gap: 8px;
  color: var(--night);
  background: var(--white);
}

.header-cta span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: end;
  padding: 124px 0 70px;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/icondisco-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 36%, rgba(0, 0, 0, 0.14) 70%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(0deg, rgba(12, 13, 13, 0.86) 0%, rgba(12, 13, 13, 0.1) 46%);
}

.hero-content {
  width: var(--content);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero-copy {
  max-width: 740px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.45;
}

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

.button {
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 16px 34px rgba(183, 216, 90, 0.28);
}

.button-primary:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.signal-strip {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-strip div {
  min-height: 138px;
  padding: 24px;
  background: var(--white);
}

.signal-strip strong,
.signal-strip span,
.trust-grid strong,
.trust-grid span,
.site-footer strong,
.site-footer span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 1000;
}

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

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0;
}

.narrow {
  max-width: 940px;
}

.section-kicker,
.intro-section,
.credibility-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.services-band,
.events-band {
  color: var(--white);
  background: var(--night);
}

.services-band .eyebrow,
.events-band .eyebrow {
  color: var(--amber);
}

.service-grid,
.event-grid {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding-bottom: 110px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card,
.event-grid article {
  min-height: 250px;
  padding: 30px;
  background: #151615;
}

.feature-index,
.package-label,
.recommendation-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card p,
.event-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: end;
}

.split-heading > p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.use-lab {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(17, 20, 19, 0.08);
  overflow: hidden;
}

.use-tabs {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.use-tab {
  min-height: 74px;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--mist);
  border: 0;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.use-tab.is-active,
.use-tab:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.use-stage {
  display: grid;
  min-height: 370px;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 34px;
}

.channel-visual {
  display: grid;
  height: min(280px, 52vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
}

.channel-visual span {
  display: block;
  min-height: 120px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 16px 34px rgba(17, 20, 19, 0.14);
}

.channel-visual span:nth-child(1) {
  height: 64%;
  background: linear-gradient(180deg, var(--teal), #083c3b);
}

.channel-visual span:nth-child(2) {
  height: 100%;
  background: linear-gradient(180deg, var(--magenta), #4a1531);
}

.channel-visual span:nth-child(3) {
  height: 78%;
  background: linear-gradient(180deg, var(--amber), #5b3b09);
}

.use-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--magenta-dark);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-copy h3 {
  max-width: 620px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.use-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.package-card {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(17, 20, 19, 0.08);
}

.package-card.is-featured {
  color: var(--white);
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.14);
}

.package-card.is-featured .package-label {
  color: var(--lime);
}

.package-card p {
  color: var(--muted);
}

.package-card.is-featured p,
.package-card.is-featured li {
  color: rgba(255, 255, 255, 0.74);
}

.package-card ul {
  flex: 1;
  color: var(--ink-soft);
}

.package-card.is-featured li::before {
  background: var(--lime);
}

.select-package {
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 16px;
  color: var(--night);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.select-package.is-selected,
.package-card.is-featured .select-package.is-selected {
  color: var(--white);
  background: var(--magenta);
  border-color: var(--magenta);
}

.package-card.is-featured .select-package {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.software-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.28), rgba(232, 76, 154, 0.22)),
    var(--charcoal);
}

.software-shell {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  margin: 0 auto;
  padding: 110px 0;
}

.software-copy p:not(.eyebrow),
.planner-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.software-grid article {
  min-height: 236px;
  padding: 28px;
  background: rgba(12, 13, 13, 0.82);
}

.software-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.software-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.planner-band {
  color: var(--white);
  background: var(--night);
}

.planner-shell {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  margin: 0 auto;
  padding: 110px 0;
}

.planner-panel,
.quote-form {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.planner-panel {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(17, 20, 19, 0.18);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 167, 165, 0.12);
}

input[type="range"] {
  min-height: 18px;
  padding: 0;
  accent-color: var(--magenta);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.field-row,
.range-line {
  display: grid;
  gap: 14px;
}

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

.range-line {
  grid-template-columns: 1fr auto;
  align-items: center;
}

output {
  min-width: 142px;
  color: var(--magenta-dark);
  font-size: 0.96rem;
  font-weight: 1000;
  text-align: right;
}

.recommendation {
  margin-top: 8px;
  padding: 20px;
  background: var(--night);
  border-radius: var(--radius);
  color: var(--white);
}

.recommendation-label {
  margin-bottom: 10px;
  color: var(--lime);
}

.recommendation strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 1000;
}

.recommendation p {
  color: rgba(255, 255, 255, 0.74);
}

.production-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.production-specs div {
  min-height: 128px;
  padding: 16px;
  background: var(--paper);
}

.production-specs dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.production-specs dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.runbook-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(232, 76, 154, 0.22), rgba(0, 167, 165, 0.16)),
    var(--charcoal);
}

.runbook-shell {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  margin: 0 auto;
  padding: 100px 0;
}

.runbook-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.runbook-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.runbook-copy .button {
  width: fit-content;
}

.runbook-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.runbook-board article {
  display: grid;
  gap: 12px;
  min-height: 248px;
  padding: 24px;
  background: rgba(12, 13, 13, 0.74);
}

.runbook-board span {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.runbook-board h3 {
  color: var(--white);
}

.runbook-board p {
  color: rgba(255, 255, 255, 0.68);
}

.inventory-band {
  background: var(--paper);
}

.inventory-shell {
  display: grid;
  width: var(--content);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  margin: 0 auto;
  padding: 100px 0;
}

.inventory-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.inventory-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.inventory-copy .button {
  width: fit-content;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 52px rgba(17, 20, 19, 0.10);
}

.inventory-grid article {
  display: grid;
  gap: 18px;
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.inventory-grid span {
  color: var(--magenta-dark);
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.inventory-grid strong {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.18;
}

.event-grid {
  padding-bottom: 0;
}

.event-grid article {
  min-height: 222px;
}

.credibility-section {
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-grid div {
  min-height: 164px;
  padding: 24px;
  background: var(--white);
}

.trust-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.36rem;
  font-weight: 1000;
}

.trust-grid span {
  color: var(--muted);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 44px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 20, 19, 0.06);
}

summary {
  min-height: 64px;
  padding: 20px 56px 20px 22px;
  font-size: 1.05rem;
  font-weight: 950;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.88fr);
  gap: clamp(34px, 7vw, 88px);
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0;
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.quote-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.direct-contact {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.direct-contact a {
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  font-weight: 950;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-assurance {
  margin: -2px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  width: var(--content);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 1000;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.direct-contact a:hover {
  color: var(--magenta-dark);
}

@media (max-width: 1120px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .signal-strip,
  .service-grid,
  .event-grid,
  .production-specs,
  .software-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-kicker,
  .intro-section,
  .credibility-section,
  .split-heading,
  .software-shell,
  .planner-shell,
  .runbook-shell,
  .inventory-shell,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .use-lab {
    grid-template-columns: 1fr;
  }

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

  .use-tab {
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100% - 28px, 1180px);
  }

  .site-header {
    margin-top: 10px;
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding: 104px 0 42px;
  }

  .hero-media {
    background-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.56) 60%, rgba(0, 0, 0, 0.1) 100%),
      linear-gradient(0deg, rgba(12, 13, 13, 0.9) 0%, rgba(12, 13, 13, 0.2) 54%);
  }

  h1 {
    font-size: clamp(2.62rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9.1vw, 2.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .select-package {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .event-grid,
  .package-grid,
  .production-specs,
  .trust-grid,
  .field-row,
  .software-grid,
  .runbook-board,
  .inventory-grid,
  .use-stage {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border-inline: 0;
  }

  .section,
  .software-shell,
  .planner-shell,
  .runbook-shell,
  .inventory-shell,
  .quote-band {
    padding: 76px 0;
  }

  .service-grid {
    padding-bottom: 76px;
  }

  .feature-card,
  .event-grid article,
  .package-card,
  .software-grid article {
    min-height: auto;
  }

  .use-tabs {
    grid-template-columns: 1fr;
  }

  .use-stage {
    min-height: auto;
    padding: 22px;
  }

  .channel-visual {
    height: 210px;
  }

  .planner-panel,
  .quote-form {
    padding: 20px;
  }

  .range-line {
    grid-template-columns: 1fr;
  }

  output {
    text-align: left;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy {
    font-size: 0.94rem;
  }

  .header-cta {
    max-width: 120px;
  }
}

.ops-check-band {
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.1), rgba(232, 76, 154, 0.1)),
    var(--mist);
}

.ops-check-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ops-check-copy p {
  color: var(--muted);
}

.ops-check-tool {
  display: grid;
  grid-template-columns: minmax(210px, 0.56fr) minmax(0, 1fr);
  gap: 12px;
}

.ops-check-options,
.ops-check-output {
  display: grid;
  gap: 10px;
}

.ops-check-choice {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.ops-check-choice:hover,
.ops-check-choice:focus-visible,
.ops-check-choice.is-active {
  border-color: var(--teal);
  background: var(--night);
  color: var(--white);
  outline: none;
}

.ops-check-output {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
}

.ops-check-output span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-check-output h3,
.ops-check-output p {
  margin: 0;
}

.ops-check-output p,
.ops-check-output li {
  color: var(--muted);
}

.ops-check-output ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-check-output li {
  padding-left: 14px;
  border-left: 2px solid var(--magenta);
}

@media (max-width: 860px) {
  .ops-check-layout,
  .ops-check-tool {
    grid-template-columns: 1fr;
  }
}

/* === Phase 2 upgrade: sticky mobile CTA (self-contained, namespaced) === */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:rgba(13,16,22,.93);border-top:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transform:translateY(120%);transition:transform 220ms ease;font-family:inherit}
.mcta.visible{transform:translateY(0)}
.mcta a{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:50px;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;line-height:1}
.mcta .mcta-call{flex:0 0 112px;color:#fff;background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.26)}
.mcta .mcta-go{flex:1;color:#0c0f14;background:#fff;border:1px solid #fff}
.mcta svg{flex:none}
@media(max-width:768px){.mcta{display:flex}}
@media(prefers-reduced-motion:reduce){.mcta{transition:none}}
