/* =========================================================
   CREATIVE CRAFT — agency stylesheet (Axora blue system)
   Dark navy + electric blue, geometric/technical, matching
   the Axora product mark.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* --- color --- */
  --void:        #060a16;
  --deep:        #0b1226;
  --panel:       #101a33;
  --panel-line:  #1e2c4d;
  --blue-bright: #3f8bff;
  --blue:        #2f6df0;
  --blue-deep:   #16305e;
  --ice:         #eef2fb;
  --muted:       #8a97b8;
  --muted-dim:   #566082;

  /* --- type --- */
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
  --radius: 14px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }

body{
  background:var(--void);
  color:var(--ice);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}

/* faint technical grid texture, echoes a blueprint / circuit feel */
body::before{
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  opacity:.35;
  background-image:
    linear-gradient(rgba(63,139,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,139,255,.05) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(circle at 50% 0%, black, transparent 75%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{ font-family:var(--display); font-weight:600; margin:0; color:var(--ice); letter-spacing:-.01em; }
p{ margin:0; }

.container{
  max-width:var(--maxw); margin:0 auto;
  padding:0 clamp(1.25rem, 4vw, 2.5rem);
  position:relative; z-index:1;
}

.eyebrow{
  font-family:var(--mono);
  font-size:.72rem; font-weight:500; letter-spacing:.22em; text-transform:uppercase;
  color:var(--blue-bright);
  display:inline-flex; align-items:center; gap:.75rem;
}
.eyebrow::before{ content:"//"; color:var(--muted-dim); }

/* =========================== NAV =========================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:1.35rem 0;
  transition:background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(6,10,22,.85); backdrop-filter:blur(14px) saturate(120%);
  padding:.85rem 0; border-color:var(--panel-line);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; }

.brand{ display:flex; align-items:center; gap:.65rem; line-height:1; }
.brand .mark{
  height:34px; width:auto; flex-shrink:0; object-fit:contain;
}
footer .brand .mark{ height:38px; }
.brand .word{ display:flex; flex-direction:column; }
.brand .wordmark{ font-family:var(--display); font-weight:700; font-size:1.35rem; color:var(--ice); }
.brand .subtag{
  margin-top:.3rem; font-family:var(--mono);
  font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted);
}

.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{
  font-size:.87rem; font-weight:500; color:var(--muted);
  position:relative; padding:.2rem 0; transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background:var(--blue-bright); transform:scaleX(0); transform-origin:right;
  transition:transform .3s ease;
}
.nav-links a:hover{ color:var(--ice); }
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-links a.active{ color:var(--blue-bright); }

.nav-cta{
  font-size:.82rem; font-weight:600; padding:.65rem 1.4rem;
  border:1px solid var(--blue-deep); border-radius:8px; color:var(--blue-bright);
  transition:all .3s ease; white-space:nowrap;
}
.nav-cta:hover{ background:var(--blue); border-color:var(--blue); color:#fff; }

.nav-burger{ display:none; }

/* =========================== BUTTONS =========================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:.95rem 1.9rem; border-radius:8px; font-size:.9rem; font-weight:600;
  border:1px solid transparent;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}
.btn-primary{
  background:linear-gradient(135deg, var(--blue-bright), var(--blue) 70%);
  color:#fff; box-shadow:0 8px 24px -8px rgba(63,139,255,.5);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(63,139,255,.65); }
.btn-ghost{ border-color:var(--panel-line); color:var(--ice); }
.btn-ghost:hover{ border-color:var(--blue-bright); color:var(--blue-bright); transform:translateY(-2px); }

/* =========================== AMBIENT GLOW FIELD =========================== */
.orb-field{ position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none; }
.orb{ position:absolute; border-radius:50%; filter:blur(70px); animation:drift 16s ease-in-out infinite; }
@keyframes drift{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(20px,-26px) scale(1.08); }
}

/* =========================== HERO =========================== */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding:9rem 0 6rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(47,109,240,.28) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(63,139,255,.18) 0%, transparent 45%),
    var(--void);
  overflow:hidden;
}
.hero-inner{ max-width:860px; position:relative; z-index:2; }

