/* =========================================================
   VENDE HOY — CSS NORMAL / SIN TAILWIND
   ========================================================= */

:root{
  --bg:#0a0a0a;
  --bg-soft:#101010;
  --paper:#f4f0e8;
  --paper-2:#ece5da;
  --orange:#ff5a36;
  --orange-2:#ff744f;
  --lime:#caff61;
  --text:#f7f4ee;
  --muted:rgba(247,244,238,.58);
  --line:rgba(255,255,255,.10);
  --dark-line:rgba(10,10,10,.12);
  --container:1240px;
  --radius:30px;
  --font:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --mono:"DM Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
::selection{background:var(--orange);color:#fff}

.noise{
  position:fixed;
  inset:0;
  z-index:1000;
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.container{
  width:min(calc(100% - 40px),var(--container));
  margin-inline:auto;
}

.section-space{padding:120px 0}

.section-label{
  margin:0;
  color:var(--orange);
  font:500 11px/1 var(--mono);
  letter-spacing:.17em;
  text-transform:uppercase;
}

.section-title{
  max-width:850px;
  margin:20px 0 0;
  font-size:clamp(42px,6vw,78px);
  line-height:.98;
  letter-spacing:-.06em;
  font-weight:800;
}

.section-intro{
  max-width:470px;
  margin:0;
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}

/* NAV */
.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:100;
  border-bottom:1px solid transparent;
  transition:.3s ease;
}
.site-header.scrolled{
  background:rgba(10,10,10,.82);
  border-color:var(--line);
  backdrop-filter:blur(18px);
}
.nav-wrap{
  width:min(calc(100% - 40px),var(--container));
  height:78px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand{display:inline-flex;align-items:center;gap:11px}
.brand-mark{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:11px;
  background:var(--orange);
  color:#fff;
  font:500 11px/1 var(--mono);
  box-shadow:0 0 35px rgba(255,90,54,.22);
}
.brand-word{
  font-size:18px;
  font-weight:800;
  letter-spacing:-.045em;
}
.brand-word span{color:var(--orange)}
.desktop-nav{display:flex;align-items:center;gap:30px}
.desktop-nav a{
  position:relative;
  color:rgba(255,255,255,.58);
  font-size:13px;
  font-weight:600;
  transition:.2s ease;
}
.desktop-nav a:hover{color:#fff}
.desktop-nav a:after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:-8px;
  height:1px;
  background:var(--orange);
  transition:.25s ease;
}
.desktop-nav a:hover:after{right:0}
.nav-cta{
  border:1px solid var(--line);
  border-radius:999px;
  padding:11px 17px;
  font-size:12px;
  font-weight:800;
  transition:.25s ease;
}
.nav-cta:hover{
  background:#fff;
  color:#000;
  transform:translateY(-1px);
}
.menu-btn{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.menu-btn span{
  width:18px;height:1px;
  display:block;
  margin:5px auto;
  background:#fff;
}
.mobile-menu{
  display:none;
  width:min(calc(100% - 28px),var(--container));
  margin:0 auto 12px;
  padding:10px;
  background:#111;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.mobile-menu.open{display:grid}
.mobile-menu a{
  padding:14px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.68);
  font-size:14px;
}
.mobile-menu a:hover{background:rgba(255,255,255,.05);color:#fff}
.mobile-menu .mobile-cta{
  margin-top:5px;
  background:var(--orange);
  color:#fff;
  text-align:center;
  font-weight:800;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  padding-top:135px;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.027) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.027) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,#000,transparent 90%);
}
.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  pointer-events:none;
}
.hero-glow-1{
  width:580px;height:580px;
  left:-260px;top:20px;
  background:rgba(255,90,54,.14);
}
.hero-glow-2{
  width:450px;height:450px;
  right:-180px;top:180px;
  background:rgba(202,255,97,.06);
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:center;
  gap:72px;
  min-height:700px;
  padding-bottom:90px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  padding:9px 13px;
  color:rgba(255,255,255,.58);
  font:500 10px/1 var(--mono);
  letter-spacing:.13em;
  text-transform:uppercase;
}
.kicker-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 16px rgba(255,90,54,.8);
  animation:pulse 1.8s ease-in-out infinite;
}
.hero-title{
  margin:25px 0 0;
  font-size:clamp(66px,8.5vw,126px);
  line-height:.84;
  letter-spacing:-.075em;
  font-weight:800;
}
.hero-accent{
  display:block;
  min-height:1.02em;
  color:var(--orange);
  overflow:hidden;
}
.hero-accent span{
  display:inline-block;
  animation:wordIn .6s cubic-bezier(.22,1,.36,1);
}
.hero-accent span.leaving{animation:wordOut .3s ease forwards}
.hero-subtitle{
  max-width:680px;
  margin:30px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}
.hero-actions{display:flex;gap:12px;margin-top:34px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:52px;
  padding:0 21px;
  border-radius:14px;
  font-size:13px;
  font-weight:800;
  transition:.25s ease;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 16px 45px rgba(255,90,54,.15);
}
.btn-primary:hover{
  background:var(--orange-2);
  transform:translateY(-2px);
  box-shadow:0 20px 55px rgba(255,90,54,.22);
}
.btn-ghost{
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  color:rgba(255,255,255,.72);
}
.btn-ghost:hover{background:rgba(255,255,255,.07);color:#fff}
.hero-meta{
  display:flex;
  gap:28px;
  margin-top:40px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.hero-meta div{display:grid;gap:5px}
.hero-meta strong{font-size:13px}
.hero-meta span{
  color:rgba(255,255,255,.32);
  font:400 9px/1.4 var(--mono);
  text-transform:uppercase;
  letter-spacing:.07em;
}

/* Hero visual */
.hero-visual{position:relative;min-height:620px}
.visual-orbit{
  position:absolute;
  border:1px solid rgba(255,255,255,.09);
  border-radius:50%;
}
.orbit-one{width:520px;height:520px;right:-100px;top:42px}
.orbit-two{width:360px;height:360px;right:-20px;top:120px;border-color:rgba(255,90,54,.16)}
.browser-card{
  position:absolute;
  left:15px;right:0;top:48px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:25px;
  background:#111;
  box-shadow:0 45px 110px rgba(0,0,0,.52);
  transform:perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition:transform .2s ease-out;
}
.browser-top{
  height:52px;
  display:flex;
  align-items:center;
  gap:18px;
  padding:0 17px;
  background:#181818;
  border-bottom:1px solid var(--line);
}
.browser-dots{display:flex;gap:6px}
.browser-dots i{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.15)}
.browser-dots i:last-child{background:var(--orange)}
.browser-url{
  flex:1;
  height:27px;
  display:grid;
  place-items:center;
  max-width:270px;
  border:1px solid var(--line);
  border-radius:7px;
  color:rgba(255,255,255,.3);
  font:400 9px/1 var(--mono);
}
.store-preview{background:var(--paper);color:#111;padding:19px}
.preview-nav{
  display:flex;align-items:center;gap:18px;
  padding-bottom:16px;
  font-size:8px;
  color:#68635d;
}
.preview-logo{
  margin-right:auto;
  font:700 10px/1 var(--mono);
  color:#111;
}
.preview-nav b{
  padding:8px 10px;
  border-radius:8px;
  background:#111;color:#fff;
}
.preview-hero{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  min-height:295px;
  overflow:hidden;
  border-radius:18px;
  background:#ded5c7;
}
.preview-copy{
  display:flex;flex-direction:column;align-items:flex-start;justify-content:center;
  padding:25px;
}
.preview-copy small{font:500 7px/1 var(--mono);letter-spacing:.12em}
.preview-copy h3{
  margin:10px 0 16px;
  font-size:29px;line-height:.94;letter-spacing:-.05em;
}
.preview-copy button{
  border:0;border-radius:8px;background:var(--orange);color:white;
  padding:9px 12px;font-size:8px;font-weight:800;
}
.preview-hero img{width:100%;height:100%;object-fit:cover}
.preview-products{
  display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:10px;
}
.preview-products div{display:grid;gap:6px}
.preview-products span{
  height:70px;border-radius:11px;background:#ded8cf;
}
.preview-products div:nth-child(2) span{background:#c7beae}
.preview-products div:nth-child(3) span{background:#d9c0b1}
.preview-products small{font-size:7px;color:#756f67}
.float-tag{
  position:absolute;
  z-index:5;
  min-width:155px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:13px;
  background:rgba(17,17,17,.88);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 55px rgba(0,0,0,.32);
  animation:float 5s ease-in-out infinite;
}
.float-tag small{
  display:block;margin-bottom:5px;
  color:var(--orange);
  font:500 8px/1 var(--mono);
  letter-spacing:.1em;
}
.float-tag strong{font-size:11px}
.tag-domain{left:-18px;top:150px}
.tag-ads{right:-25px;bottom:85px;animation-delay:-1.8s}
.tag-ai{left:65px;bottom:15px;animation-delay:-3s}
.tag-ai small{color:var(--lime)}

.tool-marquee{
  position:relative;
  z-index:3;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.015);
}
.marquee-track{
  width:max-content;
  display:flex;
  align-items:center;
  gap:28px;
  padding:18px 0;
  animation:marquee 30s linear infinite;
}
.marquee-track span{
  color:rgba(255,255,255,.34);
  font:500 10px/1 var(--mono);
  letter-spacing:.12em;
}
.marquee-track i{color:var(--orange);font-size:8px}

/* Statement */
.statement{background:var(--paper);color:#111}
.statement-title{
  margin:22px 0 0;
  max-width:1080px;
  font-size:clamp(48px,7vw,94px);
  line-height:.98;
  letter-spacing:-.065em;
  font-weight:800;
}
.statement-title span{color:var(--orange)}

/* Outcome */
.split-heading{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  align-items:end;
}
.outcome-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:60px;
}
.feature-card{
  position:relative;
  min-height:330px;
  padding:25px;
  border:1px solid var(--line);
  border-radius:24px;
  background:
    radial-gradient(circle at 100% 0,rgba(255,90,54,.06),transparent 35%),
    rgba(255,255,255,.025);
  transition:.3s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,90,54,.32);
  background-color:rgba(255,255,255,.04);
}
.feature-number{
  color:rgba(255,255,255,.25);
  font:500 9px/1 var(--mono);
}
.feature-icon{
  width:45px;height:45px;
  display:grid;place-items:center;
  margin-top:55px;
  border-radius:14px;
  background:rgba(255,90,54,.09);
  color:var(--orange);
  font-size:19px;
}
.feature-card h3{
  margin:21px 0 0;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.035em;
}
.feature-card p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

/* Business image */
.business-image{padding:0 0 120px}
.business-image-frame{
  position:relative;
  min-height:690px;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
}
.business-image-frame img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.image-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.65) 40%,rgba(0,0,0,.08) 80%),
    linear-gradient(0deg,rgba(0,0,0,.6),transparent 45%);
}
.image-copy{
  position:relative;
  z-index:2;
  min-height:690px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  max-width:650px;
  padding:55px;
}
.image-copy > span{
  color:var(--orange);
  font:500 10px/1 var(--mono);
  letter-spacing:.15em;
}
.image-copy h2{
  margin:19px 0 0;
  font-size:clamp(55px,7vw,96px);
  line-height:.87;
  letter-spacing:-.07em;
}
.image-copy h2 em{font-style:normal;color:var(--orange)}
.image-copy p{margin:22px 0 0;color:rgba(255,255,255,.57);font-size:17px}

/* Program */
.program{
  background:var(--paper);
  color:#111;
}
.program-layout{
  display:grid;
  grid-template-columns:.77fr 1.23fr;
  gap:100px;
  align-items:start;
}
.program-intro{position:sticky;top:120px}
.program-intro > p:not(.section-label){
  max-width:470px;
  color:rgba(10,10,10,.58);
  font-size:15px;line-height:1.75;
}
.text-link{
  display:inline-flex;align-items:center;gap:12px;
  margin-top:20px;
  padding-bottom:4px;
  border-bottom:1px solid #111;
  font-size:13px;font-weight:800;
}
.module{
  display:grid;
  grid-template-columns:55px 1fr 30px;
  gap:15px;
  padding:30px 0;
  border-top:1px solid var(--dark-line);
  transition:.25s ease;
}
.module:last-child{border-bottom:1px solid var(--dark-line)}
.module:hover{padding-left:10px}
.module-id{font:500 10px/1 var(--mono);color:var(--orange)}
.module-body small{
  color:rgba(10,10,10,.38);
  font:500 9px/1 var(--mono);
  letter-spacing:.11em;
}
.module-body h3{
  max-width:680px;
  margin:10px 0 0;
  font-size:25px;line-height:1.15;letter-spacing:-.04em;
}
.module-body p{
  max-width:620px;
  margin:10px 0 0;
  color:rgba(10,10,10,.5);
  font-size:13px;line-height:1.6;
}
.module-symbol{font-size:18px;color:var(--orange)}

/* Tools */
.tools-heading{max-width:900px}
.tools-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:55px;
}
.tool-card{
  min-height:170px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.02);
  transition:.3s ease;
}
.tool-card:hover{
  transform:translateY(-5px) rotate(-.4deg);
  border-color:rgba(255,90,54,.3);
}
.tool-card b{
  width:41px;height:41px;
  display:grid;place-items:center;
  margin-bottom:auto;
  border-radius:12px;
  background:var(--orange);
  color:#fff;
  font:500 9px/1 var(--mono);
}
.tool-card:nth-child(4n+2) b{background:var(--lime);color:#111}
.tool-card:nth-child(4n+3) b{background:#f1eee8;color:#111}
.tool-card span{font-size:15px;font-weight:800}
.tool-card small{margin-top:4px;color:rgba(255,255,255,.34);font-size:10px}

/* Who */
.who{padding-top:0}
.who-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding:55px;
  border-radius:var(--radius);
  background:var(--orange);
  color:#fff;
}
.who-copy .section-label{color:#fff}
.who-copy h2{
  margin:18px 0 0;
  font-size:clamp(42px,5vw,70px);
  line-height:.96;
  letter-spacing:-.06em;
}
.who-copy > p:not(.section-label){
  max-width:520px;
  color:rgba(255,255,255,.74);
  line-height:1.7;
}
.who-list{display:grid;align-content:center}
.who-list div{
  display:grid;
  grid-template-columns:45px 1fr;
  gap:14px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.22);
}
.who-list div:last-child{border-bottom:1px solid rgba(255,255,255,.22)}
.who-list span{font:500 9px/1 var(--mono);opacity:.65}
.who-list p{margin:0;font-size:14px;line-height:1.6}

/* Price */
.price-section{
  background:var(--paper);
  color:#111;
}
.price-grid{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:90px;
  align-items:center;
}
.price-copy .section-label{color:var(--orange)}
.price-lead{
  max-width:600px;
  color:rgba(10,10,10,.55);
  font-size:16px;line-height:1.75;
}
.price-breakdown{
  max-width:580px;
  margin-top:42px;
  border-top:1px solid var(--dark-line);
}
.price-breakdown div{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:17px 0;
  border-bottom:1px solid var(--dark-line);
  font-size:13px;
}
.price-breakdown span{color:rgba(10,10,10,.48)}
.price-breakdown strong{font-size:15px}
.checkout-card{
  padding:28px;
  border-radius:28px;
  background:#0d0d0d;
  color:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}
.checkout-top{
  display:flex;justify-content:space-between;gap:20px;
  color:rgba(255,255,255,.35);
  font:500 8px/1 var(--mono);
  letter-spacing:.11em;
}
.checkout-card h3{
  margin:50px 0 0;
  font-size:33px;letter-spacing:-.045em;
}
.checkout-card > p{margin:7px 0 0;color:rgba(255,255,255,.46);font-size:13px}
.big-price{
  margin-top:30px;
  padding:25px 0;
  border-block:1px solid var(--line);
}
.big-price small{
  display:block;color:rgba(255,255,255,.34);
  font:500 9px/1 var(--mono);
  text-transform:uppercase;letter-spacing:.1em;
}
.big-price strong{
  display:block;
  margin-top:10px;
  color:var(--orange);
  font-size:58px;line-height:1;letter-spacing:-.06em;
}
.big-price sup{font-size:24px}
.big-price em{
  font-style:normal;
  color:rgba(255,255,255,.36);
  font:500 10px/1 var(--mono);
  letter-spacing:.08em;
}
.checkout-card ul{
  list-style:none;
  margin:24px 0;
  padding:0;
  display:grid;
  gap:12px;
}
.checkout-card li{font-size:12px;color:rgba(255,255,255,.66)}
.checkout-card li span{color:var(--lime);margin-right:9px}
.checkout-btn{
  min-height:56px;
  display:flex;align-items:center;justify-content:space-between;
  border-radius:14px;
  padding:0 18px;
  background:var(--orange);
  color:#fff;
  font-size:13px;font-weight:800;
  transition:.25s ease;
}
.checkout-btn:hover{background:var(--orange-2);transform:translateY(-2px)}
.checkout-note{
  display:block;
  margin-top:12px;
  color:rgba(255,255,255,.25);
  font-size:9px;line-height:1.5;
}

/* FAQ */
.faq-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
}
.faq-item{
  border-top:1px solid var(--line);
}
.faq-item:last-child{border-bottom:1px solid var(--line)}
.faq-item summary{
  list-style:none;
  display:flex;justify-content:space-between;gap:25px;
  padding:23px 0;
  cursor:pointer;
  font-size:15px;font-weight:700;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary span{color:var(--orange);font-size:22px;font-weight:400;transition:.2s ease}
.faq-item[open] summary span{transform:rotate(45deg)}
.faq-item p{
  max-width:650px;
  margin:-6px 0 25px;
  color:var(--muted);
  font-size:13px;line-height:1.7;
}

/* Final */
.final-cta{padding:0 0 45px}
.final-card{
  position:relative;
  overflow:hidden;
  padding:70px;
  border-radius:34px;
  background:var(--lime);
  color:#0a0a0a;
}
.final-orb{
  position:absolute;
  width:520px;height:520px;
  right:-140px;top:-290px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:50%;
}
.final-card .section-label{color:#0a0a0a}
.final-card h2{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:22px 0 0;
  font-size:clamp(56px,7vw,98px);
  line-height:.9;
  letter-spacing:-.07em;
}
.final-card > p:not(.section-label){
  max-width:670px;
  color:rgba(10,10,10,.58);
  font-size:16px;line-height:1.7;
}
.final-actions{
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:32px;
}
.btn-dark{background:#0a0a0a;color:#fff}
.btn-dark:hover{transform:translateY(-2px);background:#222}
.final-actions strong{font-size:20px;letter-spacing:-.03em}

/* Footer */
.site-footer{padding:38px 0;border-top:1px solid var(--line)}
.footer-wrap{display:flex;align-items:end;justify-content:space-between;gap:30px}
.footer-brand .brand-mark{width:32px;height:32px;border-radius:9px}
.footer-wrap p{margin:10px 0 0;color:rgba(255,255,255,.3);font-size:11px}
.footer-right{display:grid;gap:6px;text-align:right;color:rgba(255,255,255,.3);font-size:10px}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .75s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1);
  will-change:opacity,transform;
}
.reveal.visible{opacity:1;transform:translateY(0)}

/* Animations */
@keyframes pulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(.72);opacity:.55}
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-9px)}
}
@keyframes marquee{
  to{transform:translateX(-50%)}
}
@keyframes wordIn{
  from{opacity:0;transform:translateY(.35em);filter:blur(7px)}
  to{opacity:1;transform:translateY(0);filter:blur(0)}
}
@keyframes wordOut{
  to{opacity:0;transform:translateY(-.22em);filter:blur(6px)}
}

