:root {
  color-scheme: light;
  --ink: #111722;
  --ink-2: #1c2736;
  --muted: #627083;
  --line: #dce4ee;
  --paper: #f5f7fb;
  --white: #ffffff;
  --cyan: #00a6d6;
  --cyan-dark: #007ca5;
  --red: #ee3935;
  --green: #15a36f;
  --yellow: #f5b841;
  --violet: #6254d9;
  --shadow: 0 24px 70px rgba(17, 23, 34, 0.18);
  --soft-shadow: 0 14px 38px rgba(17, 23, 34, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button,
a,
input,
select,
textarea {
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 166, 214, 0.42);
  outline-offset: 3px;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -20;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(17, 23, 34, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 34, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 44px;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(17, 23, 34, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0.82rem;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button,
.promo-card button,
.merch-controls button {
  border-radius: 8px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.is-scrolled .header-action {
  border-color: var(--line);
  color: var(--white);
  background: var(--ink);
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.35;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.96) 0%, rgba(5, 9, 16, 0.86) 45%, rgba(5, 9, 16, 0.26) 100%),
    url("assets/hero-textel.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, rgba(5, 9, 16, 0), rgba(5, 9, 16, 0.68));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 54px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: 4.95rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(238, 57, 53, 0.3);
}

.button-primary:hover {
  background: #cf302d;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 34px;
}

.hero-proof span {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-console {
  position: relative;
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 15, 26, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-console::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(0, 166, 214, 0.24);
  border-radius: 8px;
  content: "";
}

.console-top {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.console-top span:nth-child(2) {
  background: var(--yellow);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-row {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.console-row span,
.console-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-row strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.05;
}

.console-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.console-meter span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow));
  animation: meterPulse 2.4s ease-in-out infinite;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.console-grid div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.console-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.live-feed {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.live-feed p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.live-feed svg {
  color: var(--green);
}

.launch-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 56px;
  color: var(--white);
  background: var(--ink);
}

.launch-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.launch-copy strong {
  color: var(--yellow);
}

.launch-copy span:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(21, 163, 111, 0.8);
  animation: pulseDot 1.6s infinite;
}

.countdown {
  display: flex;
  gap: 8px;
}

.countdown span {
  min-width: 72px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
}

.countdown b {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.launch-bar a {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.section {
  padding: 88px 56px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading h2,
.promo-head h2,
.merch-layout h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.merch-layout p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.proof-section {
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-grid svg {
  color: var(--cyan-dark);
}

.proof-grid strong {
  font-size: 1.08rem;
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.page-link-section {
  background: var(--paper);
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-link-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.page-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-link-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-link-card span,
.page-link-card strong {
  margin-right: 18px;
  margin-left: 18px;
}

.page-link-card span {
  margin-top: 18px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.page-link-card strong {
  min-height: 84px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  line-height: 1.22;
}

.solution-section {
  background: var(--paper);
}

.solution-shell {
  display: grid;
  gap: 18px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.tab.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--cyan-dark);
  background: rgba(0, 166, 214, 0.12);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pill.hot {
  color: var(--red);
  background: rgba(238, 57, 53, 0.11);
}

.solution-panel h3,
.offer-result h3,
.promo-card h3,
.playbook h3 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.solution-panel p,
.offer-result p,
.promo-card p,
.playbook p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.solution-panel ul,
.value-stack {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.solution-panel li,
.value-stack li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 750;
}

.solution-panel li::before,
.value-stack li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--green);
  content: "+";
  font-size: 0.78rem;
  font-weight: 950;
}

.solution-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.18), transparent 42%),
    linear-gradient(225deg, rgba(238, 57, 53, 0.16), transparent 50%),
    #101722;
}

.invoice-card {
  position: absolute;
  top: 34px;
  left: 34px;
  width: 72%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.invoice-card span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.invoice-card b {
  display: block;
  margin: 8px 0 18px;
  font-size: 2rem;
}

.invoice-card div {
  height: 12px;
  margin-top: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.invoice-card div:nth-child(3) {
  width: 88%;
}

.invoice-card div:nth-child(4) {
  width: 68%;
}

.invoice-card div:nth-child(5) {
  width: 78%;
}

.mini-card {
  position: absolute;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.mini-card.cyan {
  bottom: 88px;
  background: var(--cyan-dark);
}

.mini-card.red {
  bottom: 28px;
  background: var(--red);
}

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

.machine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 22px;
}

.offer-builder,
.offer-result,
.roi-calculator,
.roi-result,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.offer-builder {
  display: grid;
  gap: 22px;
  padding: 26px;
  background: var(--paper);
}

.field-group,
.roi-calculator label,
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

select,
input {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input[type="range"] {
  height: 34px;
  padding: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.range-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--ink-2);
  font-weight: 950;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.checkbox-grid input {
  width: 18px;
  min-height: auto;
  height: 18px;
  accent-color: var(--green);
}

.offer-result {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 26px;
}

.price-box {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.price-box span,
.price-box small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.price-box strong {
  font-size: 2rem;
  line-height: 1;
}

.roi-section {
  background: var(--paper);
}

.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 22px;
}

.roi-calculator {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.roi-calculator label span {
  color: var(--red);
  font-size: 1.1rem;
}

.roi-result {
  display: grid;
  align-content: center;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 166, 214, 0.22), transparent 52%),
    var(--ink);
}

.roi-result span {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.roi-result strong {
  margin-top: 10px;
  font-size: 2.6rem;
  line-height: 1;
}

.roi-result p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.roi-result .button {
  justify-self: start;
  margin-top: 10px;
  background: var(--white);
  color: var(--ink);
}

.promo-band {
  padding: 88px 56px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(238, 57, 53, 0.22), transparent 36%),
    linear-gradient(245deg, rgba(0, 166, 214, 0.24), transparent 42%),
    #0f1d21;
}

.promo-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 26px;
}

.promo-head .eyebrow {
  color: var(--yellow);
}

.promo-head h2 {
  max-width: 820px;
}

.promo-head a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.promo-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.promo-card.is-featured {
  background: var(--white);
  color: var(--ink);
}

.promo-card span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.72);
}

.promo-card.is-featured p {
  color: var(--muted);
}

.promo-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 20px;
  border: 0;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-weight: 950;
}

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

.merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.merch-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.swatch {
  width: 44px;
  height: 44px;
  border: 2px solid transparent;
  background: var(--ink);
  cursor: pointer;
}

.swatch.blue {
  background: var(--cyan-dark);
}

.swatch.white {
  background: var(--white);
  border-color: var(--line);
}

.swatch.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 57, 53, 0.14);
}

.merch-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.merch-kpis span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 850;
}

.merch-range {
  margin-bottom: 22px;
}

.merch-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.merch-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.merch-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 23, 34, 0.72);
  backdrop-filter: blur(14px);
}

