/* ==========================================================================
   Avomu — Software & Sound  ·  3D design system (v2)
   Self-contained: no external requests. New palette + depth/3D effects.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --bg:        #060911;
  --bg-2:      #0a0f1e;
  --panel:     rgba(255, 255, 255, 0.04);
  --panel-2:   rgba(255, 255, 255, 0.065);
  --glass:     rgba(16, 22, 40, 0.55);
  --border:    rgba(255, 255, 255, 0.10);
  --border-2:  rgba(255, 255, 255, 0.18);

  /* Text */
  --text:      #e8ecf7;
  --heading:   #ffffff;
  --muted:     #97a4c0;
  --muted-2:   #6b779a;

  /* New brand colours: blue -> teal -> green, warm orange accent */
  --blue:   #4f7bff;
  --teal:   #16d3c6;
  --green:  #38e39b;
  --orange: #ff8a3d;
  --pink:   #ff5d8f;

  --brand:      linear-gradient(120deg, #4f7bff 0%, #16d3c6 52%, #38e39b 100%);
  --brand-warm: linear-gradient(120deg, #4f7bff 0%, #16d3c6 40%, #ff8a3d 100%);
  --brand-soft: linear-gradient(120deg, rgba(79,123,255,.18), rgba(22,211,198,.16), rgba(56,227,155,.16));
  --orange-soft: linear-gradient(120deg, rgba(255,138,61,.20), rgba(255,93,143,.16));

  --radius:    20px;
  --radius-sm: 13px;
  --maxw:      1180px;

  /* Layered, deep shadows for the 3D feel */
  --shadow-1: 0 2px 6px rgba(0,0,0,.30);
  --shadow-2: 0 10px 24px -8px rgba(0,0,0,.55);
  --shadow-3: 0 30px 70px -28px rgba(0,0,0,.80), 0 8px 24px -12px rgba(0,0,0,.5);
  --glow:     0 0 0 1px rgba(79,123,255,.25), 0 20px 60px -20px rgba(22,211,198,.45);

  --ff-sans: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "SF Mono", "JetBrains Mono", "Cascadia Code", ui-monospace, "Consolas", monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* Always reserve the scrollbar gutter so the layout doesn't shift between short and tall pages */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-y: scroll; scrollbar-gutter: stable; }

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Deep 3D ambient background: colour orbs + grid + noise */
body::before {
  content: "";
  position: fixed; inset: -20% -10% auto -10%; height: 120vh; z-index: -3;
  background:
    radial-gradient(38% 30% at 12% 8%,  rgba(79,123,255,.32), transparent 62%),
    radial-gradient(34% 30% at 88% 2%,  rgba(255,138,61,.20), transparent 60%),
    radial-gradient(46% 42% at 72% 60%, rgba(22,211,198,.22), transparent 62%),
    radial-gradient(50% 45% at 20% 90%, rgba(56,227,155,.18), transparent 64%),
    var(--bg);
  filter: saturate(115%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0)      scale(1); }
  50%  { transform: translate3d(-1.5%,1%,0) scale(1.04); }
  100% { transform: translate3d(1.5%,-1%,0) scale(1.02); }
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 22%, #000 24%, transparent 80%);
}

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 62px 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono);
  font-size: 12.5px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--teal);
  padding: 8px 15px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border);
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px rgba(56,227,155,.8); }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.1; letter-spacing: -0.7px; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.3px; font-weight: 700; }
p  { color: var(--text); }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }

