:root {
  --bg: #02040b;
  --bg-2: #070b18;
  --panel: rgba(255, 255, 255, .065);
  --panel-strong: rgba(255, 255, 255, .1);
  --line: rgba(255, 255, 255, .12);
  --line-bright: rgba(78, 214, 255, .38);
  --text: #f7fbff;
  --muted: rgba(232, 242, 250, .68);
  --soft: rgba(232, 242, 250, .48);
  --cyan: #34d5ff;
  --cyan-2: #6df2ff;
  --violet: #7d5cff;
  --green: #41f2a6;
  --pink: #ff4fd8;
  --dark-card: #0b1020;
  --radius: 8px;
  --shadow: 0 30px 100px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.has-lightbox {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(52, 213, 255, .18), transparent 30%),
    linear-gradient(245deg, rgba(125, 92, 255, .22), transparent 36%),
    linear-gradient(180deg, #02040b 0%, #080d20 48%, #02040b 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

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

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

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.7vw, 74px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  background: rgba(5, 8, 18, .74);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav,
.hero-actions,
.metric-band,
.product-meta,
.dash-head,
.call-list div,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #07101b;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 7px;
  box-shadow: 0 0 30px rgba(52, 213, 255, .45);
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
}

.header-cta {
  padding: 0 16px;
  color: #031018;
  background: var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(390px, .82fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  width: min(1180px, calc(100% - 44px));
  min-height: auto;
  margin: 0 auto;
  padding: 136px 0 72px;
}

.hero-copy {
  max-width: 860px;
  min-width: 0;
  padding-top: clamp(18px, 4vw, 54px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  background: linear-gradient(180deg, #fff 0%, #f3fbff 42%, #38d8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(232, 242, 250, .76);
  font-size: clamp(18px, 1.35vw, 21px);
}

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

.btn {
  padding: 14px 20px;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 46px rgba(52, 213, 255, .26);
}

.btn-secondary {
  color: #031018;
  background: linear-gradient(135deg, var(--green), var(--cyan-2));
  box-shadow: 0 18px 46px rgba(65, 242, 166, .18);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border-color: var(--line);
}

.hero-stage {
  position: relative;
  display: block;
  min-width: 0;
  padding-top: clamp(18px, 4vw, 50px);
}

.dashboard-card,
.signal-card,
.audit-card,
.audit-flow div,
.product-card,
.audience-grid article,
.automation-card,
.price-card,
.lead-form,
.visual-panel,
.roadmap-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.audit-card {
  position: relative;
  width: min(520px, 100%);
  margin-left: auto;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(12, 18, 38, .96), rgba(7, 11, 25, .94)),
    var(--dark-card);
  border-color: rgba(78, 214, 255, .24);
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .2), transparent 34%),
    linear-gradient(315deg, rgba(65, 242, 166, .12), transparent 42%);
}

.audit-card-head,
.audit-flow,
.audit-result {
  position: relative;
}

.audit-card-head {
  margin-bottom: 26px;
}

.audit-card-head span,
.audit-flow span,
.audit-result span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-card-head strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.audit-flow {
  display: grid;
  gap: 12px;
}

.audit-flow div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.audit-flow span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  letter-spacing: 0;
}

.audit-flow strong {
  align-self: end;
  font-size: 22px;
  line-height: 1.1;
}

.audit-flow p {
  margin: 0;
  color: var(--muted);
}

.audit-result {
  margin-top: 16px;
  padding: 16px;
  background: rgba(52, 213, 255, .09);
  border: 1px solid rgba(78, 214, 255, .2);
  border-radius: var(--radius);
}

.audit-result p {
  margin: 6px 0 0;
  color: rgba(232, 242, 250, .82);
}

.dashboard-card {
  position: relative;
  grid-column: 1 / -1;
  order: 1;
  width: 100%;
  max-width: 520px;
  min-height: 0;
  margin-left: auto;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(12, 18, 38, .92), rgba(8, 12, 28, .9)),
    var(--dark-card);
  border-color: rgba(78, 214, 255, .22);
  transform: none;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(52, 213, 255, .22), transparent 34%, rgba(125, 92, 255, .18));
}

