:root{
--bg:#f7f9fc;
--bg-alt:#ffffff;
--ink:#0f172a;
--navy:#0b1220;
--navy-soft:#111c33;
--text-muted:#64748b;
--border:#e2e8f0;
--amber:#f59e0b;
--amber-dark:#d97706;
--teal:#0d9488;
--teal-dark:#0f766e;
--teal-soft:rgba(13,148,136,0.10);
--font-display:'Space Grotesk',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
background:
radial-gradient(900px 560px at 12% -8%, rgba(245,158,11,0.05), transparent 60%),
radial-gradient(760px 520px at 96% 6%, rgba(13,148,136,0.06), transparent 60%),
var(--bg);
background-attachment:fixed;
color:var(--ink);
line-height:1.55;
}
a{color:inherit;}
img{max-width:100%;}

/* ---------- Nav ---------- */
.site-nav{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1320px;
margin:0 auto;
padding:20px 24px;
}
.site-nav .logo{
display:flex;
align-items:center;
text-decoration:none;
}
.site-nav .logo img{
height:28px;
width:auto;
display:block;
}
.nav-right{
display:flex;
align-items:center;
gap:20px;
}
.site-nav .links{
display:flex;
gap:28px;
align-items:center;
}
.site-nav .links a{
text-decoration:none;
color:var(--text-muted);
font-size:14px;
font-weight:600;
transition:color 0.15s ease;
}
.site-nav .links a:hover,
.site-nav .links a.active{
color:var(--ink);
}
.site-nav .cta{
background:var(--amber);
color:#1a1205 !important;
padding:9px 16px;
border-radius:8px;
font-weight:700 !important;
}
.site-nav .cta:hover{background:var(--amber-dark);}

/* Persistent "Log in" link, visible outside the hamburger on every screen size */
.site-nav .login-link{
color:var(--ink) !important;
font-weight:600 !important;
font-size:14px;
text-decoration:none;
white-space:nowrap;
}
.site-nav .login-link:hover{color:var(--teal) !important;}

/* ---------- Shared layout ---------- */
.container{
max-width:1320px;
margin:0 auto;
padding:0 24px;
}
.wrap{
max-width:640px;
width:100%;
text-align:center;
margin:0 auto;
}
section{
padding:64px 0;
}
.section-narrow{
max-width:720px;
margin:0 auto;
text-align:center;
}
.eyebrow{
display:inline-block;
padding:6px 14px;
border-radius:999px;
background:rgba(245,158,11,0.10);
color:var(--amber-dark);
font-size:13px;
font-weight:600;
letter-spacing:0.02em;
margin-bottom:20px;
border:1px solid rgba(245,158,11,0.25);
}
h1{
font-family:var(--font-display);
font-size:clamp(29px,5vw,46px);
line-height:1.14;
margin:0 0 16px;
font-weight:700;
letter-spacing:-0.02em;
color:var(--ink);
}
h1 span, h2 span{color:var(--amber-dark);}
h2{
font-family:var(--font-display);
font-size:clamp(24px,3.5vw,32px);
line-height:1.2;
margin:0 0 14px;
font-weight:700;
letter-spacing:-0.015em;
color:var(--ink);
}
p.lead{
color:var(--text-muted);
font-size:18px;
margin:0 0 36px;
max-width:560px;
margin-left:auto;
margin-right:auto;
}
.section-sub{
color:var(--text-muted);
font-size:16px;
max-width:560px;
margin:0 auto 40px;
}

/* ---------- Hero ---------- */
.hero{
position:relative;
overflow:hidden;
}
.hero-glow{
position:absolute;
inset:-120px 0 auto 0;
height:480px;
z-index:0;
pointer-events:none;
background:
radial-gradient(420px 300px at 20% 30%, rgba(13,148,136,0.16), transparent 70%),
radial-gradient(380px 280px at 80% 20%, rgba(245,158,11,0.16), transparent 70%);
filter:blur(10px);
animation:heroDrift 14s ease-in-out infinite alternate;
}
@keyframes heroDrift{
0%{transform:translate(0,0) scale(1);}
100%{transform:translate(2%,3%) scale(1.06);}
}
.hero .container{position:relative;z-index:1;}
@media (prefers-reduced-motion:reduce){
.hero-glow{animation:none;}
}

