/* CreatorFlows — shared stylesheet */

:root{
  --bg: #FBF8F3;
  --bg-deep: #F3EEE2;
  --surface: #FFFFFF;
  --surface-soft: #F4EFE4;
  --ink: #161A15;
  --ink-soft: #4C5A48;
  --muted: #7C8478;
  --green: #25D366;
  --green-dark: #128C7E;
  --green-deep: #075E54;
  --gold: #B8935A;
  --gold-soft: #EDE1CC;
  --line: #E4DCC8;
  --line-strong: #D8CDB2;
  --wallpaper: #E9E3D6;
  --tick-blue: #34B7F1;
  --radius: 18px;
  --shadow-soft: 0 30px 60px -30px rgba(20,26,20,0.18);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}
body{
  position:relative;
  overflow-x:hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
.serif{font-family:'Instrument Serif', serif; font-style:normal;}
.mono{font-family:'IBM Plex Mono', monospace;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1140px; margin:0 auto; padding:0 32px;}
.wrap-narrow{max-width:820px; margin:0 auto; padding:0 32px;}
::selection{background:var(--green); color:#fff;}
img{max-width:100%; display:block;}
:focus-visible{outline:2.5px solid var(--green-dark); outline-offset:3px; border-radius:4px;}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:80;
  background:rgba(251,248,243,0.86); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
nav{display:flex; align-items:center; justify-content:space-between; padding:18px 32px; max-width:1140px; margin:0 auto; position:relative;}
.logo{display:flex; align-items:center; gap:9px; font-weight:800; font-size:19px; letter-spacing:-0.01em;}
.logo .mark{width:26px; height:26px; border-radius:8px; background:var(--green); display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px -4px rgba(37,211,102,0.6); flex-shrink:0;}
.logo .mark svg{width:14px; height:14px;}
.nav-links{display:flex; gap:30px; font-size:14.5px; color:var(--ink-soft); font-weight:500;}
.nav-links a{padding:4px 0; border-bottom:1.5px solid transparent; transition:color .18s ease, border-color .18s ease;}
.nav-links a:hover, .nav-links a[aria-current="page"]{color:var(--ink); border-color:var(--green-dark);}
.nav-right{display:flex; align-items:center; gap:18px;}
.nav-cta{font-size:14px; font-weight:600; padding:11px 20px; border-radius:100px; background:var(--ink); color:#fff; transition:transform .18s ease, opacity .18s ease; white-space:nowrap;}
.nav-cta:hover{transform:translateY(-1px); opacity:0.88;}
.nav-toggle{display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--line); background:var(--surface); align-items:center; justify-content:center; flex-shrink:0;}
.nav-toggle span{display:block; width:18px; height:1.5px; background:var(--ink); position:relative;}
.nav-toggle span::before, .nav-toggle span::after{content:""; position:absolute; left:0; width:18px; height:1.5px; background:var(--ink); transition:transform .2s ease;}
.nav-toggle span::before{top:-6px;} .nav-toggle span::after{top:6px;}
.mobile-menu{display:none; flex-direction:column; gap:2px; padding:8px 32px 20px; border-top:1px solid var(--line);}
.mobile-menu a{padding:12px 4px; font-size:15px; color:var(--ink-soft); font-weight:500; border-bottom:1px solid var(--line);}
.mobile-menu a:last-child{border-bottom:none;}
.mobile-menu.open{display:flex;}
@media (max-width:820px){
  .nav-links{display:none;}
  .nav-toggle{display:flex;}
  .nav-cta{padding:10px 16px; font-size:13.5px;}
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero{padding:64px 0 56px; border-bottom:1px solid var(--line);}
.page-eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:0.04em;
  text-transform:uppercase; color:var(--green-dark); background:rgba(37,211,102,0.1);
  padding:7px 14px; border-radius:100px; margin-bottom:20px;
}
.page-eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--green);}
.page-hero h1{
  font-family:'Instrument Serif', serif; font-weight:400; font-size:clamp(34px, 4.6vw, 52px);
  line-height:1.06; letter-spacing:-0.01em; margin-bottom:18px; max-width:780px;
}
.page-hero .lead{font-size:17px; color:var(--ink-soft); max-width:600px;}
.breadcrumb{font-size:13px; color:var(--muted); margin-bottom:18px; display:flex; align-items:center; gap:6px;}
.breadcrumb a{color:var(--muted);}
.breadcrumb a:hover{color:var(--ink-soft);}