.hero-mark{ width:120px; margin-bottom:2rem; opacity:0; animation:fade-up .8s ease .1s forwards; }
.hero-mark svg{ width:100%; height:auto; }
.hero-mark path{
  stroke-dasharray:340; stroke-dashoffset:340;
  animation:draw-mark 1.6s ease .3s forwards;
}
@keyframes draw-mark{ to{ stroke-dashoffset:0; } }

.hero h1.headline{
  font-size:clamp(2.3rem, 5vw, 3.6rem); font-weight:700; line-height:1.12;
  margin:1.6rem 0 1.4rem; max-width:16ch;
  opacity:0; animation:fade-up .8s ease .5s forwards;
}
.hero h1.headline .accent{
  background:linear-gradient(90deg, var(--blue-bright), #7db3ff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero .lede{
  font-size:1.1rem; color:var(--muted); max-width:54ch; margin-bottom:2.4rem;
  opacity:0; animation:fade-up .8s ease .7s forwards;
}
.hero .cta-row{ display:flex; gap:1rem; flex-wrap:wrap; opacity:0; animation:fade-up .8s ease .9s forwards; }
.hero-eyebrow{ opacity:0; animation:fade-up .7s ease .05s forwards; }

@keyframes fade-up{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
@keyframes fade-left{ from{ opacity:0; transform:translateX(60px);} to{ opacity:1; transform:translateX(0);} }

/* =========================== SECTION SHELL =========================== */
.section{ position:relative; padding:7.5rem 0; }
.section-alt{ background:var(--deep); }
.section-head{ max-width:640px; margin-bottom:3.6rem; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.5rem); margin-top:1rem; }
.section-head p{ color:var(--muted); margin-top:1rem; font-size:1.02rem; }

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

/* =========================== CARDS =========================== */
.grid{ display:grid; gap:1.5rem; }
.grid > *{ min-width:0; }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }

.card{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:var(--radius);
  padding:2.2rem; transition:border-color .3s ease, transform .3s ease;
  position:relative; overflow:hidden;
}
.card::before{
  content:""; position:absolute; top:-40%; right:-40%; width:180px; height:180px; border-radius:50%;
  background:radial-gradient(circle, rgba(63,139,255,.16), transparent 70%);
  opacity:0; transition:opacity .4s ease;
}
.card:hover{ border-color:var(--blue-deep); transform:translateY(-4px); }
.card:hover::before{ opacity:1; }
.card.featured{ border-color:var(--blue); box-shadow:0 20px 60px -25px rgba(47,109,240,.45); }
.card.featured::after{
  content:"FLAGSHIP PRODUCT"; position:absolute; top:1.4rem; right:1.4rem;
  font-family:var(--mono); font-size:.6rem; letter-spacing:.15em; color:var(--blue-bright);
  border:1px solid var(--blue-deep); padding:.3rem .6rem; border-radius:100px;
}

