:root{
  --bg:#f5f7fb;
  --panel:#ffffff;
  --ink:#0b1220;
  --muted:#687386;
  --line:#e5e9f0;
  --blue:#1769ff;
  --blue2:#0c4bd6;
  --soft:#eef4ff;
  --green:#16885f;
  --danger:#c63434;
  --shadow:0 18px 60px rgba(16,29,55,.08);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%,rgba(23,105,255,.08),transparent 28rem),
    var(--bg);
}
button,input{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
a{color:inherit;text-decoration:none}
[hidden]{display:none!important}

.topbar{
  position:sticky;top:0;z-index:20;
  min-height:72px;padding:12px max(18px,calc((100vw - 1160px)/2));
  background:rgba(255,255,255,.92);backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,233,240,.9);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.brand{display:flex;align-items:center;gap:11px}
.brand-mark{
  width:42px;height:42px;border-radius:13px;display:grid;place-items:center;
  background:var(--ink);color:#fff;font-weight:900;letter-spacing:-.04em;
}
.brand strong{display:block;font-size:15px;letter-spacing:.08em}
.brand small{display:block;color:var(--muted);font-size:11px;margin-top:2px}
.main-site{font-size:13px;font-weight:800;color:var(--blue)}

main{max-width:1160px;margin:0 auto;padding:0 18px 70px}

.hero{
  margin:28px 0 18px;padding:64px clamp(22px,5vw,64px);
  min-height:430px;border-radius:32px;color:#fff;overflow:hidden;position:relative;
  background:
    radial-gradient(circle at 82% 18%,rgba(57,145,255,.42),transparent 20rem),
    linear-gradient(135deg,#0b1220 0%,#101f3d 55%,#0c4bd6 130%);
  box-shadow:0 24px 80px rgba(10,24,52,.18);
}
.hero:after{
  content:"";position:absolute;width:330px;height:330px;border:1px solid rgba(255,255,255,.09);
  border-radius:50%;right:-90px;bottom:-160px;box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.02)
}
.hero-badge{
  display:inline-flex;padding:8px 12px;border:1px solid rgba(255,255,255,.18);
  border-radius:999px;font-size:11px;font-weight:850;letter-spacing:.13em;
  background:rgba(255,255,255,.06)
}
.hero h1{font-size:clamp(42px,6.5vw,76px);line-height:.98;letter-spacing:-.055em;margin:24px 0 18px;max-width:820px}
.hero h1 span{color:#75aaff}
.hero p{max-width:690px;color:#d3dbea;font-size:17px;line-height:1.7;margin:0 0 26px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.process-strip{
  position:absolute;left:clamp(22px,5vw,64px);bottom:28px;
  display:flex;gap:10px;align-items:center;color:#cbd5e4;font-size:12px;font-weight:750;flex-wrap:wrap
}
.process-strip i{font-style:normal;color:#6198ff}

.section{padding:54px 0 8px;scroll-margin-top:86px}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:16px}
.section-head.compact{margin-bottom:20px}
.section-head h2,.section-head h3{margin:5px 0 0;letter-spacing:-.035em}
.section-head h2{font-size:32px}
.section-head h3{font-size:24px}
.eyebrow{font-size:11px;color:var(--blue);font-weight:900;letter-spacing:.14em}
.secure-note{font-size:12px;color:var(--muted);font-weight:700}

.panel{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:clamp(18px,3vw,30px);margin-bottom:18px
}
.lookup-row{display:flex;align-items:flex-end;gap:12px}
.grow{flex:1}
.field label{display:block;font-size:12px;font-weight:850;margin:0 0 8px}
.field input{
  width:100%;height:52px;padding:0 15px;border:1px solid #d9dfE8;border-radius:13px;
  outline:none;background:#fbfcfe;color:var(--ink);font-weight:700;transition:.18s
}
.field input:focus{border-color:#6b9aff;box-shadow:0 0 0 4px rgba(23,105,255,.09);background:#fff}
.btn{
  min-height:50px;border:0;border-radius:13px;padding:0 20px;display:inline-flex;align-items:center;justify-content:center;
  font-weight:850;cursor:pointer;transition:transform .15s,box-shadow .15s,background .15s
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:linear-gradient(135deg,var(--blue),var(--blue2));color:#fff;box-shadow:0 10px 25px rgba(23,105,255,.22)}
.btn-secondary{background:#fff;color:var(--ink);border:1px solid var(--line)}
.btn-dark{background:var(--ink);color:#fff}
.btn-whatsapp{background:#16a56a;color:#fff}
.btn-full{width:100%}
.text-btn{border:0;background:transparent;font-weight:850;cursor:pointer}
.danger{color:var(--danger)}

.message{margin-top:14px;padding:12px 14px;border-radius:12px;background:#f5f7fb;color:var(--muted);font-size:13px;font-weight:700}
.message.error{background:#fff0f0;color:#aa2c2c}
.message.success{background:#ecfaf4;color:#13704f}

.product-card{margin-top:18px;border:1px solid var(--line);border-radius:18px;padding:18px;background:linear-gradient(180deg,#fff,#fbfcff)}
.product-card-top{display:flex;justify-content:space-between;gap:12px;align-items:center}
.product-card-top strong{display:block;font-size:24px;letter-spacing:-.03em;margin-top:3px}
.mini-label{font-size:10px;color:var(--muted);font-weight:900;letter-spacing:.12em}
.availability{font-size:11px;font-weight:900;color:var(--green);background:#ecfaf4;padding:7px 10px;border-radius:999px}
.product-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:18px 0}
.product-stats>div{background:var(--soft);border-radius:15px;padding:15px}
.product-stats span{display:block;font-size:11px;color:#62718b;font-weight:800}
.product-stats strong{display:block;font-size:25px;margin:4px 0 1px}
.product-stats small{color:var(--muted)}
.quantity-line{display:grid;grid-template-columns:minmax(120px,1fr) 1fr;gap:14px;align-items:end;margin:0 0 14px}
.line-total{height:52px;background:#0b1220;color:#fff;border-radius:13px;padding:8px 14px;display:flex;align-items:center;justify-content:space-between;gap:10px}
.line-total span{font-size:11px;color:#b9c3d3;font-weight:800}
.line-total strong{font-size:18px}

.cart-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.cart-title-row h3{margin:5px 0 15px;font-size:23px}
.cart-table-wrap{overflow:auto}
.cart-table{width:100%;border-collapse:collapse;min-width:560px}
.cart-table th{font-size:10px;letter-spacing:.1em;color:#788397;text-align:left;padding:10px;border-bottom:1px solid var(--line)}
.cart-table td{padding:13px 10px;border-bottom:1px solid var(--line);font-size:13px;font-weight:700}
.cart-table input{width:78px;height:38px;border:1px solid var(--line);border-radius:10px;padding:0 8px;font-weight:800}
.remove-item{border:0;background:#fff0f0;color:#b52e2e;width:34px;height:34px;border-radius:10px;cursor:pointer;font-weight:900}
.order-total-row{display:flex;justify-content:space-between;align-items:center;padding:20px 2px 15px}
.order-total-row span{font-weight:850;color:#556177}
.order-total-row strong{font-size:30px;letter-spacing:-.04em}
.add-another-box{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:14px;background:#f7f9fc;border-radius:14px;margin-bottom:12px}
.add-another-box span{font-size:13px;font-weight:800;color:var(--muted)}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.final-total{display:flex;align-items:center;justify-content:space-between;margin:18px 0;padding:18px;background:#0b1220;color:#fff;border-radius:15px}
.final-total span{font-weight:800;color:#b8c2d2}
.final-total strong{font-size:28px}
.small-note{text-align:center;color:var(--muted);font-size:11px;line-height:1.5;margin:12px 0 0}

.success-panel{
  padding:38px clamp(18px,4vw,40px);text-align:center;background:#fff;border:1px solid var(--line);border-radius:24px;
  box-shadow:var(--shadow)
}
.success-icon{width:54px;height:54px;margin:0 auto 15px;border-radius:50%;display:grid;place-items:center;background:#e9f9f2;color:#12805a;font-size:28px;font-weight:900}
.success-panel h2{font-size:31px;letter-spacing:-.04em;margin:7px 0}
.success-sub{color:var(--muted);margin:0 0 19px}
.order-id-box{max-width:520px;margin:0 auto;background:#0b1220;color:#fff;border-radius:18px;padding:18px}
.order-id-box span{display:block;font-size:10px;letter-spacing:.14em;color:#aeb8c9;font-weight:900}
.order-id-box strong{display:block;font-size:clamp(25px,5vw,37px);letter-spacing:.03em;margin:7px 0 12px;word-break:break-all}
.copy-btn{border:1px solid #34435f;background:#162139;color:#fff;border-radius:10px;padding:9px 14px;font-weight:850;cursor:pointer}
.success-total{max-width:520px;margin:12px auto 0;display:flex;justify-content:space-between;align-items:center;background:#f6f8fb;padding:13px 16px;border-radius:13px}
.success-total span{color:var(--muted);font-weight:800}
.success-total strong{font-size:22px}
.success-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:17px}
.redirect-note{font-size:11px;color:var(--muted);margin:13px 0 0}

.track-section{padding-bottom:34px}
.latest-hint{display:flex;align-items:center;justify-content:space-between;background:var(--soft);padding:11px 13px;border-radius:12px;margin-bottom:14px;gap:12px}
.latest-hint span{font-size:11px;font-weight:800;color:#60708c}
.latest-hint button{border:0;background:transparent;color:var(--blue);font-weight:900;cursor:pointer}
.tracking-summary{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:18px}
.tracking-summary>div{background:#f6f8fb;border-radius:14px;padding:14px}
.tracking-summary span{display:block;font-size:10px;color:var(--muted);font-weight:850;letter-spacing:.08em}
.tracking-summary strong{display:block;margin-top:4px;font-size:18px}
.timeline{margin-top:20px}
.timeline-item{display:grid;grid-template-columns:34px 1fr;gap:12px;position:relative;padding-bottom:20px}
.timeline-item:not(:last-child):before{content:"";position:absolute;left:16px;top:30px;bottom:0;width:2px;background:#dce3ed}
.timeline-dot{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#edf1f6;color:#8490a2;font-weight:900;z-index:1}
.timeline-item.complete .timeline-dot{background:#e7f8f1;color:#137a56}
.timeline-item.current .timeline-dot{background:var(--blue);color:#fff;box-shadow:0 0 0 5px rgba(23,105,255,.1)}
.timeline-copy{padding-top:2px}
.timeline-copy strong{display:block;font-size:14px}
.timeline-copy span{display:block;font-size:11px;color:var(--muted);margin-top:3px}

.help-strip{margin:50px 0 12px;background:#0b1220;color:#fff;border-radius:24px;padding:24px 28px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.help-strip h3{margin:4px 0 0;font-size:24px}

footer{max-width:1160px;margin:0 auto;padding:24px 18px 96px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:24px;color:var(--muted);font-size:12px}
footer strong{display:block;color:var(--ink);font-size:13px}
footer span{display:block;margin-top:4px}
.footer-right{text-align:right}
.footer-right a{color:var(--blue);font-weight:850}

.mobile-dock{display:none}

@media(max-width:720px){
  .topbar{min-height:66px;padding:10px 14px}
  .brand-mark{width:38px;height:38px}
  .brand small{display:none}
  .main-site{font-size:11px}
  main{padding:0 12px 84px}
  .hero{margin:14px 0 0;padding:40px 20px 86px;border-radius:23px;min-height:420px}
  .hero h1{font-size:46px}
  .hero p{font-size:14px;line-height:1.65}
  .hero-actions .btn{flex:1}
  .process-strip{left:20px;right:20px;bottom:23px;font-size:10px}
  .section{padding-top:42px}
  .section-head{align-items:flex-start}
  .section-head h2{font-size:27px}
  .secure-note{display:none}
  .panel{border-radius:18px;padding:16px}
  .lookup-row{display:grid;grid-template-columns:1fr}
  .lookup-row .btn{width:100%}
  .product-stats{grid-template-columns:1fr 1fr}
  .quantity-line{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .add-another-box{align-items:stretch;flex-direction:column}
  .tracking-summary{grid-template-columns:1fr}
  .help-strip{flex-direction:column;align-items:stretch;border-radius:18px}
  footer{display:block;padding-bottom:105px}
  .footer-right{text-align:left;margin-top:15px}
  .mobile-dock{
    position:fixed;display:grid;grid-template-columns:1fr 1fr 1fr;left:10px;right:10px;bottom:max(10px,env(safe-area-inset-bottom));z-index:30;
    background:rgba(11,18,32,.96);backdrop-filter:blur(16px);border-radius:16px;padding:6px;box-shadow:0 16px 40px rgba(0,0,0,.2)
  }
  .mobile-dock a{color:#fff;text-align:center;padding:11px 5px;font-size:11px;font-weight:850;border-radius:11px}
  .mobile-dock a:nth-child(1){background:#1769ff}
}
@media(max-width:420px){
  .hero h1{font-size:40px}
  .product-stats strong{font-size:21px}
}