/* ---------- Home hero ---------- */
.hero{padding:88px 0 96px; display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;}
@media (max-width:900px){ .hero{grid-template-columns:1fr; padding:52px 0 44px;} }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; letter-spacing:0.04em;
  text-transform:uppercase; color:var(--green-dark); background:rgba(37,211,102,0.1);
  padding:7px 14px; border-radius:100px; margin-bottom:24px;
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--green);}
h1{
  font-family:'Instrument Serif', serif; font-weight:400; font-size:clamp(38px, 5vw, 60px);
  line-height:1.04; letter-spacing:-0.01em; margin-bottom:24px; color:var(--ink);
}
h1 .accent{color:var(--green-dark); font-style:italic;}
.hero p.lead{font-size:17.5px; color:var(--ink-soft); max-width:470px; margin-bottom:36px;}
.cta-row{display:flex; gap:14px; flex-wrap:wrap;}
.btn-primary, .btn-ghost, .btn-dark{
  font-size:14.5px; font-weight:600; padding:15px 26px; border-radius:100px;
  display:inline-flex; align-items:center; gap:8px; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor:pointer; border:none; font-family:inherit;
}
.btn-primary{background:var(--green); color:#083A2A;}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 28px -12px rgba(37,211,102,0.55);}
.btn-ghost{border:1.5px solid var(--line); color:var(--ink); background:transparent;}
.btn-ghost:hover{border-color:var(--green-dark); color:var(--green-dark);}
.btn-dark{background:var(--ink); color:#fff;}
.btn-dark:hover{transform:translateY(-2px); opacity:0.9;}

.trust-row{display:flex; align-items:center; gap:22px; margin-top:40px; flex-wrap:wrap;}
.trust-row .stars{color:var(--gold); font-size:14px; letter-spacing:1px;}
.trust-row .trust-txt{font-size:13px; color:var(--muted);}
.trust-divider{width:1px; height:28px; background:var(--line);}

/* ---------- Phone mockup ---------- */
.phone-wrap{display:flex; justify-content:center; position:relative;}
.phone-wrap::before{
  content:""; position:absolute; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,211,102,0.28), rgba(37,211,102,0) 70%);
  filter:blur(40px); top:50%; left:50%; transform:translate(-50%,-50%); z-index:-1;
  animation:ringPulse 5s ease-in-out infinite;
}
@keyframes ringPulse{
  0%,100%{ opacity:0.7; transform:translate(-50%,-50%) scale(1); }
  50%{ opacity:1; transform:translate(-50%,-50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce){
  .phone-wrap::before{ animation:none; }
}
.phone{
  width:290px; background:#0E1210; border-radius:38px; padding:11px;
  box-shadow:0 40px 70px -30px rgba(20,30,20,0.45), 0 10px 24px -14px rgba(20,30,20,0.3);
}
.phone.small{width:250px;}
.phone-screen{background:var(--wallpaper); border-radius:28px; overflow:hidden; height:580px; display:flex; flex-direction:column; position:relative;}
.phone.small .phone-screen{height:500px;}
.phone-screen::before{
  content:""; position:absolute; inset:0; opacity:0.5; pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size:18px 18px;
}
.status-bar{height:26px; background:var(--green-deep); display:flex; align-items:center; justify-content:space-between; padding:0 18px; font-size:10.5px; color:#fff; font-weight:600;}
.wa-header{background:var(--green-deep); color:#fff; padding:6px 14px 14px; display:flex; align-items:center; gap:10px;}
.wa-header .back{font-size:18px; opacity:0.9;}
.wa-header .avatar{width:36px; height:36px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:#083A2A;}
.wa-header .who b{display:block; font-size:14.5px; font-weight:600;}
.wa-header .who span{font-size:11px; opacity:0.78;}
.wa-header .icons{margin-left:auto; display:flex; gap:14px; font-size:15px; opacity:0.9;}

.chat-area{flex:1; padding:16px 12px; display:flex; flex-direction:column; gap:8px; position:relative; z-index:1; overflow:hidden;}
.bubble{
  background:#fff; border-radius:2px 10px 10px 10px; padding:8px 10px 6px; font-size:12.5px;
  max-width:82%; box-shadow:0 1px 1px rgba(0,0,0,0.07); color:#1c1e1c; line-height:1.4;
}
.bubble .time{display:flex; justify-content:flex-end; align-items:center; gap:3px; font-size:9.5px; color:#8b8f87; margin-top:4px;}
.bubble .time .ticks{color:var(--tick-blue); font-size:11px;}
.bubble.hl{background:#DCF8C6;}
.day-chip{
  align-self:center; background:rgba(255,255,255,0.75); font-size:10px; color:#5c635a;
  padding:3px 10px; border-radius:8px; margin:4px 0 8px; font-weight:600;
}
.typing{display:flex; gap:4px; background:#fff; padding:9px 12px; border-radius:2px 10px 10px 10px; width:fit-content; box-shadow:0 1px 1px rgba(0,0,0,0.07);}
.typing span{width:6px; height:6px; border-radius:50%; background:#9AA398; animation:bounce 1.2s infinite ease-in-out;}
.typing span:nth-child(2){animation-delay:0.15s;}
.typing span:nth-child(3){animation-delay:0.3s;}
@keyframes bounce{0%,60%,100%{transform:translateY(0); opacity:0.5;} 30%{transform:translateY(-4px); opacity:1;}}

.wa-inputbar{background:#fff; margin:10px; border-radius:24px; padding:10px 16px; font-size:12px; color:#9AA398; display:flex; align-items:center; gap:10px; position:relative; z-index:1;}
.wa-inputbar .mic{margin-left:auto; width:26px; height:26px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; font-size:11px; color:#fff;}

/* ---------- Sections ---------- */
section{padding:88px 0;}
section.tight{padding:56px 0;}
.section-head{max-width:580px; margin-bottom:52px;}
.section-head.center{max-width:640px; margin-left:auto; margin-right:auto; text-align:center;}
.section-tag{font-size:12.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--green-dark); margin-bottom:14px;}
h2{font-family:'Instrument Serif', serif; font-weight:400; font-size:clamp(28px, 3.4vw, 42px); letter-spacing:-0.01em; line-height:1.12;}
.section-head p{color:var(--ink-soft); margin-top:16px; font-size:15.5px;}
h3{font-weight:700;}

.divider{height:1px; background:var(--line); border:none; margin:0;}

/* ---------- Why grid ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:20px; overflow:hidden;}
@media (max-width:760px){ .why-grid{grid-template-columns:1fr;} }
.why-item{background:var(--surface); padding:34px 28px;}
.why-item .n{font-family:'IBM Plex Mono', monospace; color:var(--green-dark); font-size:13px; margin-bottom:16px; font-weight:600;}
.why-item h3{font-family:'Instrument Serif', serif; font-size:21px; font-weight:400; margin-bottom:10px;}
.why-item p{color:var(--ink-soft); font-size:14.5px;}

/* ---------- Steps ---------- */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media (max-width:900px){ .steps{grid-template-columns:1fr;} }
.step{background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:32px 26px;}
.step .num{font-family:'Instrument Serif', serif; font-size:44px; font-style:italic; color:var(--green-dark); opacity:0.55; margin-bottom:16px; display:block;}
.step h3{font-size:17.5px; font-weight:700; margin-bottom:9px;}
.step p{color:var(--ink-soft); font-size:14.5px;}

/* ---------- Cases ---------- */
.cases{display:grid; grid-template-columns:repeat(2,1fr); gap:14px;}
@media (max-width:760px){ .cases{grid-template-columns:1fr;} }
.case{display:flex; align-items:flex-start; gap:16px; background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:22px; transition:border-color .2s ease, transform .2s ease;}
.case:hover{border-color:var(--green-dark); transform:translateY(-2px);}
.case .tick{width:32px; height:32px; border-radius:9px; background:rgba(37,211,102,0.12); color:var(--green-dark); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:14px;}
.case h4{font-size:15px; font-weight:700; margin-bottom:5px;}
.case p{font-size:13.5px; color:var(--ink-soft);}

/* ---------- Demo split ---------- */
.demo{display:grid; grid-template-columns:0.95fr 1.05fr; gap:56px; align-items:center;}
@media (max-width:900px){ .demo{grid-template-columns:1fr;} }
.demo-copy p{color:var(--ink-soft); font-size:15.5px; margin:16px 0 26px; max-width:440px;}
.demo-list{display:flex; flex-direction:column; gap:16px;}
.demo-list li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-soft); list-style:none;}
.demo-list li b{color:var(--ink);}
.demo-list .chk{color:var(--green-dark); font-weight:700;}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--green-deep); border-radius:28px; padding:70px 48px; text-align:center;
  position:relative; overflow:hidden; color:#fff;
}
.cta-band::before{content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 0%, rgba(37,211,102,0.32), transparent 60%);}
.cta-band > *{position:relative; z-index:1;}
.cta-band h2{color:#fff; margin-bottom:14px;}
.cta-band p{color:rgba(255,255,255,0.75); max-width:460px; margin:0 auto 32px; font-size:15.5px;}
.cta-band .btn-ghost{border-color:rgba(255,255,255,0.3); color:#fff;}
.cta-band .btn-ghost:hover{border-color:#fff;}

/* ---------- Testimonials ---------- */
.quote-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px;}
@media (max-width:760px){ .quote-grid{grid-template-columns:1fr;} }
.quote-card{background:var(--surface); border:1px solid var(--line); border-radius:18px; padding:28px;}
.quote-card .stars{color:var(--gold); font-size:13px; margin-bottom:14px; letter-spacing:1px;}
.quote-card p.q{font-size:15px; color:var(--ink); margin-bottom:18px; line-height:1.55;}
.quote-card .who{display:flex; align-items:center; gap:10px;}
.quote-card .who .av{width:34px; height:34px; border-radius:50%; background:var(--gold-soft); color:var(--gold); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:12.5px;}
.quote-card .who b{display:block; font-size:13.5px;}
.quote-card .who span{font-size:12px; color:var(--muted);}
.beta-note{font-size:13px; color:var(--muted); text-align:center; margin-top:28px;}

/* ---------- Pricing ---------- */
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch;}
@media (max-width:900px){ .pricing-grid{grid-template-columns:1fr; max-width:420px; margin:0 auto;} }
.plan{background:var(--surface); border:1px solid var(--line); border-radius:20px; padding:32px 28px; display:flex; flex-direction:column;}
.plan.featured{border-color:var(--green-dark); box-shadow:var(--shadow-soft); position:relative;}
.plan.featured::before{content:"Most chosen"; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--green-deep); color:#fff; font-size:11px; font-weight:600; padding:5px 14px; border-radius:100px; letter-spacing:0.02em;}
.plan .pname{font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color:var(--green-dark); margin-bottom:10px;}
.plan .pprice{font-family:'Instrument Serif', serif; font-size:42px; margin-bottom:4px;}
.plan .pprice span{font-family:'Inter', sans-serif; font-size:14px; color:var(--muted); font-weight:500;}
.plan .pdesc{font-size:13.5px; color:var(--ink-soft); margin-bottom:22px;}
.plan ul{list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:26px; flex:1;}
.plan ul li{font-size:13.5px; color:var(--ink-soft); display:flex; gap:9px; align-items:flex-start;}
.plan ul li .chk{color:var(--green-dark); font-weight:700; flex-shrink:0;}
.plan .btn-dark, .plan .btn-ghost{width:100%; justify-content:center; text-align:center;}
.pricing-foot{text-align:center; margin-top:32px; font-size:13.5px; color:var(--muted);}

/* ---------- FAQ ---------- */
.faq-list{display:flex; flex-direction:column; border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{
  cursor:pointer; padding:22px 4px; font-size:15.5px; font-weight:600; list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; font-family:'Instrument Serif', serif; font-size:26px; color:var(--green-dark); flex-shrink:0; transition:transform .2s ease;}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{padding:0 4px 24px; color:var(--ink-soft); font-size:14.5px; max-width:680px;}

/* ---------- Contact ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
@media (max-width:860px){ .contact-grid{grid-template-columns:1fr; gap:40px;} }
.contact-form{display:flex; flex-direction:column; gap:18px;}
.field{display:flex; flex-direction:column; gap:7px;}
.field label{font-size:13px; font-weight:600; color:var(--ink);}
.field input, .field select, .field textarea{
  border:1.5px solid var(--line); border-radius:12px; padding:13px 15px; font-size:14.5px; font-family:inherit;
  background:var(--surface); color:var(--ink); transition:border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--green-dark); outline:none;}
.field textarea{resize:vertical; min-height:110px;}
.contact-note{font-size:12.5px; color:var(--muted); margin-top:2px;}
.contact-side{background:var(--surface-soft); border:1px solid var(--line); border-radius:20px; padding:32px;}
.contact-side h3{font-family:'Instrument Serif', serif; font-weight:400; font-size:22px; margin-bottom:18px;}
.contact-method{display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--line);}
.contact-method:last-child{border-bottom:none;}
.contact-method .icon{width:38px; height:38px; border-radius:10px; background:rgba(37,211,102,0.12); color:var(--green-dark); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0;}
.contact-method b{display:block; font-size:14px;}
.contact-method span{font-size:13px; color:var(--muted);}
.form-success{background:rgba(37,211,102,0.1); border:1px solid var(--green-dark); border-radius:14px; padding:18px 20px; font-size:14px; color:var(--green-deep); display:none;}
.form-success.show{display:block;}

/* ---------- Logo strip ---------- */
.platform-strip{display:flex; flex-wrap:wrap; gap:12px; justify-content:center;}
.platform-chip{border:1px solid var(--line); background:var(--surface); border-radius:100px; padding:9px 20px; font-size:13.5px; font-weight:600; color:var(--ink-soft);}

/* ---------- Comparison table ---------- */
.compare{width:100%; border-collapse:collapse; background:var(--surface); border:1px solid var(--line); border-radius:16px; overflow:hidden;}
.compare th, .compare td{padding:16px 18px; text-align:left; font-size:14px; border-bottom:1px solid var(--line);}
.compare th{background:var(--surface-soft); font-weight:700; font-size:13px;}
.compare tr:last-child td{border-bottom:none;}
.compare td.yes{color:var(--green-dark); font-weight:700;}
.compare td.no{color:var(--muted);}
.table-scroll{overflow-x:auto; -webkit-overflow-scrolling:touch;}
@media (max-width:700px){ .compare{min-width:560px;} }

/* ---------- Footer ---------- */
footer{border-top:1px solid var(--line); padding:56px 0 32px; margin-top:40px;}
.footer-grid{display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:32px; margin-bottom:40px;}
@media (max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr; gap:28px;} }
.footer-col h4{font-size:12.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted); margin-bottom:16px; font-weight:700;}
.footer-col ul{list-style:none; display:flex; flex-direction:column; gap:11px;}
.footer-col a{font-size:14px; color:var(--ink-soft);}
.footer-col a:hover{color:var(--green-dark);}
.footer-blurb{font-size:13.5px; color:var(--muted); max-width:260px; margin-top:14px; line-height:1.6;}
.footer-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:28px; border-top:1px solid var(--line);}
.footer-row .logo{font-size:16px;}
footer .fine{font-size:13px; color:var(--muted);}
.footer-legal{display:flex; gap:18px; font-size:13px; color:var(--muted);}
.footer-legal a:hover{color:var(--ink-soft);}

/* ---------- Reveal ---------- */
[data-reveal]{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
[data-reveal].in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{opacity:1; transform:none;}
}

/* ---------- Utility ---------- */
.center{text-align:center;}
.mt-lg{margin-top:64px;}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;}

/* ================================================================
   AURORA BACKGROUND SYSTEM
   Soft glowing mesh-gradient blobs, fixed behind all content.
   ================================================================ */
.aurora{
  position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none;
}
.aurora__blob{
  position:absolute; border-radius:50%; filter:blur(90px); opacity:0.55;
  will-change:transform;
}
.aurora__blob--1{
  width:640px; height:640px; top:-220px; left:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(37,211,102,0.55), rgba(37,211,102,0) 70%);
  animation:auroraDrift1 26s ease-in-out infinite;
}
.aurora__blob--2{
  width:560px; height:560px; top:60px; right:-200px;
  background:radial-gradient(circle at 60% 40%, rgba(184,147,90,0.42), rgba(184,147,90,0) 70%);
  animation:auroraDrift2 32s ease-in-out infinite;
}
.aurora__blob--3{
  width:520px; height:520px; bottom:-260px; left:18%;
  background:radial-gradient(circle at 50% 50%, rgba(18,140,126,0.4), rgba(18,140,126,0) 70%);
  animation:auroraDrift3 30s ease-in-out infinite;
}
.aurora__blob--4{
  width:420px; height:420px; bottom:10%; right:6%;
  background:radial-gradient(circle at 40% 60%, rgba(37,211,102,0.28), rgba(37,211,102,0) 70%);
  animation:auroraDrift1 22s ease-in-out infinite reverse;
}
.aurora__grain{
  position:absolute; inset:0; opacity:0.5; mix-blend-mode:overlay;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.6px, transparent 0.6px);
  background-size:3px 3px;
}
@keyframes auroraDrift1{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(60px,40px) scale(1.08); }
  66%{ transform:translate(-30px,70px) scale(0.95); }
}
@keyframes auroraDrift2{
  0%,100%{ transform:translate(0,0) scale(1); }
  40%{ transform:translate(-70px,50px) scale(1.1); }
  70%{ transform:translate(20px,-40px) scale(0.92); }
}
@keyframes auroraDrift3{
  0%,100%{ transform:translate(0,0) scale(1); }
  30%{ transform:translate(50px,-60px) scale(1.05); }
  65%{ transform:translate(-60px,-20px) scale(0.97); }
}
@media (prefers-reduced-motion: reduce){
  .aurora__blob{animation:none;}
}
@media (max-width:760px){
  .aurora__blob--1, .aurora__blob--2, .aurora__blob--3, .aurora__blob--4{
    width:340px; height:340px; filter:blur(60px); opacity:0.45;
  }
}

