*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }

:root {
  --bg:         #080810;
  --bg-soft:    #0d0d18;
  --surface:    #111120;
  --surface-2:  #16162a;
  --border:     rgba(255,255,255,.07);
  --border-red: rgba(220,20,60,.25);
  --border-grey:rgba(200,200,200,.18);
  --text:       #f2f2fa;
  --text-2:     #9898b8;
  --text-3:     #52526e;
  --red:        #dc143c;
  --red-2:      #ff3355;
  --red-glow:   rgba(220,20,60,.15);
  --grey-glow:  rgba(200,200,200,.09);
  --grey:       #3a3a52;
  --radius:     16px;
  --radius-sm:  10px;
  --nav-h:      64px;
}

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grey); border-radius: 4px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(8,8,16,.82);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: border-color .4s;
}
nav.scrolled { border-color: var(--border-red); }

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem;
  letter-spacing: -.01em; color: var(--text);
}
.logo-badge {
  width: 32px; height: 32px; background: var(--red); border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.logo-badge svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-center { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-family: 'Figtree', sans-serif; font-size: .875rem; font-weight: 500;
  color: var(--text-2); padding: .45rem .9rem; border-radius: 8px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-solutions { position: relative; }
.nav-solutions > .nav-link::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor; margin-left: .4rem; vertical-align: middle;
  opacity: .6; transition: transform .2s;
}
.nav-solutions:hover > .nav-link::after { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + .6rem); left: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 290px; padding: .5rem;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.nav-solutions:hover .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex; align-items: center; gap: .9rem;
  padding: .85rem 1rem; border-radius: var(--radius-sm); transition: background .15s;
}
.nav-dd-item:hover { background: rgba(220,20,60,.08); }
.nav-dd-item.grey:hover { background: rgba(200,200,200,.05); }
.nav-dd-icon {
  width: 36px; height: 36px; background: var(--red-glow); border: 1px solid var(--border-red);
  border-radius: 9px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0;
}
.nav-dd-icon.g { background: var(--grey-glow); border-color: var(--border-grey); }
.nav-dd-text strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: .1rem; }
.nav-dd-text small { font-size: .75rem; color: var(--text-2); }
.nav-dd-divider { height: 1px; background: var(--border); margin: .35rem .5rem; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Outfit', sans-serif; font-size: .875rem; font-weight: 600;
  color: #fff; background: var(--red); padding: .5rem 1.25rem; border-radius: 8px;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-2); box-shadow: 0 8px 24px var(--red-glow); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(220,20,60,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(80,40,80,.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(20,20,80,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }

.hero-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(220,20,60,.1); border: 1px solid rgba(220,20,60,.22);
  border-radius: 100px; padding: .35rem 1rem .35rem .6rem;
  font-size: .78rem; font-weight: 500; color: #ff7088; margin-bottom: 2.5rem;
  animation: fadeUp .6s ease both;
}
.chip-dot {
  width: 20px; height: 20px; background: var(--red); border-radius: 50%;
  display: grid; place-items: center; font-size: .6rem; color: #fff; flex-shrink: 0;
}
.hero h1 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.0; letter-spacing: -.03em;
  margin-bottom: 2rem; animation: fadeUp .6s .08s ease both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #fff 30%, var(--red-2) 70%, #ff8a70 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 .muted { color: var(--text-2); }
.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.2rem); color: var(--text-2);
  max-width: 560px; margin: 0 auto 3rem; line-height: 1.7; font-weight: 300;
  animation: fadeUp .6s .16s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-actions {
  display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .95rem;
  color: #fff; background: var(--red); padding: .85rem 2rem; border-radius: 10px;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-primary:hover { background: var(--red-2); box-shadow: 0 12px 32px rgba(220,20,60,.3); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .95rem;
  color: var(--text); background: transparent; padding: .85rem 2rem; border-radius: 10px;
  border: 1px solid var(--border); transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }

.hero-stats {
  display: flex; gap: 3rem; justify-content: center; margin-top: 5rem;
  padding-top: 3rem; border-top: 1px solid var(--border); flex-wrap: wrap;
  animation: fadeUp .6s .36s ease both;
}
.stat-item { text-align: center; }
.stat-value { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2.2rem; letter-spacing: -.04em; color: var(--text); line-height: 1.1; }
.stat-value span { color: var(--red-2); }
.stat-label { font-size: .8rem; color: var(--text-3); font-weight: 400; margin-top: .3rem; letter-spacing: .02em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* SHARED */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red-2); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--red-2); border-radius: 2px; }
.section-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1rem; }
.section-desc { font-size: .95rem; color: var(--text-2); line-height: 1.75; font-weight: 300; max-width: 520px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* INTRO */
.intro-section { padding: 7rem 2rem; max-width: 1160px; margin: 0 auto; }
.intro-header { text-align: center; margin-bottom: 5rem; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.intro-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 2rem; transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.intro-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1); border-radius: 3px 3px 0 0;
}
.intro-card:hover { border-color: var(--border-red); box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px var(--border-red); transform: translateY(-4px); }
.intro-card:hover::before { transform: scaleX(1); }
.intro-icon { width: 52px; height: 52px; background: var(--red-glow); border: 1px solid var(--border-red); border-radius: 14px; display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 1.75rem; }
.intro-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: .75rem; }
.intro-card p { font-size: .875rem; color: var(--text-2); line-height: 1.8; font-weight: 300; }
.intro-card-tag { display: inline-block; margin-top: 1.5rem; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--red-2); }

