:root {
  color-scheme: dark;
  --bg: #020704;
  --bg-2: #06150d;
  --panel: rgba(5, 18, 11, .72);
  --panel-2: rgba(0, 255, 110, .07);
  --green: #00ff70;
  --green-2: #00ba52;
  --green-soft: rgba(0, 255, 112, .18);
  --text: #eafff1;
  --muted: #9ab6a4;
  --line: rgba(0, 255, 112, .24);
  --shadow: 0 0 36px rgba(0, 255, 112, .16);
  --radius: 28px;
  --max: 1180px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-glow-x: 50%;
  --hero-glow-y: 18%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(0,255,112,.16), transparent 40rem),
    linear-gradient(180deg, #000 0%, var(--bg) 45%, #000 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.fx-intense {
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(0,255,112,.3), transparent 24rem),
    radial-gradient(circle at 90% 20%, rgba(0,120,255,.18), transparent 28rem),
    linear-gradient(180deg, #000 0%, var(--bg) 45%, #000 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

#matrix-rain {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: .35;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.025) 0,
    rgba(255,255,255,.025) 1px,
    transparent 2px,
    transparent 7px
  );
  mix-blend-mode: soft-light;
}
body.fx-intense .scanlines {
  animation: scanDrift 7s linear infinite;
  opacity: .8;
}
@keyframes scanDrift {
  to { transform: translateY(42px); }
}

.glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(0,255,112,.08) 18.5%, transparent 19% 63%, rgba(255,255,255,.05) 64%, transparent 64.5%),
    repeating-linear-gradient(90deg, rgba(0,255,112,.06) 0 1px, transparent 1px 80px);
  mix-blend-mode: screen;
}
body.fx-intense .glitch-overlay {
  opacity: .55;
  animation: glitchSweep 2.8s steps(2, end) infinite;
}
@keyframes glitchSweep {
  0%, 72%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
  74% { clip-path: inset(8% 0 72% 0); transform: translateX(-18px); }
  76% { clip-path: inset(58% 0 18% 0); transform: translateX(14px); }
  78% { clip-path: inset(28% 0 52% 0); transform: translateX(-8px); }
}

.orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
  z-index: -3;
}
.orb-a { top: 4rem; left: -12rem; background: rgba(0,255,112,.22); }
.orb-b { right: -14rem; bottom: 8rem; background: rgba(0,150,255,.14); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand img { width: 156px; filter: drop-shadow(0 0 15px rgba(0,255,112,.18)); }
.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  padding: 11px 15px;
  color: #cce9d5;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover {
  color: #001b0b;
  background: var(--green);
  transform: translateY(-1px);
}
.header-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 8px;
}
.fx-toggle,
.lang-switch {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #d9ffe4;
}
.fx-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
  font: 800 .76rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  cursor: pointer;
}
.fx-toggle:hover,
.fx-toggle[aria-pressed="true"] {
  border-color: rgba(0,255,112,.65);
  box-shadow: 0 0 22px rgba(0,255,112,.22);
}
.fx-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,112,.7);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
}
.lang-switch a {
  padding: 8px 10px;
  line-height: 1;
  font-size: .76rem;
  font-weight: 900;
}
.lang-switch a.is-active {
  color: #001b0b;
  background: var(--green);
}
.nav-toggle { display: none; }

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

.hero { min-height: calc(100vh - 92px); display: grid; place-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: center;
  transform: perspective(1100px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transition: transform .18s ease-out;
}
body.fx-intense .hero-grid { transition: transform .05s linear; }
.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,255,112,.7);
  animation: pulse 1.7s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(0,255,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,112,0); }
}

h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.055em; }
h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  max-width: 10ch;
  text-shadow: 0 0 26px rgba(0,255,112,.14);
}
.glitch {
  position: relative;
}
body.fx-intense .glitch {
  animation: titlePulse 2.2s ease-in-out infinite;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
body.fx-intense .glitch::before {
  color: #00ff70;
  text-shadow: -2px 0 #00f0ff;
  opacity: .42;
  animation: glitchBefore 3.1s infinite linear alternate-reverse;
}
body.fx-intense .glitch::after {
  color: #eafff1;
  text-shadow: 2px 0 #ff2cf7;
  opacity: .28;
  animation: glitchAfter 2.7s infinite linear alternate-reverse;
}
@keyframes titlePulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(0,255,112,.16)); }
  50% { filter: drop-shadow(0 0 34px rgba(0,255,112,.34)); }
}
@keyframes glitchBefore {
  0%, 78%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  80% { clip-path: inset(0 0 74% 0); transform: translate(-7px, -3px); }
  84% { clip-path: inset(38% 0 42% 0); transform: translate(8px, 2px); }
  88% { clip-path: inset(72% 0 0 0); transform: translate(-4px, 4px); }
}
@keyframes glitchAfter {
  0%, 70%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  74% { clip-path: inset(12% 0 70% 0); transform: translate(6px, 1px); }
  79% { clip-path: inset(55% 0 22% 0); transform: translate(-9px, -2px); }
  83% { clip-path: inset(82% 0 4% 0); transform: translate(4px, 2px); }
}
h2 { font-size: clamp(2.3rem, 4.7vw, 4.9rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 2rem); letter-spacing: -.035em; line-height: 1.08; }
p { color: var(--muted); line-height: 1.68; }
.lead {
  max-width: 720px;
  color: #d9ffe4;
  font-size: clamp(1.04rem, 1.6vw, 1.26rem);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: #001b0b;
  background: linear-gradient(135deg, var(--green), #95ffbc);
  box-shadow: 0 0 26px rgba(0,255,112,.3);
}
.btn.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 720px;
}
.hero-metrics div,
.glass-card,
.infra-panel,
.service-card,
.price-card,
.note-card,
.contact-card,
.terminal-card,
.perf-meter,
.perf-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,255,112,.09), rgba(0,0,0,.45));
  box-shadow: var(--shadow);
}
.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
}
.hero-metrics strong { display: block; color: var(--green); font-size: 1.4rem; }
.hero-metrics span { color: var(--muted); font-size: .85rem; }