/* ================================================================
   GLASS / FROSTED PANELS
   ================================================================ */
.glass{
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border:1px solid rgba(255,255,255,0.6);
}
header{
  background:rgba(251,248,243,0.7) !important;
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
}
.why-item, .step, .case, .quote-card, .plan, .contact-side, .faq-item, .compare{
  background:rgba(255,255,255,0.66);
  backdrop-filter:blur(14px) saturate(130%);
  -webkit-backdrop-filter:blur(14px) saturate(130%);
}
.plan.featured{
  background:rgba(255,255,255,0.78);
}
.field input, .field select, .field textarea{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(6px);
}

/* ================================================================
   GLOW / HOVER ENHANCEMENTS
   ================================================================ */
.btn-primary{position:relative; overflow:hidden;}
.btn-primary::after{
  content:""; position:absolute; inset:0; border-radius:100px;
  background:radial-gradient(circle at 50% 0%, rgba(255,255,255,0.5), transparent 70%);
  opacity:0; transition:opacity .3s ease;
}
.btn-primary:hover::after{opacity:1;}

.why-item, .step, .case, .quote-card, .plan{
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.why-item:hover, .step:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 48px -24px rgba(20,30,20,0.22);
}
.plan:hover{transform:translateY(-6px); box-shadow:var(--shadow-soft);}
.quote-card:hover{transform:translateY(-3px);}

