/* Presu landing — scoped to #presu-landing to not pollute cabinet UI */
#presu-landing{
  --bg:#f5f1ea; --bg-2:#ede5d8; --paper:#fbf8f2;
  --ink:#1d1b16; --ink-2:#4a4639; --ink-3:#7a7466;
  --line:#d9d0bd;
  --terracotta:#c2552d; --terracotta-2:#8f3815; --terracotta-soft:rgba(194,85,45,0.1);
  --moss:#3d5530;
  --font-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --display-italic: italic;
  --display-weight: 500;
  --display-tracking: -0.025em;

  font-family:var(--font-sans);
  background:var(--bg); color:var(--ink);
  -webkit-font-smoothing:antialiased;
  font-feature-settings:"ss01","cv11";
  line-height:1.5;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, #f0e8d6 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 30%, #efe5d0 0%, transparent 55%);
  min-height:100vh;
}
#presu-landing[data-type="hybrid"]{
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display-italic: normal;
  --display-weight: 700;
  --display-tracking: -0.035em;
}
#presu-landing[data-type="trades"]{
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display-italic: normal;
  --display-weight: 800;
  --display-tracking: -0.04em;
}
#presu-landing *{box-sizing:border-box}
#presu-landing .serif{font-family:var(--font-display); font-weight:var(--display-weight); letter-spacing:var(--display-tracking)}
#presu-landing .mono{font-family:"Geist Mono", ui-monospace, monospace}
#presu-landing a{color:inherit}
#presu-landing :focus-visible{outline:2px solid var(--terracotta); outline-offset:3px; border-radius:4px}
#presu-landing button{font-family:inherit; cursor:pointer}
@media (prefers-reduced-motion: reduce){
  #presu-landing *,#presu-landing *::before,#presu-landing *::after{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important}
}

