:root {
  --bg: #060a15;
  --bg-soft: #0b1325;
  --surface: #121c34;
  --surface-2: #0f182e;
  --text: #ebf1ff;
  --muted: #9caed8;
  --line: #26375d;
  --primary: #5a98ff;
  --primary-2: #78f0cd;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(82, 123, 255, 0.2), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(72, 201, 182, 0.14), transparent 38%),
    var(--bg);
}

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.announcement {
  padding: 0.55rem 1rem;
  text-align: center;
  background: rgba(12, 19, 37, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d6e3ff;
  font-size: 0.9rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(6, 10, 21, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.35px;
}

nav {
  display: flex;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: #dbe7ff;
}

.btn {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.76rem 1rem;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7c8bff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #d8e4ff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 5.4rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--primary-2);
  letter-spacing: 0.9px;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.headline-accent {
  background: linear-gradient(135deg, #9ec3ff 0%, #78f0cd 60%, #5a98ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-points {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  color: #d5e2ff;
  display: grid;
  gap: 0.45rem;
}

.urgency {
  margin: 1rem 0 0;
  color: #d8e4ff;
  font-size: 0.92rem;
}

.urgency strong {
  color: var(--primary-2);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(123, 157, 255, 0.08), transparent 35%),
    linear-gradient(160deg, #131f3a, #0f172b);
  padding: 1.2rem;
}

.mini-label {
  margin: 0;
  color: var(--primary-2);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.hero-card h3 {
  margin: 0.45rem 0 0;
  font-size: 1.2rem;
}

.hero-metrics {
  display: grid;
  gap: 0.82rem;
  margin-top: 1rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.25rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.micro {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 18, 34, 0.8);
}

.proof-grid {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.proof-grid div {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
}

.proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

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

.section {
  padding: 4.6rem 0;
}

.section.alt {
  background: rgba(10, 16, 31, 0.72);
}

h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1.12;
}

.section-sub {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}

.connections-visual {
  margin-top: 1.4rem;
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(90, 152, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.connection-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(340px, 70%);
  text-align: center;
  border: 1px solid rgba(120, 240, 205, 0.35);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(120, 240, 205, 0.1), transparent 65%),
    var(--surface);
  padding: 1rem;
  z-index: 2;
}

.connection-hub h3 {
  margin: 0.35rem 0 0;
  font-size: 1.18rem;
}

.connection-hub p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.connection-node {
  position: absolute;
  width: min(240px, 42%);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  padding: 0.82rem;
  z-index: 2;
}

.connection-node h3 {
  margin: 0;
  font-size: 0.96rem;
}

.connection-node p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.connection-node.n1 { top: 6%; left: 4%; }
.connection-node.n2 { top: 6%; right: 4%; }
.connection-node.n3 { top: 33%; left: 3%; }
.connection-node.n4 { top: 33%; right: 3%; }
.connection-node.n5 { bottom: 6%; left: 6%; }
.connection-node.n6 { bottom: 6%; right: 6%; }

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(90, 152, 255, 0), rgba(90, 152, 255, 0.55), rgba(120, 240, 205, 0.3));
  z-index: 1;
  transform-origin: left center;
}

.connection-line.l1 { width: 180px; top: 24%; left: 27%; transform: rotate(24deg); }
.connection-line.l2 { width: 180px; top: 24%; right: 27%; transform: rotate(-24deg); }
.connection-line.l3 { width: 150px; top: 45%; left: 24%; transform: rotate(4deg); }
.connection-line.l4 { width: 150px; top: 45%; right: 24%; transform: rotate(-4deg); }
.connection-line.l5 { width: 180px; bottom: 24%; left: 27%; transform: rotate(-24deg); }
.connection-line.l6 { width: 180px; bottom: 24%; right: 27%; transform: rotate(24deg); }

.levers-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.lever-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  padding: 1rem;
}

.lever-card h3 {
  margin: 0;
  font-size: 1.04rem;
}

.lever-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.fit-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.fit-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  padding: 1rem;
}

.fit-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.fit-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: #d2dfff;
  display: grid;
  gap: 0.45rem;
}

.fit-card.warning {
  background: rgba(255, 159, 159, 0.04);
}

.sector-visuals {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.sector-visual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(90, 152, 255, 0.09), transparent 45%),
    rgba(255, 255, 255, 0.015);
  padding: 0.78rem 0.8rem;
  text-align: left;
  color: inherit;
  font: inherit;
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.sector-visual:hover {
  border-color: #3f5f9f;
  transform: translateY(-1px);
}

.sector-visual.is-active {
  border-color: rgba(120, 240, 205, 0.5);
  background:
    linear-gradient(180deg, rgba(120, 240, 205, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.03);
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 2.4rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 240, 205, 0.32);
  background: rgba(120, 240, 205, 0.08);
  color: #c7fff0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.55px;
}

.sector-visual-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #e7f0ff;
}