.phone{
  transition:transform .5s cubic-bezier(.2,.8,.2,1);
  animation:phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-10px) rotate(-0.6deg); }
}
@media (prefers-reduced-motion: reduce){
  .phone{animation:none;}
}

/* Eyebrow badge subtle glow pulse */
.eyebrow, .page-eyebrow{
  position:relative;
  animation:eyebrowGlow 3.5s ease-in-out infinite;
}
@keyframes eyebrowGlow{
  0%,100%{ box-shadow:0 0 0 rgba(37,211,102,0); }
  50%{ box-shadow:0 0 18px rgba(37,211,102,0.28); }
}
@media (prefers-reduced-motion: reduce){
  .eyebrow, .page-eyebrow{animation:none;}
}

/* Staggered reveal delays for grid children */
.why-grid[data-reveal].in .why-item,
.steps[data-reveal].in .step,
.cases[data-reveal].in .case,
.quote-grid[data-reveal].in .quote-card,
.pricing-grid[data-reveal].in .plan{
  animation:fadeUp .6s ease both;
}
.why-grid[data-reveal].in .why-item:nth-child(1),
.steps[data-reveal].in .step:nth-child(1),
.cases[data-reveal].in .case:nth-child(1),
.quote-grid[data-reveal].in .quote-card:nth-child(1),
.pricing-grid[data-reveal].in .plan:nth-child(1){ animation-delay:0.05s; }
.why-grid[data-reveal].in .why-item:nth-child(2),
.steps[data-reveal].in .step:nth-child(2),
.cases[data-reveal].in .case:nth-child(2),
.quote-grid[data-reveal].in .quote-card:nth-child(2),
.pricing-grid[data-reveal].in .plan:nth-child(2){ animation-delay:0.15s; }
.why-grid[data-reveal].in .why-item:nth-child(3),
.steps[data-reveal].in .step:nth-child(3),
.cases[data-reveal].in .case:nth-child(3),
.pricing-grid[data-reveal].in .plan:nth-child(3){ animation-delay:0.25s; }
.cases[data-reveal].in .case:nth-child(4){ animation-delay:0.35s; }
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .why-grid[data-reveal].in .why-item, .steps[data-reveal].in .step,
  .cases[data-reveal].in .case, .quote-grid[data-reveal].in .quote-card,
  .pricing-grid[data-reveal].in .plan{ animation:none; }
}

