/* BlueNexus Design System v2 — Matched to Current Site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600&family=Chivo+Mono:wght@400;500&display=swap');

:root {
  --cobalt: #225EEC;
  --cobalt-dark: #1A4BC4;
  --cobalt-light: rgba(34,94,236,0.06);
  --cobalt-bg: rgba(34,94,236,0.03);
  --sky: #598AFF;
  --sky-light: #F0F5FF;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-gray: #E1E1E1;
  --mid-gray: #7E8699;
  --dark-gray: #293B66;
  --near-black: #0C1939;
  --green: #52B25B;
  --green-light: #E6F4E7;
  --amber: #FFB738;
  --amber-light: #FFF4D9;
  --red: #F1511C;
  --lotion: #FFFCF7;
  --gray-50: #FAFAFA;
  --gray-400: #B3BCC6;
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(12,25,57,0.04), 0 1px 2px rgba(12,25,57,0.06);
  --shadow-md: 0 4px 16px rgba(34,94,236,0.06), 0 1px 3px rgba(12,25,57,0.04);
  --shadow-lg: 0 8px 30px rgba(34,94,236,0.08), 0 2px 6px rgba(12,25,57,0.04);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Manrope',-apple-system,sans-serif; color:var(--dark-gray); background:var(--gray-50); line-height:1.65; -webkit-font-smoothing:antialiased; }
a { color:var(--cobalt); text-decoration:none; transition:color .2s; }
img { max-width:100%; display:block; }

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

/* ── NAV ── */
.nav { position:fixed; top:0; width:100%; z-index:100; background:rgba(255,255,255,.94); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid rgba(229,232,240,.6); height:68px; }
.nav-inner { max-width:var(--max-width); margin:0 auto; padding:0 40px; height:68px; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; }
.nav-logo img, .nav-logo svg { height:30px; width:auto; }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a { font-family:'Inter',sans-serif; font-weight:500; font-size:14px; color:var(--mid-gray); transition:color .2s; letter-spacing:-.01em; }
.nav-links a:hover, .nav-links a.active { color:var(--cobalt); }
.nav-right { display:flex; align-items:center; gap:14px; }
.nav-login { font-family:'Inter',sans-serif; font-weight:500; font-size:14px; color:var(--mid-gray); transition:color .2s; }
.nav-login:hover { color:var(--cobalt); }

/* Hamburger button — hidden on desktop */
.nav-hamburger { display:none; background:none; border:none; cursor:pointer; padding:6px; flex-direction:column; gap:5px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--near-black); border-radius:2px; transition:transform .25s, opacity .25s; }
.nav-open .nav-hamburger span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity:0; }
.nav-open .nav-hamburger span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer — hidden by default */
.nav-mobile { display:none; }
.nav-mobile ul { list-style:none; display:flex; flex-direction:column; gap:4px; }
.nav-mobile ul a { display:block; padding:12px 20px; font-family:'Inter',sans-serif; font-weight:500; font-size:15px; color:var(--near-black); border-radius:var(--radius-sm); transition:background .15s; }
.nav-mobile ul a:hover { background:var(--light-gray); }
.nav-mobile-ctas { display:flex; flex-direction:column; gap:10px; padding:8px 20px 20px; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:6px; font-family:'Inter',sans-serif; font-weight:500; border:none; cursor:pointer; transition:all .2s; letter-spacing:-.01em; }
.btn-primary { background:var(--cobalt); color:var(--white); padding:11px 24px; border-radius:var(--radius-sm); font-size:14px; box-shadow:0 1px 2px rgba(34,94,236,.15); }
.btn-primary:hover { background:var(--cobalt-dark); transform:translateY(-1px); box-shadow:0 3px 8px rgba(34,94,236,.2); }
.btn-secondary { background:var(--white); color:var(--cobalt); padding:11px 24px; border-radius:var(--radius-sm); font-size:14px; border:1.5px solid var(--light-gray); }
.btn-secondary:hover { border-color:var(--cobalt); background:var(--cobalt-bg); }
.btn-ghost { background:transparent; color:var(--cobalt); font-size:14px; padding:0; }
.btn-ghost:hover { opacity:.8; }
.btn-ghost::after { content:' →'; }
.btn-lg { padding:13px 30px; font-size:15px; }
.btn-white { background:var(--white); color:var(--cobalt); border:none; box-shadow:var(--shadow-sm); }
.btn-white:hover { background:var(--off-white); transform:translateY(-1px); box-shadow:var(--shadow-md); }