.dash-head {
  position: relative;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dash-head span,
.signal-card span,
.dash-grid span,
.call-list p,
.visual-overlay span,
.visual-overlay small,
.price-card span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-head strong {
  display: block;
  margin-top: 4px;
  font-size: 34px;
}

.dash-head p {
  margin: 0;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(65, 242, 166, .1);
  border: 1px solid rgba(65, 242, 166, .32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.score-ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(190px, 58%);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #111a34 0 46%, transparent 47%),
    conic-gradient(var(--cyan) 0 72%, rgba(255, 255, 255, .08) 72% 100%);
  box-shadow: 0 0 70px rgba(52, 213, 255, .22);
}

.score-ring span {
  color: var(--cyan-2);
  font-weight: 900;
}

.score-ring strong {
  font-size: 54px;
  line-height: .9;
}

.score-ring small {
  color: var(--muted);
}

.dash-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.dash-grid div {
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
}

.dash-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.call-list {
  position: relative;
  display: grid;
  gap: 10px;
}

.call-list div {
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
}

.call-list span {
  width: 8px;
  height: 34px;
  background: var(--cyan);
  border-radius: 999px;
}

.call-list p {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  text-transform: none;
}

.signal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 14px;
  background: rgba(8, 13, 31, .78);
  border-color: var(--line-bright);
}

.signal-card strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 26px;
}

.signal-card small {
  color: var(--muted);
}

.signal-top {
  order: 2;
}

.signal-bottom {
  order: 3;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: 1px;
  width: min(1180px, calc(100% - 44px));
  margin: 18px auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}

.metric-band div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 104px;
  padding: 22px;
  background: rgba(255, 255, 255, .035);
}

.metric-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
}

.metric-band span {
  display: block;
  max-width: 230px;
  font-size: 15px;
  line-height: 1.35;
}

.metric-band span,
.section p,
.product-card p,
.audience-grid p,
.automation-card p,
.roadmap p,
.price-card p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

.section,
.contact {
  padding: 104px clamp(22px, 5vw, 72px);
}

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

.split {
  display: grid;
  grid-template-columns: .36fr .64fr;
  gap: 52px;
  align-items: start;
}

.intro p {
  max-width: 780px;
  font-size: 20px;
}

.comparison {
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, .1), transparent 34%),
    rgba(6, 12, 26, .72);
}

.comparison .section-heading {
  margin-bottom: 34px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.comparison-card {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, .62);
}

.comparison-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 82px;
  margin-bottom: 22px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
}

.comparison-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.comparison-card li {
  position: relative;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  min-height: 62px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  line-height: 1.45;
  text-align: left;
}

.comparison-card li::before {
  content: "";
  position: static;
  width: 10px;
  height: 10px;
  margin-top: .48em;
  border-radius: 999px;
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, .08);
}

.accent-card {
  border-color: rgba(34, 211, 238, .34);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, .08), rgba(255, 255, 255, .045)),
    rgba(255, 255, 255, .045);
}

.accent-card span {
  color: var(--accent);
}

.accent-card li::before {
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .16);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

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

.products {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
    rgba(4, 8, 18, .82);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 310px;
  padding: 24px;
}

.product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.product-meta {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 62px;
}

.product-meta span,
.product-icon {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-meta strong {
  color: var(--green);
}

.product-card h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.1vw, 34px);
}

.product-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.product-card:first-child {
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  border-color: var(--line-bright);
}

.product-card:first-child h3 {
  color: #ffffff;
}

.product-icon {
  display: block;
  margin-bottom: 62px;
}

.cases {
  background:
    linear-gradient(180deg, rgba(52, 213, 255, .07), rgba(255, 255, 255, .025) 58%, transparent),
    rgba(3, 7, 17, .72);
}

.cases-heading {
  display: block;
}

.case-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
}

.case-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.case-button:hover {
  border-color: rgba(109, 242, 255, .55);
  background: rgba(52, 213, 255, .14);
}

.case-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 213, 255, .48) rgba(255, 255, 255, .08);
}