.sector-visual-meta {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.sector-visual-link {
  margin-top: 0.2rem;
  color: #b4cbff;
  font-size: 0.82rem;
  font-weight: 600;
}

.sector-note {
  margin-top: 0.8rem;
}

.sector-breadcrumb {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #b7cbf5;
  font-size: 0.9rem;
}

.sector-breadcrumb:hover {
  color: #d6e6ff;
}

.sector-brief-content {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.sector-brief-nav {
  margin-top: 1rem;
}

.sector-brief-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sector-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.sector-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sector-item:hover {
  border-color: #3f5f9f;
}

.sector-item[open] {
  border-color: rgba(120, 240, 205, 0.42);
  box-shadow: 0 10px 28px rgba(7, 14, 28, 0.35);
}

.sector-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 1rem;
  display: grid;
  gap: 0.35rem;
  position: relative;
}

.sector-item summary::after {
  content: "+";
  position: absolute;
  top: 0.92rem;
  right: 1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #dbe8ff;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sector-item[open] summary::after {
  content: "−";
  color: var(--primary-2);
  border-color: rgba(120, 240, 205, 0.45);
}

.sector-item summary::-webkit-details-marker {
  display: none;
}

.sector-kicker {
  color: var(--primary-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.sector-item summary strong {
  font-size: 1.02rem;
}

.sector-summary {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sector-content {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 15, 30, 0.7);
  padding: 0.95rem 1rem 1rem;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stakeholder-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
}

.stakeholder-title {
  margin: 0;
  color: #d9e6ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.stakeholder-grid ul,
.solution-list {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: #d0ddfa;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.solution-list {
  margin-top: 0.6rem;
}

.sector-trigger {
  margin: 0.75rem 0 0;
  color: #c8d8fb;
  font-size: 0.9rem;
}

.sector-trigger strong {
  color: var(--primary-2);
}

.sector-cta {
  margin-top: 1rem;
}

.framework-v2 .eyebrow {
  margin-bottom: 0.55rem;
}

.framework-shell {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.framework-layers {
  display: grid;
  gap: 0.65rem;
}

.framework-layer {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
}

.framework-layer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(90, 152, 255, 0.24);
  color: #d9e7ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.framework-layer h3 {
  margin: 0;
  font-size: 0.98rem;
}

.framework-layer p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.framework-panel {
  border: 1px solid rgba(120, 240, 205, 0.35);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(120, 240, 205, 0.1), transparent 58%),
    var(--surface);
  padding: 1rem;
}

.framework-panel h3 {
  margin: 0.4rem 0 0;
  font-size: 1.05rem;
}

.framework-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #d2e1ff;
  display: grid;
  gap: 0.45rem;
}

.framework-panel strong {
  color: #e6f1ff;
}

.framework-cta {
  margin-top: 1rem;
}

.framework-pillars {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.framework-pillar {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.8rem;
}

.framework-pillar h3 {
  margin: 0;
  font-size: 0.94rem;
}

.framework-pillar p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.42;
}

.framework-matrix {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.framework-matrix > div {
  padding: 0.62rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.framework-matrix > div:nth-child(4n) {
  border-right: 0;
}

.framework-matrix-head {
  background: rgba(90, 152, 255, 0.14);
  font-weight: 700;
}

.framework-note {
  margin-top: 0.85rem;
}

.steps {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.step {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 1rem;
}

.step span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(90, 152, 255, 0.25);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.52rem;
}

.step h3 {
  margin: 0.7rem 0 0;
  font-size: 1rem;
}

.step p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 1.1rem;
}

.card.featured {
  box-shadow: 0 0 0 1px rgba(90, 152, 255, 0.56), 0 22px 58px rgba(20, 40, 83, 0.5);
}

.label {
  margin: 0;
  color: var(--primary-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.card h3 {
  margin: 0.45rem 0;
  font-size: 1.2rem;
}

.price {
  margin: 0;
  color: #d8e5ff;
  font-weight: 700;
}

.card ul {
  margin: 0.85rem 0 0;
  padding-left: 1rem;
  color: #d0dfff;
  display: grid;
  gap: 0.45rem;
}

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

.card-cta {
  margin-top: 0.8rem;
  width: 100%;
}

.engagement-terms {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.term-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
  display: grid;
  gap: 0.3rem;
}

.term-item strong {
  font-size: 0.9rem;
  color: #e7f1ff;
}

.term-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.benchmark-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.benchmark {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(120, 240, 205, 0.05);
  padding: 0.88rem;
}

.benchmark-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.benchmark strong {
  margin-top: 0.4rem;
  display: block;
}

.compare-block {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.compare-block h3 {
  margin: 0 0 0.8rem;
  font-size: 1.06rem;
}

.compare-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.compare-table > div {
  padding: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.compare-head {
  background: rgba(90, 152, 255, 0.14);
  font-weight: 700;
}

.compare-table > div:nth-child(4n) {
  border-right: 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 1rem;
}

.form-grid,
.lead-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.9rem;
  color: #d3e2ff;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a1327;
  color: #eff5ff;
  border-radius: 10px;
  padding: 0.7rem 0.76rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: transparent;
  outline: 2px solid rgba(90, 152, 255, 0.5);
}

.roi-card {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1.1rem;
}

.result-money {
  margin: 0.2rem 0;
  font-size: 2rem;
  color: var(--primary-2);
  font-weight: 850;
}

.muted {
  color: var(--muted);
}

.call-steps {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mid-cta {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(120, 240, 205, 0.06);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.mid-cta p {
  margin: 0;
  color: #d4e2ff;
}

.faq-grid details {
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 0.78rem 0.9rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 650;
}

.faq-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.cta {
  padding-top: 5rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: #d4e2ff;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.15rem 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }

  .hero-grid,
  .proof-grid,
  .levers-grid,
  .fit-grid,
  .framework-shell,
  .framework-pillars,
  .sector-list,
  .stakeholder-grid,
  .cards.three,
  .engagement-terms,
  .benchmark-cards,
  .compare-table,
  .framework-matrix,
  .roi-grid,
  .call-steps,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .connections-visual {
    min-height: auto;
    display: grid;
    gap: 0.7rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.01);
  }

  .connection-line {
    display: none;
  }

  .connection-hub,
  .connection-node {
    position: static;
    transform: none;
    width: 100%;
  }

  .connection-hub {
    order: -1;
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