.icon-mark{
  width:46px; height:46px; border-radius:10px; border:1px solid var(--blue-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom:1.4rem;
  color:var(--blue-bright); font-size:1.3rem;
}
.card h3{ font-size:1.25rem; margin-bottom:.75rem; }
.card p{ color:var(--muted); font-size:.95rem; }
.card ul{ margin-top:1rem; display:flex; flex-direction:column; gap:.5rem; }
.card ul li{ font-size:.87rem; color:var(--muted); display:flex; gap:.6rem; }
.card ul li::before{ content:"→"; color:var(--blue-bright); flex-shrink:0; }

/* =========================== PROCESS (numbered — real sequence) === */
.process-list{ display:flex; flex-direction:column; }
.process-item{ display:grid; grid-template-columns:90px 1fr; gap:2rem; padding:2.2rem 0; border-top:1px solid var(--panel-line); }
.process-item:last-child{ border-bottom:1px solid var(--panel-line); }
.process-num{ font-family:var(--mono); font-size:1.6rem; color:var(--blue-deep); }
.process-item h3{ font-size:1.2rem; margin-bottom:.5rem; }
.process-item p{ color:var(--muted); max-width:56ch; }

/* =========================== MOCKUP PANEL (Axora preview) =========================== */
.mockup{
  background:linear-gradient(160deg, #0f1a33, #0a1224);
  border:1px solid var(--panel-line); border-radius:18px; padding:1.4rem;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.6);
}
.mockup-bar{ display:flex; gap:.4rem; padding:.3rem .3rem .9rem; }
.mockup-bar span{ width:9px; height:9px; border-radius:50%; background:var(--panel-line); }
.mockup-row{
  display:flex; justify-content:space-between; align-items:center; padding:.85rem 1rem;
  background:rgba(255,255,255,.02); border:1px solid var(--panel-line); border-radius:8px;
  margin-bottom:.6rem; font-size:.85rem; color:var(--muted);
}
.mockup-row b{ color:var(--ice); font-weight:600; }
.mockup-row .tag{ font-size:.68rem; padding:.2rem .6rem; border-radius:100px; background:rgba(63,139,255,.14); color:var(--blue-bright); font-weight:600; }

/* =========================== STAT STRIP =========================== */
.stat-strip{ display:flex; gap:3rem; flex-wrap:wrap; }
.stat b{ font-family:var(--display); font-size:2.3rem; color:var(--blue-bright); display:block; }
.stat span{ color:var(--muted); font-size:.85rem; }
.stat-grid-4{ display:grid; grid-template-columns:repeat(4, 1fr); gap:1.5rem; }
@media (max-width:760px){
  .stat-grid-4{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:420px){
  .stat-grid-4{ grid-template-columns:1fr; }
}

/* =========================== TESTIMONIALS =========================== */
.testi-card{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:var(--radius);
  padding:2rem; display:flex; flex-direction:column; gap:1.4rem;
}
.testi-card p{ color:var(--ice); font-size:.98rem; line-height:1.65; }
.testi-who{ display:flex; align-items:center; gap:.9rem; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%; background:var(--blue-deep); color:var(--blue-bright);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--display);
}
.testi-who h4{ font-size:.92rem; }
.testi-who span{ color:var(--muted); font-size:.8rem; }

/* =========================== FORM =========================== */
.form-field{ margin-bottom:1.4rem; display:flex; flex-direction:column; gap:.5rem; }
.form-field label{ font-size:.78rem; letter-spacing:.05em; color:var(--muted); text-transform:uppercase; font-family:var(--mono); }
.form-field input, .form-field textarea, .form-field select{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:8px;
  padding:.9rem 1rem; color:var(--ice); font-family:var(--body); font-size:.95rem;
  transition:border-color .25s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ outline:none; border-color:var(--blue-bright); }
.form-field textarea{ resize:vertical; min-height:120px; }

.contact-info-item{ display:flex; gap:1rem; align-items:flex-start; padding:1.4rem 0; border-top:1px solid var(--panel-line); }
.contact-info-item:last-child{ border-bottom:1px solid var(--panel-line); }
.contact-info-item h4{ font-size:1rem; margin-bottom:.3rem; }
.contact-info-item p{ color:var(--muted); font-size:.9rem; }

/* =========================== FOOTER =========================== */
footer{ background:var(--deep); border-top:1px solid var(--panel-line); padding:4rem 0 2rem; position:relative; z-index:1; }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:2.5rem; margin-bottom:3rem; }
.footer-cols{ display:flex; gap:4rem; flex-wrap:wrap; }
.footer-col h5{ font-family:var(--mono); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-dim); margin-bottom:1rem; }
.footer-col a{ display:block; font-size:.9rem; color:var(--muted); margin-bottom:.65rem; transition:color .25s ease; }
.footer-col a:hover{ color:var(--blue-bright); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem; padding-top:2rem; border-top:1px solid var(--panel-line); color:var(--muted-dim); font-size:.8rem; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 860px){
  .nav{ position:fixed; }
  .nav .container{ position:relative; }
  .nav-links{
    position:absolute; top:calc(100% + 1px); left:0; right:0;
    width:100%; max-width:none; max-height:0; overflow:hidden;
    background:var(--deep); border-top:1px solid var(--panel-line);
    border-left:none; flex-direction:column; align-items:stretch; justify-content:flex-start;
    gap:0; padding:0; transform:none; transition:max-height .35s ease;
  }
  .nav-links.open{ max-height:70vh; overflow-y:auto; padding:.5rem 0 1rem; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; width:100%; padding:1rem 1.5rem; box-sizing:border-box; }
  .nav-links a::after{ display:none; }
  .nav-links .nav-cta{ margin:.75rem 1.5rem; width:calc(100% - 3rem); text-align:center; }
  .nav-burger{ display:flex; flex-direction:column; gap:5px; z-index:110; background:none; border:none; padding:.4rem; }
  .nav-burger span{ width:22px; height:2px; background:var(--ice); border-radius:2px; }
  .grid-3, .grid-2{ grid-template-columns:1fr; }
  .process-item{ grid-template-columns:50px 1fr; gap:1.2rem; padding:1.6rem 0; }
  .section{ padding:5rem 0; }
  .footer-top{ flex-direction:column; }
}