.case-slide {
  position: relative;
  flex: 0 0 min(1120px, 90vw);
  padding: clamp(24px, 3.2vw, 42px);
  overflow: visible;
  border: 1px solid rgba(109, 242, 255, .25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(125, 92, 255, .22), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(65, 242, 166, .13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  scroll-snap-align: start;
}

.case-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(110deg, #000, transparent 72%);
}

.case-copy,
.case-visual {
  position: relative;
  z-index: 1;
}

.case-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-right: 116px;
}

.case-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(52, 213, 255, .42);
}

.case-slide h3 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(28px, 2.72vw, 44px);
  line-height: 1.02;
}

.case-slide p {
  max-width: 960px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: clamp(15px, 1.03vw, 17px);
  line-height: 1.56;
}

.case-slide .case-benefits-title {
  margin: 4px 0 10px;
  color: var(--text);
  font-weight: 900;
}

.case-slide strong {
  color: var(--cyan-2);
  font-weight: 900;
  text-shadow: 0 0 22px rgba(52, 213, 255, .22);
}

.case-slide ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.case-slide li {
  position: relative;
  padding: 11px 14px 11px 42px;
  color: rgba(247, 251, 255, .86);
  font-size: 15px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: var(--radius);
}

.case-slide li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(65, 242, 166, .68);
}

.case-visual {
  position: absolute;
  top: clamp(24px, 3.2vw, 42px);
  right: clamp(24px, 3.2vw, 42px);
  display: grid;
  place-items: center;
  width: 74px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(52, 213, 255, .13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  pointer-events: none;
}

.case-visual svg {
  width: 46px;
  filter: drop-shadow(0 0 16px rgba(52, 213, 255, .26));
}

.neon-stroke {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.neon-fill {
  stroke: none;
}

.cyan {
  stroke: var(--cyan);
  fill: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(52, 213, 255, .9));
}

.green {
  stroke: var(--green);
  fill: var(--green);
  filter: drop-shadow(0 0 10px rgba(65, 242, 166, .85));
}

.violet {
  stroke: var(--violet);
  fill: var(--violet);
  filter: drop-shadow(0 0 10px rgba(125, 92, 255, .85));
}

.pink {
  stroke: var(--pink);
  fill: var(--pink);
  filter: drop-shadow(0 0 10px rgba(255, 79, 216, .75));
}

.neon-stroke.cyan,
.neon-stroke.green,
.neon-stroke.violet,
.neon-stroke.pink {
  fill: none;
}

.project-showcase {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(65, 242, 166, .11), transparent 34%),
    linear-gradient(225deg, rgba(52, 213, 255, .12), transparent 42%),
    rgba(5, 10, 22, .86);
}

.project-showcase-heading {
  max-width: 980px;
}

.section-heading.project-showcase-heading {
  max-width: none;
}

.project-showcase-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.showcase-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.showcase-controls {
  position: static;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
}

.showcase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.showcase-button:hover {
  transform: translateY(-2px);
  border-color: var(--line-bright);
  background: rgba(52, 213, 255, .14);
}

.showcase-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 213, 255, .52) rgba(255, 255, 255, .08);
}

.showcase-slide {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  grid-template-rows: auto minmax(176px, auto);
  min-height: 0;
  overflow: hidden;
  padding: 1px;
  border: 1px solid rgba(109, 242, 255, .22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .52), rgba(65, 242, 166, .36) 45%, rgba(125, 92, 255, .44)),
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.showcase-slide::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 18% 12%, rgba(52, 213, 255, .16), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(65, 242, 166, .1), transparent 30%),
    linear-gradient(180deg, rgba(9, 15, 31, .96), rgba(4, 8, 20, .98));
}

.showcase-media,
.showcase-slide div {
  position: relative;
  z-index: 1;
}

.showcase-media {
  --showcase-media-height: clamp(420px, 46vw, 560px);
  --showcase-media-inset: 52px;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: var(--showcase-media-height);
  padding: 26px;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .08), transparent 34%),
    linear-gradient(225deg, rgba(65, 242, 166, .06), transparent 42%),
    #071021;
  border: 0;
  border-bottom: 1px solid rgba(109, 242, 255, .2);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  cursor: zoom-in;
}

