:root {
  --bg: #0b0b0b;
  --bg-2: #07110d;
  --panel: rgba(16, 26, 21, 0.68);
  --panel-strong: rgba(18, 31, 25, 0.82);
  --glass: rgba(255, 255, 255, 0.055);
  --line: rgba(0, 255, 156, 0.18);
  --line-blue: rgba(0, 123, 255, 0.26);
  --accent: #00ff9c;
  --accent-2: #007bff;
  --text: #ffffff;
  --muted: #cccccc;
  --soft: #8ca39a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --glow: 0 0 20px rgba(0, 255, 156, 0.42);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 520px at 50% -18%, rgba(0, 255, 156, 0.14), transparent 65%),
    radial-gradient(620px 460px at 94% 22%, rgba(0, 123, 255, 0.13), transparent 64%),
    linear-gradient(180deg, #050805 0%, #07110d 45%, #050805 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(rgba(0, 255, 156, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 156, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px);
  opacity: 0.48;
}

a {
  color: inherit;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 156, 0.16), transparent 70%);
  transition: opacity 0.25s ease;
}

.matrix-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  overflow: hidden;
}

.matrix-rain span {
  position: absolute;
  top: -30%;
  width: 1ch;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.25;
  word-break: break-all;
  text-shadow: 0 0 8px rgba(0, 255, 156, 0.7);
  animation: matrixFall linear infinite;
}

.matrix-rain span:nth-child(1) { left: 8%; animation-duration: 16s; }
.matrix-rain span:nth-child(2) { left: 24%; animation-duration: 20s; animation-delay: -6s; }
.matrix-rain span:nth-child(3) { left: 48%; animation-duration: 18s; animation-delay: -10s; }
.matrix-rain span:nth-child(4) { left: 66%; animation-duration: 22s; animation-delay: -3s; }
.matrix-rain span:nth-child(5) { left: 82%; animation-duration: 17s; animation-delay: -12s; }
.matrix-rain span:nth-child(6) { left: 93%; animation-duration: 24s; animation-delay: -8s; }

@keyframes matrixFall {
  to { transform: translateY(160vh); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 36px);
  background: rgba(5, 9, 7, 0.68);
  border-bottom: 1px solid rgba(0, 255, 156, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 8, 6, 0.9);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.brand,
.site-nav,
.header-cta {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bg);
  background: var(--accent);
  font-size: 10px;
  box-shadow: var(--glow);
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
}

.site-nav a,
.nav-tools button {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-tools {
  position: relative;
}

.nav-tools button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.tools-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 260px;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  background: rgba(5, 9, 7, 0.96);
  backdrop-filter: blur(16px);
  padding: 10px;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-tools:hover .tools-dropdown,
.nav-tools:focus-within .tools-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.tools-dropdown a {
  border: 1px solid rgba(0, 255, 156, 0.12);
  background: rgba(0, 255, 156, 0.04);
  padding: 11px 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.site-nav a:hover,
.nav-tools button:hover {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(0, 255, 156, 0.7);
}

.header-cta,
.sticky-audit,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #00150d;
  box-shadow: 0 0 20px rgba(0, 255, 156, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(0, 123, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.44);
}

.header-cta:hover,
.sticky-audit:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 255, 156, 0.42);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  background: currentColor;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(0, 255, 156, 0.26);
  border-radius: 999px;
  background: rgba(0, 255, 156, 0.07);
  color: var(--accent);
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 7.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.56);
}

h1 span,
.stat strong,
.section-heading h2 span {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span {
  border-left: 2px solid var(--accent);
  color: var(--soft);
  padding-left: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.hero-stage {
  min-height: 520px;
  position: relative;
  perspective: 1100px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.52;
}

.orb-green {
  width: 150px;
  height: 150px;
  right: 8%;
  top: 8%;
  background: rgba(0, 255, 156, 0.3);
}

.orb-blue {
  width: 210px;
  height: 210px;
  left: 2%;
  bottom: 6%;
  background: rgba(0, 123, 255, 0.24);
}

.floating-card {
  position: absolute;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 35, 27, 0.86), rgba(5, 12, 9, 0.88));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
}