.grad-text {
  background: var(--brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text.warm { background: var(--brand-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons (3D) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.btn--primary {
  color: #04121a; background: var(--brand);
  box-shadow: 0 12px 26px -8px rgba(22,211,198,.55), 0 3px 0 rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn--primary:hover { box-shadow: 0 20px 44px -10px rgba(22,211,198,.7), 0 3px 0 rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--warm { color:#1a0d03; background: linear-gradient(120deg,#ff8a3d,#ff5d8f); box-shadow: 0 12px 26px -8px rgba(255,93,143,.5), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--ghost { color: var(--text); background: var(--glass); border-color: var(--border-2); backdrop-filter: blur(8px); box-shadow: var(--shadow-1); }
.btn--ghost:hover { background: var(--panel-2); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(160%) blur(16px);
  background: rgba(6,9,17,.66);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--heading); letter-spacing: -.3px; }
.brand .logo { width: 36px; height: 36px; flex: 0 0 auto; filter: drop-shadow(0 4px 10px rgba(22,211,198,.4)); }
.brand small { display: block; font-size: 10.5px; letter-spacing: 2.6px; color: var(--muted-2); text-transform: uppercase; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.nav-cta) {
  color: var(--muted); font-size: 0.95rem; font-weight: 600;
  padding: 9px 14px; border-radius: 11px; transition: color .15s, background .15s;
}
.nav-links a:not(.nav-cta):hover, .nav-links a:not(.nav-cta)[aria-current="page"] { color: var(--heading); background: var(--panel); }
/* The CTA button keeps its own dark-on-gradient styling (never the muted/white link colour) */
.nav-links a.nav-cta { color: #04121a; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; background: var(--glass); border: 1px solid var(--border);
  color: var(--text); width: 46px; height: 42px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 78px 0 92px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 58px; align-items: center; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.hero-meta .tile {
  padding: 16px 20px; border-radius: 16px; min-width: 116px;
  background: var(--glass); border: 1px solid var(--border);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.hero-meta .n { font-size: 1.7rem; font-weight: 800; letter-spacing: -.5px; }
.hero-meta .l { font-size: .78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 1.4px; margin-top: 2px; }

/* 3D tilt system */
.scene { perspective: 1400px; }
.tilt { transform-style: preserve-3d; transition: transform .25s ease; will-change: transform; }

/* Visual panel (glass, floating, 3D) */
.visual {
  position: relative; border-radius: 24px;
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255,255,255,.14);
  overflow: hidden; backdrop-filter: blur(10px);
  transform: rotateY(-13deg) rotateX(7deg);
}
.scene:hover .visual { }
.visual__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted-2);
  background: rgba(0,0,0,.2);
}
.visual__bar .dots { display: flex; gap: 6px; margin-right: 6px; }
.visual__bar .dots i { width: 11px; height: 11px; border-radius: 50%; }
.visual__bar .dots i:nth-child(1){ background:#ff5f57; } .visual__bar .dots i:nth-child(2){ background:#febc2e; } .visual__bar .dots i:nth-child(3){ background:#28c840; }
.visual__body { padding: 28px 26px 32px; transform: translateZ(40px); }

/* Floating badge on the visual */
.float-badge {
  position: absolute; right: -14px; top: 26px; z-index: 3;
  display: flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-3); backdrop-filter: blur(10px);
  font-size: .82rem; font-weight: 700; color: var(--heading);
  transform: translateZ(70px);
  animation: floaty 5s ease-in-out infinite;
}
.float-badge svg { width: 18px; height: 18px; stroke: var(--green); }
.float-badge.two { right: auto; left: -16px; top: auto; bottom: 30px; animation-delay: 1.2s; }
.float-badge.two svg { stroke: var(--orange); }
@keyframes floaty { 0%,100%{ transform: translateZ(70px) translateY(0);} 50%{ transform: translateZ(70px) translateY(-10px);} }

/* Equalizer + waveform */
.equalizer { display: flex; align-items: flex-end; gap: 5px; height: 108px; margin-bottom: 22px; }
.equalizer span { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--brand); animation: eq 1.4s ease-in-out infinite; transform-origin: bottom; box-shadow: 0 0 12px rgba(22,211,198,.5); }
@keyframes eq { 0%,100% { height: 20%; } 50% { height: 100%; } }
.waveform { width: 100%; height: 54px; margin-bottom: 20px; }
.waveform path { fill: none; stroke: url(#wf); stroke-width: 2.6; stroke-linecap: round; }

.codelines { font-family: var(--ff-mono); font-size: 13px; line-height: 1.95; }
.codelines .ln { color: var(--muted); white-space: nowrap; }
.codelines .k { color: var(--blue); } .codelines .s { color: var(--green); } .codelines .f { color: var(--teal); } .codelines .c { color: var(--muted-2); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  backdrop-filter: blur(6px);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255,255,255,.12); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.99rem; }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: var(--brand-soft); border: 1px solid var(--border-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 20px -8px rgba(79,123,255,.5);
}
.card .ico svg { width: 27px; height: 27px; stroke: #fff; }
.card .ico.warm { background: var(--orange-soft); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 20px -8px rgba(255,138,61,.5); }
.card .num { position: absolute; top: 22px; right: 26px; font-family: var(--ff-mono); font-size: .9rem; color: var(--muted-2); }

.feature-list { list-style: none; padding: 0; margin-top: 14px; }
.feature-list li { display: flex; gap: 12px; padding: 8px 0; color: var(--muted); font-size: .96rem; }
.feature-list li::before {
  content: ""; flex: 0 0 auto; width: 21px; height: 21px; margin-top: 2px;
  background: var(--brand); border-radius: 7px; box-shadow: 0 4px 10px -3px rgba(22,211,198,.6);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.6 4.4 12.45l1.4-1.4 3.75 3.75 8.25-8.25 1.4 1.4z'/%3E%3C/svg%3E") center/64% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.6 4.4 12.45l1.4-1.4 3.75 3.75 8.25-8.25 1.4 1.4z'/%3E%3C/svg%3E") center/64% no-repeat;
}

.sec-head { max-width: 64ch; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { margin-top: 14px; color: var(--muted); }

/* ---------- Pricing / SaaS plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.plan.featured { border-color: transparent; background:
  linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
  var(--brand) border-box;
  box-shadow: var(--glow), var(--shadow-3); transform: translateY(-8px); }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: .72rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: #04121a; background: var(--brand); padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-2); }
.plan h3 { font-size: 1.15rem; }
.plan .price { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin: 10px 0 2px; }
.plan .price small { font-size: .95rem; font-weight: 600; color: var(--muted-2); }
.plan .price-note { color: var(--muted-2); font-size: .85rem; }
.plan .feature-list { margin-top: 20px; flex: 1; }
.plan .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ---------- Trust band ---------- */
.trust {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.014));
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255,255,255,.1);
}
.trust-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.trust-copy { padding: 48px 46px; }
.trust-side { padding: 48px 46px; border-left: 1px solid var(--border); background: rgba(0,0,0,.22); }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 600; color: var(--text); padding: 10px 15px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--border); box-shadow: var(--shadow-1); backdrop-filter: blur(6px);
}
.badge svg { width: 17px; height: 17px; stroke: var(--teal); }

.facts { list-style: none; padding: 0; }
.facts li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.facts li:last-child { border-bottom: 0; }
.facts .k { color: var(--muted-2); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.2px; }
.facts .v { color: var(--heading); font-weight: 700; text-align: right; }
.facts .v a { color: var(--teal); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-1);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--border-2); background: var(--panel-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; color: var(--heading);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 26px; padding: 64px 44px; text-align: center; position: relative; overflow: hidden;
  background: var(--brand-soft); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255,255,255,.12);
}
.cta-band::before { content:""; position:absolute; inset:-40% 30% auto; height:70%; background: radial-gradient(closest-side, rgba(22,211,198,.35), transparent); filter: blur(30px); z-index:0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { margin: 16px auto 0; max-width: 54ch; color: var(--muted); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 4px 0; }
.contact-item .ico { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); border: 1px solid var(--border-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.contact-item .ico svg { width: 22px; height: 22px; stroke: #fff; }
.contact-item .k { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted-2); }
.contact-item a, .contact-item .v { color: var(--heading); font-weight: 700; }
.contact-item a:hover { color: var(--teal); }
.field { display:block; margin-bottom: 14px; }
.field span { display:block; font-size:.85rem; color: var(--muted-2); margin-bottom:6px; }
.field input, .field textarea { width:100%; padding:13px 15px; border-radius:13px; background: rgba(0,0,0,.25); border:1px solid var(--border); color:var(--text); font:inherit; }
.field input:focus, .field textarea:focus { outline:none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,211,198,.18); }

/* ---------- Legal / long-form ---------- */
.legal { max-width: 840px; margin-inline: auto; }
.legal .updated { color: var(--muted-2); font-family: var(--ff-mono); font-size: .85rem; margin-top: 8px; }
.legal h2 { font-size: 1.45rem; margin-top: 46px; margin-bottom: 12px; }
.legal h3 { font-size: 1.12rem; margin-top: 26px; margin-bottom: 8px; color: var(--text); }
.legal p, .legal li { color: var(--muted); font-size: 1.0rem; }
.legal p { margin-top: 12px; }
.legal ul, .legal ol { margin-top: 12px; padding-left: 22px; }
.legal li { margin-top: 7px; }
.legal a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--text); }
.legal .toc { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px 26px; margin-top: 26px; box-shadow: var(--shadow-1); }
.legal .toc ol { margin-top: 8px; }
.legal .toc a { text-decoration: none; }
.legal .note { margin-top: 20px; padding: 18px 20px; border-radius: var(--radius-sm); border: 1px solid var(--border-2); background: var(--panel); }