.showcase-media::after {
  content: "Натисніть, щоб збільшити";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
  color: rgba(247, 251, 255, .82);
  background: rgba(2, 4, 11, .68);
  border: 1px solid rgba(109, 242, 255, .24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.showcase-media:hover::after,
.showcase-media:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.showcase-media:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -6px;
}

.showcase-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(var(--showcase-media-height) - var(--showcase-media-inset));
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

.showcase-slide div {
  display: grid;
  align-content: start;
  min-height: 176px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .02));
}

.showcase-slide span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.showcase-slide h3 {
  max-width: 740px;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 38px);
}

.showcase-slide p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.screen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(2, 4, 11, .86);
  backdrop-filter: blur(14px);
}

.screen-lightbox[aria-hidden="false"] {
  display: flex;
}

.screen-lightbox img {
  width: auto;
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  background: #071021;
  border: 1px solid rgba(109, 242, 255, .32);
  border-radius: var(--radius);
  box-shadow: 0 30px 120px rgba(0, 0, 0, .68);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--text);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(109, 242, 255, .26);
  border-radius: 50%;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(52, 213, 255, .18);
  border-color: var(--line-bright);
}

.system {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.visual-panel {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .15);
}

.visual-panel img {
  width: 100%;
  border-radius: 7px;
  filter: saturate(1.08) contrast(1.04);
}

.visual-overlay {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 220px;
  padding: 18px;
  background: rgba(2, 4, 11, .82);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
}

.visual-overlay strong {
  display: block;
  margin: 5px 0;
  font-size: 30px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #041018;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin: 0;
  font-size: 18px;
}

.audience {
  background:
    linear-gradient(135deg, rgba(125, 92, 255, .09), transparent 40%),
    rgba(255, 255, 255, .035);
}

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

.audience-grid article {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 300px;
  padding: 24px;
}

.audience-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.audience-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  color: #041018;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.audience-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.12;
}

.audience-grid p {
  margin-bottom: 0;
}

.audience-grid article:first-child {
  border-color: rgba(65, 242, 166, .36);
  background:
    linear-gradient(135deg, rgba(65, 242, 166, .14), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
}

.automation {
  background:
    radial-gradient(circle at 14% 18%, rgba(125, 92, 255, .18), transparent 26%),
    radial-gradient(circle at 86% 24%, rgba(255, 63, 212, .12), transparent 30%),
    rgba(2, 6, 16, .9);
}

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

.automation-card {
  position: relative;
  min-height: 292px;
  padding: 22px;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(4, 9, 24, .96), rgba(6, 12, 28, .9)) padding-box,
    linear-gradient(135deg, var(--violet), var(--pink) 52%, var(--cyan)) border-box;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, .34),
    0 0 30px rgba(255, 63, 212, .1);
  overflow: hidden;
}

.automation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22px 22px, rgba(125, 92, 255, .28), transparent 44%),
    radial-gradient(circle at calc(100% - 18px) 40%, rgba(255, 63, 212, .16), transparent 34%);
  pointer-events: none;
}

.automation-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(255, 63, 212, .44);
}

.automation-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: #fff;
  background:
    linear-gradient(#050b1b, #050b1b) padding-box,
    linear-gradient(135deg, var(--violet), var(--pink) 58%, var(--cyan)) border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  box-shadow:
    0 0 22px rgba(125, 92, 255, .36),
    0 0 28px rgba(255, 63, 212, .22);
}

.automation-card strong {
  position: relative;
  display: block;
  margin-bottom: 14px;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.12;
}

.automation-card p {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
  gap: 60px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .08), transparent 36%),
    rgba(2, 6, 16, .82);
}

.launch-copy p:not(.eyebrow) {
  font-size: 18px;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 4px 0 4px 92px;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 38px;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--green), var(--violet), var(--pink));
  border-radius: 999px;
  box-shadow: 0 0 36px rgba(52, 213, 255, .32);
}

.roadmap-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 22px 24px 22px;
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -68px;
  width: 28px;
  height: 28px;
  background: #06111d;
  border: 4px solid var(--cyan);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(52, 213, 255, .12),
    0 0 34px rgba(52, 213, 255, .35);
}

.roadmap-step::after {
  content: none;
}