/* ── LAYOUT ── */
.section { padding:100px 40px; max-width:var(--max-width); margin:0 auto; }
.section-sm { padding:72px 40px; }
.section-alt { background:var(--off-white); }
.section-full { max-width:none; }
.section-heading { font-family:'Inter',sans-serif; font-weight:700; font-size:38px; line-height:1.15; color:var(--near-black); letter-spacing:-.03em; margin-bottom:14px; }
.section-heading-lg { font-size:46px; }
.section-sub { font-size:17px; color:var(--mid-gray); max-width:600px; line-height:1.7; letter-spacing:-.01em; }
.text-center { text-align:center; }
.mx-auto { margin-left:auto; margin-right:auto; }
.mt-12 { margin-top:12px; } .mt-16 { margin-top:16px; } .mt-24 { margin-top:24px; } .mt-32 { margin-top:32px; } .mt-48 { margin-top:48px; } .mt-64 { margin-top:64px; }
.mb-8 { margin-bottom:8px; } .mb-16 { margin-bottom:16px; } .mb-24 { margin-bottom:24px; }

/* ── HERO ── */
.page-hero { position:relative; z-index:1; padding-top:148px; padding-bottom:80px; }
.page-hero.hero-tight { padding-bottom:0; }
.page-hero h1 { font-family:'Inter',sans-serif; font-weight:700; font-size:50px; line-height:1.08; color:var(--near-black); letter-spacing:-.035em; margin-bottom:18px; }
.page-hero.centered { text-align:center; }
.page-hero.centered h1, .page-hero.centered .section-sub { margin-left:auto; margin-right:auto; }
.page-hero.centered h1 { max-width:680px; }
.hero-ctas { display:flex; gap:12px; margin-top:32px; position:relative; z-index:2; }
.page-hero.centered .hero-ctas { justify-content:center; }

/* ── HEALTH LOGOS ── */
.health-logos { display:flex; align-items:center; justify-content:center; gap:32px; flex-wrap:wrap; }
.health-logos img { height:32px; width:auto; filter:brightness(0) invert(1) opacity(.5); transition:all .3s ease; }
.health-logos img:hover { filter:brightness(0) invert(1) opacity(1); }

/* ── TRUST BAR ── */
.trust-bar { display:flex; align-items:center; gap:12px; justify-content:center; font-size:13px; color:var(--mid-gray); margin-top:44px; flex-wrap:wrap; }
.trust-logos { display:flex; gap:12px; align-items:center; flex-wrap:wrap; justify-content:center; }
.trust-logo { padding:8px 18px; border-radius:var(--radius-sm); background:var(--off-white); border:1px solid var(--light-gray); font-family:'Inter',sans-serif; font-weight:500; font-size:13px; color:var(--mid-gray); transition:all .2s; letter-spacing:-.01em; display:inline-flex; align-items:center; gap:8px; }
.trust-logo svg, .trust-logo img { flex-shrink:0; vertical-align:middle; }
.trust-logo:hover { border-color:var(--cobalt); color:var(--cobalt); background:var(--cobalt-bg); box-shadow:var(--shadow-sm); }

/* ── CARDS ── */
.card { background:var(--white); border:1px solid var(--light-gray); border-radius:var(--radius); padding:28px; transition:all .25s ease; box-shadow:var(--shadow-sm); }
.card:hover { border-color:rgba(34,94,236,.15); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.card h4 { font-family:'Inter',sans-serif; font-weight:600; font-size:17px; color:var(--near-black); margin-bottom:10px; letter-spacing:-.02em; }
.card p { font-size:14.5px; color:var(--mid-gray); line-height:1.65; }

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }

/* ── STATS ── */
.stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:1px solid var(--light-gray); border-radius:var(--radius); overflow:hidden; background:var(--white); box-shadow:var(--shadow-sm); }
.stat-item { padding:32px; text-align:center; border-right:1px solid var(--light-gray); }
.stat-item:last-child { border-right:none; }
.stat-number { font-family:'Chivo Mono',monospace; font-weight:500; font-size:40px; color:var(--cobalt); line-height:1; margin-bottom:8px; letter-spacing:-.02em; }
.stat-label { font-family:'Manrope',sans-serif; font-weight:600; font-size:12px; color:var(--mid-gray); text-transform:uppercase; letter-spacing:.06em; }