/* FEATURE SECTIONS */
.feature-section { padding: 5rem 2rem 7rem; max-width: 1160px; margin: 0 auto; }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-text h2 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1.25rem; }
.feature-text h2 .accent { color: var(--red-2); }
.feature-text h2 .accent-grey { color: #aaaaaa; }
.feature-text p { font-size: .95rem; color: var(--text-2); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text-2); font-weight: 400; }
.feature-list li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: .1rem;
  background: var(--red-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3355' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 12px;
  border: 1px solid var(--border-red);
}
.feature-list.grey-checks li::before {
  background: var(--grey-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-color: var(--border-grey);
}

.fv-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.4); }
.fv-header { background: var(--surface-2); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .75rem; }
.fv-dots { display: flex; gap: .35rem; }
.fv-dot { width: 10px; height: 10px; border-radius: 50%; }
.fv-dot-r { background: rgba(255,95,87,.8); } .fv-dot-y { background: rgba(255,189,46,.8); } .fv-dot-g { background: rgba(40,201,68,.8); }
.fv-title { flex: 1; text-align: center; font-size: .75rem; color: var(--text-3); font-weight: 500; }
.fv-body { padding: 1.5rem; }

.pipeline { display: flex; flex-direction: column; gap: .75rem; }
.pipe-step { display: flex; align-items: center; gap: 1rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .9rem 1.1rem; }
.pipe-step.done { border-color: rgba(40,201,68,.3); }
.pipe-step.active { border-color: rgba(220,20,60,.35); background: rgba(220,20,60,.04); }
.pipe-icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: .9rem; flex-shrink: 0; }
.pipe-icon.done-icon { background: rgba(40,201,68,.1); } .pipe-icon.active-icon { background: rgba(220,20,60,.1); }
.pipe-text { flex: 1; }
.pipe-name { font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .1rem; }
.pipe-detail { font-size: .72rem; color: var(--text-3); }
.pipe-badge { font-size: .65rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .18rem .55rem; border-radius: 6px; }
.pb-done { background: rgba(40,201,68,.1); color: #28c944; }
.pb-active { background: rgba(220,20,60,.12); color: var(--red-2); }

/* Vertigo scan card */
.scan-visual { display: flex; flex-direction: column; gap: .55rem; }
.scan-line { display: flex; align-items: center; gap: .8rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: .65rem .9rem; font-size: .73rem; }
.scan-line.flagged { border-color: rgba(200,200,200,.2); background: rgba(200,200,200,.02); }
.scan-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sd-ok { background: rgba(40,201,68,.7); } .sd-flag { background: #b0b0b0; }
.scan-url { flex: 1; color: var(--text-2); font-family: 'Outfit', monospace; }
.scan-badge { font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .12rem .42rem; border-radius: 5px; }
.sb-api { background: rgba(40,80,200,.12); color: #7090ff; }
.sb-admin { background: rgba(200,200,200,.1); color: #b0b0b0; }
.sb-form { background: rgba(40,160,120,.1); color: #40c898; }
.sb-dash { background: rgba(150,80,200,.1); color: #c080f0; }
.scan-score { font-size: .7rem; color: var(--text-3); min-width: 56px; text-align: right; }
.scan-score.high { color: #d0d0d0; font-weight: 600; }
.scan-footer { display: flex; justify-content: space-between; align-items: center; padding: .55rem .9rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; font-size: .7rem; color: var(--text-3); margin-top: .1rem; }
.scan-footer strong { color: #aaa; }

/* Automation metrics */
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.metric-tile { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; }
.metric-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.6rem; letter-spacing: -.04em; color: var(--text); margin-bottom: .2rem; }
.metric-num span { color: var(--red-2); }
.metric-label { font-size: .72rem; color: var(--text-3); }
.metric-bar { margin-top: .65rem; height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--red-2)); border-radius: 3px; animation: barGrow 1.5s 1s cubic-bezier(.22,1,.36,1) both; }
@keyframes barGrow { from { width: 0; } }

/* CAPABILITIES */
.cap-section { padding: 6rem 2rem 8rem; background: var(--bg-soft); }
.cap-inner { max-width: 1160px; margin: 0 auto; }
.cap-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cap-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: border-color .25s, transform .25s, box-shadow .25s; display: flex; flex-direction: column; gap: 1rem; }
.cap-card:hover { border-color: rgba(220,20,60,.3); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,.25); }
.cap-card-icon { font-size: 1.5rem; width: 48px; height: 48px; display: grid; place-items: center; background: var(--red-glow); border: 1px solid var(--border-red); border-radius: 12px; }
.cap-card-icon.g { background: var(--grey-glow); border-color: var(--border-grey); }
.cap-card h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: -.01em; }
.cap-card p { font-size: .83rem; color: var(--text-2); line-height: 1.75; font-weight: 300; flex: 1; }
.cap-card-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; color: var(--red-2); opacity: 0; transition: opacity .2s; }
.cap-card-link.grey-link { color: #aaa; }
.cap-card:hover .cap-card-link { opacity: 1; }
.cap-card-link::after { content: '→'; }

/* SOLUTIONS */
.solutions-section { padding: 7rem 2rem 8rem; max-width: 1160px; margin: 0 auto; }
.solutions-header { text-align: center; margin-bottom: 4rem; }

.solution-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow .3s;
}
.solution-card.flagship:hover { box-shadow: 0 0 0 1px var(--border-red), 0 32px 80px rgba(0,0,0,.4); }
.solution-card.secondary { border-radius: 20px; }
.solution-card.secondary:hover { box-shadow: 0 0 0 1px var(--border-grey), 0 24px 60px rgba(0,0,0,.3); }

.sc-content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.solution-card.secondary .sc-content { padding: 3rem; gap: 1.25rem; }

.sc-tag {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 6px; padding: .3rem .7rem; width: fit-content;
}
.sc-tag.red { color: var(--red-2); background: var(--red-glow); border: 1px solid var(--border-red); }
.sc-tag.grey { color: #b0b0b0; background: var(--grey-glow); border: 1px solid var(--border-grey); }

.sc-content h2 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
.solution-card.flagship .sc-content h2 { font-size: 2.5rem; }
.solution-card.secondary .sc-content h2 { font-size: 2rem; font-weight: 700; }
.sc-content p { font-size: .95rem; color: var(--text-2); line-height: 1.8; font-weight: 300; max-width: 400px; }
.solution-card.secondary .sc-content p { font-size: .9rem; }
.sc-url { font-size: .82rem; color: var(--text-3); font-family: 'Outfit', sans-serif; }
.sc-url .red { color: var(--red-2); font-weight: 600; }
.sc-url .grey { color: #a0a0a0; font-weight: 600; }

.sc-visual {
  border-left: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; padding: 3rem; position: relative; overflow: hidden;
}
.solution-card.flagship .sc-visual { background: linear-gradient(135deg, var(--surface-2) 0%, rgba(220,20,60,.06) 100%); }
.solution-card.secondary .sc-visual { background: linear-gradient(135deg, var(--surface-2) 0%, rgba(160,160,160,.04) 100%); }
.sc-visual::before {
  content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.solution-card.flagship .sc-visual::before { background: radial-gradient(circle, rgba(220,20,60,.1), transparent 70%); }
.solution-card.secondary .sc-visual::before { background: radial-gradient(circle, rgba(160,160,160,.07), transparent 70%); }

.sc-logo {
  font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -.04em;
  position: relative; z-index: 1; text-align: center;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.solution-card.flagship .sc-logo { font-size: 4rem; background: linear-gradient(135deg, var(--text) 30%, var(--red-2) 100%); }
.solution-card.secondary .sc-logo { font-size: 3.2rem; background: linear-gradient(135deg, #eeeeee 20%, #888888 100%); }
.sc-logo small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; -webkit-text-fill-color: var(--text-3); margin-top: .25rem; }

/* CTA */
.cta-section { padding: 6rem 2rem 7rem; }
.cta-inner {
  max-width: 1160px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(220,20,60,.12) 0%, rgba(100,20,60,.08) 50%, rgba(20,20,60,.06) 100%);
  border: 1px solid var(--border-red); border-radius: 28px; padding: 5rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(220,20,60,.1), transparent 70%); pointer-events: none;
}
.cta-inner h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.035em; line-height: 1.1; margin-bottom: 1.25rem; position: relative; }
.cta-inner p { font-size: 1rem; color: var(--text-2); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300; position: relative; }
.cta-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 3rem 2.5rem 2.5rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: start; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; margin-bottom: .5rem; }
.footer-logo span { color: var(--red-2); }
.footer-tagline { font-size: .8rem; color: var(--text-3); line-height: 1.5; max-width: 220px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .85rem; color: var(--text-2); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: var(--text-3); }
.footer-disclosure { font-size: .72rem; color: var(--text-3); max-width: 400px; text-align: right; line-height: 1.6; }

@media (max-width: 960px) {
  nav { padding: 0 1.5rem; } .nav-center { display: none; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 3rem; }
  .feature-split.reverse { direction: ltr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .solution-card { grid-template-columns: 1fr; }
  .sc-visual { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .intro-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .cta-inner { padding: 3rem 1.5rem; }
  .sc-content { padding: 2.5rem 2rem !important; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-disclosure { text-align: left; }
}