.terminal-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, .64);
  transform: perspective(900px) rotateY(-5deg) rotateX(3deg);
}
body.fx-intense .terminal-card {
  animation: terminalFloat 5s ease-in-out infinite;
}
@keyframes terminalFloat {
  0%, 100% { transform: perspective(900px) rotateY(-5deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-2deg) rotateX(5deg) translateY(-12px); }
}
.terminal-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,255,112,.08);
}
.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  opacity: .8;
}
.terminal-top span:nth-child(2) { opacity: .45; }
.terminal-top span:nth-child(3) { opacity: .25; }
.terminal-top b {
  margin-left: 8px;
  color: #c7ffd7;
  font: 700 .82rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.terminal-body { padding: 24px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.terminal-body p { margin: 0 0 13px; color: #b9e9c7; }
.terminal-body em { color: var(--green); font-style: normal; }
.terminal-body strong { color: #fff; text-shadow: 0 0 12px rgba(0,255,112,.7); }
.terminal-bars { display: grid; gap: 9px; margin: 24px 0; }
.terminal-bars span {
  display: block;
  width: var(--w);
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), transparent);
  box-shadow: 0 0 16px rgba(0,255,112,.35);
}
body.fx-intense .terminal-bars span {
  animation: barSurge 1.35s ease-in-out infinite alternate;
}
.terminal-bars span:nth-child(2) { animation-delay: .18s; }
.terminal-bars span:nth-child(3) { animation-delay: .34s; }
@keyframes barSurge {
  from { filter: brightness(.85); transform: scaleX(.84); transform-origin: left; }
  to { filter: brightness(1.45); transform: scaleX(1); transform-origin: left; }
}
#typewriter { min-height: 102px; margin: 0; color: #62ff9c; white-space: pre-wrap; }

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 0;
}
.strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: #d9ffe4;
  background: rgba(0,255,112,.06);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}
.section-heading p:last-child { max-width: 760px; font-size: 1.08rem; }

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 24px;
  align-items: stretch;
}
.glass-card,
.infra-panel,
.service-card,
.price-card,
.note-card,
.contact-card,
.perf-copy,
.perf-meter {
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(18px);
}
.card-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font: 800 .77rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: #d5f7df;
}
.check-list li { position: relative; padding-left: 28px; line-height: 1.55; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  text-shadow: 0 0 10px rgba(0,255,112,.7);
}

.node-stack { display: grid; gap: 14px; }
.node-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0,0,0,.58);
}
.node-card::after {
  content: "";
  position: absolute;
  inset: -60% -10% auto;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(0,255,112,.16), transparent);
  transform: rotate(12deg);
  animation: shine 4.5s infinite;
}
@keyframes shine {
  0%, 55% { translate: -110% 0; }
  100% { translate: 120% 0; }
}
.node-card span, .node-card small { display: block; color: var(--muted); }
.node-card strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.node-card.hot { background: linear-gradient(145deg, rgba(0,255,112,.16), rgba(0,0,0,.56)); }

.pricing-grid,
.infra-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-card { min-height: 220px; }
.price-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
}
.price-card.featured {
  background:
    linear-gradient(180deg, rgba(0,255,112,.18), rgba(0,0,0,.48)),
    radial-gradient(circle at 50% 0%, rgba(0,255,112,.25), transparent 18rem);
}
.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: 18px;
  right: -34px;
  width: 150px;
  padding: 6px 0;
  transform: rotate(35deg);
  color: #001b0b;
  background: var(--green);
  font: 900 .62rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-align: center;
  text-transform: uppercase;
}
.price {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.price strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .95;
  letter-spacing: -.055em;
  text-shadow: 0 0 22px rgba(0,255,112,.28);
}
.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}
.note-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.note-card strong { color: var(--green); }
.note-card span { color: var(--muted); line-height: 1.55; }
.infra-panel .icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #001b0b;
  background: var(--green);
  box-shadow: 0 0 24px rgba(0,255,112,.36);
  font-size: 1.35rem;
}