/* Hero entrance sequence */
.hero > div:first-child > *{
  opacity:0; transform:translateY(16px);
  animation:heroIn .7s ease forwards;
}
.hero > div:first-child .eyebrow{ animation-delay:0.05s; }
.hero > div:first-child h1{ animation-delay:0.15s; }
.hero > div:first-child p.lead{ animation-delay:0.25s; }
.hero > div:first-child .cta-row{ animation-delay:0.35s; }
.hero > div:first-child .trust-row{ animation-delay:0.45s; }
@keyframes heroIn{
  to{ opacity:1; transform:translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero > div:first-child > *{ opacity:1; transform:none; animation:none; }
}

/* Section decorative blob accents (contained, low opacity) */
.section-glow{
  position:absolute; width:420px; height:420px; border-radius:50%;
  filter:blur(80px); opacity:0.18; pointer-events:none; z-index:-1;
}

/* Marquee / platform strip subtle shimmer on hover */
.platform-chip{
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.platform-chip:hover{
  transform:translateY(-2px);
  border-color:var(--green-dark);
  box-shadow:0 10px 24px -14px rgba(37,211,102,0.35);
}

/* Illustration blob shapes used inline in SVGs */
.blob-decor{opacity:0.5;}

/* ---------- Icon badges (abstract SVG icons) ---------- */
.icon-badge{
  width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(155deg, rgba(37,211,102,0.16), rgba(184,147,90,0.14));
  margin-bottom:18px; flex-shrink:0;
}
.icon-badge svg{width:24px; height:24px;}
.why-item .icon-badge{margin-bottom:16px;}
.case .icon-badge{width:40px; height:40px; border-radius:11px; margin-bottom:0;}
.case .icon-badge svg{width:20px; height:20px;}

/* ---------- Hero decorative graphic ---------- */
.hero-graphic{
  position:absolute; pointer-events:none; z-index:0; opacity:0.7;
}

/* ---------- Section illustration wrapper ---------- */
.illo{display:flex; justify-content:center; align-items:center; padding:20px;}
.illo svg{width:100%; height:auto; max-width:340px;}

/* ---------- Flow diagram (platform -> CreatorFlows -> WhatsApp) ---------- */
.flow-diagram{
  display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap;
  padding:48px 24px; margin:8px 0 12px;
}
.flow-node{
  display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; width:160px;
}
.flow-node .icon-badge{margin-bottom:0; width:56px; height:56px; border-radius:16px;}
.flow-node .icon-badge svg{width:28px; height:28px;}
.flow-node span{font-size:13px; font-weight:600; color:var(--ink-soft);}
.flow-node.center .icon-badge{
  background:linear-gradient(155deg, rgba(37,211,102,0.28), rgba(184,147,90,0.22));
  box-shadow:0 0 0 6px rgba(37,211,102,0.08);
}
.flow-arrow{
  width:60px; height:2px; position:relative; margin:0 8px; flex-shrink:0;
  background:repeating-linear-gradient(to right, var(--green-dark) 0 6px, transparent 6px 12px);
}
.flow-arrow::after{
  content:""; position:absolute; right:-1px; top:50%; transform:translateY(-50%);
  border-left:7px solid var(--green-dark); border-top:5px solid transparent; border-bottom:5px solid transparent;
}
@media (max-width:640px){
  .flow-diagram{flex-direction:column; gap:20px;}
  .flow-arrow{width:2px; height:36px; background:repeating-linear-gradient(to bottom, var(--green-dark) 0 6px, transparent 6px 12px);}
  .flow-arrow::after{right:50%; top:auto; bottom:-1px; transform:translateX(50%); border-left:5px solid transparent; border-right:5px solid transparent; border-top:7px solid var(--green-dark); border-bottom:none;}
}