.card-main {
  inset: 70px 28px auto auto;
  width: min(460px, 92%);
  min-height: 360px;
  padding: 20px;
  transform: perspective(1000px) rotateX(7deg) rotateY(-11deg);
  animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {
  50% { transform: perspective(1000px) rotateX(3deg) rotateY(-6deg) translateY(-14px); }
}

.card-top,
.console-metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.card-top {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.card-top strong {
  color: var(--text);
}

.card-top em {
  font-style: normal;
  color: var(--accent);
}

.signal {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.chart-bars {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin: 36px 0 24px;
  padding: 12px;
  border: 1px solid rgba(0, 255, 156, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.chart-bars i {
  flex: 1;
  display: block;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(0, 255, 156, 0.24);
}

.console-metrics span {
  min-width: 0;
  border: 1px solid rgba(0, 255, 156, 0.12);
  background: rgba(0, 255, 156, 0.05);
  padding: 12px;
  color: var(--soft);
  font-size: 11px;
}

.console-metrics b {
  display: block;
  color: var(--text);
  font-size: 20px;
  margin-bottom: 3px;
}

.mini-card {
  padding: 16px;
  width: 180px;
  animation: floatMini 5.4s ease-in-out infinite;
}

.mini-card b {
  display: block;
  color: var(--accent);
  font-size: 28px;
}

.mini-card span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-card-a {
  top: 16px;
  left: 10px;
  transform: perspective(1000px) rotateY(14deg) rotateX(6deg);
}

.mini-card-b {
  right: 0;
  bottom: 30px;
  transform: perspective(1000px) rotateY(-16deg) rotateX(8deg);
  animation-delay: -2s;
}

@keyframes floatMini {
  50% { translate: 0 -14px; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.78;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 255, 156, 0.1);
  border-bottom: 1px solid rgba(0, 255, 156, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.stat {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid rgba(0, 255, 156, 0.09);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 255, 156, 0.42);
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.mid-cta h2,
.contact-copy h2,
.about-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading p,
.contact-copy p,
.about-copy p,
.mid-cta p {
  color: var(--muted);
  line-height: 1.7;
}

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

.glass-card,
.service-card,
.testimonial-card,
.contact-form {
  border: 1px solid rgba(0, 255, 156, 0.14);
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.28);
}

.service-card {
  min-height: 310px;
  padding: 26px;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.service-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(10deg) scale(1.05);
  border-color: rgba(0, 255, 156, 0.7);
  box-shadow: 0 0 20px rgba(0, 255, 156, 0.34), 0 30px 70px rgba(0, 0, 0, 0.36);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 255, 156, 0.4);
  color: var(--accent);
  background: rgba(0, 255, 156, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.icon-box.blue {
  border-color: rgba(0, 123, 255, 0.5);
  color: #7bbaff;
  background: rgba(0, 123, 255, 0.12);
}

.icon-box.white {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin: 28px 0 12px;
  font-size: 20px;
}

.team-photo {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: rgba(0, 255, 156, 0.08);
  box-shadow: var(--glow);
}

.service-card p,
.service-card li,
.timeline-step p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.process-section {
  width: min(1240px, calc(100% - 32px));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.timeline-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 35px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.1s ease;
}

.timeline.is-visible .timeline-line {
  transform: scaleX(1);
}

.timeline-step {
  position: relative;
  text-align: center;
  padding-top: 82px;
}

.timeline-step span {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: var(--glow);
  font-weight: 900;
}

.timeline-step h3 {
  margin-bottom: 8px;
}

.testimonials-section {
  width: min(980px, calc(100% - 32px));
}

.testimonial-shell {
  position: relative;
  border: 1px solid rgba(0, 255, 156, 0.5);
  background: rgba(0, 255, 156, 0.035);
  padding: clamp(22px, 4vw, 42px);
}

.testimonial-track {
  display: grid;
}

.testimonial-card {
  display: none;
  padding: 26px;
}

.testimonial-card.is-active {
  display: block;
  animation: slideFade 0.42s ease;
}

@keyframes slideFade {
  from { opacity: 0; transform: translateY(10px); }
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.client img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.client strong,
.client span {
  display: block;
}

.client span {
  margin-top: 3px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stars {
  color: var(--accent);
  letter-spacing: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.about-preview,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.about-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  perspective: 900px;
}

.cube-scene {
  position: relative;
  width: 250px;
  height: 250px;
  transform: rotateX(58deg) rotateZ(42deg);
  animation: cubeFloat 7s ease-in-out infinite;
}

.cube-scene span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 255, 156, 0.12), rgba(0, 123, 255, 0.08));
  box-shadow: var(--glow);
}

.cube-scene span:nth-child(2) {
  transform: translate3d(32px, -32px, 45px);
}

.cube-scene span:nth-child(3) {
  transform: translate3d(64px, -64px, 90px);
}

@keyframes cubeFloat {
  50% { transform: rotateX(52deg) rotateZ(37deg) translateY(-18px); }
}

.mid-cta {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px);
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 255, 156, 0.12), rgba(0, 123, 255, 0.08));
  backdrop-filter: blur(14px);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points span {
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 255, 156, 0.18);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 13px 12px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 156, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
}

.sticky-audit {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 45;
  min-height: 40px;
  background: var(--accent);
  color: #00150d;
  box-shadow: var(--glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.has-scrolled .sticky-audit {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 255, 156, 0.1);
  color: var(--accent);
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--glow);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(16px, 4vw, 36px);
  border-top: 1px solid rgba(0, 255, 156, 0.12);
  color: var(--soft);
  font-size: 12px;
}

.site-footer strong {
  color: var(--accent);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.policy-page {
  padding-top: 128px;
}

.policy-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px);
}

.policy-card h1 {
  margin: 18px 0 10px;
  max-width: 100%;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.policy-updated {
  color: var(--soft);
  margin-bottom: 34px;
}

.policy-card section {
  border-top: 1px solid rgba(0, 255, 156, 0.12);
  padding-top: 22px;
  margin-top: 22px;
}

.policy-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.policy-card p {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card a {
  color: var(--accent);
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  animation: revealRise 0.75s ease both;
}

@keyframes revealRise {
  from {
    opacity: 1;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(5, 9, 7, 0.96);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-tools button {
    border: 1px solid rgba(0, 255, 156, 0.12);
    padding: 13px 12px;
    text-align: left;
    width: 100%;
  }

  .tools-dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 8px;
    padding: 8px;
  }

  .hero-grid,
  .about-preview,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .timeline-line {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-stage {
    min-height: 390px;
  }

  .card-main {
    inset: 38px auto auto 0;
    width: 100%;
  }

  .mini-card {
    width: 145px;
  }

  .mini-card-a {
    top: 0;
  }

  .mini-card-b {
    bottom: 0;
  }

  .stats-band,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 255, 156, 0.09);
  }

  .console-metrics,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions .btn,
  .mid-cta .btn,
  .contact-form .btn {
    width: 100%;
  }

  .sticky-audit {
    left: 16px;
    right: 82px;
    bottom: 20px;
  }
}