.performance { padding-bottom: 40px; }
.perf-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.perf-meter {
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  align-content: center;
  row-gap: 16px;
  text-align: center;
}
.perf-meter svg {
  grid-area: 1 / 1;
  width: 170px;
  transform: rotate(-90deg);
}
.perf-meter circle { fill: none; stroke-width: 10; }
.perf-meter .track { stroke: rgba(255,255,255,.1); }
.perf-meter .progress {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 16;
  filter: drop-shadow(0 0 8px rgba(0,255,112,.8));
}
.perf-meter strong {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.06em;
}
.perf-meter span {
  grid-area: 2 / 1;
  color: var(--muted);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(120deg, rgba(0,255,112,.16), rgba(0,0,0,.66)),
    radial-gradient(circle at 80% 20%, rgba(0,255,112,.25), transparent 18rem);
}
.contact-card h2 { max-width: 780px; }
.contact-actions { margin: 0; justify-content: flex-end; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 30px 0 54px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer strong, .site-footer span { display: block; }
.site-footer a { color: var(--green); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header { border-radius: 24px; align-items: center; flex-wrap: wrap; }
  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(0,0,0,.35);
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--green); }
  .nav {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(0,0,0,.9);
  }
  .header-controls {
    margin-left: auto;
  }
  .nav.open { display: flex; }
  .hero-grid, .ai-layout, .perf-grid, .contact-card { grid-template-columns: 1fr; }
  .pricing-grid, .infra-grid, .services-grid { grid-template-columns: 1fr; }
  .note-card { grid-template-columns: 1fr; }
  .terminal-card { transform: none; }
  body.fx-intense .terminal-card { animation: none; }
  .hero-metrics { grid-template-columns: 1fr; }
  h1 { max-width: 12ch; }
}

@media (max-width: 560px) {
  .section { width: min(calc(100% - 32px), var(--max)); padding: 58px 0; }
  .hero { min-height: auto; padding-top: 80px; }
  .site-header { gap: 8px 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 10px 12px; }
  .header-controls {
    position: fixed;
    top: 31px;
    right: 72px;
    z-index: 12;
    width: auto;
    gap: 6px;
    margin-left: 0;
  }
  .nav-toggle { order: 1; width: 38px; height: 38px; flex: 0 0 38px; }
  .lang-switch { order: 2; flex: 0 0 auto; }
  .brand img { width: 112px; }
  .fx-toggle { display: none; }
  .lang-switch { min-height: 34px; }
  .lang-switch a { padding: 7px 9px; }
  .nav { inset: 112px 0 auto; }
  .hero-copy { max-width: 100%; overflow: hidden; }
  h1 { font-size: clamp(2.35rem, 11.5vw, 2.85rem); max-width: 9ch; overflow-wrap: normal; }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .lead { font-size: 1rem; max-width: 34ch; }
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }
  .terminal-card,
  .glass-card,
  .infra-panel,
  .service-card,
  .contact-card,
  .perf-copy,
  .perf-meter {
    border-radius: 22px;
  }
  .terminal-body { overflow: hidden; font-size: .86rem; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  #matrix-rain { display: none; }
  .glitch-overlay { display: none; }
}

/* Added content blocks: audience, trust and lightweight contact brief */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.audience-card,
.trust-grid div {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,255,112,.09), rgba(0,0,0,.45));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(18px);
}
.audience-card {
  min-height: 270px;
  position: relative;
  overflow: hidden;
}
.audience-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 20%;
  height: 120px;
  background: radial-gradient(circle, rgba(0,255,112,.18), transparent 70%);
  pointer-events: none;
}
.audience-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font: 900 .85rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .16em;
}
.audience-card h3 { font-size: clamp(1.25rem, 1.8vw, 1.75rem); }
.audience-card p { margin-bottom: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}
.trust-grid span {
  color: var(--muted);
  line-height: 1.55;
}
.contact-panel {
  display: grid;
  gap: 18px;
  min-width: min(420px, 100%);
}
.contact-panel .contact-actions {
  justify-content: flex-start;
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0,255,112,.2);
  border-radius: 24px;
  background: rgba(0,0,0,.35);
}
.contact-form label,
.contact-form label span {
  display: grid;
  gap: 7px;
}
.contact-form label span {
  color: var(--green);
  font: 800 .72rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,255,112,.22);
  border-radius: 16px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(0,0,0,.48);
  font: inherit;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0,255,112,.72);
  box-shadow: 0 0 0 3px rgba(0,255,112,.12);
}
.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}
@media (max-width: 900px) {
  .audience-grid,
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { min-width: 0; }
}
@media (max-width: 640px) {
  .audience-grid,
  .trust-grid { grid-template-columns: 1fr; }
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.platform-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0,255,112,.1), rgba(0,0,0,.48)),
    radial-gradient(circle at 80% 0%, rgba(0,255,112,.12), transparent 15rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,112,.16), transparent 35%);
  opacity: .45;
  pointer-events: none;
}
.platform-card > * { position: relative; }
.mini-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #d5f7df;
  font-size: .94rem;
}
.mini-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}
.mini-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--green);
}
@media (max-width: 1100px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
}