@media (max-width: 700px){
  * { box-sizing:border-box; }
  .hero-visual-panel{
    padding:.75rem !important; width:100%; max-width:100%;
    overflow:hidden; box-sizing:border-box;
  }
  .laptop{ width:100%; }
  .laptop-screen{ padding:.7rem !important; width:100%; box-sizing:border-box; overflow:hidden; }
  .dash-topbar{ flex-wrap:wrap; gap:.4rem; }
  .dash-brand{ font-size:.75rem; }
  .dash-search{ display:none; }
  .dash-avatar{ width:20px; height:20px; }
  .dash-body{ grid-template-columns:1fr; gap:.6rem; }
  .dash-nav{ display:none; }
  .dash-cards{ grid-template-columns:repeat(2, 1fr); gap:.4rem; }
  .dash-card{ padding:.5rem; min-width:0; overflow:hidden; }
  .dash-card b{ font-size:.72rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; }
  .dash-card span{ font-size:.55rem; }
  .dash-chart{ padding:.5rem; height:70px; }
  .badge-row{ gap:1rem; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* =========================================================
   AXORA PRODUCT SITE — additional components
   (hero dashboard mockup, logo cloud, colored feature tiles,
   split final-CTA, pricing/testimonial reuse from base system)
   ========================================================= */

:root{
  --purple: #7c6cf0;
  --ic-blue-bg:#16305e;   --ic-blue-fg:#5ea1ff;
  --ic-purple-bg:#2a2058; --ic-purple-fg:#a893ff;
  --ic-teal-bg:#123b34;  --ic-teal-fg:#4fd8bd;
  --ic-orange-bg:#3a2712; --ic-orange-fg:#f0a355;
  --ic-yellow-bg:#3a3312; --ic-yellow-fg:#f0d355;
  --ic-pink-bg:#3a1230;  --ic-pink-fg:#f083c2;
  --ic-grey-bg:#232a3d;  --ic-grey-fg:#9aa7c9;
}

.btn-solid-gradient{
  background:linear-gradient(100deg, var(--purple), var(--blue-bright));
  color:#fff; box-shadow:0 8px 24px -8px rgba(124,108,240,.5);
}
.btn-solid-gradient:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(124,108,240,.65); }

.nav-cta.btn-solid-gradient{
  border:none; color:#fff; font-weight:700;
  padding:.7rem 1.5rem;
}
.nav-cta.btn-solid-gradient:hover{ color:#fff; }

/* ---------- Hero split layout with dashboard mockup ---------- */
.hero-split{ display:grid; grid-template-columns:1.05fr 1.3fr; gap:3rem; align-items:center; }
.hero-split > *{ min-width:0; }
@media (max-width:980px){
  .hero-split{ grid-template-columns:1fr; }
}

.pill{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue-bright); background:rgba(63,139,255,.1); border:1px solid var(--blue-deep);
  padding:.45rem .9rem; border-radius:100px; margin-bottom:1.4rem;
}

.badge-row{ display:flex; gap:2.2rem; flex-wrap:wrap; margin-top:2.6rem; }
.badge-item{ display:flex; align-items:center; gap:.7rem; }
.badge-icon{
  width:36px; height:36px; border-radius:9px; background:var(--panel); border:1px solid var(--panel-line);
  display:flex; align-items:center; justify-content:center; color:var(--blue-bright); flex-shrink:0;
}
.badge-item h5{ font-size:.85rem; margin-bottom:.1rem; }
.badge-item span{ font-size:.75rem; color:var(--muted-dim); }

/* laptop / dashboard preview */
.laptop{
  position:relative; perspective:1400px;
}
.laptop-screen{
  background:#0a1020; border:1px solid var(--panel-line); border-radius:14px 14px 6px 6px;
  padding:1.1rem; box-shadow:0 50px 100px -30px rgba(0,0,0,.65), 0 0 0 1px rgba(63,139,255,.05);
}
.laptop-base{
  height:14px; background:linear-gradient(180deg, #1a2340, #0d1224);
  border-radius:0 0 10px 10px; margin:0 -6px; position:relative;
}
.laptop-base::after{
  content:""; position:absolute; left:50%; top:0; transform:translateX(-50%);
  width:70px; height:5px; background:#060a16; border-radius:0 0 4px 4px;
}
.dash-topbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; }
.dash-brand{ display:flex; align-items:center; gap:.5rem; font-family:var(--display); font-weight:700; font-size:.85rem; color:var(--ice); }
.dash-search{ flex:1; max-width:200px; margin:0 1rem; height:26px; border-radius:6px; background:var(--panel); border:1px solid var(--panel-line); }
.dash-avatar{ width:26px; height:26px; border-radius:50%; background:var(--blue-deep); }

.dash-body{ display:grid; grid-template-columns:120px 1fr; gap:1rem; }
.dash-nav{ display:flex; flex-direction:column; gap:.35rem; }
.dash-nav span{
  display:block; height:22px; border-radius:6px; background:var(--panel);
  font-size:0;
}
.dash-nav span.active{ background:var(--blue-deep); }
.dash-cards{ display:grid; grid-template-columns:repeat(2, 1fr); gap:.6rem; margin-bottom:.6rem; }
.dash-card{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:8px; padding:.6rem .7rem;
}
.dash-card b{ display:block; font-size:.95rem; color:var(--ice); font-family:var(--display); }
.dash-card span{ font-size:.62rem; color:var(--muted-dim); }
.dash-chart{
  grid-column:1 / -1; background:var(--panel); border:1px solid var(--panel-line); border-radius:8px;
  padding:.7rem; height:96px;
}

/* ---------- Logo cloud ---------- */
.logo-cloud{ display:flex; flex-wrap:wrap; justify-content:center; gap:2.6rem; align-items:center; }
.logo-item{ display:flex; align-items:center; gap:.55rem; color:var(--muted-dim); opacity:.75; transition:opacity .3s ease; }
.logo-item:hover{ opacity:1; color:var(--muted); }
.logo-item .li-icon{ font-size:1.1rem; }
.logo-item span{ font-family:var(--mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }

/* ---------- Feature tiles (colored icon chips) ---------- */
.tile-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:1.2rem; }
@media (max-width:980px){
  .tile-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .tile-grid{ grid-template-columns:1fr; }
}

.tile{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:12px; padding:1.6rem;
  transition:border-color .3s ease, transform .3s ease;
}
.tile:hover{ border-color:var(--blue-deep); transform:translateY(-3px); }
.tile-icon{
  width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; margin-bottom:1.1rem;
}
.tile h4{ font-family:var(--display); font-size:1.02rem; margin-bottom:.5rem; color:var(--ice); }
.tile p{ font-size:.85rem; color:var(--muted); line-height:1.55; }

/* ---------- Final split CTA ---------- */
.final-cta{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:20px;
  padding:3rem; display:grid; grid-template-columns:.8fr 1.2fr; gap:2.5rem; align-items:center;
  position:relative; overflow:hidden;
}
@media (max-width:860px){
  .final-cta{ grid-template-columns:1fr; padding:2rem; }
}
.final-cta::before{
  content:""; position:absolute; top:-30%; left:-10%; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(124,108,240,.25), transparent 70%); filter:blur(10px);
}
.cta-visual{
  aspect-ratio:1/1; border-radius:16px;
  background:radial-gradient(circle at 30% 30%, rgba(63,139,255,.25), transparent 60%), var(--deep);
  border:1px solid var(--panel-line);
  display:flex; align-items:center; justify-content:center; position:relative; z-index:1;
}
.cta-visual svg{ width:56%; height:56%; }
.cta-copy{ position:relative; z-index:1; }
.cta-copy h2{ font-size:clamp(1.6rem,3vw,2.2rem); margin:.8rem 0 1rem; }
.cta-copy p{ color:var(--muted); margin-bottom:1.8rem; max-width:44ch; }
.cta-actions{ display:flex; align-items:center; gap:1.3rem; flex-wrap:wrap; }
.cta-actions a.link{ color:var(--blue-bright); font-size:.9rem; font-weight:600; }