/* ── STEP NUMBERS ── */
.step-number { width:44px; height:44px; border-radius:12px; background:linear-gradient(135deg,rgba(89,138,255,.15),rgba(34,94,236,.1)); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-family:'Chivo Mono',monospace; font-weight:500; font-size:16px; color:var(--cobalt); }

/* ── SECURITY ICONS ── */
.security-icon { width:42px; height:42px; border-radius:11px; background:linear-gradient(135deg,rgba(89,138,255,.12),rgba(34,94,236,.08)); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px; }

/* ── GRADIENT BAND ── */
.gradient-band { background:linear-gradient(135deg,#0C1939 0%,#225EEC 45%,#598AFF 100%); padding:100px 40px; text-align:center; position:relative; overflow:hidden; }
.gradient-band::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:radial-gradient(ellipse at 30% 20%,rgba(89,138,255,.12) 0%,transparent 60%); pointer-events:none; }
.gradient-band .section-heading { color:var(--white); }
.gradient-band .section-sub { color:rgba(255,255,255,.65); }
.gradient-band .card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); backdrop-filter:blur(12px); box-shadow:0 2px 8px rgba(0,0,0,.1); }
.gradient-band .card:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.18); }
.gradient-band .card h4 { color:var(--white); }
.gradient-band .card p { color:rgba(255,255,255,.6); }
.platform-card { display:flex; align-items:center; justify-content:space-between; width:170px; padding:16px 18px; border-radius:14px; color:white; font-family:'Inter',sans-serif; font-weight:600; font-size:14px; border:none; cursor:pointer; transition:all .2s; box-shadow:0 4px 12px rgba(0,0,0,.2); }
.platform-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.3); filter:brightness(1.05); }

/* ── PRICING ── */
.pricing-card { border:1px solid var(--light-gray); border-radius:var(--radius-lg); padding:32px; background:var(--white); display:flex; flex-direction:column; box-shadow:var(--shadow-sm); transition:all .25s; }
.pricing-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.pricing-card.highlighted { border:2px solid var(--cobalt); box-shadow:var(--shadow-lg); position:relative; }
.pricing-card.highlighted::before { content:'★ Most Popular'; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--cobalt); color:var(--white); padding:4px 16px; border-radius:20px; font-family:'Inter',sans-serif; font-weight:600; font-size:11px; letter-spacing:.02em; }
.pricing-name { font-family:'Inter',sans-serif; font-weight:700; font-size:22px; color:var(--near-black); letter-spacing:-.02em; }
.pricing-price { font-family:'Chivo Mono',monospace; font-size:34px; font-weight:500; color:var(--cobalt); margin:6px 0; letter-spacing:-.02em; }
.pricing-price span { font-size:15px; color:var(--mid-gray); font-family:'Manrope',sans-serif; }
.pricing-desc { font-size:14px; color:var(--mid-gray); margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid var(--light-gray); }
.pricing-features { list-style:none; flex:1; }
.pricing-features li { font-size:13.5px; color:var(--dark-gray); padding:5px 0; display:flex; align-items:flex-start; gap:8px; line-height:1.5; }
.pricing-features li::before { content:'✓'; color:var(--cobalt); font-weight:700; flex-shrink:0; font-size:13px; }
.pricing-features li.muted { color:var(--mid-gray); }
.pricing-features li.muted::before { content:'—'; color:var(--light-gray); }
.pricing-cta { margin-top:20px; }
.pricing-cta .btn { width:100%; justify-content:center; }