.merch-photo strong {
  display: block;
  color: var(--yellow);
}

.merch-photo span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.playbook-section {
  background: var(--paper);
}

.playbook {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.playbook article {
  min-height: 265px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.playbook span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.playbook h3 {
  font-size: 1.35rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 54px;
  padding: 92px 56px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 166, 214, 0.22), transparent 42%),
    var(--ink);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: end;
  min-height: 76vh;
  padding: 132px 56px 68px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.96), rgba(5, 9, 16, 0.78) 44%, rgba(5, 9, 16, 0.18)),
    var(--page-image) center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 9, 16, 0.7));
}

.page-hero-content {
  max-width: 820px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.55;
}

.page-hero-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(12, 18, 30, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.page-hero-card span {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero-card strong {
  font-size: 1.5rem;
  line-height: 1.15;
}

.page-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.detail-section,
.process-section,
.pricing-section,
.gallery-section,
.offer-stack-section,
.campaign-section,
.matrix-section,
.product-section {
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.detail-grid svg {
  color: var(--cyan-dark);
}

.detail-grid h3 {
  margin: 6px 0 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 155px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list strong {
  display: block;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1.1;
}

.process-list span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.pricing-card.featured {
  color: var(--white);
  background: var(--ink);
}

.pricing-card span {
  color: var(--cyan-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card.featured span {
  color: var(--yellow);
}

.pricing-card h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.04;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card strong {
  font-size: 1.7rem;
}

.pricing-card .button {
  justify-self: start;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 34px;
  align-items: center;
  background: var(--white);
}

.gallery-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
}

.gallery-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.offer-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offer-stack-grid article {
  display: grid;
  gap: 12px;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.offer-stack-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}

.offer-stack-grid h3 {
  margin: 6px 0 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.offer-stack-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.offer-stack-grid button {
  align-self: end;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-weight: 950;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.campaign-grid article,
.ad-matrix article,
.product-catalog article,
.ad-copy-grid article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.campaign-grid article {
  min-height: 360px;
  padding: 24px;
}

.campaign-grid span,
.ad-matrix span,
.product-catalog span,
.ad-copy-grid span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-grid h3,
.product-catalog h3,
.ad-copy-grid h3 {
  margin: 6px 0 0;
  font-size: 1.65rem;
  line-height: 1.08;
}

.campaign-grid p,
.campaign-grid li,
.ad-matrix p,
.product-catalog p,
.ad-copy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.campaign-grid ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding-left: 18px;
}

.ad-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ad-matrix article {
  min-height: 250px;
  padding: 20px;
}

.ad-matrix strong {
  font-size: 1.2rem;
  line-height: 1.15;
}

.ad-matrix small,
.product-catalog small {
  align-self: end;
  color: var(--cyan-dark);
  font-weight: 900;
  line-height: 1.35;
}

.ad-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ad-copy-grid article {
  min-height: 295px;
  padding: 22px;
}

.ad-copy-grid button,
.product-catalog button {
  align-self: end;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-weight: 950;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-catalog article {
  min-height: 325px;
  padding: 22px;
}

.product-catalog strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.contact-copy {
  align-self: center;
}

.contact-copy .eyebrow {
  color: var(--yellow);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.contact-points svg {
  color: var(--green);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 56px;
  color: var(--white);
  background: #070b12;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  font-weight: 950;
}

@keyframes meterPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.4);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 163, 111, 0.8);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(21, 163, 111, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 163, 111, 0);
  }
}

@media (max-width: 1120px) {
  .site-header,
  .section,
  .promo-band,
  .contact-section,
  .launch-bar,
  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-grid,
  .solution-panel,
  .machine-grid,
  .roi-grid,
  .merch-layout,
  .contact-section,
  .page-hero,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .hero-console,
  .offer-result {
    position: static;
  }

  .proof-grid,
  .promo-grid,
  .page-link-grid,
  .detail-grid,
  .process-list,
  .offer-stack-grid,
  .campaign-grid,
  .ad-matrix,
  .ad-copy-grid,
  .product-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    min-width: auto;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(5, 9, 16, 0.96) 0%, rgba(5, 9, 16, 0.82) 66%, rgba(5, 9, 16, 0.48) 100%),
      url("assets/hero-textel.png") 64% center / cover no-repeat;
  }

  .hero-grid {
    width: calc(100% - 32px);
    padding-top: 94px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

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

  .hero-actions,
  .launch-bar,
  .promo-head,
  .site-footer,
  .merch-photo figcaption {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .launch-bar a,
  .promo-head a {
    width: 100%;
  }

  .hero-proof,
  .proof-grid,
  .tabs,
  .promo-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    width: 100%;
  }

  .countdown span {
    flex: 1;
    min-width: 0;
  }

  .section,
  .promo-band,
  .contact-section,
  .page-hero {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section-heading h2,
  .promo-head h2,
  .merch-layout h2,
  .contact-copy h2 {
    font-size: 2.25rem;
  }

  .solution-panel,
  .offer-builder,
  .offer-result,
  .roi-calculator,
  .roi-result,
  .lead-form,
  .pricing-card {
    padding: 20px;
  }

  .solution-visual {
    min-height: 280px;
  }

  .invoice-card {
    top: 22px;
    left: 18px;
    width: 78%;
  }

  .page-hero {
    min-height: auto;
    padding-top: 96px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-hero h1 {
    font-size: 2.78rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .page-link-grid,
  .detail-grid,
  .process-list,
  .pricing-section,
  .offer-stack-grid,
  .campaign-grid,
  .ad-matrix,
  .ad-copy-grid,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .gallery-section h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.62rem;
  }

  .section-heading h2,
  .promo-head h2,
  .merch-layout h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

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

  .roi-result strong,
  .price-box strong {
    font-size: 1.7rem;
  }
}