/* ---------- Buttons ---------- */
.btn-row{
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
margin-top:8px;
}
.btn{
display:inline-block;
padding:14px 24px;
border-radius:10px;
border:none;
background:var(--amber);
color:#1a1205;
font-weight:700;
font-size:15px;
cursor:pointer;
text-decoration:none;
transition:background 0.15s ease, transform 0.15s ease;
white-space:nowrap;
}
.btn:hover{background:var(--amber-dark);box-shadow:0 8px 20px -4px rgba(217,119,6,0.45);transform:translateY(-1px);}
.btn{transition:background 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;}
.btn:disabled{opacity:0.6;cursor:not-allowed;}
.btn-outline{
background:transparent;
border:1px solid var(--border);
color:var(--ink);
}
.btn-outline:hover{border-color:var(--teal);color:var(--teal-dark);background:transparent;}

/* ---------- Status / form messages ---------- */
.msg{
min-height:22px;
font-size:14px;
margin-bottom:8px;
}
.msg.success{color:#0f9d58;}
.msg.error{color:#dc2626;}

/* ---------- Feature / step cards ---------- */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:8px;
text-align:left;
}
.grid.cols-3{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));}
.card{
background:var(--bg-alt);
border:1px solid var(--border);
border-radius:14px;
padding:24px;
box-shadow:0 1px 2px rgba(15,23,42,0.04);
}
.card h3{
font-size:16px;
margin:0 0 8px;
color:var(--ink);
}
.card p{
font-size:14px;
color:var(--text-muted);
margin:0;
}
.card .num{
display:inline-flex;
align-items:center;
justify-content:center;
width:32px;
height:32px;
border-radius:8px;
background:var(--teal-soft);
color:var(--teal-dark);
font-weight:800;
font-size:14px;
margin-bottom:14px;
}

/* ---------- Pricing ---------- */
.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:16px;
align-items:stretch;
}
.price-card{
background:var(--bg-alt);
border:1px solid var(--border);
border-radius:16px;
padding:32px 28px;
display:flex;
flex-direction:column;
text-align:left;
position:relative;
box-shadow:0 1px 3px rgba(15,23,42,0.05);
}
.price-card.featured{
border-color:var(--amber);
background:linear-gradient(180deg, rgba(245,158,11,0.07), var(--bg-alt) 40%);
}
.price-card .badge-pop{
position:absolute;
top:-12px;
right:24px;
background:var(--amber);
color:#1a1205;
font-size:12px;
font-weight:800;
padding:4px 10px;
border-radius:999px;
}
.price-card h3{
font-size:18px;
margin:0 0 4px;
color:var(--ink);
}
.price-card .who{
font-size:13px;
color:var(--text-muted);
margin-bottom:20px;
}
.price-card .price{
font-family:var(--font-display);
font-size:38px;
font-weight:700;
margin-bottom:4px;
color:var(--ink);
}
.price-card .price small{
font-size:14px;
font-weight:500;
color:var(--text-muted);
}
.price-card ul{
list-style:none;
padding:0;
margin:20px 0 28px;
flex:1;
}
.price-card li{
font-size:14px;
color:#334155;
padding:7px 0;
padding-left:24px;
position:relative;
}
.price-card li::before{
content:"✓";
position:absolute;
left:0;
color:var(--teal);
font-weight:700;
}

/* ---------- Comparison table ---------- */
.compare-table{
width:100%;
border-collapse:collapse;
margin-top:8px;
font-size:14px;
}
.compare-table th, .compare-table td{
padding:14px 16px;
border-bottom:1px solid var(--border);
text-align:left;
}
.compare-table th{
color:var(--text-muted);
font-weight:600;
font-size:13px;
text-transform:uppercase;
letter-spacing:0.03em;
}
.compare-table td.highlight, .compare-table th.highlight{
background:rgba(245,158,11,0.06);
}
.compare-table tr:last-child td{border-bottom:none;}

