/* =========
   Social Swap Agency — responsive single-page landing site
   ========= */

:root {
  --bg: #070914;
  --bg-2: #0c1022;
  --panel: rgba(13, 17, 35, 0.82);
  --panel-2: #10152b;
  --line: rgba(185, 196, 255, 0.16);
  --line-strong: rgba(214, 110, 255, 0.45);
  --text: #f7f7ff;
  --muted: #b5b9d3;
  --muted-2: #8a90b3;
  --purple: #8a5dff;
  --purple-2: #5f2ce3;
  --pink: #ff4f98;
  --pink-2: #fe2d75;
  --cyan: #72d8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(98, 52, 229, .16), transparent 28rem),
    radial-gradient(circle at 85% 19%, rgba(255, 52, 150, .11), transparent 30rem),
    linear-gradient(180deg, #080a15 0%, #070914 42%, #080a15 100%);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }

::selection { background: rgba(255, 79, 152, .35); color: #fff; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .nav-cta:focus-visible, .mobile-nav-cta:focus-visible { outline-offset: 4px; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 200;
  background: white; color: #121323; border-radius: 10px; padding: 10px 14px; font-weight: 700;
}
.skip-link:focus { top: 14px; }

.page-glow {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(60px); opacity: .35;
}
.glow-one { width: 360px; height: 360px; left: -180px; top: 44%; background: rgba(102, 60, 246, .44); }
.glow-two { width: 300px; height: 300px; right: -130px; top: 72%; background: rgba(255, 62, 147, .27); }
.noise {
  pointer-events: none; position: fixed; inset: 0; opacity: .025; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 9, 20, .75);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 80px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; object-fit: contain; border-radius: 12px; background: #fff; }
.brand-copy { line-height: .94; display: grid; gap: 4px; font-family: "Manrope", sans-serif; }
.brand-copy strong { letter-spacing: -.04em; font-size: 17px; white-space: nowrap; }
.brand-copy em { color: var(--pink); font-style: normal; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .23em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 26px; align-items: center; margin-left: auto; }
.desktop-nav a { color: #d8daf0; font-size: 14px; font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: var(--pink); }
.nav-cta, .mobile-nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 17px; border-radius: 13px;
  background: linear-gradient(100deg, #8c4bfa, #ff4f98); color: #fff;
  font-weight: 800; font-size: 13px; box-shadow: 0 8px 22px rgba(178, 64, 223, .24);
}
.ig-icon {
  width: 17px; height: 17px; display: inline-block; border: 1.8px solid currentColor; border-radius: 5px; position: relative;
}
.ig-icon::before { content:""; position: absolute; width: 6px; height: 6px; border: 1.6px solid currentColor; border-radius: 50%; top: 3.3px; left: 3.3px; }
.ig-icon::after { content:""; position: absolute; width: 2.5px; height: 2.5px; border-radius: 50%; background: currentColor; right: 2.2px; top: 2.2px; }
.menu-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: 12px; padding: 9px; margin-left: auto; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 5px; margin: 4px 0; transition: .2s; }
.mobile-nav { display: none; }

/* Shared */
.eyebrow {
  margin: 0 0 15px; text-transform: uppercase; letter-spacing: .16em; font-size: 10px; color: #e6d9ff; font-weight: 800;
}
.eyebrow-dot { width: 7px; height: 7px; background: var(--pink); border-radius: 50%; display: inline-block; box-shadow: 0 0 15px var(--pink); margin-right: 7px; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: "Manrope", sans-serif; }
h1 { font-size: clamp(44px, 5.1vw, 72px); line-height: 1.05; letter-spacing: -.042em; margin-bottom: 24px; max-width: 760px; }
h1 span, h2 span, h2 em { background: linear-gradient(90deg, #ae70ff, #ff4f9d); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
h2 { font-size: clamp(33px, 3.7vw, 52px); line-height: 1.1; letter-spacing: -.038em; margin-bottom: 16px; text-wrap: balance; }
h3 { font-size: 20px; letter-spacing: -.035em; margin-bottom: 10px; }
.section-heading { max-width: 690px; }
.section-heading.centered { margin: 0 auto 46px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.65; text-wrap: pretty; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

/* Hero */
.hero { padding-top: 82px; padding-bottom: 68px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 34px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { color: #c9cbe0; max-width: 610px; font-size: 18px; line-height: 1.67; margin-bottom: 30px; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 31px; }
.btn {
  min-height: 53px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; border-radius: 15px;
  padding: 0 20px; font-weight: 800; font-size: 14px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(100deg, #8b4dff 0%, #ff4f98 100%); box-shadow: 0 14px 32px rgba(179, 55, 232, .24); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(255, 79, 152, .30); }
.btn-secondary { border: 1px solid rgba(236, 217, 255, .35); color: #f5efff; background: rgba(10, 12, 26, .48); }
.btn-secondary:hover { border-color: var(--pink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px; }
.trust-item {
  min-width: 126px; padding: 10px 13px; border: 1px solid var(--line); background: rgba(12, 16, 35, .48); border-radius: 14px;
  display: grid; gap: 3px;
}
.trust-item strong { font-family: Manrope, sans-serif; font-size: 18px; color: #fff; }
.trust-item span { color: var(--muted); font-size: 11px; line-height: 1.2; }

.hero-visual { min-height: 600px; width: 100%; max-width: 480px; margin-inline: auto; position: relative; display: grid; place-items: center; isolation: isolate; perspective: 1900px; }
.hero-visual::before { content:""; position:absolute; z-index:-2; width:460px; height:460px; left:50%; top:47%; transform:translate(-50%,-50%); background: radial-gradient(circle at 50% 34%, rgba(140,93,255,.36), transparent 56%), radial-gradient(circle at 52% 74%, rgba(255,79,152,.26), transparent 58%); filter: blur(24px); pointer-events:none; }
.hero-orbit { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(189, 114, 255, .13); border-radius: 50%; z-index: -1; }
.orbit-a { width: 538px; height: 538px; box-shadow: inset 0 0 80px rgba(114, 50, 225, .12); animation: orbitSpin 70s linear infinite; }
.orbit-b { width: 408px; height: 408px; border-color: rgba(255, 95, 171, .1); border-style: dashed; animation: orbitSpin 100s linear infinite reverse; }
.hero-phone {
  width: min(330px, 72vw); height: 552px; overflow: hidden; position: relative; z-index: 1;
  transform: rotateY(-8deg) rotateX(2deg) rotate(-1deg); transform-style: preserve-3d; border-radius: 46px;
  border: 8px solid #15161f; background: #13141b;
  box-shadow: 0 60px 110px -30px rgba(0,0,0,.78), 0 0 0 1px rgba(255,255,255,.06), 0 0 70px rgba(140,93,255,.13);
  animation: phoneFloat 8s ease-in-out infinite;
}
.hero-phone img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(1.05) contrast(1.04); }
.phone-notch { display: none; }
.phone-gloss { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, rgba(255,255,255,.15), transparent 18%, transparent 72%, rgba(255,255,255,.08)); }
.signal-card {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; width: 202px;
  padding: 12px 14px; border-radius: 16px; border: 1px solid rgba(215, 186, 255, .2);
  background: linear-gradient(150deg, rgba(30,27,60,.92), rgba(13,15,33,.88));
  box-shadow: 0 22px 40px -12px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(16px);
  animation: cardFloat 6s ease-in-out infinite;
}
.signal-card b { display: block; font-size: 13px; margin-bottom: 2px; }
.signal-card small { display: block; color: var(--muted); line-height: 1.25; font-size: 10px; }
.signal-one { left: -30px; top: 64px; animation-delay: -1.2s; }
.signal-two { right: -30px; top: 104px; animation-delay: -2.8s; }
.signal-three { right: -18px; bottom: 84px; animation-delay: -4.3s; }
.signal-icon { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 10px; background: linear-gradient(135deg, rgba(143, 82, 255, .35), rgba(255,79,152,.25)); position: relative; }
.target-icon::before { content:""; position:absolute; inset:7px; border:2px solid #d6abff; border-radius:50%; }
.target-icon::after { content:""; position:absolute; width:4px; height:4px; background:#ff6ba9; border-radius:50%; left:13px; top:13px; box-shadow: 0 0 12px #ff6ba9; }
.shield-icon::before { content:""; position:absolute; left:8px; top:6px; width:13px; height:16px; border:2px solid #d6abff; border-radius:8px 8px 12px 12px; }
.shield-icon::after { content:"✓"; position:absolute; left:11px; top:7px; color:#ff6ba9; font-size:10px; font-weight:800; }
.dm-icon::before { content:""; position:absolute; left:7px; top:8px; width:16px; height:12px; border:2px solid #e1b8ff; border-radius:6px; }
.dm-icon::after { content:""; position:absolute; border-width:4px 0 0 5px; border-style:solid; border-color:transparent transparent transparent #e1b8ff; left:10px; top:19px; transform:rotate(26deg); }
.hero-result-card {
  position: absolute; left: -30px; bottom: 104px; z-index: 6; display: flex; gap: 10px; align-items: center;
  padding: 13px 15px; border-radius: 16px; background: linear-gradient(150deg, rgba(22,26,54,.92), rgba(13,15,33,.88)); border: 1px solid rgba(142, 213, 255, .22); box-shadow: 0 22px 40px -12px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07); backdrop-filter: blur(16px);
  animation: cardFloat 6.5s ease-in-out infinite; animation-delay: -3.6s;
}
.hero-result-card strong { display:block; font-size:13px; }
.hero-result-card span { color:var(--muted); font-size:10px; display:block; margin-top:3px; }
.mini-chart { width: 35px; height: 25px; border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); position:relative; }
.mini-chart::after { content:""; position:absolute; left:4px; bottom:4px; width:26px; height:13px; border-top:2px solid #ff63aa; border-right:2px solid #ff63aa; transform:skewY(-35deg) rotate(-5deg); }

/* credibility */
.credibility-band { position: relative; padding: 0 0 20px; }
.credibility-grid {
  display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden; position:relative; border:1px solid var(--line); border-radius:20px;
  background:linear-gradient(180deg, rgba(22,18,48,.72), rgba(10,13,28,.8));
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}
.credibility-grid::before { content:""; position:absolute; top:0; left:26px; right:26px; height:1px; background:linear-gradient(90deg, transparent, rgba(214,110,255,.55), rgba(255,79,152,.55), transparent); }
.credibility-item { padding:21px 18px; text-align:center; position:relative; display:grid; justify-items:center; gap:4px; }
.credibility-item:not(:last-child)::after { content:""; width:1px; height:55%; background:var(--line); position:absolute; right:0; top:22%; }
.credibility-item strong { font-family:Manrope,sans-serif; font-size:23px; color:#fff; }
.credibility-item > span:last-child { color:var(--muted); font-size:12px; }
.band-icon { width:24px; height:24px; margin-bottom:2px; border-radius:8px; background:linear-gradient(135deg, rgba(135, 75, 255,.3), rgba(255, 79, 152,.25)); position:relative; }
.people-icon::before { content:""; position:absolute; width:7px; height:7px; border:2px solid #dcbfff; border-radius:50%; left:7px; top:3px; }
.people-icon::after { content:""; position:absolute; width:14px; height:7px; border:2px solid #dcbfff; border-radius:9px 9px 3px 3px; left:5px; bottom:3px; }
.badge-icon::before { content:"✦"; position:absolute; left:6px; top:2px; font-size:15px; color:#ff72b1; }
.chat-icon::before { content:""; position:absolute; width:14px; height:11px; border:2px solid #dcbfff; left:5px; top:5px; border-radius:6px; }
.chat-icon::after { content:""; position:absolute; width:5px; height:5px; border-left:2px solid #dcbfff; border-bottom:2px solid #dcbfff; bottom:4px; left:7px; transform:rotate(-20deg); }
.loop-icon::before { content:"↻"; position:absolute; left:4px; top:0; font-size:21px; color:#ff72b1; }

/* Comparison */
.comparison { padding-top: 78px; }
.comparison-shell { padding: 28px; position: relative; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(16,21,44,.88), rgba(10,12,26,.72)); box-shadow: var(--shadow); overflow:hidden; }
.comparison-shell::before { content:""; position:absolute; width:480px; height:350px; left:-160px; top:-180px; background:radial-gradient(circle, rgba(108,66,255,.17), transparent 68%); pointer-events:none; }
.illustrative-note { position:absolute; top:17px; left:50%; transform:translateX(-50%); z-index:2; white-space:nowrap; font-size:10px; color:#c9b3e9; background:rgba(7,9,20,.85); border:1px solid var(--line); border-radius:30px; padding:7px 10px; }
.comparison-stage { display:grid; grid-template-columns: 1fr 50px 1fr; align-items:center; gap:25px; padding-top:28px; }
.profile-card { display:grid; grid-template-columns: 1fr minmax(150px,.65fr); gap:18px; align-items:center; position:relative; transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1), filter .3s ease; will-change: transform, opacity; }
.profile-before { transform-origin: right center; }
.profile-after { transform-origin: left center; }
.profile-label { position:absolute; top:-24px; left:1px; font-size:12px; font-weight:800; z-index:2; display:flex; gap:7px; align-items:center; }
.state-dot { width:8px; height:8px; border-radius:50%; }
.state-dot.muted { background:#6a708a; }
.state-dot.good { background:#ff5ea5; box-shadow:0 0 12px #ff5ea5; }
.mock-profile { border:1px solid var(--line); background:#11152b; border-radius:20px; padding:15px; min-height:255px; overflow:hidden; }
.mock-top { display:flex; gap:12px; align-items:center; }
.mock-avatar { width:45px; height:45px; border-radius:50%; flex:0 0 auto; }
.ghost { background:linear-gradient(135deg,#596076,#262b3c); }
.gradient-avatar { display:grid; place-items:center; color:#fff; font-size:11px; font-weight:800; background:linear-gradient(135deg,#7953ff,#ff4f98); }
.mock-counts { display:flex; justify-content:space-between; flex:1; text-align:center; font-size:11px; font-weight:800; }
.mock-counts small { display:block; font-size:8px; color:var(--muted); font-weight:500; margin-top:2px; }
.skeleton { background:linear-gradient(90deg, #252a3d, #343a52, #252a3d); border-radius:5px; background-size:220% 100%; animation: shimmer 3.1s infinite; margin-top:11px; height:8px; }
.s1 { width:70%; } .s2 { width:92%; } .s3 { width:57%; }
.mock-highlights { display:flex; gap:6px; margin:14px 0; }
.mock-highlights i { height:24px; width:24px; border-radius:50%; background:#32384e; border:1px solid #4a526c; font-style:normal; display:grid; place-items:center; font-size:6px; color:#fff; }
.mock-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.mock-grid i { min-height:43px; background:linear-gradient(135deg,#2d3348,#202437); border-radius:3px; }
.mock-name { display:block; margin-top:10px; font-size:10px; }
.mock-bio { margin:4px 0 0; font-size:8px; line-height:1.35; color:#d8d9e8; }
.polished i { background:linear-gradient(135deg, #5023ae, #ed3f91); border-color:#c174e7; width:26px; height:26px; font-size:5px; }
.polished-grid i:nth-child(1) { background:linear-gradient(145deg,#ff7aa8,#6526c4); }
.polished-grid i:nth-child(2) { background:linear-gradient(145deg,#ffc46b,#ff4f98); }
.polished-grid i:nth-child(3) { background:linear-gradient(145deg,#7be0ff,#3934a6); }
.polished-grid i:nth-child(4) { background:linear-gradient(145deg,#7f4bf2,#1e244b); }
.polished-grid i:nth-child(5) { background:linear-gradient(145deg,#fc467f,#35173f); }
.polished-grid i:nth-child(6) { background:linear-gradient(145deg,#e6abff,#493fc7); }
.profile-points { list-style:none; padding:0; margin:30px 0 0; display:grid; gap:11px; color:var(--muted); font-size:12px; line-height:1.35; }
.profile-points li { display:flex; gap:7px; align-items:flex-start; }
.profile-points li span { color:#9ca2bf; font-weight:800; }
.good-points li span { color:#ff62aa; }
.versus { height:44px; width:44px; display:grid; place-items:center; border-radius:50%; background:#141a34; border:1px solid rgba(219, 149, 255,.4); color:#f4dfff; font-size:11px; font-weight:800; box-shadow: 0 0 25px rgba(176,88,255,.22); }
.comparison-slider-wrap { margin-top:29px; display:flex; align-items:center; gap:12px; color:var(--muted); font-size:11px; font-weight:700; }
.comparison-slider-wrap input { appearance:none; flex:1; height:5px; border-radius:10px; outline:none; background:linear-gradient(90deg, var(--purple) 0%, var(--pink) 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 100%); }
.comparison-slider-wrap input::-webkit-slider-thumb { appearance:none; width:20px; height:20px; border-radius:50%; background:#fff; border:4px solid var(--pink); box-shadow:0 0 15px rgba(255,79,152,.65); }
.comparison-slider-wrap input::-moz-range-thumb { width:14px; height:14px; border-radius:50%; background:#fff; border:4px solid var(--pink); box-shadow:0 0 15px rgba(255,79,152,.65); }

/* Process */
.process { padding-top: 78px; background: radial-gradient(58% 55% at 20% 16%, rgba(54,34,110,.16), transparent 60%); }
.process-grid { margin-top:42px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.process-card { min-height:255px; position:relative; overflow:hidden; padding:26px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(145deg,rgba(17,21,46,.83),rgba(8,10,23,.72)); }
.process-card::after { content:""; position:absolute; width:180px; height:180px; right:-100px; bottom:-110px; border-radius:50%; background:radial-gradient(circle, rgba(150,75,255,.16), transparent 65%); }
.step-number { width:33px; height:33px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(135deg,#8b5dff,#ff4f98); font-size:12px; font-weight:800; }
.process-icon { display:block; width:36px; height:36px; margin:20px 0 13px; position:relative; color:#d8bdff; }
.magnify-icon::before { content:""; position:absolute; width:18px; height:18px; border:3px solid currentColor; border-radius:50%; left:3px; top:2px; }
.magnify-icon::after { content:""; width:13px; height:3px; border-radius:3px; background:currentColor; position:absolute; transform:rotate(45deg); left:20px; top:24px; }
.layers-icon::before, .layers-icon::after { content:""; position:absolute; width:26px; height:15px; border:2px solid currentColor; transform:skewY(-26deg) rotate(-4deg); left:4px; }
.layers-icon::before { top:4px; } .layers-icon::after { top:14px; box-shadow:0 10px 0 -2px var(--bg-2), 0 10px 0 0 currentColor; }
.chart-icon::before { content:""; position:absolute; bottom:2px; left:3px; width:4px; height:16px; border-radius:4px; background:currentColor; box-shadow:9px -7px 0 currentColor, 18px -15px 0 currentColor; }
.chart-icon::after { content:"↗"; position:absolute; right:0; top:-6px; font-size:21px; color:#ff66a9; font-weight:700; }
.process-card p { color:var(--muted); font-size:14px; line-height:1.58; margin:0; }

/* Proof */
.proof { padding-top: 94px; background: radial-gradient(86% 70% at 80% 24%, rgba(62,40,124,.2), transparent 58%); }
.proof-grid { display:grid; grid-template-columns:1fr .9fr .9fr; gap:28px; align-items:center; }
.proof-copy p:not(.eyebrow) { font-size:16px; line-height:1.68; color:var(--muted); max-width:440px; }
.check-list { list-style:none; display:grid; gap:12px; padding:0; margin:26px 0; }
.check-list li { color:#dddff3; font-size:14px; line-height:1.4; display:flex; gap:10px; }
.check-list li span { color:#ff68ad; font-weight:900; }
.text-link { color:#f0ddff; font-size:14px; font-weight:800; border-bottom:1px solid rgba(255,96,170,.55); padding-bottom:3px; }
.text-link span { color:var(--pink); margin-left:4px; }
.proof-visual { position:relative; min-height:460px; display:grid; place-items:center; }
.reel-frame {
  width:min(270px, 84%); overflow:hidden; border-radius:26px; border:1px solid rgba(255,255,255,.17); background:#0d0f1b; box-shadow:0 26px 48px rgba(0,0,0,.48);
}
.reel-frame img { width:100%; height:auto; object-fit:cover; }
.proof-metric {
  position:absolute; display:grid; gap:2px; padding:10px 12px; border-radius:13px; border:1px solid rgba(238,177,255,.25);
  background:rgba(15,18,39,.9); box-shadow:0 12px 25px rgba(0,0,0,.3); backdrop-filter:blur(8px);
}
.proof-metric b { font-family:Manrope,sans-serif; font-size:16px; color:#fff; }
.proof-metric span { font-size:10px; color:var(--muted); }
.metric-a { left:0; top:58px; }.metric-b { right:0; top:185px; }.metric-c { left:17px; bottom:54px; }
.testimonial-panel { border:1px solid var(--line); border-radius:22px; padding:25px; background:linear-gradient(160deg,rgba(20,24,53,.95),rgba(10,12,27,.72)); }
.testimonial-panel blockquote { margin:15px 0 13px; font-family:Manrope,sans-serif; font-size:20px; line-height:1.45; letter-spacing:-.03em; }
.client-label { color:var(--muted); font-size:11px; margin-bottom:0; }
.feedback-divider { height:1px; background:var(--line); margin:24px 0; }
.secondary-quote { font-family:Manrope,sans-serif; color:#f2e8ff; font-size:16px; line-height:1.45; }

/* Pricing */
.pricing { padding-top:80px; padding-bottom:72px; }
.pricing-card { display:grid; grid-template-columns:1.2fr .6fr .8fr auto; align-items:center; gap:22px; padding:28px; border:1px solid rgba(255,99,174,.52); border-radius:26px; background:linear-gradient(110deg, rgba(25,20,62,.92), rgba(12,15,33,.88)); box-shadow:0 24px 70px rgba(110,35,160,.17); position:relative; overflow:hidden; }
.pricing-card::before { content:""; position:absolute; width:330px; height:330px; right:-170px; top:-210px; border-radius:50%; background:radial-gradient(circle, rgba(255,74,150,.2), transparent 70%); }
.pricing-brand { display:flex; align-items:center; gap:15px; min-width:0; }
.pricing-brand img { width:58px; height:58px; object-fit:contain; border-radius:17px; background:#fff; }
.pricing-brand .eyebrow { margin-bottom:5px; }
.pricing-brand h2 { font-size:27px; margin:0 0 5px; }
.pricing-brand p:last-child { margin:0; color:var(--muted); font-size:12px; line-height:1.4; max-width:320px; }
.price strong { font-family:Manrope,sans-serif; font-size:42px; letter-spacing:-.06em; }
.price > span { font-size:13px; font-weight:700; }
.price small { display:block; font-size:10px; color:var(--muted); margin-top:4px; }
.price-list { list-style:none; padding:0; margin:0; display:grid; gap:9px; color:#d9dced; font-size:12px; line-height:1.35; }
.price-list li::first-letter { color:#ff72b2; }
.pricing-cta { min-height:58px; max-width:232px; text-align:center; line-height:1.25; padding:0 22px; }

/* Final + footer */
.final-cta { padding-top:30px; padding-bottom:104px; }
.final-cta-inner { display:flex; justify-content:space-between; gap:25px; align-items:center; padding:38px; border:1px solid rgba(165,115,255,.35); border-radius:27px; background:linear-gradient(110deg, rgba(31,23,67,.9), rgba(12,16,35,.86)); position:relative; overflow:hidden; }
.final-cta-inner::after { content:""; width:270px; height:270px; border-radius:50%; position:absolute; right:-130px; bottom:-190px; background:radial-gradient(circle, rgba(255,72,149,.25), transparent 68%); }
.final-cta h2 { max-width:650px; margin-bottom:10px; }
.final-cta p:not(.eyebrow) { margin:0; color:var(--muted); font-size:15px; }
.final-actions { display:flex; gap:10px; flex-wrap:wrap; position:relative; z-index:1; }
.site-footer { border-top:1px solid rgba(255,255,255,.08); padding:28px 0 40px; background:rgba(4,6,15,.55); }
.footer-grid { display:grid; grid-template-columns:1fr 1fr 1fr auto; align-items:center; gap:20px; }
.footer-contact { display:grid; gap:7px; }
.footer-contact a { font-size:12px; color:#e1e4f5; }
.footer-grid > p { margin:0; font-size:12px; color:#e1e4f5; line-height:1.5; }
.footer-grid > p span { color:var(--muted); }
.copyright { text-align:right; color:var(--muted)!important; font-size:10px!important; }

/* Responsive */
@media (max-width: 1060px) {
  .desktop-nav { gap:16px; }
  .hero-grid { grid-template-columns: .92fr 1.08fr; }
  .signal-card { width:176px; }
  .signal-one { left:-6px; }
  .signal-two { right:-6px; }
  .signal-three { right:-2px; }
  .hero-result-card { left:-6px; }
  .orbit-a { width:380px; height:380px; }
  .orbit-b { width:300px; height:300px; }
  .proof-grid { grid-template-columns:1fr 1fr; }
  .testimonial-panel { grid-column:1 / -1; max-width:760px; }
  .pricing-card { grid-template-columns:1.2fr .65fr; }
  .price-list { grid-column:1; }
  .pricing-cta { grid-column:2; grid-row:1 / span 2; align-self:center; justify-self:end; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .copyright { text-align:left; }
}
@media (max-width: 920px) {
  .container { width:min(var(--max), calc(100% - 30px)); }
  .section-pad { padding:76px 0; }
  .desktop-nav,.nav-cta { display:none; }
  .menu-toggle { display:block; }
  .mobile-nav { padding:0 15px 16px; background:rgba(7,9,20,.98); border-top:1px solid rgba(255,255,255,.06); }
  .mobile-nav.is-open { display:grid; gap:11px; }
  .mobile-nav a:not(.mobile-nav-cta) { padding:10px 3px; color:#e6e7f4; font-weight:700; font-size:14px; }
  .mobile-nav-cta { margin-top:6px; }
  .hero { padding-top:56px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-lede { margin-left:auto; margin-right:auto; }
  .hero-actions,.trust-row { justify-content:center; }
  .hero-visual { min-height:520px; margin-top:10px; max-width:524px; }
  .hero-visual::before { width:440px; height:440px; }
  .hero-phone { height:475px; transform:rotate(2deg); animation:none; }
  .signal-card, .hero-result-card, .orbit-a, .orbit-b { animation:none; }
  .signal-card { width:186px; }
  .signal-one { left:-10px; right:auto; top:78px; }
  .signal-two { left:auto; right:-10px; top:122px; }
  .signal-three { left:auto; right:-4px; bottom:104px; }
  .hero-result-card { left:-10px; right:auto; bottom:120px; }
  .credibility-grid { grid-template-columns:1fr 1fr; }
  .credibility-item:nth-child(2)::after { display:none; }
  .credibility-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .comparison-stage { grid-template-columns:1fr; gap:18px; }
  .profile-card { grid-template-columns:1.1fr .9fr; }
  .versus { margin:0 auto; }
  .profile-label { position:static; margin:0 0 8px; grid-column:1 / -1; }
  .profile-before,.profile-after { display:grid; grid-template-columns:1.1fr .9fr; }
  .process-grid { grid-template-columns:1fr; }
  .process-card { min-height:auto; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-copy { text-align:center; }
  .proof-copy > p:not(.eyebrow), .check-list { margin-left:auto; margin-right:auto; text-align:left; max-width:470px; }
  .proof-visual { min-height:440px; }
  .testimonial-panel { grid-column:auto; }
  .pricing-card { grid-template-columns:1fr; }
  .price-list { grid-column:auto; }
  .pricing-cta { grid-column:auto; grid-row:auto; justify-self:start; max-width:none; width:100%; }
  .final-cta-inner { display:block; padding:29px; }
  .final-actions { margin-top:23px; }
}
@media (max-width: 520px) {
  .nav-wrap { height:72px; }
  .brand-mark { width:34px; height:34px; }
  .brand-copy strong { font-size:15px; }
  h1 { font-size:44px; }
  h2 { font-size:34px; }
  .hero-lede { font-size:16px; }
  .btn { width:100%; padding:0 16px; }
  .hero-actions { flex-direction:column; }
  .trust-item { min-width:calc(50% - 6px); flex:1; }
  .hero-visual { min-height:445px; transform:scale(.96); transform-origin:top center; margin-bottom:-22px; }
  .orbit-a { width:278px; height:278px; }
  .orbit-b { width:220px; height:220px; }
  .hero-visual::before { width:300px; height:300px; }
  .hero-phone { height:415px; width:270px; }
  .signal-card { width:152px; padding:9px; gap:7px; }
  .signal-card small { display:none; }
  .signal-card b { font-size:10px; }
  .signal-icon { width:25px; height:25px; }
  .signal-one { left:-4px; right:auto; top:18px; }
  .signal-two { left:auto; right:-4px; top:92px; }
  .signal-three { left:auto; right:-2px; bottom:30px; }
  .hero-result-card { left:-4px; right:auto; bottom:26px; padding:10px; }
  .hero-result-card span { display:none; }
  .credibility-item { padding:17px 10px; }
  .comparison-shell { padding:20px 14px; border-radius:20px; }
  .illustrative-note { top:10px; font-size:8px; }
  .comparison-stage { padding-top:22px; }
  .profile-card { grid-template-columns:1fr; }
  .profile-points { margin-top:0; }
  .profile-before,.profile-after { display:grid; grid-template-columns:1fr; }
  .mock-profile { min-height:220px; }
  .process-grid { margin-top:27px; }
  .proof-visual { min-height:405px; }
  .reel-frame { width:230px; }
  .metric-a { left:-3px; top:34px; }.metric-b{right:-3px; top:162px;}.metric-c{left:4px; bottom:30px;}
  .pricing-card { padding:20px; }
  .pricing-brand { align-items:flex-start; }
  .pricing-brand h2 { font-size:24px; }
  .price strong { font-size:38px; }
  .final-cta-inner { padding:24px 20px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { justify-self:start; }
  .copyright { text-align:left; }
}

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

@keyframes shimmer { 0%{background-position:0 0} 100%{background-position:220% 0} }
@keyframes phoneFloat { 0%,100% { transform: rotateY(-8deg) rotateX(2deg) rotate(-1deg) translateY(0); } 50% { transform: rotateY(-8deg) rotateX(2deg) rotate(-1deg) translateY(-14px); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