/* Responsive */
@media (max-width:1050px){
  .desktop-nav,.nav-cta{display:none}
  .menu-btn{display:block}
  .hero-grid{grid-template-columns:1fr;gap:25px}
  .hero-copy{max-width:850px}
  .hero-visual{min-height:610px;max-width:730px;width:100%;margin:auto}
  .outcome-grid{grid-template-columns:repeat(2,1fr)}
  .program-layout,.price-grid,.faq-layout{grid-template-columns:1fr;gap:60px}
  .program-intro{position:static}
  .tools-grid{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:760px){
  .container{width:min(calc(100% - 28px),var(--container))}
  .section-space{padding:82px 0}
  .section-title{font-size:clamp(42px,13vw,62px)}
  .nav-wrap{width:calc(100% - 28px);height:70px}
  .hero{padding-top:112px}
  .hero-grid{min-height:auto;padding-bottom:70px}
  .hero-title{font-size:clamp(63px,19vw,94px)}
  .hero-subtitle{font-size:15px}
  .hero-meta{display:grid;grid-template-columns:1fr 1fr;gap:18px}
  .hero-visual{min-height:490px}
  .browser-card{left:0;top:28px;transform:none}
  .preview-nav span:not(.preview-logo){display:none}
  .preview-hero{min-height:245px}
  .preview-copy{padding:17px}
  .preview-copy h3{font-size:23px}
  .float-tag{min-width:135px;padding:10px}
  .tag-domain{left:-5px;top:115px}
  .tag-ads{right:-4px;bottom:30px}
  .tag-ai{display:none}
  .orbit-one{width:390px;height:390px}
  .orbit-two{width:270px;height:270px}
  .statement-title{font-size:clamp(44px,13vw,67px)}
  .split-heading{grid-template-columns:1fr;gap:25px}
  .outcome-grid{grid-template-columns:1fr}
  .feature-card{min-height:270px}
  .feature-icon{margin-top:35px}
  .business-image{padding-bottom:80px}
  .business-image-frame,.image-copy{min-height:570px}
  .image-copy{padding:28px}
  .image-overlay{background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.1))}
  .program-layout{gap:50px}
  .module{grid-template-columns:40px 1fr 20px}
  .module-body h3{font-size:21px}
  .tools-grid{grid-template-columns:repeat(2,1fr)}
  .tool-card{min-height:150px}
  .who-card{grid-template-columns:1fr;gap:35px;padding:30px}
  .who-copy h2{font-size:48px}
  .price-grid{gap:42px}
  .big-price strong{font-size:50px}
  .faq-layout{gap:35px}
  .final-card{padding:34px 28px}
  .final-card h2{font-size:clamp(52px,15vw,72px)}
  .final-actions{align-items:flex-start;flex-direction:column}
  .footer-wrap{align-items:flex-start;flex-direction:column}
  .footer-right{text-align:left}
}

@media (max-width:460px){
  .hero-actions .btn{width:100%}
  .hero-meta{grid-template-columns:1fr}
  .hero-visual{min-height:440px}
  .browser-top{height:44px}
  .browser-url{max-width:200px}
  .store-preview{padding:11px}
  .preview-hero{grid-template-columns:1fr 1fr;min-height:220px}
  .preview-products span{height:48px}
  .tag-domain{top:110px}
  .tools-grid{grid-template-columns:1fr 1fr}
}

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