/* ---------- Footer ---------- */
.site-footer{
border-top:1px solid var(--border);
margin-top:40px;
padding:56px 24px 32px;
background:var(--bg-alt);
}
.footer-grid{
max-width:1320px;
margin:0 auto;
display:grid;
grid-template-columns:1.4fr 1fr 1fr 1fr;
gap:32px;
margin-bottom:40px;
}
.footer-brand .logo img{height:26px;width:auto;display:block;margin-bottom:12px;}
.footer-brand p{
font-size:13px;
color:var(--text-muted);
max-width:260px;
margin:0;
}
.footer-col h4{
font-size:13px;
font-weight:700;
color:var(--ink);
margin:0 0 14px;
text-transform:uppercase;
letter-spacing:0.03em;
}
.footer-col ul{
list-style:none;
margin:0;
padding:0;
}
.footer-col li{margin-bottom:10px;}
.footer-col a{
font-size:14px;
color:var(--text-muted);
text-decoration:none;
}
.footer-col a:hover{color:var(--teal-dark);}
.footer-bottom{
max-width:1320px;
margin:0 auto;
padding-top:24px;
border-top:1px solid var(--border);
text-align:center;
font-size:13px;
color:#64748b;
/* copyright line kept subtle but readable on white footer */
}
@media (max-width:760px){
.footer-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:640px){
section{padding:48px 0;}
.footer-grid{grid-template-columns:1fr;gap:28px;}
}

/* ---------- Contact form ---------- */
form.contact-form{
display:flex;
flex-direction:column;
gap:12px;
max-width:480px;
margin:0 auto 14px;
}
form.contact-form input,
form.contact-form textarea{
padding:14px 16px;
border-radius:10px;
border:1px solid var(--border);
background:var(--bg-alt);
color:var(--ink);
font-size:15px;
font-family:inherit;
outline:none;
resize:vertical;
}
form.contact-form input:focus,
form.contact-form textarea:focus{border-color:var(--teal);}

/* ---------- Mobile nav ---------- */
.nav-toggle{
display:none;
background:none;
border:none;
padding:8px;
margin:-8px;
cursor:pointer;
color:var(--ink);
}
.nav-toggle svg{display:block;width:24px;height:24px;}
.nav-toggle .icon-close{display:none;}
.nav-toggle.is-open .icon-menu{display:none;}
.nav-toggle.is-open .icon-close{display:block;}

@media (max-width:640px){
.nav-toggle{display:block;}
.site-nav .links{
display:none;
position:fixed;
top:64px;
left:0;
right:0;
bottom:0;
z-index:100;
background:var(--bg-alt);
flex-direction:column;
align-items:stretch;
gap:0;
padding:8px 24px 24px;
overflow-y:auto;
}
.site-nav .links.is-open{display:flex;}
.site-nav .links a{
padding:16px 4px;
border-bottom:1px solid var(--border);
font-size:16px;
}
.site-nav .links a.cta{
text-align:center;
margin-top:16px;
border-bottom:none;
padding:14px 16px;
}
}

/* ---------- Table scroll wrapper (mobile) ---------- */
.table-scroll{
width:100%;
overflow-x:auto;
-webkit-overflow-scrolling:touch;
}
@media (max-width:640px){
.compare-table{min-width:560px;}
}

/* ---------- Icon badges (step cards / feature cards) ---------- */
.icon-badge{
position:relative;
display:inline-flex;
align-items:center;
justify-content:center;
width:44px;
height:44px;
border-radius:12px;
background:var(--teal-soft);
color:var(--teal-dark);
margin-bottom:14px;
}
.icon-badge svg{width:22px;height:22px;stroke-width:2;}
.icon-badge .step-no{
position:absolute;
top:-8px;
right:-8px;
width:20px;
height:20px;
border-radius:50%;
background:var(--amber);
color:#1a1205;
font-size:11px;
font-weight:800;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 1px 3px rgba(15,23,42,0.18);
}
.price-card .icon-badge{background:rgba(245,158,11,0.12);color:var(--amber-dark);}
.price-card.featured .icon-badge{background:rgba(245,158,11,0.18);}