.roadmap-step:nth-child(2)::before {
  border-color: var(--green);
  box-shadow:
    0 0 0 10px rgba(65, 242, 166, .12),
    0 0 34px rgba(65, 242, 166, .32);
}

.roadmap-step:nth-child(3)::before {
  border-color: var(--violet);
  box-shadow:
    0 0 0 10px rgba(125, 92, 255, .13),
    0 0 34px rgba(125, 92, 255, .34);
}

.roadmap-step:nth-child(4)::before {
  border-color: var(--pink);
  box-shadow:
    0 0 0 10px rgba(255, 79, 216, .11),
    0 0 34px rgba(255, 79, 216, .28);
}

.roadmap-step:nth-child(5)::before {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 10px rgba(52, 213, 255, .1),
    0 0 34px rgba(52, 213, 255, .24);
}

.roadmap-step span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #041018;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.roadmap-step strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.1;
}

.roadmap-step p {
  margin: 0;
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(65, 242, 166, .12), transparent 38%),
    rgba(255, 255, 255, .032);
}

.founder-photo {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(109, 242, 255, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .56), rgba(65, 242, 166, .38) 45%, rgba(125, 92, 255, .48)),
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 20% 12%, rgba(52, 213, 255, .18), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(65, 242, 166, .12), transparent 30%),
    linear-gradient(180deg, rgba(9, 15, 31, .96), rgba(4, 8, 20, .98));
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: calc(var(--radius) - 2px);
}

.founder p:not(.eyebrow) {
  max-width: 780px;
  font-size: 19px;
}

.founder h2 {
  max-width: 840px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.founder-content {
  display: grid;
  gap: 22px;
}

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

.founder-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.founder-proof span {
  padding: 10px 13px;
  color: rgba(247, 251, 255, .84);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.founder-card {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.founder-card span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-card strong {
  display: block;
  margin: 16px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.founder-card p {
  margin: 0;
}

.founder-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.founder-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 251, 255, .76);
  font-weight: 700;
  line-height: 1.5;
}

.founder-card li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

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

.price-card {
  padding: 28px;
}

.price-card strong {
  display: block;
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
}

.price-card.accent {
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-color: transparent;
}

.price-card.accent span,
.price-card.accent p {
  color: rgba(3, 16, 24, .72);
}

.contact {
  display: grid;
  grid-template-columns: .9fr minmax(360px, .75fr);
  gap: 64px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(52, 213, 255, .14), transparent 34%),
    rgba(4, 8, 18, .9);
}

.contact-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: 19px;
}

.contact-points {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 30px;
}

.contact-points div {
  display: grid;
  grid-template-columns: 42px minmax(0, .36fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}

.contact-points span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #041018;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.contact-points strong {
  font-size: 17px;
  line-height: 1.15;
}

.contact-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, .09);
  border-color: var(--line-bright);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 251, 255, .84);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px;
  color: var(--text);
  background: rgba(2, 4, 11, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  outline: none;
  font: inherit;
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(52, 213, 255, .14);
}

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

.telegram-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 13px 16px;
  color: var(--text);
  background: rgba(52, 213, 255, .1);
  border: 1px solid rgba(52, 213, 255, .32);
  border-radius: var(--radius);
  font-weight: 900;
}

.telegram-direct:hover {
  background: rgba(52, 213, 255, .16);
  border-color: rgba(109, 242, 255, .58);
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  text-align: center;
}