.page-hero { padding: 70px 0 22px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero p { margin-top: 16px; }

/* Policy index cards */
.policy-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.policy-card { display:block; }
.policy-card .ico { width:44px;height:44px;border-radius:12px;display:grid;place-items:center;background:var(--brand-soft);border:1px solid var(--border-2);margin-bottom:16px; }
.policy-card .ico svg { width:22px;height:22px;stroke:#fff; }
.policy-card h3 { font-size:1.05rem; }
.policy-card p { font-size:.92rem; margin-top:6px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 44px; background: rgba(0,0,0,.34); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; padding: 60px 0 42px; }
.footer-brand .lead { font-size: .96rem; margin-top: 16px; max-width: 36ch; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted-2); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: .95rem; }
.footer-col a:hover { color: var(--heading); }
.footer-legal { border-top: 1px solid var(--border); padding: 22px 0 36px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; }
.footer-legal p { font-size: .86rem; color: var(--muted-2); }
.footer-legal .idline { font-family: var(--ff-mono); font-size: .82rem; color: var(--muted); }
.footer-legal .idline b { color: var(--text); font-weight: 700; }

/* ---------- Utilities ---------- */
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.placeholder { color: var(--orange); font-style: italic; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.pill { display:inline-flex;align-items:center;gap:8px;font-size:.8rem;font-weight:700;color:var(--heading);background:var(--glass);border:1px solid var(--border);padding:7px 13px;border-radius:999px;box-shadow:var(--shadow-1); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-side { border-left: 0; border-top: 1px solid var(--border); }
  .grid.cols-3, .grid.cols-4, .plans, .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .visual { transform: none; }
  .float-badge, .float-badge.two { position: static; transform: none; display: inline-flex; margin: 6px 6px 0 0; animation: none; }
  .visual__body { transform: none; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(8,11,22,.98); border-bottom: 1px solid var(--border); padding: 14px 20px 22px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 580px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .plans, .policy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 68px 0; }
  .trust-copy, .trust-side, .cta-band { padding: 34px 26px; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .visual { transform: none; }
}