/* ---------- Card + pricing hover lift ---------- */
.card{
transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover{
transform:translateY(-4px);
box-shadow:0 14px 28px rgba(15,23,42,0.09);
border-color:rgba(13,148,136,0.35);
}
.price-card{
transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover{
transform:translateY(-4px);
box-shadow:0 16px 32px rgba(15,23,42,0.10);
}
.price-card.featured .badge-pop{
animation:badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse{
0%,100%{transform:scale(1);}
50%{transform:scale(1.08);}
}

/* ---------- Decorative background shapes ---------- */
section{position:relative;}
section > .container{position:relative;z-index:1;}
.shape-field{
position:absolute;
inset:0;
overflow:hidden;
z-index:0;
pointer-events:none;
border-radius:inherit;
}
.shape-blob{
position:absolute;
border-radius:50%;
filter:blur(36px);
opacity:0.35;
animation:shapeFloat 10s ease-in-out infinite alternate;
}
.shape-blob.teal{background:rgba(13,148,136,0.30);}
.shape-blob.amber{background:rgba(245,158,11,0.30);}
@keyframes shapeFloat{
0%{transform:translate(0,0);}
100%{transform:translate(14px,-18px);}
}

/* ---------- Scroll reveal ---------- */
.reveal-init{
opacity:0;
transform:translateY(18px);
transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-init.in-view{
opacity:1;
transform:translateY(0);
}

/* ---------- Trust bar (real experience / credibility strip) ---------- */
.trust-bar{
background:var(--bg-alt);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
padding:32px 0;
}
.trust-bar-inner{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:center;
gap:28px;
}
.trust-stat{
display:flex;
align-items:baseline;
gap:16px;
flex-wrap:wrap;
}
.trust-number{
font-family:var(--font-display);
font-size:42px;
font-weight:700;
color:var(--teal-dark);
line-height:1;
white-space:nowrap;
}
.trust-label{
font-size:14px;
color:var(--text-muted);
max-width:360px;
}
.trust-label strong{color:var(--ink);}
.trust-label a{
display:inline-block;
margin-left:6px;
color:var(--amber-dark);
font-weight:600;
text-decoration:none;
white-space:nowrap;
}
.trust-label a:hover{text-decoration:underline;}
.trust-badges{
display:flex;
flex-wrap:wrap;
gap:20px;
}
.trust-badge{
display:flex;
align-items:center;
gap:8px;
font-size:13px;
font-weight:600;
color:var(--ink);
}
.trust-badge svg{width:18px;height:18px;stroke-width:2;color:var(--teal);flex-shrink:0;}

@media (max-width:640px){
.trust-bar-inner{flex-direction:column;align-items:flex-start;}
.trust-badges{gap:14px 22px;}
}

@media (prefers-reduced-motion:reduce){
.shape-blob{animation:none;}
.price-card.featured .badge-pop{animation:none;}
.reveal-init{opacity:1;transform:none;transition:none;}
.card:hover, .price-card:hover{transform:none;}
}

/* ---------- Hero mini stats ---------- */
.hero-stats{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:40px;
padding-top:28px;
border-top:1px solid var(--border);
}
.hero-stat{
display:flex;
flex-direction:column;
align-items:center;
gap:2px;
min-width:130px;
}
.hero-stat strong{
font-family:var(--font-display);
font-size:23px;
font-weight:700;
color:var(--ink);
}
.hero-stat > span{
font-size:12.5px;
color:var(--text-muted);
max-width:150px;
text-align:center;
}
.hero-stat-divider{
width:1px;
height:32px;
background:var(--border);
}
@media (max-width:640px){
.hero-stat-divider{display:none;}
}

/* ---------- Methodology / transparency section ---------- */
.method-section{
background:var(--bg-alt);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
}
.method-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:48px;
align-items:center;
}
.method-grid h2{text-align:left;}
.method-steps{
display:flex;
flex-direction:column;
gap:20px;
}
.method-step{
display:flex;
gap:14px;
align-items:flex-start;
}
.method-step svg{
width:22px;
height:22px;
stroke-width:2;
color:var(--teal-dark);
flex-shrink:0;
margin-top:2px;
}
.method-step strong{
display:block;
font-size:15px;
color:var(--ink);
margin-bottom:2px;
}
.method-step span{
font-size:13.5px;
color:var(--text-muted);
}
@media (max-width:760px){
.method-grid{grid-template-columns:1fr;gap:32px;}
.method-grid h2, .method-grid .section-sub{text-align:center;}
.method-grid > div:first-child{text-align:center;}
.method-grid > div:first-child .btn-outline{display:inline-block;}
}

/* ---------- Blog index ---------- */
.grid.cols-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.blog-card{
display:flex;
flex-direction:column;
text-decoration:none;
color:inherit;
}
.blog-card-tag{
display:inline-block;
font-size:12px;
font-weight:700;
color:var(--teal-dark);
background:var(--teal-soft);
padding:4px 10px;
border-radius:999px;
margin-bottom:12px;
align-self:flex-start;
}
.blog-card h3{
font-size:19px;
margin:0 0 10px;
color:var(--ink);
line-height:1.3;
}
.blog-card p{
font-size:14px;
color:var(--text-muted);
margin:0 0 16px;
flex:1;
}
.blog-card-meta{
font-size:12.5px;
color:var(--text-muted);
font-weight:600;
}

/* ---------- Blog post / article body ---------- */
.blog-back{
display:inline-block;
font-size:14px;
font-weight:600;
color:var(--text-muted);
text-decoration:none;
margin-bottom:20px;
}
.blog-back:hover{color:var(--teal-dark);}
.blog-meta{
font-size:14px;
color:var(--text-muted);
margin:0 0 8px;
}
.article-body{
max-width:720px;
margin:0 auto;
text-align:left;
}
.article-body p{
font-size:16px;
line-height:1.7;
color:#334155;
margin:0 0 20px;
}
.article-body h2{
font-size:22px;
margin:40px 0 14px;
text-align:left;
}
.article-body h3{
font-size:18px;
margin:0 0 10px;
text-align:left;
}
.article-body strong{color:var(--ink);}
.blog-cta{
margin-top:44px;
padding:32px;
border-radius:16px;
background:var(--bg-alt);
border:1px solid var(--border);
text-align:center;
}
.blog-cta h3{margin:0 0 8px;text-align:center;}
.blog-cta p{color:var(--text-muted);margin:0 0 20px;}

/* ---------- FAQ mini cards ---------- */
.faq-mini{
display:flex;
gap:14px;
align-items:flex-start;
padding:20px 22px;
}
.faq-mini svg{
width:20px;
height:20px;
stroke-width:2;
color:var(--amber-dark);
flex-shrink:0;
margin-top:2px;
}
.faq-mini h3{font-size:15px;margin:0 0 4px;}
.faq-mini p{font-size:13.5px;margin:0;}
.faq-mini p a{color:var(--amber-dark);font-weight:600;text-decoration:none;}
.faq-mini p a:hover{text-decoration:underline;}

/* ---------- Starter plan launch bonus box ---------- */
.starter-bonus{
margin:4px 0 20px;
padding:14px 16px;
border-radius:10px;
background:rgba(245,158,11,0.08);
border:1px dashed rgba(245,158,11,0.35);
}
.starter-bonus-label{
display:flex;
align-items:center;
gap:6px;
font-size:12.5px;
font-weight:700;
color:var(--amber-dark);
margin-bottom:8px;
}
.starter-bonus-label svg{width:14px;height:14px;stroke-width:2;}
.starter-bonus ul{
list-style:none;
margin:0;
padding:0;
}
.starter-bonus li{
font-size:13px;
color:#334155;
padding:4px 0;
padding-left:20px;
position:relative;
}
.starter-bonus li::before{
content:"+";
position:absolute;
left:0;
color:var(--amber-dark);
font-weight:700;
}

/* =====================================================================
   PREMIUM VISUAL LAYER -- added for the pricing-page redesign pass.
   Additive only: new classes, nothing above this line is overridden.
   Goal: move away from "generic AI template" feel toward a more
   technical/premium SaaS look (asymmetric hero, product mockup visual,
   monospace accents, textured backgrounds, editorial statement type).
   ===================================================================== */

/* ---------- Monospace technical accent ---------- */
.mono{
font-family:'IBM Plex Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
}
.eyebrow.mono{
letter-spacing:0.04em;
text-transform:uppercase;
font-size:12px;
}

/* ---------- Two-tone gradient headline accent ---------- */
h1 .grad, h2 .grad{
color:var(--amber-dark); /* fallback for browsers without bg-clip support */
background:linear-gradient(92deg, var(--amber-dark) 0%, var(--teal-dark) 100%);
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color:transparent;
}

/* ---------- Grid-texture background (subtle, technical) ----------
   Applied as a decorative absolutely-positioned layer (like .hero-glow),
   never directly on a section that also holds real content -- mask-image
   affects an element's own rendering, so putting it on the section itself
   would fade out the actual copy/mockup, not just the pattern. */
.grid-texture{
position:absolute;
inset:0;
z-index:0;
pointer-events:none;
background-image:
linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
background-size:42px 42px;
background-position:center top;
-webkit-mask-image:linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
mask-image:linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}

/* ---------- Asymmetric split hero ---------- */
.hero-split{
display:grid;
grid-template-columns:1.05fr 0.95fr;
gap:56px;
align-items:center;
text-align:left;
}
.hero-split .hero-copy h1,
.hero-split .hero-copy p.lead{
text-align:left;
margin-left:0;
margin-right:0;
}
.hero-split .hero-copy .btn-row{
justify-content:flex-start;
}
.hero-split .hero-copy .hero-stats{
justify-content:flex-start;
}
@media (max-width:900px){
.hero-split{grid-template-columns:1fr;text-align:center;}
.hero-split .hero-copy h1,
.hero-split .hero-copy p.lead{text-align:center;margin-left:auto;margin-right:auto;}
.hero-split .hero-copy .btn-row,
.hero-split .hero-copy .hero-stats{justify-content:center;}
}

/* ---------- Product mockup card (fake generated-document preview) ---------- */
.mockup-window{
background:#0b1220;
border-radius:18px;
overflow:hidden;
box-shadow:0 40px 70px -24px rgba(15,23,42,0.45), 0 12px 24px -10px rgba(15,23,42,0.25);
transform:rotate(0.4deg);
}
.mockup-titlebar{
display:flex;
align-items:center;
gap:14px;
padding:13px 18px;
background:rgba(255,255,255,0.03);
border-bottom:1px solid rgba(255,255,255,0.08);
}
.mockup-dots{display:flex;gap:6px;}
.mockup-dot{width:9px;height:9px;border-radius:50%;}
.mockup-dot.d1{background:#f59e0b;}
.mockup-dot.d2{background:#0d9488;}
.mockup-dot.d3{background:#475569;}
.mockup-filename{
font-family:'IBM Plex Mono', monospace;
font-size:12px;
color:rgba(255,255,255,0.45);
}
.mockup-body{padding:24px 24px 28px;}
.mockup-badge{
display:inline-flex;
align-items:center;
gap:6px;
font-family:'IBM Plex Mono', monospace;
font-size:11px;
color:#fbbf24;
background:rgba(245,158,11,0.14);
border:1px solid rgba(245,158,11,0.3);
padding:4px 10px;
border-radius:999px;
margin-bottom:18px;
}
.mockup-label{
font-family:'IBM Plex Mono', monospace;
font-size:10.5px;
letter-spacing:0.06em;
text-transform:uppercase;
color:rgba(255,255,255,0.38);
margin:0 0 8px;
}
.mockup-quote{
font-size:14.5px;
line-height:1.6;
color:rgba(255,255,255,0.88);
padding:14px 16px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.09);
border-left:2px solid #f59e0b;
border-radius:8px;
margin:0 0 20px;
}
.mockup-rows{margin:0 0 20px;}
.mockup-row{
display:flex;
align-items:center;
gap:10px;
padding:7px 0;
border-bottom:1px solid rgba(255,255,255,0.06);
}
.mockup-row:last-child{border-bottom:none;}
.mockup-row-no{
font-family:'IBM Plex Mono', monospace;
font-size:11px;
color:rgba(255,255,255,0.35);
width:18px;
flex-shrink:0;
}
.mockup-row-label{
font-size:13px;
color:rgba(255,255,255,0.78);
}
.mockup-line{
height:8px;
border-radius:4px;
background:rgba(255,255,255,0.10);
margin-bottom:8px;
}
.mockup-line:last-child{margin-bottom:0;width:70%;}

/* ---------- Editorial big-statement section ---------- */
.statement-section{
background:var(--bg-alt);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
}
.statement{
font-family:var(--font-display);
font-size:clamp(22px,2.7vw,30px);
line-height:1.5;
max-width:840px;
margin:0 auto;
text-align:center;
color:var(--text-muted);
font-weight:400;
}
.statement strong{color:var(--ink);font-weight:700;}

/* ---------- Credit / generation pill inside pricing cards ---------- */
.credit-pill{
display:inline-flex;
align-items:center;
gap:6px;
font-family:'IBM Plex Mono', monospace;
font-size:12px;
font-weight:700;
letter-spacing:0.02em;
color:var(--teal-dark);
background:var(--teal-soft);
border:1px solid rgba(13,148,136,0.25);
padding:6px 11px;
border-radius:8px;
margin:2px 0 16px;
}

/* ---------- Founding-member lifetime card ---------- */
.lifetime-card{
position:relative;
border:1px solid rgba(15,23,42,0.08);
border-radius:20px;
padding:40px;
background:linear-gradient(145deg, #0b1220 0%, #111c33 100%);
color:#fff;
overflow:hidden;
}
.lifetime-card::before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(340px 240px at 90% -10%, rgba(245,158,11,0.20), transparent 70%),
radial-gradient(300px 220px at -10% 110%, rgba(13,148,136,0.20), transparent 70%);
pointer-events:none;
}
.lifetime-card > *{position:relative;z-index:1;}
.lifetime-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:40px;
align-items:center;
}
@media (max-width:820px){
.lifetime-grid{grid-template-columns:1fr;text-align:center;}
}
.lifetime-tag{
display:inline-flex;
align-items:center;
gap:6px;
font-family:'IBM Plex Mono', monospace;
font-size:11.5px;
letter-spacing:0.05em;
text-transform:uppercase;
color:#fbbf24;
background:rgba(245,158,11,0.15);
border:1px solid rgba(245,158,11,0.35);
padding:5px 11px;
border-radius:999px;
margin-bottom:16px;
}
.lifetime-card h2{color:#fff;text-align:left;}
.lifetime-card p{color:rgba(255,255,255,0.68);}
@media (max-width:820px){
.lifetime-card h2, .lifetime-card p{text-align:center;}
}
.lifetime-card ul{list-style:none;margin:20px 0 0;padding:0;text-align:left;}
.lifetime-card li{
font-size:14px;
color:rgba(255,255,255,0.85);
padding:6px 0;
padding-left:24px;
position:relative;
}
.lifetime-card li::before{
content:"✓";
position:absolute;
left:0;
color:#2dd4bf;
font-weight:700;
}
.lifetime-price-box{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.12);
border-radius:16px;
padding:28px;
text-align:center;
}
.lifetime-price-box .price{
font-family:var(--font-display);
font-size:46px;
font-weight:700;
color:#fff;
margin-bottom:4px;
}
.lifetime-price-box .price-note{
font-size:13px;
color:rgba(255,255,255,0.55);
margin-bottom:20px;
}
.lifetime-price-box .btn{width:100%;text-align:center;}
.lifetime-spots{
font-family:'IBM Plex Mono', monospace;
font-size:12px;
color:rgba(255,255,255,0.5);
margin-top:14px;
}

/* ---------- Problem statement split (fills the "dead space" between
   the trust bar and the why-buy card grid with a real visual anchor) ---------- */
.problem-section{
background:var(--bg-alt);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
position:relative;
overflow:hidden;
}
.problem-split{
display:grid;
grid-template-columns:1.3fr 0.9fr;
gap:48px;
align-items:center;
text-align:left;
}
.problem-copy .eyebrow{margin-bottom:18px;}
.problem-copy h2{text-align:left;margin-bottom:14px;}
.problem-copy p{
color:var(--text-muted);
font-size:16px;
max-width:520px;
margin:0;
}
.problem-stat{
background:linear-gradient(160deg, rgba(245,158,11,0.08), rgba(13,148,136,0.05));
border:1px solid var(--border);
border-radius:18px;
padding:32px 28px;
text-align:center;
}
.problem-stat-number{
display:block;
font-family:var(--font-display);
font-size:clamp(34px,4.5vw,46px);
font-weight:700;
line-height:1.05;
background:linear-gradient(92deg, var(--amber-dark) 0%, var(--teal-dark) 100%);
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color:transparent;
color:var(--amber-dark);
margin-bottom:10px;
}
.problem-stat-label{
display:block;
font-size:13.5px;
color:var(--text-muted);
line-height:1.5;
}
@media (max-width:820px){
.problem-split{grid-template-columns:1fr;text-align:center;}
.problem-copy h2{text-align:center;}
.problem-copy p{margin-left:auto;margin-right:auto;}
}

/* ---------- Dark technical band (reused "engine" sections across pages) ---------- */
.method-section.dark{
background:linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
border-top:none;
border-bottom:none;
color:#fff;
position:relative;
overflow:hidden;
}
.method-section.dark::before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(360px 260px at 92% -10%, rgba(245,158,11,0.16), transparent 70%),
radial-gradient(320px 240px at -10% 110%, rgba(13,148,136,0.18), transparent 70%);
pointer-events:none;
}
.method-section.dark .container{position:relative;z-index:1;}
.method-section.dark .eyebrow{
background:rgba(245,158,11,0.15);
color:#fbbf24;
border-color:rgba(245,158,11,0.35);
}
.method-section.dark h2{color:#fff;}
.method-section.dark .section-sub{color:rgba(255,255,255,0.68);}
.method-section.dark .method-step strong{color:#fff;}
.method-section.dark .method-step span{color:rgba(255,255,255,0.62);}
.method-section.dark .method-step svg{color:#2dd4bf;}
.method-section.dark .btn-outline{border-color:rgba(255,255,255,0.28);color:#fff;}
.method-section.dark .btn-outline:hover{border-color:#2dd4bf;color:#2dd4bf;background:rgba(255,255,255,0.04);}
@media (max-width:760px){
.method-section.dark .method-grid > div:first-child{text-align:center;}
}

/* ---------- Icon micro-interactions ("cute" polish per Khalid's request) ---------- */
.icon-badge{
transition:transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.2s ease;
}
.card:hover .icon-badge{
transform:rotate(-6deg) scale(1.08);
}
.price-card .icon-badge{transition:transform 0.25s cubic-bezier(.34,1.56,.64,1);}
.price-card:hover .icon-badge{transform:rotate(-6deg) scale(1.08);}

.trust-badge svg{transition:transform 0.2s ease;}
.trust-badge:hover svg{transform:scale(1.15) rotate(-4deg);}

/* Soft idle pulse on the dark technical-band icons -- subtle, not distracting */
.method-section.dark .method-step svg{
animation:iconPulse 3.2s ease-in-out infinite;
}
.method-section.dark .method-step:nth-child(2) svg{animation-delay:0.4s;}
.method-section.dark .method-step:nth-child(3) svg{animation-delay:0.8s;}
@keyframes iconPulse{
0%,100%{opacity:1;transform:scale(1);}
50%{opacity:0.7;transform:scale(1.12);}
}

/* Checkmark pop-in for pricing/lifetime lists, staggered as the card reveals */
.price-card li::before, .lifetime-card li::before{
display:inline-block;
transform:scale(0);
animation:checkPop 0.35s ease forwards;
animation-delay:calc(var(--check-i, 0) * 0.06s + 0.15s);
}
.price-card.in-view li:nth-child(1)::before, .lifetime-card.in-view li:nth-child(1)::before{--check-i:1;}
.price-card.in-view li:nth-child(2)::before, .lifetime-card.in-view li:nth-child(2)::before{--check-i:2;}
.price-card.in-view li:nth-child(3)::before, .lifetime-card.in-view li:nth-child(3)::before{--check-i:3;}
.price-card.in-view li:nth-child(4)::before, .lifetime-card.in-view li:nth-child(4)::before{--check-i:4;}
.price-card.in-view li:nth-child(5)::before, .lifetime-card.in-view li:nth-child(5)::before{--check-i:5;}
.price-card:not(.in-view) li::before, .lifetime-card:not(.in-view) li::before{animation:none;transform:scale(1);}
@keyframes checkPop{
0%{transform:scale(0);}
70%{transform:scale(1.3);}
100%{transform:scale(1);}
}

/* Shimmer sweep on the mockup-window skeleton lines -- reinforces "actively
   generating" story without needing any fake/real content to say so */
.mockup-line{
position:relative;
overflow:hidden;
}
.mockup-line::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
transform:translateX(-100%);
animation:mockupShimmer 2.6s ease-in-out infinite;
}
.mockup-line:nth-child(2)::after{animation-delay:0.3s;}
.mockup-line:nth-child(3)::after{animation-delay:0.6s;}
@keyframes mockupShimmer{
0%{transform:translateX(-100%);}
60%,100%{transform:translateX(100%);}
}

@media (prefers-reduced-motion:reduce){
.card:hover .icon-badge, .price-card:hover .icon-badge{transform:none;}
.trust-badge:hover svg{transform:none;}
.method-section.dark .method-step svg{animation:none;}
.price-card li::before, .lifetime-card li::before{animation:none;transform:scale(1);}
.mockup-line::after{animation:none;display:none;}
}

/* ---------- "See a real example blueprint" section ---------- */
.example-section{position:relative;overflow:hidden;}
.mockup-window-wide{max-width:1040px;margin:0 auto;transform:none;}
.mockup-window-wide .mockup-titlebar{flex-wrap:wrap;row-gap:8px;}
.mockup-cols{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-bottom:22px;
}
.mockup-quote-teal{border-left-color:#2dd4bf;}
@media (max-width:820px){
.mockup-cols{grid-template-columns:1fr;gap:20px;}
.mockup-window-wide .mockup-badge{margin:0 !important;}
}