.form-note.is-error {
  color: #ff9cbd;
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer span {
  font-weight: 900;
}

.footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .hero,
  .system,
  .launch,
  .founder,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(980px, calc(100% - 44px));
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    padding: 12px 0 10px;
  }

  .audit-card,
  .dashboard-card {
    width: min(720px, 100%);
    min-height: 0;
    margin: 0 auto;
    transform: none;
  }

  .signal-top {
    right: auto;
  }

  .signal-bottom {
    left: auto;
    bottom: auto;
  }

  .founder-photo {
    width: min(620px, 100%);
    min-height: 620px;
  }

  .founder-photo img {
    min-height: 620px;
  }

  .audience-grid,
  .comparison-grid,
  .automation-grid,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-card {
    min-height: 248px;
  }

  .case-slide {
    flex-basis: min(980px, 88vw);
  }

  .case-copy {
    padding-right: 104px;
  }

  .case-visual {
    width: 68px;
    height: 64px;
  }

  .case-visual svg {
    width: 42px;
  }

  .showcase-media {
    --showcase-media-height: clamp(360px, 50vw, 460px);
  }

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

  .product-card,
  .product-card:nth-child(4),
  .audience-grid article,
  .audience-grid article:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav,
  .header-cta {
    display: none;
  }

  .hero {
    width: calc(100% - 32px);
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.03;
  }

  h2 {
    font-size: 38px;
  }

  .hero-stage {
    min-height: auto;
    padding: 8px 0 0;
  }

  .audit-card,
  .dashboard-card {
    width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .audit-flow div {
    min-height: 0;
  }

  .audit-card-head strong {
    font-size: 32px;
  }

  .signal-card {
    width: 100%;
  }

  .signal-top {
    right: auto;
  }

  .signal-bottom {
    left: auto;
  }

  .score-ring {
    width: min(230px, 70%);
  }

  .score-ring strong {
    font-size: 66px;
  }

  .metric-band,
  .audience-grid,
  .comparison-grid,
  .automation-grid,
  .roadmap,
  .pricing {
    grid-template-columns: 1fr;
  }

  .automation-card {
    min-height: 0;
  }

  .cases-heading {
    display: block;
  }

  .case-button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .case-track {
    gap: 14px;
  }

  .case-slide {
    flex-basis: 88vw;
    padding: 22px;
    min-height: 0;
  }

  .case-copy {
    padding-right: 0;
  }

  .case-slide h3 {
    max-width: calc(100% - 88px);
    font-size: 26px;
  }

  .case-slide p,
  .case-slide li {
    font-size: 15px;
  }

  .case-slide ul {
    grid-template-columns: 1fr;
  }

  .case-visual {
    top: 22px;
    right: 22px;
    width: 58px;
    height: 54px;
    border-radius: 14px;
  }

  .case-visual svg {
    width: 36px;
  }

  .showcase-controls {
    position: static;
    margin: 18px 0 0;
  }

  .showcase-button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .showcase-track {
    gap: 14px;
  }

  .showcase-slide {
    flex-basis: 100%;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .showcase-media {
    --showcase-media-height: clamp(240px, 68vw, 340px);
    --showcase-media-inset: 24px;
    padding: 12px;
  }

  .showcase-media::after {
    display: none;
  }

  .showcase-slide div {
    min-height: 0;
    padding: 18px;
  }

  .showcase-slide p {
    font-size: 15px;
  }

  .founder {
    gap: 22px;
  }

  .founder-photo {
    width: 100%;
    min-height: 460px;
  }

  .founder-photo img {
    min-height: 460px;
    object-position: 50% 24%;
  }

  .founder p:not(.eyebrow) {
    font-size: 17px;
  }

  .founder-card {
    padding: 22px;
  }

  .founder-card strong {
    font-size: 30px;
    line-height: 1.05;
  }

  .screen-lightbox {
    padding: 14px;
  }

  .screen-lightbox img {
    max-width: 96vw;
    max-height: 82vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

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

  .comparison-card {
    min-height: auto;
    padding: 22px;
  }

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

  .metric-band {
    display: grid;
  }

  .roadmap {
    padding-top: 0;
    padding-left: 46px;
  }

  .roadmap::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--cyan), var(--green), var(--violet), var(--pink));
  }

  .roadmap-step {
    min-height: 0;
    padding: 22px;
  }

  .roadmap-step::before {
    top: 18px;
    left: -37px;
  }

  .metric-band div {
    min-height: auto;
  }

  .product-card {
    min-height: 0;
  }

  .product-meta,
  .product-icon {
    margin-bottom: 36px;
  }

  .visual-overlay {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .contact {
    gap: 32px;
  }

  .contact-points div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-points p {
    grid-column: 2;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .signal-card {
    width: 100%;
    margin-bottom: 10px;
  }

  .dashboard-card {
    position: relative;
  }

  .signal-bottom {
    margin-top: 10px;
  }
}