/* ── BADGES ── */
.badge { display:inline-block; padding:4px 12px; border-radius:20px; font-family:'Inter',sans-serif; font-size:12px; font-weight:600; margin-bottom:14px; letter-spacing:.01em; }
.badge-green { background:var(--green-light); color:var(--green); }
.badge-blue { background:rgba(34,94,236,.08); color:var(--cobalt); }
.badge-amber { background:var(--amber-light); color:var(--amber); }
.badge-purple { background:rgba(124,77,255,.08); color:#7C4DFF; }
.text-highlight { color:var(--cobalt); }
.ribbon { position:absolute; top:20px; right:-50px; background:var(--amber); color:#fff; font-family:'Inter',sans-serif; font-size:10px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; white-space:nowrap; width:200px; text-align:center; padding:5px 0; transform:rotate(45deg); box-shadow:0 1px 4px rgba(0,0,0,.15); z-index:1; }

/* ── COMPARISON TABLE ── */
.comparison-table { width:100%; border-collapse:collapse; }
.comparison-table th { font-family:'Inter',sans-serif; font-weight:600; font-size:14px; color:var(--near-black); text-align:left; padding:14px 16px; border-bottom:2px solid var(--light-gray); }
.comparison-table td { font-size:14px; padding:13px 16px; border-bottom:1px solid var(--light-gray); vertical-align:top; }
.comparison-table tr:hover td { background:var(--off-white); }
.comparison-table .label { font-weight:600; color:var(--near-black); }

/* ── CONNECTOR CARDS ── */
.connector-card { display:flex; align-items:center; gap:12px; padding:14px 16px; border:1px solid var(--light-gray); border-radius:var(--radius-sm); background:var(--white); transition:all .2s; box-shadow:var(--shadow-sm); }
.connector-card:hover { border-color:var(--cobalt); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.connector-icon { width:38px; height:38px; border-radius:9px; background:var(--off-white); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.connector-name { font-family:'Inter',sans-serif; font-weight:500; font-size:14px; color:var(--near-black); letter-spacing:-.01em; }
.connector-cat { font-size:12px; color:var(--mid-gray); }

/* ── FAQ ── */
.faq-item { border-bottom:1px solid var(--light-gray); padding:22px 0; }
.faq-q { font-family:'Inter',sans-serif; font-weight:600; font-size:15px; color:var(--near-black); cursor:pointer; display:flex; justify-content:space-between; align-items:center; letter-spacing:-.01em; }
.faq-q::after { content:'+'; font-size:20px; color:var(--mid-gray); transition:transform .2s; }
.faq-q.open::after { content:'−'; }
.faq-a { font-size:14.5px; color:var(--mid-gray); line-height:1.7; max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease; }
.faq-a.open { max-height:250px; padding-top:14px; }

/* ── FORMS ── */
.form-group { margin-bottom:18px; }
.form-label { display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:14px; color:var(--near-black); margin-bottom:6px; }
.form-input, .form-textarea, .form-select { width:100%; padding:11px 16px; border:1px solid var(--light-gray); border-radius:var(--radius-sm); font-family:'Manrope',sans-serif; font-size:14.5px; color:var(--dark-gray); background:var(--white); transition:border-color .2s, box-shadow .2s; }
.form-input:focus, .form-textarea:focus { outline:none; border-color:var(--cobalt); box-shadow:0 0 0 3px rgba(34,94,236,.08); }
.form-textarea { min-height:100px; resize:vertical; }
.form-input::placeholder, .form-textarea::placeholder { color:var(--gray-400); }
.form-checkbox-group { display:flex; flex-wrap:wrap; gap:12px; }
.form-checkbox { display:flex; align-items:center; gap:6px; font-size:14px; color:var(--dark-gray); cursor:pointer; }

/* ── NEWSLETTER BAND ── */
.newsletter-band { background:var(--cobalt); padding:56px 40px; }
.newsletter-inner { max-width:var(--max-width); margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:32px; }
.newsletter-inner h3 { font-family:'Inter',sans-serif; font-weight:700; font-size:22px; color:var(--white); letter-spacing:-.02em; }
.newsletter-inner p { font-size:14px; color:rgba(255,255,255,.6); margin-top:4px; }
.newsletter-form { display:flex; gap:10px; }
.newsletter-form input { padding:11px 16px; border-radius:var(--radius-sm); border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.1); color:var(--white); font-family:'Manrope',sans-serif; font-size:14px; width:280px; }
.newsletter-form input::placeholder { color:rgba(255,255,255,.4); }
.newsletter-form input:focus { outline:none; border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.15); }
.newsletter-form .btn { background:var(--white); color:var(--cobalt); }

/* ── FOOTER CTA ── */
.footer-cta { padding:88px 40px; text-align:center; background:var(--off-white); }
.footer-cta-buttons { display:flex; gap:12px; justify-content:center; margin-top:32px; }

/* ── FOOTER ── */
.footer { background:var(--near-black); padding:56px 40px 28px; }
.footer-inner { max-width:var(--max-width); margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand { }
.footer-brand .nav-logo { margin-bottom:12px; }
.footer-brand .nav-logo img, .footer-brand .nav-logo svg { height:24px; filter:brightness(0) invert(1); }
.footer-brand p { font-size:13px; color:#6B7280; max-width:260px; line-height:1.6; }
.footer-social { display:flex; gap:12px; margin-top:16px; }
.footer-social a { width:32px; height:32px; border-radius:8px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color:#6B7280; font-size:14px; transition:all .2s; font-family:'Inter',sans-serif; font-weight:600; }
.footer-social a:hover { background:rgba(255,255,255,.12); color:var(--white); }
.footer-col h5 { font-family:'Inter',sans-serif; font-weight:600; font-size:13px; color:var(--white); margin-bottom:14px; letter-spacing:.02em; text-transform:uppercase; }
.footer-col a { display:block; font-size:13.5px; color:#6B7280; margin-bottom:9px; transition:color .2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { max-width:var(--max-width); margin:0 auto; padding-top:24px; margin-top:40px; border-top:1px solid rgba(255,255,255,.06); display:flex; justify-content:space-between; font-size:12px; color:#4B5563; }

/* ── BLOG ── */
.blog-article { max-width:720px; margin:0 auto; padding:148px 40px 80px; }
.blog-article h1 { font-family:'Inter',sans-serif; font-weight:700; font-size:38px; line-height:1.15; color:var(--near-black); letter-spacing:-.03em; margin-bottom:8px; }
.blog-meta { font-family:'Inter',sans-serif; font-size:14px; color:var(--mid-gray); margin-bottom:32px; display:flex; align-items:center; gap:8px; }
.blog-meta-sep { color:var(--light-gray); }
.blog-hero-image { width:100%; border-radius:var(--radius); margin-bottom:32px; }
.blog-content { font-size:16px; color:var(--dark-gray); line-height:1.8; }
.blog-content h2 { font-family:'Inter',sans-serif; font-weight:700; font-size:24px; color:var(--near-black); letter-spacing:-.02em; margin:40px 0 16px; }
.blog-content h3 { font-family:'Inter',sans-serif; font-weight:600; font-size:20px; color:var(--near-black); letter-spacing:-.02em; margin:32px 0 12px; }
.blog-content p { margin-bottom:20px; }
.blog-content ul, .blog-content ol { margin-bottom:20px; padding-left:24px; }
.blog-content li { margin-bottom:8px; }
.blog-content a { color:var(--cobalt); text-decoration:underline; text-underline-offset:2px; }
.blog-content a:hover { opacity:.8; }
.blog-content img { border-radius:var(--radius); margin:24px 0; }
.blog-content blockquote { border-left:3px solid var(--cobalt); padding-left:20px; margin:24px 0; color:var(--mid-gray); font-style:italic; }
.blog-content code { font-family:'Chivo Mono',monospace; font-size:14px; background:var(--off-white); padding:2px 6px; border-radius:4px; color:var(--near-black); }
.blog-content pre { background:var(--near-black); color:#a5d6ff; border-radius:var(--radius-sm); padding:20px; font-family:'Chivo Mono',monospace; font-size:13px; line-height:1.6; overflow-x:auto; margin:24px 0; }
.blog-content pre code { background:none; padding:0; color:inherit; font-size:inherit; }
.blog-content hr { border:none; border-top:1px solid var(--light-gray); margin:40px 0; }

/* Blog listing */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { text-decoration:none; display:flex; flex-direction:column; transition:all .25s ease; }
.blog-card:hover { transform:translateY(-3px); }
.blog-card-image { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius) var(--radius) 0 0; }
.blog-card-body { padding:20px 0 0; }
.blog-card-date { font-family:'Inter',sans-serif; font-size:13px; color:var(--mid-gray); }
.blog-card-body h3 { font-family:'Inter',sans-serif; font-weight:600; font-size:17px; color:var(--near-black); margin:8px 0; letter-spacing:-.02em; line-height:1.35; }
.blog-card-body p { font-size:14px; color:var(--mid-gray); line-height:1.6; }

/* ── PATH CARDS ── */
.path-card { text-decoration:none; display:block; padding:32px; border-width:2px; border-style:solid; }
.path-card-core { border-color:rgba(34,94,236,.12); background:linear-gradient(135deg,rgba(34,94,236,.02),rgba(89,138,255,.04)); }
.path-card-forge { border-color:rgba(82,178,91,.12); background:linear-gradient(135deg,rgba(82,178,91,.02),rgba(82,178,91,.04)); }
.path-card-header { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.path-card-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.path-card-icon-core { background:rgba(34,94,236,.08); }
.path-card-icon-forge { background:rgba(82,178,91,.08); }
.path-card-label { font-family:'Inter',sans-serif; font-weight:700; font-size:12px; letter-spacing:.06em; text-transform:uppercase; }
.path-card-label-core { color:var(--cobalt); }
.path-card-label-forge { color:var(--green); }
.path-card h3 { font-family:'Inter',sans-serif; font-weight:700; font-size:22px; color:var(--near-black); margin-bottom:8px; letter-spacing:-.02em; }
.path-card p { font-size:15px; color:var(--mid-gray); line-height:1.6; margin-bottom:16px; }
.path-card-cta { font-family:'Inter',sans-serif; font-weight:500; font-size:14px; }
.path-card-cta-core { color:var(--cobalt); }
.path-card-cta-forge { color:var(--green); }

/* ── SECTION UTILITIES ── */
.section-flush { padding:0 40px 80px; max-width:var(--max-width); margin:0 auto; }
.section-no-top { padding-top:0; }
.caption { text-align:center; font-size:13px; color:var(--mid-gray); }

/* ── STEP CONTENT (How It Works) ── */
.step-title { font-family:'Inter',sans-serif; font-weight:600; font-size:20px; color:var(--near-black); margin-bottom:12px; }
.step-desc { font-size:15px; color:var(--mid-gray); }

/* ── PROBLEM / SOLUTION CARDS ── */
.card-problem { background:var(--off-white); }
.card-solution { background:rgba(34,94,236,.03); border-color:rgba(34,94,236,.15); }
.card-problem h4 { color:var(--mid-gray); }
.card-solution h4 { color:var(--cobalt); }

/* ── MODAL ── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:200; backdrop-filter:blur(4px); }
.modal-dialog { display:none; position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); background:white; border-radius:16px; padding:36px 40px; max-width:600px; width:90%; max-height:85vh; overflow-y:auto; z-index:201; box-shadow:0 24px 48px rgba(0,0,0,.2); }
.modal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.modal-title { font-family:'Inter',sans-serif; font-weight:700; font-size:20px; color:var(--near-black); }
.modal-close { background:none; border:none; font-size:24px; color:var(--mid-gray); cursor:pointer; padding:4px; }

/* ── INSTALL STEPS ── */
.install-url { display:flex; align-items:center; gap:8px; background:var(--off-white); border:1px solid var(--light-gray); border-radius:10px; padding:12px 16px; margin:16px 0 24px; font-family:'Chivo Mono',monospace; font-size:14px; color:var(--dark-gray); }
.install-url code { flex:1; }
.install-url button { background:none; border:1px solid var(--light-gray); border-radius:6px; padding:6px 10px; cursor:pointer; font-size:16px; transition:all .15s; }
.install-url button:hover { background:var(--cobalt); color:white; border-color:var(--cobalt); }
.install-step { display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--light-gray); }
.install-step:last-child { border-bottom:none; }
.install-step-num { width:32px; height:32px; border-radius:50%; background:rgba(34,94,236,.08); display:flex; align-items:center; justify-content:center; font-family:'Inter',sans-serif; font-weight:600; font-size:14px; color:var(--cobalt); flex-shrink:0; }
.install-step-content h4 { font-family:'Inter',sans-serif; font-weight:600; font-size:15px; color:var(--near-black); margin-bottom:4px; }
.install-step-content p { font-size:14px; color:var(--mid-gray); line-height:1.5; }
.install-step-content ul { font-size:14px; color:var(--mid-gray); line-height:1.6; margin-top:6px; padding-left:20px; }
.install-step-content ul li { margin-bottom:4px; }
.install-step-content strong { color:var(--near-black); }
.install-code { background:var(--near-black); color:#a5d6ff; border-radius:8px; padding:16px; font-family:'Chivo Mono',monospace; font-size:13px; line-height:1.5; margin:12px 0; overflow-x:auto; white-space:pre; }

/* ── COPY URL BOX ── */
.copy-url { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:10px; padding:10px 16px; font-family:'Chivo Mono',monospace; font-size:14px; color:rgba(255,255,255,.8); }
.copy-btn { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:6px; padding:5px 12px; cursor:pointer; font-size:12px; font-family:'Inter',sans-serif; font-weight:500; color:rgba(255,255,255,.7); transition:all .15s; }
.copy-btn:hover { background:rgba(255,255,255,.2); color:rgba(255,255,255,.9); }

/* ── USE CASE CARDS ── */
.card-link { text-decoration:none; display:flex; flex-direction:column; }
.card-link p { flex:1; }

/* ── REVEAL STAGGER ── */
.stagger-1 { transition-delay:.05s; }
.stagger-2 { transition-delay:.1s; }
.stagger-3 { transition-delay:.15s; }
.stagger-4 { transition-delay:.2s; }
.stagger-5 { transition-delay:.25s; }
.stagger-6 { transition-delay:.3s; }

/* ── HERO IMAGE + SVG ANIMATION ── */
.hero-img_wrap { position:relative; z-index:0; width:100%; margin:-40px auto 0; text-align:center; padding-bottom:60px; }
.hero-img_wrap .hero-img-inner { position:relative; overflow:hidden; }
.hero-img { width:100%; height:auto; clip-path:inset(0 0 20% 0); margin-bottom:-20%; transform:scale(0.8); }
.hero-svg { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; display:flex; justify-content:center; align-items:center; }
.hero-svg svg { width:100%; height:auto; overflow:visible; max-height:100%; }

[path-follow] { color:green; opacity:0; }

[left-side-path], [right-side-path] { stroke-dasharray:1; stroke-dashoffset:1; fill:none; stroke-linecap:round; stroke-linejoin:round; }

.hero-svg .logo { filter:grayscale(100) brightness(0.95); transform:scale(.92); transition:filter .4s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1), opacity .3s ease; position:relative; z-index:1; opacity:.85; }
.hero-svg .logo.with-color { filter:grayscale(0) brightness(1); transform:scale(1); opacity:1; }

.hero-svg :is(.logo, [logo-pulse]) { transform-box:fill-box; transform-origin:center; animation:none; }
.hero-svg .logo.to-pulse [logo-pulse] { animation:logoPulseBg 1.2s ease-out; }
.hero-svg .logo.to-pulse { animation:logoPulse .7s ease-out; }

[logo-dot].for-gray { fill:#E1E1E1; }
[random-circle] { opacity:0; }
[final-path] { color:transparent; }
[random-circle].for-blue { fill:#598AFF; opacity:1; }
[random-circle].for-gray { fill:#E1E1E1; opacity:1; }
[random-circle].for-gray.to-hide { opacity:0; }
[random-circle].for-blue.to-hide { opacity:0; }
[final-dot] { opacity:0; }
[final-dot].to-show { opacity:1; }

@keyframes logoPulseBg {
  0% { transform:scale(1); opacity:0; }
  10% { transform:scale(1); opacity:1; }
  90% { transform:scale(1.5); opacity:0; }
  100% { transform:scale(1); opacity:0; }
}
@keyframes logoPulse {
  0% { transform:scale(1); }
  40% { transform:scale(.95); }
  100% { transform:scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-right .btn { display:none; }
  .nav-hamburger { display:flex; }
  .nav-inner { padding:0 20px; }
  .nav-open { height:auto; background:rgba(255,255,255,1); }
  .nav-open .nav-inner { height:68px; }
  .nav-open .nav-mobile { display:block; border-top:1px solid var(--light-gray); padding-top:8px; }
  .section, .section-sm { padding:48px 20px; }
  .page-hero { padding-top:148px; }
  .page-hero h1 { font-size:32px; }
  .section-heading { font-size:26px; }
  .section-heading-lg { font-size:30px; }
  .grid-2, .grid-3, .grid-4, .stats-row { grid-template-columns:1fr; }
  .stats-row { border:none; gap:1px; background:var(--light-gray); border-radius:var(--radius); }
  .stat-item { border-right:none; background:var(--white); }
  .hero-ctas { flex-direction:column; align-items:center; }
  .trust-logos { flex-wrap:wrap; }
  .footer-inner { grid-template-columns:1fr; gap:28px; }
  .section-flush { padding:0 20px 48px; }
  .gradient-band { padding:56px 20px; }
  .footer-cta { padding:56px 20px; }
  .footer-bottom { flex-direction:column; gap:6px; }
  .footer-cta-buttons { flex-direction:column; align-items:center; }
  .newsletter-inner { flex-direction:column; text-align:center; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form input { width:100%; }
  .hero-img_wrap { margin-top:0; }
  .blog-article { padding:108px 20px 48px; }
  .blog-article h1 { font-size:28px; }
  .blog-grid { grid-template-columns:1fr; }
}