/* ============ NAV ============ */
#presu-landing .nav{display:flex; align-items:center; justify-content:space-between; padding:22px 32px; max-width:1240px; margin:0 auto; flex-wrap:wrap; row-gap:0}
#presu-landing .logo{display:flex; align-items:center; gap:10px; font-weight:600; font-size:18px; letter-spacing:-0.01em}
#presu-landing .logo-mark{width:30px;height:30px;border-radius:9px; background:var(--ink); color:var(--paper); display:grid;place-items:center; font-family:var(--font-display); font-style:italic; font-size:18px; font-weight:600}
#presu-landing .nav-links{display:flex; gap:28px; font-size:14.5px; color:var(--ink-2); white-space:nowrap}
#presu-landing .nav-links a{color:inherit; text-decoration:none}
#presu-landing .nav-links a:hover{color:var(--ink)}
#presu-landing .nav-cta{display:flex; gap:10px; align-items:center}
#presu-landing .nav-burger{display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px; width:40px; height:40px; padding:0; background:transparent; border:1px solid var(--line); border-radius:10px; cursor:pointer; transition:border-color 180ms ease}
#presu-landing .nav-burger:hover{border-color:var(--ink)}
#presu-landing .nav-burger span{display:block; width:20px; height:2px; background:var(--ink); border-radius:2px; transition:transform 220ms ease, opacity 160ms ease}
#presu-landing .nav-burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
#presu-landing .nav-burger.is-open span:nth-child(2){opacity:0}
#presu-landing .nav-burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Exit-intent modal ---------- */
.presu-modal-backdrop{position:fixed; inset:0; background:rgba(28,24,22,0.55); backdrop-filter:blur(4px); z-index:80; display:flex; align-items:center; justify-content:center; padding:20px; animation:presuModalIn 200ms ease both}
@keyframes presuModalIn{from{opacity:0} to{opacity:1}}
.presu-modal{position:relative; background:#fdf9f1; border:1px solid #e7e2d4; border-radius:18px; box-shadow:0 30px 80px -20px rgba(28,24,18,0.45); padding:32px 28px 28px; max-width:420px; width:100%; font-family:"Geist",ui-sans-serif,system-ui,sans-serif; color:#1d1b16; animation:presuModalSlide 240ms cubic-bezier(0.2,0.7,0.2,1) both}
@keyframes presuModalSlide{from{opacity:0; transform:translateY(12px) scale(0.97)} to{opacity:1; transform:translateY(0) scale(1)}}
.presu-modal-close{position:absolute; top:14px; right:14px; width:30px; height:30px; border:none; background:transparent; color:#7a7466; font-size:24px; line-height:1; cursor:pointer; border-radius:8px; display:flex; align-items:center; justify-content:center; transition:background 140ms ease, color 140ms ease}
.presu-modal-close:hover{background:#f0e9d9; color:#1d1b16}
.presu-modal-title{font-family:"Newsreader",Georgia,serif; font-size:24px; font-weight:500; letter-spacing:-0.025em; line-height:1.15; margin:0 0 10px; color:#1d1b16}
.presu-modal-sub{font-size:14.5px; color:#4a4639; line-height:1.5; margin:0 0 22px}
.presu-modal-form{display:flex; flex-direction:column; gap:14px}
.presu-modal-field{display:flex; flex-direction:column; gap:6px}
.presu-modal-field span{font-size:11.5px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color:#7a7466}
.presu-modal-field select, .presu-modal-field input{font-family:inherit; font-size:15px; padding:11px 14px; border-radius:10px; border:1px solid #d4cdb9; background:#fff; color:#1d1b16; transition:border-color 140ms ease, box-shadow 140ms ease}
.presu-modal-field select:focus, .presu-modal-field input:focus{outline:none; border-color:#c2552d; box-shadow:0 0 0 3px rgba(194,85,45,0.15)}
.presu-modal-submit{margin-top:6px; padding:13px 20px; border-radius:999px; border:none; background:#c2552d; color:#fff; font-family:inherit; font-size:15px; font-weight:500; cursor:pointer; transition:background 140ms ease, transform 100ms ease}
.presu-modal-submit:hover{background:#a8421d}
.presu-modal-submit:active{transform:scale(0.98)}
.presu-modal-submit:disabled{opacity:0.6; cursor:wait}
.presu-modal-success{text-align:center; padding:8px 0}
.presu-modal-success-icon{width:54px; height:54px; border-radius:50%; background:#25D366; color:#fff; font-size:28px; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-weight:700; box-shadow:0 10px 22px -6px rgba(37,211,102,0.5)}
.presu-modal-success .presu-modal-submit{margin-top:18px; min-width:140px}
@media (max-width:520px){
  .presu-modal{padding:28px 22px 24px; border-radius:14px}
  .presu-modal-title{font-size:21px}
}

/* ---------- WhatsApp FAB (sticky bottom-right founder chat) ---------- */
.presu-fab{position:fixed; bottom:22px; right:22px; width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 14px 36px -10px rgba(37,211,102,0.55), 0 4px 12px -4px rgba(0,0,0,0.18); z-index:60; opacity:0; transform:translateY(16px) scale(0.85); transition:opacity 280ms cubic-bezier(0.2,0.7,0.2,1), transform 280ms cubic-bezier(0.2,0.7,0.2,1), box-shadow 200ms ease; cursor:pointer}
.presu-fab.is-shown{opacity:1; transform:translateY(0) scale(1)}
.presu-fab:hover{box-shadow:0 18px 44px -10px rgba(37,211,102,0.7), 0 6px 16px -4px rgba(0,0,0,0.22); transform:translateY(-2px) scale(1.04)}
.presu-fab:active{transform:translateY(0) scale(0.98)}
.presu-fab-tip{position:absolute; right:calc(100% + 14px); top:50%; transform:translateY(-50%) translateX(8px); padding:10px 16px; background:#1d1b16; color:#fff; border-radius:10px; font-family:var(--font-sans); font-size:14px; font-weight:600; letter-spacing:-0.005em; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity 180ms ease, transform 180ms cubic-bezier(0.2,0.7,0.2,1); box-shadow:0 12px 28px -8px rgba(0,0,0,0.4), 0 4px 10px -2px rgba(0,0,0,0.2)}
.presu-fab-tip.is-shown{opacity:1; transform:translateY(-50%) translateX(0)}
.presu-fab-tip::after{content:""; position:absolute; left:100%; top:50%; transform:translateY(-50%); border:7px solid transparent; border-left-color:#1d1b16}
@media (max-width:520px){
  .presu-fab{bottom:18px; right:18px; width:54px; height:54px}
  .presu-fab-tip{display:none}
}

/* ---------- Language switcher (matches .nav-links typography) ---------- */
#presu-landing .lang-switch{position:relative}
#presu-landing .lang-switch-trigger{display:inline-flex; align-items:center; gap:7px; padding:0; background:transparent; border:none; color:var(--ink-2); font-family:var(--font-sans); font-size:14.5px; font-weight:400; letter-spacing:0; cursor:pointer; transition:color 160ms ease}
#presu-landing .lang-switch-trigger:hover{color:var(--ink)}
#presu-landing .lang-switch-trigger[aria-expanded="true"]{color:var(--ink)}
#presu-landing .lang-flag{font-size:15px; line-height:1; filter:saturate(1.05)}
#presu-landing .lang-code{font-family:var(--font-sans); font-weight:400; font-size:14.5px; letter-spacing:0; color:inherit}
#presu-landing .lang-chevron{opacity:0.5; margin-left:1px; transition:transform 200ms ease, opacity 160ms ease}
#presu-landing .lang-switch-trigger:hover .lang-chevron{opacity:0.85}
#presu-landing .lang-switch-trigger[aria-expanded="true"] .lang-chevron{transform:rotate(180deg); opacity:0.9}
#presu-landing .lang-menu{position:absolute; top:calc(100% + 14px); right:0; min-width:210px; margin:0; padding:6px; list-style:none; background:var(--paper); border:1px solid var(--line); border-radius:14px; box-shadow:0 22px 50px -22px rgba(28,24,18,0.32), 0 4px 14px -6px rgba(28,24,18,0.14); z-index:50; animation:langMenuIn 180ms cubic-bezier(0.2,0.7,0.2,1) both}
@keyframes langMenuIn{from{opacity:0; transform:translateY(-4px)} to{opacity:1; transform:translateY(0)}}
#presu-landing .lang-menu li{margin:0; padding:0}
#presu-landing .lang-opt{display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:9px; color:var(--ink-2); font-family:var(--font-sans); font-size:14.5px; font-weight:400; text-decoration:none; transition:background 140ms ease, color 140ms ease}
#presu-landing .lang-opt:hover{background:#f6efe2; color:var(--ink)}
#presu-landing .lang-opt .lang-flag{font-size:17px}
#presu-landing .lang-native{flex:1; line-height:1.2}
#presu-landing .lang-check{opacity:0; color:var(--terracotta); flex-shrink:0; transition:opacity 140ms ease}
#presu-landing .lang-opt.is-active{background:#f1ead9; color:#000; font-weight:600}
#presu-landing .lang-opt.is-active .lang-check{opacity:1}

#presu-landing .btn{display:inline-flex; align-items:center; gap:8px; padding:11px 18px; border-radius:999px; font-size:14.5px; font-weight:500; text-decoration:none; transition:all .15s ease; border:1px solid transparent; cursor:pointer; white-space:nowrap}
#presu-landing .btn-ghost{color:var(--ink-2); background:transparent}
#presu-landing .btn-ghost:hover{background:#0000000a}
#presu-landing .btn-dark{background:var(--ink); color:var(--paper)}
#presu-landing .btn-dark:hover{background:#000}
#presu-landing .btn-terracotta{background:var(--terracotta); color:#fff}
#presu-landing .btn-terracotta:hover{background:var(--terracotta-2)}
#presu-landing .btn-paper{background:var(--paper); color:var(--ink); border-color:var(--line)}
#presu-landing .btn-paper:hover{background:#fff}
#presu-landing .btn-demo{background:transparent; color:#1d6e3a; border:1.5px solid #25D366; transition:all .15s ease}
#presu-landing .btn-demo:hover{background:#25D366; color:#fff; border-color:#25D366}
#presu-landing .btn-demo svg{flex-shrink:0}
#presu-landing .btn-outline-ink{background:transparent; color:var(--ink); border:1.5px solid var(--ink)}
#presu-landing .btn-outline-ink:hover{background:var(--terracotta); color:#fff; border-color:var(--terracotta)}
#presu-landing .btn-lg{padding:14px 22px; font-size:15px}

/* ============ HERO ============ */
#presu-landing .hero{padding:48px 32px 80px; max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center}
#presu-landing .pill{display:inline-flex; align-items:center; gap:10px; padding:6px 14px 6px 8px; border-radius:999px; background:#fff; border:1px solid var(--line); font-size:13px; color:var(--ink-2); font-family:"Geist Mono",monospace; letter-spacing:0.02em}
#presu-landing .pill-dot{width:8px;height:8px;border-radius:50%; background:var(--terracotta); position:relative}
#presu-landing .pill-dot::after{content:""; position:absolute; inset:-4px; border-radius:50%; background:var(--terracotta); opacity:0.25; animation:presu-pulse 2s infinite}
@keyframes presu-pulse{0%{transform:scale(1); opacity:.25} 70%{transform:scale(2); opacity:0} 100%{opacity:0}}

#presu-landing h1.hero-title{font-family:var(--font-display); font-weight:var(--display-weight); font-size:clamp(43px,6.3vw,86px); line-height:0.98; letter-spacing:var(--display-tracking); margin:24px 0 24px; color:var(--ink); text-wrap:pretty}
#presu-landing h1.hero-title em{font-style:var(--display-italic); color:var(--terracotta); font-weight:var(--display-weight)}
#presu-landing h1.hero-title .underline{background-image:linear-gradient(transparent 65%, rgba(194,85,45,0.25) 65%); background-repeat:no-repeat}
#presu-landing .hero-sub{font-size:19px; color:var(--ink-2); max-width:520px; margin-bottom:32px; line-height:1.5; text-wrap:pretty}
#presu-landing .hero-sub b{color:var(--ink); font-weight:500}
#presu-landing .hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px}
#presu-landing .hero-meta{display:flex; gap:24px; flex-wrap:wrap; font-size:13.5px; color:var(--ink-3); align-items:center}
#presu-landing .hero-meta span{display:flex; align-items:center; gap:8px}
#presu-landing .check{width:14px; height:14px; flex-shrink:0}

/* ============ HERO PHONE + ANIMATED DEMO ============ */
#presu-landing .phone-stage{position:relative; display:grid; place-items:center; padding:24px 0}
#presu-landing .phone{width:306px; height:612px; background:#0a0a0a; border-radius:42px; padding:9px; box-shadow:0 60px 120px -30px rgba(60,40,20,0.35), 0 30px 60px -20px rgba(60,40,20,0.25), inset 0 0 0 1px rgba(255,255,255,0.08); position:relative}
#presu-landing .phone-screen{width:100%; height:100%; background:#e5ddd1; border-radius:38px; overflow:hidden; position:relative; display:flex; flex-direction:column}
#presu-landing .phone-notch{position:absolute; top:14px; left:50%; transform:translateX(-50%); width:110px; height:30px; background:#0a0a0a; border-radius:99px; z-index:10}
#presu-landing .wa-header{background:#075e54; color:#fff; padding:44px 16px 12px; display:flex; align-items:center; gap:12px; font-size:14px}
#presu-landing .wa-avatar{width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg, #c2552d, #e08855); display:grid; place-items:center; font-family:var(--font-display); font-weight:600; color:#fff; font-size:16px}
#presu-landing .wa-name{font-weight:500; line-height:1.1}
#presu-landing .wa-status{font-size:11px; opacity:0.8; margin-top:2px}
#presu-landing .wa-status .typing{display:none}
#presu-landing .wa-status.is-typing .typing{display:inline}
#presu-landing .wa-status.is-typing .online{display:none}
#presu-landing .wa-icon{margin-left:auto; opacity:0.7}
#presu-landing .wa-body{flex:1; padding:14px 12px; display:flex; flex-direction:column; gap:8px; background:radial-gradient(circle at 20% 30%, rgba(255,255,255,0.5) 0%, transparent 40%), #e5ddd1; overflow:hidden}
#presu-landing .bubble{max-width:80%; padding:7px 10px 6px; border-radius:8px; font-size:13.5px; line-height:1.35; position:relative; box-shadow:0 1px 0.5px rgba(0,0,0,0.13); opacity:0; transform:translateY(8px); animation:presu-bubble-in 0.4s ease forwards}
#presu-landing .bubble.in{align-self:flex-start; background:#fff; border-top-left-radius:2px}
#presu-landing .bubble.out{align-self:flex-end; background:#dcf8c6; border-top-right-radius:2px}
#presu-landing .bubble.note{align-self:flex-start; background:#fef4e8; border:1px dashed #d9b893; max-width:88%}
#presu-landing .bubble .time{font-size:10px; color:#7a8a76; float:right; margin:2px 0 -2px 8px}
#presu-landing .bubble .check2{color:#4fc3f7; font-size:11px; margin-left:2px}
#presu-landing .bubble .typing-dots{display:inline-flex; gap:3px; padding:4px 0}
#presu-landing .bubble .typing-dots span{width:6px; height:6px; border-radius:50%; background:#888; animation:presu-dot 1.2s infinite}
#presu-landing .bubble .typing-dots span:nth-child(2){animation-delay:0.2s}
#presu-landing .bubble .typing-dots span:nth-child(3){animation-delay:0.4s}
@keyframes presu-dot{0%,60%,100%{opacity:0.3; transform:scale(0.8)} 30%{opacity:1; transform:scale(1.1)}}
@keyframes presu-bubble-in{to{opacity:1; transform:translateY(0)}}

#presu-landing .audio{display:flex; align-items:center; gap:10px; min-width:200px}
#presu-landing .audio-play{width:28px; height:28px; border-radius:50%; background:#075e54; color:#fff; display:grid; place-items:center; font-size:12px; flex-shrink:0}
#presu-landing .audio-wave{flex:1; height:24px; display:flex; align-items:center; gap:2px; position:relative}
#presu-landing .audio-wave .bar{flex:1; background:#aab5b0; border-radius:1px; transition:background 0.1s}
#presu-landing .audio-wave .bar.played{background:#075e54}
#presu-landing .audio-time{font-size:11px; color:#667; font-family:"Geist Mono",monospace}

#presu-landing .quote-card{background:#fff; border-radius:8px; padding:10px; border-top-left-radius:2px; box-shadow:0 1px 0.5px rgba(0,0,0,0.13); max-width:88%; align-self:flex-start}
#presu-landing .qc-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:8px}
#presu-landing .qc-id{font-family:"Geist Mono",monospace; font-size:10px; color:#888; letter-spacing:0.05em}
#presu-landing .qc-status{font-size:10px; padding:2px 7px; border-radius:99px; background:#dcf8c6; color:#2d6a3a; font-weight:500}
#presu-landing .qc-title{font-size:13px; font-weight:500; margin-bottom:6px; color:#222}
#presu-landing .qc-rows{display:flex; flex-direction:column; gap:3px; font-size:11.5px; color:#555; padding:6px 0; border-top:1px dashed #e5e5e5; border-bottom:1px dashed #e5e5e5}
#presu-landing .qc-rows div{display:flex; justify-content:space-between}
#presu-landing .qc-rows div span:last-child{font-family:"Geist Mono",monospace; color:#222}
#presu-landing .qc-total{display:flex; justify-content:space-between; margin-top:8px; font-weight:600; font-size:14px; color:#222}
#presu-landing .qc-link{margin-top:8px; padding:8px 10px; background:#075e54; color:#fff; border-radius:6px; font-size:11.5px; display:flex; justify-content:space-between; align-items:center}

#presu-landing .annot{position:absolute; background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px 14px; font-size:12.5px; box-shadow:0 8px 24px -8px rgba(60,40,20,0.15); width:200px; line-height:1.4}
#presu-landing .annot .annot-label{font-family:"Geist Mono",monospace; font-size:10px; text-transform:uppercase; letter-spacing:0.08em; color:var(--terracotta); margin-bottom:4px}
#presu-landing .annot.a1{top:60px; right:50%; margin-right:169px; transform:rotate(-3deg)}
#presu-landing .annot.a2{bottom:140px; left:50%; margin-left:169px; transform:rotate(2deg)}
@media (max-width:1100px){
  #presu-landing .annot{display:none}
}

#presu-landing .scene-tag{position:absolute; top:-44px; left:50%; transform:translateX(-50%); display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:99px; background:var(--paper); border:1px solid var(--line); font-family:"Geist Mono",monospace; font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-2); white-space:nowrap; transition:all 0.3s ease}
#presu-landing .scene-tag .dot{width:7px; height:7px; border-radius:50%; background:var(--terracotta); position:relative}
#presu-landing .scene-tag .dot::after{content:""; position:absolute; inset:-4px; border-radius:50%; background:var(--terracotta); opacity:0.3; animation:presu-pulse2 1.6s infinite}
@keyframes presu-pulse2{0%{transform:scale(1); opacity:0.3} 70%{transform:scale(2.5); opacity:0} 100%{opacity:0}}
#presu-landing .scene-tag b{font-weight:600; color:var(--ink)}

#presu-landing .scene{position:absolute; inset:0; display:flex; flex-direction:column; opacity:0; transform:translateX(20px); transition:opacity 0.5s ease, transform 0.5s ease; pointer-events:none}
#presu-landing .scene.is-active{opacity:1; transform:translateX(0); pointer-events:auto}
#presu-landing .scene-1{transition-delay:0.1s}

#presu-landing .client-screen{flex:1; background:linear-gradient(180deg, #f7e6c4 0%, #e8c889 100%); position:relative; padding:48px 14px 14px; display:flex; flex-direction:column; gap:10px}
#presu-landing .client-status-bar{position:absolute; top:18px; left:24px; right:24px; display:flex; justify-content:space-between; font-size:13px; font-weight:600; color:#1a1a1a; font-family:-apple-system,sans-serif; z-index:5}
#presu-landing .client-time{letter-spacing:-0.01em}
#presu-landing .client-icons{display:flex; gap:5px; align-items:center; font-size:11px}
#presu-landing .notif{background:rgba(255,255,255,0.85); backdrop-filter:blur(20px); border-radius:18px; padding:11px 13px; display:flex; gap:10px; align-items:flex-start; box-shadow:0 8px 24px -8px rgba(0,0,0,0.15); transform:translateY(-30px); opacity:0; transition:all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1)}
#presu-landing .notif.is-shown{transform:translateY(0); opacity:1}
#presu-landing .notif-icon{width:32px; height:32px; border-radius:8px; background:#25d366; display:grid; place-items:center; flex-shrink:0; color:#fff; font-weight:700; font-size:14px}
#presu-landing .notif-body{flex:1; min-width:0}
#presu-landing .notif-head{display:flex; justify-content:space-between; align-items:baseline; gap:6px}
#presu-landing .notif-app{font-size:12px; font-weight:600; color:#1a1a1a; text-transform:uppercase; letter-spacing:0.04em}
#presu-landing .notif-time{font-size:11px; color:#555}
#presu-landing .notif-from{font-size:13px; font-weight:600; color:#1a1a1a; margin:1px 0}
#presu-landing .notif-text{font-size:12.5px; color:#333; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
#presu-landing .tap-hint{position:absolute; top:108px; right:42px; width:24px; height:24px; border-radius:50%; border:2px solid #fff; box-shadow:0 0 0 3px rgba(255,255,255,0.4); opacity:0; transition:opacity 0.3s; pointer-events:none}
#presu-landing .tap-hint.is-shown{opacity:1; animation:presu-tap 1s ease-out}
@keyframes presu-tap{0%{transform:scale(0.4); opacity:0} 30%{transform:scale(1); opacity:1} 100%{transform:scale(1.6); opacity:0}}

#presu-landing .qbrowser{position:absolute; inset:0; z-index:5; background:#fff; display:flex; flex-direction:column; opacity:0; transform:translateY(20px); transition:opacity 0.45s ease, transform 0.45s ease; overflow:hidden; pointer-events:none}
#presu-landing .qbrowser.is-shown{opacity:1; transform:translateY(0); pointer-events:auto}
#presu-landing .qbrowser-bar{padding:38px 12px 8px; background:#1d1b16; color:#fff; font-family:"Geist Mono",monospace; font-size:11px; display:flex; align-items:center; gap:8px}
#presu-landing .qbrowser-url{flex:1; background:rgba(255,255,255,0.1); padding:5px 10px; border-radius:8px; color:#f7e6c4; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
#presu-landing .qbrowser-url b{color:#fff}
#presu-landing .qbrowser-body{flex:1; overflow:hidden; padding:14px 14px 0; display:flex; flex-direction:column; gap:0}
#presu-landing .qb-brand{display:flex; align-items:center; gap:10px; padding-bottom:12px; border-bottom:1px dashed var(--line)}
#presu-landing .qb-logo{width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg, var(--terracotta), #e08855); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-size:18px; font-weight:600}
#presu-landing .qb-name{font-size:14px; font-weight:600; line-height:1.1; color:var(--ink)}
#presu-landing .qb-trade{font-size:11px; color:var(--ink-3); margin-top:2px}
#presu-landing .qb-stars{font-size:10.5px; color:var(--terracotta); margin-top:2px}
#presu-landing .qb-id{margin-left:auto; font-family:"Geist Mono",monospace; font-size:9.5px; color:var(--ink-3); background:var(--bg-2); padding:3px 7px; border-radius:5px}
#presu-landing .qb-title{font-family:var(--font-display); font-size:18px; line-height:1.15; padding:14px 0 10px; color:var(--ink); letter-spacing:var(--display-tracking); font-weight:var(--display-weight)}
#presu-landing .qb-rows{display:flex; flex-direction:column}
#presu-landing .qb-row{display:flex; justify-content:space-between; padding:7px 0; font-size:12px; border-top:1px solid #f0e9da; color:var(--ink-2)}
#presu-landing .qb-row:first-child{border-top:none}
#presu-landing .qb-row .amt{font-family:"Geist Mono",monospace; color:var(--ink); font-weight:500}
#presu-landing .qb-total{display:flex; justify-content:space-between; align-items:baseline; padding:12px 0 10px; margin-top:6px; border-top:2px solid var(--ink); border-bottom:none}
#presu-landing .qb-total-label{font-size:10.5px; font-family:"Geist Mono",monospace; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-3)}
#presu-landing .qb-total-val{font-family:var(--font-display); font-size:24px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); color:var(--ink)}
#presu-landing .qb-pay{margin-top:auto; padding:12px 0 14px; display:flex; flex-direction:column; gap:6px}
#presu-landing .qb-pay-btn{padding:13px 14px; border-radius:12px; background:var(--ink); color:#fff; font-size:13px; font-weight:600; text-align:center; display:flex; justify-content:space-between; align-items:center; cursor:pointer; transition:all 0.2s; position:relative; overflow:hidden}
#presu-landing .qb-pay-btn.is-pressing{transform:scale(0.96); background:var(--terracotta)}
#presu-landing .qb-pay-btn.is-pressing::after{content:""; position:absolute; inset:0; background:radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 60%); animation:presu-ripple 0.6s ease-out}
@keyframes presu-ripple{0%{transform:scale(0)} 100%{transform:scale(2)}}
#presu-landing .qb-pay-meta{font-size:10px; color:var(--ink-3); text-align:center; font-family:"Geist Mono",monospace; letter-spacing:0.04em}

#presu-landing .webpay-sheet{position:absolute; left:0; right:0; bottom:0; background:#fff; border-radius:18px 18px 0 0; padding:20px 16px 16px; box-shadow:0 -20px 40px -8px rgba(0,0,0,0.2); transform:translateY(100%); transition:transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); display:flex; flex-direction:column; gap:12px}
#presu-landing .webpay-sheet.is-up{transform:translateY(0)}
#presu-landing .wp-handle{width:36px; height:4px; border-radius:2px; background:#d4c8b3; margin:0 auto -2px}
#presu-landing .wp-brand{display:flex; align-items:center; justify-content:space-between}
#presu-landing .wp-logo{display:flex; align-items:center; gap:6px; font-family:"Geist Mono",monospace; font-size:11px; color:#005f9e; font-weight:700; letter-spacing:0.04em}
#presu-landing .wp-logo-mark{width:24px; height:24px; border-radius:6px; background:#005f9e; color:#fff; display:grid; place-items:center; font-size:10px; font-weight:700}
#presu-landing .wp-secure{font-size:10px; color:#2d6a3a; display:flex; align-items:center; gap:4px}
#presu-landing .wp-amount-row{padding:12px 14px; background:#f4f0e6; border-radius:10px; display:flex; justify-content:space-between; align-items:center}
#presu-landing .wp-amount-label{font-size:11px; color:var(--ink-3); font-family:"Geist Mono",monospace; text-transform:uppercase; letter-spacing:0.06em}
#presu-landing .wp-amount-val{font-family:var(--font-display); font-size:20px; font-weight:var(--display-weight); color:var(--ink)}
#presu-landing .wp-cards{display:flex; flex-direction:column; gap:6px}
#presu-landing .wp-card{padding:11px 12px; border-radius:10px; border:1.5px solid #e5dfd0; display:flex; align-items:center; gap:10px; font-size:12px; cursor:pointer; transition:all 0.2s}
#presu-landing .wp-card.is-selected{border-color:var(--terracotta); background:#fdf3ed}
#presu-landing .wp-card-mark{width:30px; height:20px; border-radius:4px; background:linear-gradient(135deg, #ff5f00, #f79e1b); flex-shrink:0; display:grid; place-items:center; color:#fff; font-size:9px; font-weight:700; font-family:"Geist Mono",monospace}
#presu-landing .wp-card-mark.visa{background:linear-gradient(135deg, #1a1f71, #0f4ba6)}
#presu-landing .wp-card-num{flex:1; font-family:"Geist Mono",monospace; color:var(--ink-2); letter-spacing:0.05em}
#presu-landing .wp-card-bank{font-size:10px; color:var(--ink-3)}
#presu-landing .wp-pay-final{margin-top:4px; padding:13px; border-radius:11px; background:#005f9e; color:#fff; text-align:center; font-size:13px; font-weight:600; cursor:pointer; transition:background 0.2s; position:relative}
#presu-landing .wp-pay-final.is-loading{background:#0a4d7a}
#presu-landing .wp-spinner{display:none; width:16px; height:16px; border:2px solid rgba(255,255,255,0.3); border-top-color:#fff; border-radius:50%; animation:presu-spin 0.7s linear infinite; vertical-align:middle; margin-right:8px}
#presu-landing .wp-pay-final.is-loading .wp-spinner{display:inline-block}
@keyframes presu-spin{to{transform:rotate(360deg)}}

#presu-landing .success-overlay{position:absolute; inset:0; background:#1d1b16; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:14px; padding:32px; opacity:0; transition:opacity 0.4s; pointer-events:none}
#presu-landing .success-overlay.is-shown{opacity:1; pointer-events:auto}
#presu-landing .success-check{width:72px; height:72px; border-radius:50%; background:#dcf8c6; color:#075e54; display:grid; place-items:center; transform:scale(0); animation:presu-popin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards}
#presu-landing .success-overlay.is-shown .success-check{animation-delay:0.15s}
@keyframes presu-popin{to{transform:scale(1)}}
#presu-landing .success-title{font-family:var(--font-display); font-style:var(--display-italic); font-size:26px; color:#fff; text-align:center; line-height:1.15}
#presu-landing .success-amt{font-family:"Geist Mono",monospace; font-size:13px; color:#f7e6c4; padding:6px 12px; border:1px dashed #5a4f3a; border-radius:99px}

#presu-landing .maestro-notif{position:absolute; top:14px; left:14px; right:14px; background:#075e54; color:#fff; border-radius:14px; padding:11px 13px; display:flex; gap:10px; align-items:flex-start; box-shadow:0 8px 24px -4px rgba(0,0,0,0.4); transform:translateY(-200%); transition:transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); z-index:20}
#presu-landing .maestro-notif.is-shown{transform:translateY(0)}
#presu-landing .maestro-notif-icon{width:30px; height:30px; border-radius:7px; background:#25d366; display:grid; place-items:center; flex-shrink:0; font-size:14px; font-weight:700}
#presu-landing .maestro-notif-body{flex:1; font-size:12.5px; line-height:1.3}
#presu-landing .maestro-notif-body b{display:block; font-weight:600; margin-bottom:2px; font-size:13px}


/* ============ STATS STRIP ============ */
#presu-landing .strip{border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--paper)}
#presu-landing .strip-grid{max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); padding:32px}
#presu-landing .stat .num{font-family:var(--font-display); font-size:42px; line-height:1; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); color:var(--terracotta)}
#presu-landing .stat .num em{font-style:var(--display-italic); color:var(--terracotta); font-weight:var(--display-weight)}
#presu-landing .stat .label{font-size:13px; color:var(--ink-3); margin-top:6px; line-height:1.4}
#presu-landing .stat + .stat{padding-left:32px; border-left:1px dashed var(--line)}

/* ============ LIVE SOCIAL PROOF BAR (A4·P0) ============ */
#presu-landing .social-proof-bar{
  background:linear-gradient(180deg,#fff 0%,#fbf6ee 100%);
  border-top:1px solid var(--line);
  padding:48px 32px 40px;
  text-align:center;
}
#presu-landing .sp-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:"Geist Mono",monospace; font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--terracotta); margin-bottom:24px;
}
#presu-landing .sp-dot{
  width:8px; height:8px; border-radius:50%; background:#3a8a4a;
  box-shadow:0 0 0 4px rgba(58,138,74,.15);
  animation:sp-pulse 1.6s ease-in-out infinite;
}
@keyframes sp-pulse{0%,100%{opacity:1}50%{opacity:.55}}
#presu-landing .sp-grid{
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:end;
}
#presu-landing .sp-stat{padding:0 16px}
#presu-landing .sp-stat + .sp-stat{border-left:1px dashed var(--line)}
#presu-landing .sp-num{
  font-family:var(--font-display);
  font-size:64px; line-height:1; font-weight:var(--display-weight);
  letter-spacing:var(--display-tracking);
  color:var(--ink-1);
}
#presu-landing .sp-num em{font-style:var(--display-italic); color:var(--terracotta); font-weight:var(--display-weight)}
#presu-landing .sp-label{
  font-size:13px; color:var(--ink-3); margin-top:12px; line-height:1.4;
  max-width:240px; margin-left:auto; margin-right:auto;
}

/* ============ BRAND-LOGO BAR (A4·P0) ============ */
#presu-landing .brand-bar{
  padding:64px 32px 72px;
  background:#faf6ef;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
#presu-landing .brand-bar-head{max-width:760px; margin:0 auto 40px; text-align:center}
#presu-landing .brand-bar-title{
  font-family:var(--font-display); font-size:28px; line-height:1.2;
  font-weight:var(--display-weight); letter-spacing:var(--display-tracking);
  color:var(--ink-1);
}
#presu-landing .brand-bar-lede{
  font-size:15px; color:var(--ink-3); margin-top:10px; line-height:1.5;
}
#presu-landing .brand-bar-grid{
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
#presu-landing .brand-tile{
  display:flex; align-items:center; gap:12px;
  padding:14px 16px; background:#fff; border:1px solid var(--line);
  border-radius:12px;
}
#presu-landing .brand-logo{
  flex:0 0 auto; width:40px; height:40px; border-radius:10px;
  display:grid; place-items:center;
  font-family:var(--font-display); font-size:18px; font-weight:600; color:#fff;
}
#presu-landing .brand-logo-c0{background:linear-gradient(135deg,#c2552d,#8f3815)}
#presu-landing .brand-logo-c1{background:linear-gradient(135deg,#3d5530,#5a7a48)}
#presu-landing .brand-logo-c2{background:linear-gradient(135deg,#8f3815,#c2552d)}
#presu-landing .brand-logo-c3{background:linear-gradient(135deg,#4a4639,#7a7466)}
#presu-landing .brand-logo-c4{background:linear-gradient(135deg,#b07239,#c2552d)}
#presu-landing .brand-meta{min-width:0; flex:1}
#presu-landing .brand-name{font-size:14px; font-weight:600; color:var(--ink-1); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
#presu-landing .brand-comuna{
  font-family:"Geist Mono",monospace; font-size:11px; letter-spacing:0.06em;
  color:var(--ink-3); text-transform:uppercase; margin-top:2px;
}

/* ============ SECTION SHELL ============ */
#presu-landing .section{padding:96px 32px}
#presu-landing .section-head{max-width:760px; margin:0 auto 56px; text-align:center}
#presu-landing .eyebrow{display:inline-block; font-family:"Geist Mono",monospace; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--terracotta); margin-bottom:18px}
#presu-landing h2.section-title{font-family:var(--font-display); font-size:clamp(34px,4.6vw,60px); line-height:1.02; letter-spacing:var(--display-tracking); margin:0 0 18px; font-weight:var(--display-weight); text-wrap:balance}
#presu-landing h2.section-title.how-title{font-size:clamp(32px,4vw,48px)}
#presu-landing h2.section-title em{font-style:var(--display-italic); color:var(--terracotta); font-weight:var(--display-weight)}
#presu-landing .section-lede{font-size:17px; color:var(--ink-2); line-height:1.5; max-width:600px; margin:0 auto}

/* ============ PROBLEM ============ */
#presu-landing .problem-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:20px}
#presu-landing .problem-card{background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:28px; display:flex; flex-direction:column; gap:14px}
#presu-landing .pc-quote{font-family:var(--font-display); font-style:var(--display-italic); font-size:22px; line-height:1.3; color:var(--ink); letter-spacing:-0.005em}
#presu-landing .pc-quote::before{content:"« "; color:var(--terracotta)}
#presu-landing .pc-quote::after{content:" »"; color:var(--terracotta)}
#presu-landing .pc-who{display:flex; align-items:center; gap:12px; font-size:13px; color:var(--ink-3)}
#presu-landing .pc-avatar{width:48px; height:48px; border-radius:50%; object-fit:cover; flex-shrink:0; box-shadow:0 0 0 1px var(--line)}
#presu-landing .pc-tag{margin-top:auto; font-family:"Geist Mono",monospace; font-size:11px; color:var(--terracotta-2); text-transform:uppercase; letter-spacing:0.08em; padding-top:14px; border-top:1px dashed var(--line)}

/* ============ HOW ============ */
#presu-landing .how-section{background:#fbf8f2; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
#presu-landing .steps{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:0}
#presu-landing .step{padding:36px 32px; position:relative; display:flex; flex-direction:column}
#presu-landing .step-num{font-family:"Geist Mono",monospace; font-size:11px; color:var(--terracotta); letter-spacing:0.12em; margin-bottom:20px}
#presu-landing .step-title{font-family:var(--font-display); font-size:24px; font-weight:var(--display-weight); letter-spacing:-0.015em; margin-bottom:10px; line-height:1.15}
#presu-landing .step-body{font-size:14.5px; color:var(--ink-2); line-height:1.5}

/* Step visuals — mini illustrations on top, before title. Equal height across columns. */
#presu-landing .step-vis{margin-bottom:24px; min-height:200px; display:flex; align-items:stretch}
#presu-landing .step-vis > *{width:100%}

/* 01 — magic-link email (full mock) */
#presu-landing .vis-email{background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; box-shadow:0 6px 16px -8px rgba(60,40,20,0.12); display:flex; flex-direction:column}
#presu-landing .vis-email-bar{display:flex; align-items:center; gap:8px; padding:10px 12px; background:#fbf8f2; border-bottom:1px solid var(--line); font-size:10.5px; color:var(--ink-3); font-family:"Geist Mono",monospace}
#presu-landing .vis-email-bar .dot{width:22px;height:22px;border-radius:50%;background:var(--terracotta);color:#fff;display:grid;place-items:center;font-family:var(--font-display);font-style:italic;font-weight:600;font-size:13px;flex-shrink:0}
#presu-landing .vis-email-bar-meta{flex:1; min-width:0; display:flex; flex-direction:column; gap:1px}
#presu-landing .vis-email-bar-from{font-size:11px; color:var(--ink); font-weight:600; font-family:var(--font-sans)}
#presu-landing .vis-email-bar-time{font-size:9.5px; color:var(--ink-3)}
#presu-landing .vis-email-body{flex:1; padding:12px; display:flex; flex-direction:column; gap:8px}
#presu-landing .vis-email-subj{font-family:var(--font-display); font-size:14px; font-weight:var(--display-weight); color:var(--ink); line-height:1.2; letter-spacing:-0.01em}
#presu-landing .vis-email-preview{font-size:11.5px; color:var(--ink-2); line-height:1.4}
#presu-landing .vis-email-link{align-self:flex-start; display:inline-flex; align-items:center; gap:6px; margin-top:2px; padding:9px 14px; background:var(--ink); color:#fff; border-radius:999px; font-size:11.5px; font-weight:600}
#presu-landing .vis-email-foot{margin-top:auto; padding:7px 12px; border-top:1px dashed #f0e8d8; font-family:"Geist Mono",monospace; font-size:9.5px; color:var(--ink-3); letter-spacing:0.04em}

/* 02 — WhatsApp Business QR connect screen */
#presu-landing .vis-wa{background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; box-shadow:0 6px 16px -8px rgba(60,40,20,0.12); display:flex; flex-direction:column}
#presu-landing .vis-wa-header{background:#075e54; color:#fff; padding:9px 12px; display:flex; align-items:center; gap:8px; font-size:11.5px; font-weight:600; letter-spacing:-0.005em}
#presu-landing .vis-wa-logo{width:20px; height:20px; border-radius:5px; background:#25d366; display:grid; place-items:center; font-size:11px; font-weight:800; color:#fff; flex-shrink:0}
#presu-landing .vis-wa-body{flex:1; padding:12px 12px 10px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:linear-gradient(180deg, #f3f9f3 0%, #fff 100%)}
#presu-landing .vis-qr-code{flex-shrink:0; display:grid; grid-template-columns:repeat(8,1fr); grid-template-rows:repeat(8,1fr); gap:1.5px; background:#fff; border:1px solid #1d1b16; border-radius:6px; padding:5px; width:96px; height:96px}
#presu-landing .vis-qr-code span{background:#1d1b16; border-radius:1px}
#presu-landing .vis-qr-code span.off{background:transparent}
#presu-landing .vis-wa-caption{font-size:11px; color:var(--ink-2); text-align:center; line-height:1.3}
#presu-landing .vis-wa-foot{padding:8px 12px; background:#fbf8f2; border-top:1px solid var(--line); display:flex; align-items:center; gap:7px; font-size:10.5px; color:var(--ink-2); font-family:"Geist Mono",monospace; letter-spacing:0.04em}
#presu-landing .vis-wa-dot{width:8px; height:8px; border-radius:50%; background:#25d366; box-shadow:0 0 0 3px rgba(37,211,102,0.18); flex-shrink:0}
#presu-landing .vis-wa-foot b{color:var(--ink); font-weight:600}

/* 03 — WhatsApp chat: incoming text + outgoing audio */
#presu-landing .vis-chat{display:flex; flex-direction:column; gap:8px; padding:14px; background:#e5ddd1; border-radius:10px; box-shadow:0 6px 16px -8px rgba(60,40,20,0.12); justify-content:center}
#presu-landing .vis-bubble{max-width:88%; padding:7px 10px 6px; border-radius:8px; font-size:12.5px; line-height:1.35; box-shadow:0 1px 0.5px rgba(0,0,0,0.13); position:relative}
#presu-landing .vis-bubble.in{align-self:flex-start; background:#fff; border-top-left-radius:2px; color:#222}
#presu-landing .vis-bubble.out{align-self:flex-end; background:#dcf8c6; border-top-right-radius:2px; padding:8px 10px}
#presu-landing .vis-bubble .vis-time{font-size:9.5px; color:#7a8a76; float:right; margin:1px 0 -1px 8px}
#presu-landing .vis-bubble .vis-time .check2{color:#4fc3f7; margin-left:2px}
#presu-landing .vis-audio-row{display:flex; align-items:center; gap:8px; min-width:170px}
#presu-landing .vis-audio-play{width:24px;height:24px;border-radius:50%;background:#075e54;color:#fff;display:grid;place-items:center;font-size:10px;flex-shrink:0}
#presu-landing .vis-audio-wave{flex:1; height:22px; display:flex; align-items:center; gap:1.5px}
#presu-landing .vis-audio-wave span{flex:1; background:#075e54; border-radius:1px; opacity:0.85}
#presu-landing .vis-audio-time{font-family:"Geist Mono",monospace; font-size:10px; color:#5b7a55}

/* 04 — quote link preview with line items */
#presu-landing .vis-link{background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; box-shadow:0 6px 16px -8px rgba(60,40,20,0.12); display:flex; flex-direction:column}
#presu-landing .vis-link-bar{background:#1d1b16; color:#fff; padding:7px 10px; font-family:"Geist Mono",monospace; font-size:10px; display:flex; align-items:center; gap:6px}
#presu-landing .vis-link-url{flex:1; color:#f7e6c4; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
#presu-landing .vis-link-url b{color:#fff}
#presu-landing .vis-link-items{padding:10px 12px 8px; display:flex; flex-direction:column; gap:4px; border-bottom:1px dashed #f0e8d8}
#presu-landing .vis-link-items div{display:flex; justify-content:space-between; font-size:11px; color:var(--ink-2)}
#presu-landing .vis-link-items div span:last-child{font-family:"Geist Mono",monospace; color:var(--ink)}
#presu-landing .vis-link-body{padding:10px 12px 6px; display:flex; justify-content:space-between; align-items:center; gap:8px}
#presu-landing .vis-link-total{font-family:var(--font-display); font-size:18px; font-weight:var(--display-weight); color:var(--ink); letter-spacing:var(--display-tracking)}
#presu-landing .vis-link-cta{padding:7px 12px; background:var(--terracotta); color:#fff; border-radius:7px; font-size:11px; font-weight:600; display:inline-flex; align-items:center; gap:5px}
#presu-landing .vis-link-meta{padding:0 12px 10px; font-family:"Geist Mono",monospace; font-size:10px; color:var(--ink-3); letter-spacing:0.04em}

/* ============ FEATURES BENTO ============ */
#presu-landing .features-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(6,1fr); gap:16px}
#presu-landing .feature{background:var(--paper); border:1px solid var(--line); border-radius:24px; padding:28px; overflow:hidden; position:relative; display:flex; flex-direction:column}
#presu-landing .f-hero{grid-column:span 3}
#presu-landing .f-third{grid-column:span 2}
#presu-landing .f-eyebrow{font-family:"Geist Mono",monospace; font-size:11px; color:var(--terracotta); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px}
#presu-landing .f-title{font-family:var(--font-display); font-size:28px; font-weight:var(--display-weight); letter-spacing:-0.015em; margin:0 0 10px; line-height:1.15}
#presu-landing .f-third .f-title{font-size:22px; line-height:1.2}
#presu-landing .f-body{font-size:14.5px; color:var(--ink-2); line-height:1.5; max-width:380px}
#presu-landing .f-third .f-body{font-size:13.5px; line-height:1.45}
#presu-landing .f-vis{margin-top:auto; padding-top:24px}
#presu-landing .f-third .f-vis{padding-top:18px}
#presu-landing .site-path{font-family:"Geist Mono",monospace; font-weight:500; letter-spacing:-0.01em; white-space:nowrap}
#presu-landing .site-path em{font-style:normal; color:var(--terracotta); font-weight:600}

#presu-landing .public-quote{background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px; box-shadow:0 12px 30px -10px rgba(60,40,20,0.15)}
#presu-landing .pq-head{display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px}
#presu-landing .pq-brand{display:flex; align-items:center; gap:10px}
#presu-landing .pq-logo{width:36px; height:36px; border-radius:10px; background:var(--terracotta); display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-style:italic; font-weight:600; font-size:18px}
#presu-landing .pq-name{font-size:14px; font-weight:500}
#presu-landing .pq-trade{font-size:11.5px; color:var(--ink-3)}
#presu-landing .pq-id{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3)}
#presu-landing .pq-rows{display:flex; flex-direction:column}
#presu-landing .pq-row{display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px solid #f0e8d8; font-size:13.5px}
#presu-landing .pq-row:first-child{border-top:none}
#presu-landing .pq-row .desc{color:var(--ink-2)}
#presu-landing .pq-row .amount{font-family:"Geist Mono",monospace; color:var(--ink)}
#presu-landing .pq-total{margin-top:10px; padding-top:14px; border-top:2px solid var(--ink); display:flex; justify-content:space-between; align-items:baseline}
#presu-landing .pq-total .label{font-size:13px; color:var(--ink-3); text-transform:uppercase; letter-spacing:0.08em; font-family:"Geist Mono",monospace}
#presu-landing .pq-total .val{font-family:var(--font-display); font-size:30px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking)}
#presu-landing .pq-cta{margin-top:16px; padding:14px; background:var(--ink); color:var(--paper); border-radius:10px; text-align:center; font-size:14px; font-weight:500; display:flex; justify-content:space-between; align-items:center}

#presu-landing .site-mock{background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:0 12px 30px -10px rgba(60,40,20,0.15)}
#presu-landing .site-bar{background:#f5f1ea; padding:8px 12px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:8px}
#presu-landing .site-dots{display:flex; gap:5px}
#presu-landing .site-dots span{width:9px; height:9px; border-radius:50%; background:#d9d0bd}
#presu-landing .site-url{flex:1; font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3); background:#fff; padding:4px 8px; border-radius:6px; border:1px solid var(--line)}
#presu-landing .site-url b{color:var(--ink); font-weight:600}
#presu-landing .site-content{padding:18px}
#presu-landing .site-hero{display:flex; gap:14px; align-items:center; padding-bottom:14px; border-bottom:1px solid #f0e8d8}
#presu-landing .site-avatar{width:54px; height:54px; border-radius:50%; background:linear-gradient(135deg, var(--terracotta), #e08855); display:grid; place-items:center; color:#fff; font-family:var(--font-display); font-style:italic; font-weight:600; font-size:24px}
#presu-landing .site-name{font-family:var(--font-display); font-size:20px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking)}
#presu-landing .site-trade{font-size:12px; color:var(--ink-3); margin-top:2px}
#presu-landing .site-stars{font-size:12px; color:var(--terracotta); margin-top:4px}
#presu-landing .site-services{display:grid; grid-template-columns:repeat(2,1fr); gap:8px; margin-top:14px}
#presu-landing .site-svc{border:1px solid var(--line); border-radius:8px; padding:10px; font-size:11px; color:var(--ink-3); text-align:center; background:#fbf8f2; box-shadow:0 1px 2px rgba(60,40,20,0.04)}
#presu-landing .site-svc b{display:block; color:var(--ink); font-size:12.5px; font-weight:500; margin-bottom:2px}
#presu-landing .site-cta{margin-top:14px; padding:12px 14px; background:var(--terracotta); color:#fff; border-radius:10px; font-size:12.5px; font-weight:500; display:flex; justify-content:space-between; align-items:center; gap:8px; box-shadow:0 6px 14px -6px rgba(194,85,45,0.4)}
#presu-landing .site-cta-arrow{font-family:var(--font-display); font-size:16px}

#presu-landing .templates{display:flex; flex-direction:column; gap:8px; margin-top:auto}
#presu-landing .template{display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:#fff; border:1px solid var(--line); border-radius:10px; font-size:13px}
#presu-landing .template-name{display:flex; align-items:center; gap:10px}
#presu-landing .template-icon{width:28px; height:28px; border-radius:7px; background:#f5f1ea; display:grid; place-items:center; font-family:"Geist Mono",monospace; font-size:11px; color:var(--terracotta); font-weight:600}
#presu-landing .template-price{font-family:"Geist Mono",monospace; font-size:12px; color:var(--ink-3)}

#presu-landing .clients-list{display:flex; flex-direction:column; margin-top:auto}
#presu-landing .client-row{display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px solid var(--line); font-size:13px}
#presu-landing .client-row:first-child{border-top:none}
#presu-landing .client-status{font-family:"Geist Mono",monospace; font-size:10px; text-transform:uppercase; letter-spacing:0.06em}
#presu-landing .client-status.due{color:var(--terracotta)}
#presu-landing .client-status.paid{color:var(--moss)}

/* boleta SII mock */
#presu-landing .boleta-mock{background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:0 8px 20px -10px rgba(60,40,20,0.12)}
#presu-landing .boleta-head{display:flex; align-items:center; gap:12px; padding:14px 14px 12px; border-bottom:1px solid #f0e8d8}
#presu-landing .boleta-stamp{width:38px; height:38px; border-radius:8px; background:#0e3a6b; color:#fff; display:grid; place-items:center; font-family:"Geist Mono",monospace; font-size:12px; font-weight:700; letter-spacing:0.05em; flex-shrink:0}
#presu-landing .boleta-title{font-size:13px; font-weight:500; color:var(--ink); line-height:1.2}
#presu-landing .boleta-num{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3); margin-top:2px}
#presu-landing .boleta-rows{display:flex; flex-direction:column; padding:10px 14px}
#presu-landing .boleta-row{display:flex; justify-content:space-between; align-items:center; padding:6px 0; font-size:12px; color:var(--ink-2)}
#presu-landing .boleta-mono{font-family:"Geist Mono",monospace; color:var(--ink); font-weight:500}
#presu-landing .boleta-action{display:flex; align-items:center; gap:8px; padding:11px 14px; background:var(--ink); color:#fff; font-size:12.5px; font-weight:500}
#presu-landing .boleta-dot{width:8px; height:8px; border-radius:50%; background:#7dd087; box-shadow:0 0 0 3px rgba(125,208,135,0.25)}

/* ============ COMPARISON ============ */
#presu-landing .compare{max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch}
#presu-landing .compare-col{border-radius:24px; padding:32px; display:flex; flex-direction:column}
#presu-landing .compare-col.before{background:#efe6d3; color:var(--ink-2); border:1px solid #d8ccb5}
#presu-landing .compare-col.after{background:var(--ink); color:var(--paper); box-shadow:0 24px 60px -28px rgba(0,0,0,0.4)}
#presu-landing .compare-col h3{font-family:var(--font-display); font-size:24px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); margin:0 0 22px; display:flex; align-items:center; gap:12px}
#presu-landing .compare-col.after h3{color:var(--paper)}
#presu-landing .compare-col h3 .tag{font-family:"Geist Mono",monospace; font-size:10px; padding:4px 10px; border-radius:99px; text-transform:uppercase; letter-spacing:0.1em; font-weight:500; line-height:1}
#presu-landing .tag-before{background:transparent; color:var(--terracotta); border:1px solid var(--terracotta)}
#presu-landing .tag-after{background:rgba(255,255,255,0.12); color:#f3eee5; border:1px solid rgba(255,255,255,0.18)}
#presu-landing .compare-list{list-style:none; padding:0; margin:0; display:grid; grid-template-rows:repeat(5,minmax(72px,auto)); flex:1}
#presu-landing .compare-row{display:grid; grid-template-columns:32px 22px 1fr; align-items:start; column-gap:12px; padding:16px 0; border-top:1px solid #e0d5bf; font-size:17px; line-height:1.5}
#presu-landing .compare-col.after .compare-row{border-top-color:rgba(255,255,255,0.08)}
#presu-landing .compare-row:first-of-type{border-top:none}
#presu-landing .compare-num{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3); letter-spacing:0.06em; line-height:1.5; padding-top:1px}
#presu-landing .compare-col.after .compare-num{color:rgba(243,238,229,0.5)}
#presu-landing .compare-mark{width:20px; height:20px; margin-top:1px}
#presu-landing .compare-text{font-size:17px; line-height:1.5}
#presu-landing .compare-row-highlight{background:rgba(232,160,124,0.08); margin:0 -16px; padding:14px 16px; border-radius:12px; border-top-color:transparent; position:relative}
#presu-landing .compare-row-highlight + .compare-row, #presu-landing .compare-row-highlight{border-top:none}
#presu-landing .compare-eyebrow{display:block; font-family:"Geist Mono",monospace; font-size:10px; color:#e8a07c; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:4px; font-weight:500}

/* ============ CASES ============ */
#presu-landing .cases-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
#presu-landing .case-card{background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:0; overflow:hidden; display:flex; flex-direction:column}
#presu-landing .case-photo{
  aspect-ratio: 4/3;
  width:100%;
  object-fit:cover;
  object-position:center 25%;
  border-bottom:1px solid var(--line);
  display:block;
}
#presu-landing .case-body{padding:24px; display:flex; flex-direction:column; gap:14px; flex:1}
#presu-landing .case-name{font-family:var(--font-display); font-size:22px; letter-spacing:var(--display-tracking); line-height:1.15}
#presu-landing .case-trade{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3); text-transform:uppercase; letter-spacing:0.08em; margin-top:4px}
#presu-landing .case-quote{font-family:var(--font-display); font-style:var(--display-italic); font-size:16px; line-height:1.45; color:var(--ink); flex:1}
#presu-landing .case-quote::before{content:"« "; color:var(--terracotta)}
#presu-landing .case-quote::after{content:" »"; color:var(--terracotta)}
#presu-landing .case-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; padding-top:18px; border-top:1px dashed var(--line)}
#presu-landing .case-stat .v{font-family:var(--font-display); font-size:24px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); color:var(--terracotta); line-height:1}
#presu-landing .case-stat .l{font-size:11px; color:var(--ink-3); margin-top:4px; line-height:1.3}

/* ============ CALCULATOR ============ */
#presu-landing .calc-section{background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
#presu-landing .calc-grid{max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center}
#presu-landing .calc-controls{display:flex; flex-direction:column; gap:14px}
#presu-landing .calc-card{background:var(--paper); border:1px solid var(--line); border-radius:18px; padding:20px 22px; display:flex; flex-direction:column; gap:10px; box-shadow:0 1px 2px rgba(60,40,20,0.03)}
#presu-landing .calc-card-head{display:flex; align-items:center; gap:10px}
#presu-landing .calc-card-head label{font-family:var(--font-display); font-size:19px; font-weight:var(--display-weight); letter-spacing:-0.01em; color:var(--ink); flex:1; line-height:1.25; cursor:pointer}
#presu-landing .calc-card-anchor-tag{font-family:"Geist Mono",monospace; font-size:10px; color:var(--terracotta); background:rgba(194,85,45,0.08); padding:3px 8px; border-radius:99px; letter-spacing:0.04em; flex-shrink:0}
#presu-landing .calc-card-val{font-family:var(--font-display); font-size:38px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); color:var(--ink); line-height:1; padding:4px 0}
#presu-landing .calc-card-val-unit{font-size:20px; color:var(--ink-3); margin-left:2px}
#presu-landing .calc-card input[type=range]{width:100%; -webkit-appearance:none; appearance:none; height:6px; background:#e8ddc6; border-radius:99px; outline:none; margin:6px 0 4px}
#presu-landing .calc-card input[type=range]::-webkit-slider-thumb{-webkit-appearance:none; appearance:none; width:24px; height:24px; border-radius:50%; background:var(--terracotta); cursor:pointer; border:3px solid var(--paper); box-shadow:0 0 0 1px var(--terracotta), 0 4px 10px -2px rgba(194,85,45,0.4)}
#presu-landing .calc-card input[type=range]::-moz-range-thumb{width:24px; height:24px; border-radius:50%; background:var(--terracotta); cursor:pointer; border:3px solid var(--paper); box-shadow:0 0 0 1px var(--terracotta), 0 4px 10px -2px rgba(194,85,45,0.4)}
#presu-landing .calc-card-anchors{display:flex; justify-content:space-between; font-family:"Geist Mono",monospace; font-size:10px; color:var(--ink-3); letter-spacing:0.05em; margin-top:-2px}

#presu-landing .calc-range{font-family:"Geist Mono",monospace; font-size:10px; color:var(--ink-3); letter-spacing:0.06em; margin-top:6px; display:flex; gap:6px}
#presu-landing .calc-range span{color:var(--ink-3); opacity:0.5}
#presu-landing .calc-output{background:var(--ink); color:var(--paper); border-radius:24px; padding:32px; position:relative; overflow:hidden; display:flex; flex-direction:column}
#presu-landing .calc-output::before{content:""; position:absolute; inset:0; background:radial-gradient(500px 280px at 100% 0%, rgba(194,85,45,0.22), transparent 60%); pointer-events:none}
#presu-landing .calc-out-eye{font-family:"Geist Mono",monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:#bbb1a1; margin-bottom:18px; position:relative}
#presu-landing .calc-hero{position:relative; padding:14px 0 22px; border-bottom:1px solid #2a2820}
#presu-landing .calc-hero-val{font-family:var(--font-display); font-size:clamp(48px,6.6vw,72px); font-weight:var(--display-weight); letter-spacing:var(--display-tracking); line-height:1; color:#fff}
#presu-landing .calc-hero-val em{font-style:var(--display-italic); color:#e8a07c; font-weight:var(--display-weight)}
#presu-landing .calc-hero-sub{margin-top:10px; font-size:14px; color:#bbb1a1}
#presu-landing .calc-out-rows{display:flex; flex-direction:column; position:relative; margin-top:6px}
#presu-landing .calc-out-row{display:flex; justify-content:space-between; align-items:baseline; gap:18px; padding:14px 0; border-top:1px solid #2a2820; position:relative}
#presu-landing .calc-out-row:first-of-type{border-top:none}
#presu-landing .calc-out-row .l{color:#bbb1a1; font-size:13.5px; line-height:1.4; max-width:320px}
#presu-landing .calc-out-row .l strong{color:#fff; font-weight:500}
#presu-landing .calc-out-row .v{font-family:var(--font-display); font-size:30px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); white-space:nowrap; line-height:1}
#presu-landing .calc-out-row .v em{font-style:var(--display-italic); color:#e8a07c; font-weight:var(--display-weight)}
#presu-landing .calc-out-row .v .u{font-family:"Geist Mono",monospace; font-size:13px; font-weight:400; color:#bbb1a1; margin-left:6px; letter-spacing:0.04em}
#presu-landing .calc-cap-notice{margin-top:14px; padding:10px 12px; background:rgba(232,160,124,0.1); border:1px solid rgba(232,160,124,0.25); border-radius:8px; font-size:12.5px; color:#e8a07c; line-height:1.4; display:flex; align-items:flex-start; gap:8px; position:relative}
#presu-landing .calc-cap-dot{width:6px; height:6px; border-radius:50%; background:#e8a07c; flex-shrink:0; margin-top:6px}
#presu-landing .calc-cta{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:18px; padding:16px 22px; background:var(--terracotta); color:#fff; border-radius:12px; font-weight:600; font-size:15px; text-decoration:none; transition:background .15s ease, transform .15s ease; position:relative; box-shadow:0 12px 28px -10px rgba(194,85,45,0.5)}
#presu-landing .calc-cta:hover{background:#a8421d; transform:translateY(-1px)}
#presu-landing .calc-cta-arrow{font-family:var(--font-display); font-size:22px; line-height:1; display:inline-block; will-change:transform}
@keyframes presu-arrow-bounce{0%{transform:translateX(0)}50%{transform:translateX(8px)}100%{transform:translateX(0)}}
#presu-landing .calc-cta:hover .calc-cta-arrow{animation:presu-arrow-bounce 0.9s ease-in-out infinite}
#presu-landing .calc-out-foot{margin-top:14px; font-size:12.5px; color:#8a8276; line-height:1.5; position:relative}
#presu-landing .calc-out-foot summary{cursor:pointer; font-family:"Geist Mono",monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:#8a8276; padding:4px 0; user-select:none; list-style:none}
#presu-landing .calc-out-foot summary::-webkit-details-marker{display:none}
#presu-landing .calc-out-foot summary::after{content:" ↓"; opacity:0.6; transition:transform .2s}
#presu-landing .calc-out-foot[open] summary::after{content:" ↑"}
#presu-landing .calc-out-foot summary:hover{color:#bbb1a1}
#presu-landing .calc-out-foot p{margin:8px 0 0; padding-top:8px; border-top:1px solid #2a2820}

/* ============ TESTIMONIAL ============ */
#presu-landing .testi{max-width:880px; margin:0 auto; text-align:center}
#presu-landing .testi-quote{font-family:var(--font-display); font-style:var(--display-italic); font-size:clamp(28px,3.6vw,42px); line-height:1.25; letter-spacing:-0.015em; color:var(--ink); text-wrap:balance}
#presu-landing .testi-quote::before{content:"« "; color:var(--terracotta)}
#presu-landing .testi-quote::after{content:" »"; color:var(--terracotta)}
#presu-landing .testi-who{margin-top:32px; display:flex; flex-direction:column; align-items:center; gap:10px}
#presu-landing .testi-avatar{width:64px; height:64px; border-radius:50%; object-fit:cover; border:3px solid var(--paper); box-shadow:0 0 0 1px var(--line)}
#presu-landing .testi-name{font-weight:500; font-size:15px}
#presu-landing .testi-trade{font-size:13px; color:var(--ink-3)}

/* ============ TEAMS ============ */
#presu-landing .teams-section{background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
#presu-landing .teams-inner{max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center}
#presu-landing .teams-vis{background:#fff; border:1px solid var(--line); border-radius:20px; padding:24px; display:flex; flex-direction:column; gap:8px}
#presu-landing .team-row{display:flex; align-items:center; gap:12px; padding:12px; border-radius:12px; background:#fbf8f2; border:1px solid var(--line); font-size:13.5px}
#presu-landing .team-avatar{width:32px; height:32px; border-radius:50%; background:linear-gradient(135deg, var(--terracotta), #e08855); display:grid; place-items:center; color:#fff; font-weight:600; font-size:13px; font-family:var(--font-display)}
#presu-landing .team-name{flex:1; font-weight:500}
#presu-landing .team-meta{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-3)}

/* ============ PRICING ============ */
#presu-landing .pricing{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px}
#presu-landing .price-card{background:var(--paper); border:1px solid var(--line); border-radius:24px; padding:32px; display:flex; flex-direction:column; position:relative}
#presu-landing .price-card.featured{background:var(--ink); color:var(--paper); border-color:var(--ink)}
#presu-landing .price-card.featured .price-name, #presu-landing .price-card.featured .price-amt, #presu-landing .price-card.featured .price-feat{color:var(--paper)}
#presu-landing .price-name{font-family:"Geist Mono",monospace; font-size:12px; text-transform:uppercase; letter-spacing:0.12em; color:var(--ink-3); margin-bottom:14px}
#presu-landing .price-badge{position:absolute; top:32px; right:32px; font-family:"Geist Mono",monospace; font-size:10px; background:var(--terracotta); color:#fff; padding:4px 10px; border-radius:99px; text-transform:uppercase; letter-spacing:0.08em}
#presu-landing .price-amt{font-family:var(--font-display); font-size:56px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); line-height:1; display:flex; align-items:baseline; gap:2px}
#presu-landing .price-amt-text{font-size:48px; letter-spacing:-0.02em}
#presu-landing .price-currency{font-family:var(--font-display); font-size:38px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); line-height:1; opacity:0.85; margin-right:2px}
#presu-landing .price-per{font-family:"Geist Mono",monospace; font-size:14px; font-weight:400; color:var(--ink-3); margin-left:8px; letter-spacing:0.04em; line-height:1; align-self:baseline}
#presu-landing .price-card.featured .price-per{color:#bbb1a1}
#presu-landing .price-period{font-size:13px; color:var(--ink-3); margin-top:8px}
#presu-landing .price-card.featured .price-period{color:#bbb1a1}
#presu-landing .price-best-for{font-family:"Geist Mono",monospace; font-size:11px; color:var(--ink-2); margin-top:14px; line-height:1.5; padding:10px 12px; background:#f3eddf; border-radius:8px; border:none}
#presu-landing .price-card.featured .price-best-for{background:rgba(255,255,255,0.08); color:#d4cdb9}

/* trust bar under pricing */
#presu-landing .price-trust{max-width:1180px; margin:36px auto 0; padding:0 4px}
#presu-landing .pt-row{display:grid; grid-template-columns:repeat(4, 1fr); gap:24px}
#presu-landing .pt-item{display:flex; align-items:flex-start; gap:12px; padding:16px 4px}
#presu-landing .pt-icon{flex-shrink:0; color:var(--terracotta); margin-top:2px}
#presu-landing .pt-title{font-family:var(--font-display); font-size:16px; font-weight:var(--display-weight); letter-spacing:-0.01em; line-height:1.2; color:var(--ink)}
#presu-landing .pt-sub{font-size:12.5px; color:var(--ink-3); margin-top:4px; line-height:1.45}
#presu-landing .price-features{list-style:none; padding:24px 0; margin:18px 0 28px 0; border-top:1px dashed var(--line); border-bottom:1px dashed var(--line); display:flex; flex-direction:column; gap:10px; flex:1}
#presu-landing .price-card.featured .price-features{border-color:#3a342a}
#presu-landing .price-feat{display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-2); line-height:1.4}
#presu-landing .price-card.featured .price-feat{color:#d8d0bf}
#presu-landing .price-feat .check{margin-top:3px; color:var(--terracotta); flex-shrink:0}

/* ============ PRICING — billing toggle ============ */
#presu-landing .billing-toggle{max-width:1180px; margin:0 auto 28px; display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap}
#presu-landing .billing-toggle-label{font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.14em; color:var(--ink-3); margin-right:6px}
#presu-landing .billing-tab{appearance:none; border:1px solid var(--line); background:var(--paper); color:var(--ink-2); font-family:var(--font-sans); font-size:14px; padding:10px 18px; border-radius:99px; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transition:background 180ms ease, color 180ms ease, border-color 180ms ease; min-height:40px}
#presu-landing .billing-tab:hover{border-color:var(--ink); color:var(--ink)}
#presu-landing .billing-tab.is-active{background:var(--ink); color:var(--paper); border-color:var(--ink)}
#presu-landing .billing-tab-badge{font-family:"Geist Mono",ui-monospace,monospace; font-size:10.5px; padding:2px 7px; border-radius:99px; background:var(--terracotta); color:#fff; letter-spacing:0.04em}
#presu-landing .billing-tab.is-active .billing-tab-badge{background:#e8a07c; color:var(--ink)}

/* ============ PRICING — money-back hero (A3·P0) ============ */
#presu-landing .money-back-hero{max-width:980px; margin:0 auto 28px; padding:18px 22px; display:flex; align-items:center; gap:16px; background:#fff7ec; border:1px solid #e8a07c; border-radius:16px}
#presu-landing .money-back-badge{flex-shrink:0; display:inline-flex; align-items:center; gap:8px; padding:8px 14px; font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:#8a4f2a; background:#fff; border:1px solid #e8a07c; border-radius:99px}
#presu-landing .money-back-content{flex:1}
#presu-landing .money-back-title{font-family:var(--font-display); font-size:18px; font-weight:var(--display-weight); letter-spacing:-0.01em; color:var(--ink); margin-bottom:4px}
#presu-landing .money-back-body{margin:0; font-size:14px; color:var(--ink-2); line-height:1.5}
@media (max-width: 720px){#presu-landing .money-back-hero{flex-direction:column; align-items:flex-start; gap:10px}}

/* ============ PRICING — sin sorpresas ============ */
#presu-landing .no-surprises{max-width:980px; margin:36px auto 0; padding:22px 26px; display:flex; align-items:flex-start; gap:18px; background:linear-gradient(135deg, rgba(79,107,62,0.08), rgba(232,160,124,0.06)); border:1px solid var(--line); border-radius:18px}
#presu-landing .no-surprises-badge{flex-shrink:0; font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.14em; padding:8px 14px; background:var(--ink); color:var(--paper); border-radius:99px; align-self:flex-start}
#presu-landing .no-surprises-content{flex:1}
#presu-landing .no-surprises-title{font-family:var(--font-display); font-size:18px; font-weight:var(--display-weight); letter-spacing:-0.01em; color:var(--ink); margin-bottom:6px}
#presu-landing .no-surprises-body{margin:0; font-size:14px; color:var(--ink-2); line-height:1.55}

/* ============ PRICING — comparison matrix ============ */
#presu-landing .matrix-block{max-width:1180px; margin:64px auto 0}
#presu-landing .matrix-head{text-align:center; max-width:680px; margin:0 auto 28px}
#presu-landing .matrix-title{font-family:var(--font-display); font-size:clamp(28px,3.4vw,40px); line-height:1.1; letter-spacing:var(--display-tracking); margin:8px 0 12px; font-weight:var(--display-weight); color:var(--ink); text-wrap:balance}
#presu-landing .matrix-title em{font-style:var(--display-italic); color:var(--terracotta); font-weight:var(--display-weight)}
#presu-landing .matrix-lede{font-size:15px; color:var(--ink-2); line-height:1.55; margin:0}
#presu-landing .matrix-scroll{overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--line); border-radius:20px; background:var(--paper)}
#presu-landing .matrix-table{width:100%; border-collapse:collapse; font-size:14px; min-width:640px}
#presu-landing .matrix-table thead th{font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.14em; color:var(--ink-3); padding:18px 16px; text-align:center; background:#f7f1e3; border-bottom:1px solid var(--line); font-weight:500; position:sticky; top:0}
#presu-landing .matrix-table thead th.matrix-feature-col{text-align:left; width:38%}
#presu-landing .matrix-table thead th.matrix-col-featured{color:var(--terracotta)}
#presu-landing .matrix-table tbody td, #presu-landing .matrix-table tbody th{padding:14px 16px; border-top:1px solid var(--line); vertical-align:middle}
#presu-landing .matrix-table tbody td{text-align:center; color:var(--ink-2); font-size:14px}
#presu-landing .matrix-table tbody td.matrix-col-featured{background:rgba(232,160,124,0.05)}
#presu-landing .matrix-feature{text-align:left; font-weight:500; color:var(--ink); display:flex; flex-direction:column; gap:2px}
#presu-landing .matrix-hint{font-size:12px; color:var(--ink-3); font-weight:400; line-height:1.4}
#presu-landing .matrix-group{font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.16em; color:var(--terracotta); padding:18px 16px 8px !important; background:#fbf6ec; text-align:left !important; font-weight:500; border-top:2px solid var(--line) !important}
#presu-landing .matrix-group-row + tr td, #presu-landing .matrix-group-row + tr th{border-top:none}
#presu-landing .matrix-mark{display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%}
#presu-landing .matrix-mark-yes{background:rgba(79,107,62,0.12); color:#4f6b3e}
#presu-landing .matrix-mark-no{background:#f3eddf; color:var(--ink-3); font-size:18px; line-height:1; font-weight:500}
#presu-landing .matrix-cell-text{font-family:"Geist Mono",ui-monospace,monospace; font-size:13px; color:var(--ink-2)}

/* ============ FAQ ============ */
#presu-landing .faq{max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:40px}
#presu-landing .faq-group{display:flex; flex-direction:column}
#presu-landing .faq-group-eyebrow{font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.18em; color:var(--terracotta); padding-bottom:14px; display:flex; align-items:center; justify-content:center; gap:14px; font-weight:500; text-align:center}
#presu-landing .faq-group-eyebrow::before,
#presu-landing .faq-group-eyebrow::after{content:""; flex:1; height:1px; background:var(--line); display:block}
#presu-landing .faq-item{border-top:1px solid var(--line); padding:0}
#presu-landing .faq-group .faq-item:first-of-type{border-top:none}
#presu-landing .faq-group .faq-item:last-child{border-bottom:1px solid var(--line)}
#presu-landing .faq-item[open] .faq-q::after{transform:rotate(45deg)}
#presu-landing .faq-item[open] .faq-q{color:var(--terracotta)}
#presu-landing .faq-q{display:flex; justify-content:space-between; align-items:center; gap:24px; font-family:var(--font-display); font-size:22px; font-weight:var(--display-weight); letter-spacing:var(--display-tracking); cursor:pointer; color:var(--ink); padding:22px 0; list-style:none}
#presu-landing .faq-q::after{content:"+"; color:var(--terracotta); font-size:28px; font-family:var(--font-sans); font-weight:300; transition:transform 220ms ease; line-height:1; flex-shrink:0}
#presu-landing .faq-q::-webkit-details-marker{display:none}
#presu-landing .faq-a{padding:0 0 22px; font-size:15px; color:var(--ink-2); line-height:1.6; max-width:680px}
#presu-landing .faq-a a{color:var(--terracotta); text-decoration:underline; text-underline-offset:2px}
#presu-landing .faq-a strong{color:var(--ink); font-weight:600}

/* ============ Avatar / star primitives (reused in footer) ============ */
#presu-landing .trust-avatars{display:flex; align-items:center}
#presu-landing .t-av{width:40px; height:40px; border-radius:50%; border:3px solid var(--paper); margin-left:-10px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:12px; font-weight:600; font-family:var(--font-sans); box-shadow:0 2px 8px rgba(0,0,0,0.08)}
#presu-landing .t-av:first-child{margin-left:0}
#presu-landing .t-av-more{background:var(--ink); font-size:11px; letter-spacing:-0.02em}
#presu-landing .t-stars{color:#e8a847; letter-spacing:1.5px; font-size:14px}

/* ============ CTA extras ============ */
#presu-landing .cta-eyebrow{display:inline-block; padding:7px 16px; background:rgba(232,160,124,0.22); color:#f0b594; font-family:"Geist Mono",ui-monospace,monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.14em; border-radius:100px; margin-bottom:24px; position:relative; border:1px solid rgba(232,160,124,0.28)}

/* ============ Reveal on scroll ============ */
#presu-landing .reveal{opacity:0; transform:translateY(24px); transition:opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1)}
#presu-landing .reveal.is-in{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  #presu-landing .reveal{opacity:1; transform:none; transition:none}
}
#presu-landing .cta-section{margin:0 32px 64px; max-width:1240px; margin-left:auto; margin-right:auto; background:var(--ink); color:var(--paper); border-radius:32px; padding:80px 48px; text-align:center; position:relative; overflow:hidden}
#presu-landing .cta-section::before{content:""; position:absolute; inset:0; background:radial-gradient(600px 300px at 20% 20%, rgba(194,85,45,0.18), transparent 60%), radial-gradient(500px 280px at 90% 80%, rgba(194,85,45,0.12), transparent 60%); pointer-events:none}
#presu-landing .cta-section h2{font-family:var(--font-display); font-size:clamp(36px,5vw,64px); line-height:1.05; letter-spacing:var(--display-tracking); margin:0 0 18px; font-weight:var(--display-weight); color:var(--paper); position:relative; text-wrap:balance}
#presu-landing .cta-section h2 em{font-style:var(--display-italic); color:#e8a07c; font-weight:var(--display-weight)}
#presu-landing .cta-section p{font-size:17px; color:#bbb1a1; max-width:560px; margin:0 auto 32px; position:relative; line-height:1.5}
#presu-landing .cta-buttons{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative}

/* ============ FOOTER ============ */
#presu-landing footer.presu-footer{padding:64px 32px 28px; max-width:1240px; margin:0 auto; border-top:1px solid var(--line); position:relative}
#presu-landing footer.presu-footer::before{content:""; position:absolute; left:50%; top:-1px; transform:translateX(-50%); width:64px; height:3px; background:var(--terracotta); border-radius:2px}

#presu-landing .footer-top{display:grid; grid-template-columns:1.15fr 2fr; gap:64px; padding-bottom:48px}

#presu-landing .footer-brand{display:flex; flex-direction:column; gap:18px; max-width:380px}
#presu-landing .footer-logo{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-size:26px; font-weight:var(--display-weight); color:var(--ink); letter-spacing:var(--display-tracking)}
#presu-landing .footer-logo .logo-mark{width:34px; height:34px; border-radius:8px; background:var(--terracotta); color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; font-family:var(--font-sans)}
#presu-landing .footer-logo-name{line-height:1}
#presu-landing .footer-tagline{font-size:14.5px; color:var(--ink-2); line-height:1.6; margin:0; max-width:340px}

#presu-landing .footer-social{display:flex; flex-direction:column; gap:12px; padding-top:4px; margin-top:4px}
#presu-landing .footer-social-eyebrow{font-family:"Geist Mono",ui-monospace,monospace; font-size:10.5px; text-transform:uppercase; letter-spacing:0.16em; color:var(--ink-3)}
#presu-landing .footer-rating{display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--ink-2); flex-wrap:wrap}
#presu-landing .footer-rating strong{color:var(--ink); font-weight:700; font-size:14.5px}
#presu-landing .footer-rating-meta{color:var(--ink-3); font-size:13px}

#presu-landing .footer-cols{display:grid; grid-template-columns:repeat(3,1fr); gap:36px}
#presu-landing .footer-col{display:flex; flex-direction:column; gap:12px}
#presu-landing .footer-col-h{font-family:"Geist Mono",ui-monospace,monospace; font-size:10.5px; text-transform:uppercase; letter-spacing:0.18em; color:var(--terracotta); margin-bottom:6px; font-weight:500}
#presu-landing .footer-col a{color:var(--ink-2); text-decoration:none; font-size:14px; line-height:1.4; transition:color 180ms ease, transform 180ms ease; display:inline-block}
#presu-landing .footer-col a:hover{color:var(--terracotta); transform:translateX(2px)}
#presu-landing .footer-trust-item{display:inline-flex; align-items:center; gap:8px; font-size:13.5px; color:var(--ink-2); line-height:1.4}
#presu-landing .footer-trust-item svg{color:var(--terracotta); flex-shrink:0}

#presu-landing .footer-bottom{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:24px; border-top:1px solid var(--line)}
#presu-landing .footer-copy{font-size:12.5px; color:var(--ink-3)}
#presu-landing .footer-tag{font-size:11.5px; color:var(--ink-3); font-family:"Geist Mono",ui-monospace,monospace; letter-spacing:0.04em}

/* ============ TABLET + MOBILE BURGER + pricing collapse (<925) ============ */
@media (max-width:925px){
  #presu-landing .nav{padding:16px 24px}
  #presu-landing .nav-burger{display:flex; order:2}
  #presu-landing .nav-links, #presu-landing .nav-cta{
    flex-basis:100%;
    order:3;
    display:none;
    flex-direction:column;
    gap:14px;
    white-space:normal;
  }
  #presu-landing .nav-links{padding-top:18px; margin-top:14px; border-top:1px solid var(--line)}
  #presu-landing .nav-cta{padding-top:14px; margin-top:14px; border-top:1px dashed var(--line); padding-bottom:6px}
  #presu-landing .nav-cta .btn{width:100%; justify-content:center}
  #presu-landing .lang-switch{width:100%}
  #presu-landing .lang-switch-trigger{width:100%; justify-content:center; padding:12px 16px}
  #presu-landing .lang-menu{position:static; margin-top:8px; box-shadow:none; min-width:0}
  #presu-landing .nav-links a{font-size:16px; padding:10px 0; min-height:44px; display:flex; align-items:center}
  #presu-landing .nav.is-open .nav-links,
  #presu-landing .nav.is-open .nav-cta{display:flex}
  /* pricing — fixed-content cards don't fit 3-col below 925, collapse to centered single column */
  #presu-landing .pricing{grid-template-columns:1fr; max-width:480px; gap:20px}
  /* matrix — keep table scrollable horizontally on mobile but hint scroll */
  #presu-landing .matrix-block{margin-top:48px}
  #presu-landing .matrix-scroll{border-radius:16px}
  #presu-landing .matrix-table{min-width:560px; font-size:13.5px}
  #presu-landing .matrix-table thead th, #presu-landing .matrix-table tbody td, #presu-landing .matrix-table tbody th{padding:12px 14px}
  #presu-landing .matrix-feature{font-size:13.5px}
  #presu-landing .matrix-hint{font-size:11.5px}
  /* sin sorpresas — stack badge above text on narrow */
  #presu-landing .no-surprises{flex-direction:column; gap:12px; padding:20px 22px}
  #presu-landing .billing-toggle{margin-bottom:20px}
  #presu-landing .billing-toggle-label{flex-basis:100%; text-align:center; margin-right:0}
  /* tap targets — footer links */
  #presu-landing .footer-col a{padding:8px 0; min-height:44px; display:inline-flex; align-items:center}
  #presu-landing .footer-trust-item{padding:6px 0; min-height:36px}
}

/* ============ TABLET + MOBILE shared (<880) ============ */
@media (max-width:880px){
  #presu-landing .hero{grid-template-columns:1fr; gap:48px}
  #presu-landing .strip-grid{grid-template-columns:repeat(2,1fr); gap:24px}
  #presu-landing .stat + .stat{padding-left:0; border-left:none}
  #presu-landing .sp-grid{grid-template-columns:1fr; gap:32px}
  #presu-landing .sp-stat + .sp-stat{border-left:none; border-top:1px dashed var(--line); padding-top:32px}
  #presu-landing .sp-num{font-size:48px}
  #presu-landing .brand-bar-grid{grid-template-columns:repeat(2,1fr); gap:12px}
  #presu-landing .features-grid, #presu-landing .calc-grid, #presu-landing .teams-inner{grid-template-columns:1fr}
  #presu-landing .cases-grid{grid-template-columns:repeat(2,1fr)}
  #presu-landing .pt-row{grid-template-columns:repeat(2, 1fr); gap:16px}
  #presu-landing .f-hero, #presu-landing .f-third{grid-column:span 1; grid-row:auto}
  #presu-landing .steps{grid-template-columns:1fr}
  #presu-landing .step{border-right:none; border-bottom:1px solid var(--line)}
  #presu-landing .step:last-child{border-bottom:none}
  #presu-landing .footer-top{grid-template-columns:1fr; gap:40px; padding-bottom:36px}
}

/* ============ MOBILE only (<700): collapse 2-col → 1-col ============ */
@media (max-width:700px){
  #presu-landing .problem-grid{grid-template-columns:1fr}
  #presu-landing .compare{grid-template-columns:1fr}
  #presu-landing .pricing{grid-template-columns:1fr}
  #presu-landing .cases-grid{grid-template-columns:1fr}
  #presu-landing .footer-cols{grid-template-columns:1fr; gap:28px}
}

/* ============ TINY MOBILE (<520) ============ */
@media (max-width:520px){
  #presu-landing footer.presu-footer{padding:48px 24px 24px}
  #presu-landing .footer-bottom{justify-content:center; text-align:center; flex-direction:column; gap:6px}
  #presu-landing h1.hero-title{font-size:36px; line-height:1.05}
  #presu-landing .hero-sub{font-size:16.5px; margin-bottom:20px}
  #presu-landing .hero{padding:24px 20px 48px; gap:36px}
  #presu-landing .hero-meta{gap:8px 14px; font-size:13px}
  #presu-landing .phone-stage{transform:scale(0.86); transform-origin:top center; height:540px; margin-top:-12px}
  #presu-landing .pt-row{grid-template-columns:1fr; gap:12px}
  #presu-landing .pt-item{padding:12px 4px}
}
