@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root{
  --sand:#f0e6d8;
  --ivory:#fbf6ee;
  --clay:#c57f3a;
  --olive:#2b4134;
  --forest:#18271f;
  --ink:#111410;
  --muted:#655e55;
  --line:rgba(26,32,24,.12);
  --card:rgba(255,250,244,.82);
  --shadow:0 16px 40px rgba(17,20,16,.08);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;
  --content:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family:"Space Grotesk", sans-serif;
  line-height:1.6;
  background:
    radial-gradient(circle at 20% 0%, rgba(197,127,58,.18), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(43,65,52,.14), transparent 24%),
    linear-gradient(180deg, #f5ecde 0%, #e7dbc8 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.15));
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.shell{max-width:var(--content);margin:0 auto;padding:0 24px}
header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(245,236,222,.78);
  border-bottom:1px solid rgba(24,39,31,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-mark{
  font-family:"Barlow Condensed", sans-serif;
  font-size:32px;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1;
}
.brand-note{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}
.nav-links a:hover{color:var(--ink)}
.hero{
  padding:76px 0 44px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(24,39,31,.14);
  background:rgba(255,250,244,.72);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1,h2,h3{
  font-family:"Barlow Condensed", sans-serif;
  letter-spacing:.02em;
  text-transform:uppercase;
  margin:0 0 14px;
  line-height:1.02;
}
h1{
  font-size:clamp(52px, 8vw, 92px);
  max-width:900px;
  margin-top:16px;
}
.lede{
  max-width:760px;
  font-size:19px;
  color:var(--muted);
  margin:0 0 18px;
}
.hero-tagline{
  color:var(--clay);
  font-weight:700;
  margin-bottom:28px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:14px;
}
.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.button,
button.button{
  appearance:none;
  border:1px solid var(--forest);
  border-radius:999px;
  padding:13px 20px;
  font:600 14px/1 "Space Grotesk", sans-serif;
  letter-spacing:.02em;
  cursor:pointer;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:transparent;
  color:var(--forest);
}
.button:hover{transform:translateY(-1px)}
.button.primary{
  background:var(--forest);
  color:#fff;
  box-shadow:var(--shadow);
}
.proof-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 24px;
}
.proof-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(24,39,31,.12);
  background:rgba(255,255,255,.42);
  color:var(--forest);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero-media{
  display:grid;
  grid-template-columns:1fr .84fr;
  gap:14px;
  min-height:520px;
}
.hero-main,
.hero-stack figure{
  margin:0;
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#d9d0c3;
  box-shadow:var(--shadow);
  position:relative;
}
.hero-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:520px;
}
.hero-stack{
  display:grid;
  gap:14px;
  grid-template-rows:1fr 1fr;
}
.hero-stack img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:252px;
}
.media-caption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(17,20,16,.05), rgba(17,20,16,.72));
  color:#fff;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.section{
  padding:32px 0 40px;
}
.section-head{
  display:flex;
  flex-wrap:wrap;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.kicker{
  color:var(--clay);
  font-weight:700;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:10px;
}
h2{font-size:clamp(34px, 5vw, 54px)}
.section-copy{
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  margin:0;
}
.grid{
  display:grid;
  gap:16px;
}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:20px;
  box-shadow:var(--shadow);
}
.card h3{
  font-size:24px;
  margin-bottom:8px;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.platform-card{
  min-height:186px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.platform-rank{
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  background:rgba(197,127,58,.14);
  color:var(--clay);
  font-weight:700;
  margin-bottom:12px;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.tag{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(24,39,31,.06);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.split-band{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:16px;
}
.highlight{
  padding:24px;
  border-radius:var(--radius-xl);
  background:linear-gradient(135deg, rgba(24,39,31,.98), rgba(43,65,52,.92));
  color:#fff;
  box-shadow:var(--shadow);
}
.highlight p{margin:0;color:rgba(255,255,255,.78)}
.highlight h2,.highlight h3{margin-bottom:10px}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.spec{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.spec-label{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
}
.spec-value{
  font-family:"Barlow Condensed", sans-serif;
  font-size:32px;
  line-height:1;
}
.copy-stack{
  display:grid;
  gap:18px;
}
.copy-stack p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
}
.feature-list,
.bullet-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.feature-list li,
.bullet-list li{margin-bottom:8px}
.quote-panel{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:16px;
  align-items:start;
}
.faq-grid{
  align-items:stretch;
}
.faq-card h3{
  font-size:22px;
}
.faq-card p{
  line-height:1.8;
}
.test-lab{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:22px;
  box-shadow:var(--shadow);
}
.test-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.test-switches{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.test-switch{
  appearance:none;
  border:1px solid rgba(24,39,31,.12);
  border-radius:999px;
  padding:12px 16px;
  background:rgba(255,255,255,.58);
  color:var(--forest);
  font:700 13px/1 "Space Grotesk", sans-serif;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.2s ease;
}
.test-switch.is-active{
  background:var(--forest);
  border-color:var(--forest);
  color:#fff;
  box-shadow:var(--shadow);
}
.test-status{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.test-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:16px;
  align-items:stretch;
}
.test-preview{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:22px;
  background:#0e1114;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.test-preview video,
.test-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.test-preview::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,12,14,.2) 0%, rgba(10,12,14,0) 30%, rgba(10,12,14,.42) 100%);
  pointer-events:none;
}
.test-preview__badge{
  position:absolute;
  left:18px;
  z-index:1;
}
.test-preview__badge{
  top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(17,20,16,.62);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.test-meta{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(24,39,31,.08);
}
.test-meta h3{
  font-size:34px;
  margin-bottom:10px;
}
.test-meta p{
  margin:0 0 14px;
  color:var(--muted);
}
.proof-specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0 0 16px;
}
.proof-spec{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(24,39,31,.08);
  background:rgba(255,255,255,.42);
}
.proof-spec__label{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.proof-spec__value{
  font-family:"Barlow Condensed", sans-serif;
  font-size:24px;
  letter-spacing:.03em;
  text-transform:uppercase;
  line-height:1;
}
.sticky-quote-bar{
  position:fixed;
  left:20px;
  right:20px;
  bottom:18px;
  z-index:170;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) auto;
  gap:16px;
  align-items:center;
  padding:16px 18px;
  border-radius:24px;
  background:rgba(12,15,17,.94);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  backdrop-filter:blur(14px);
  opacity:0;
  transform:translateY(24px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
}
.sticky-quote-bar__meta{
  display:grid;
  gap:4px;
}
.sticky-quote-bar__kicker{
  color:#ff8c1c;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.sticky-quote-bar__title{
  font-family:"Barlow Condensed", sans-serif;
  font-size:34px;
  line-height:1;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.sticky-quote-bar__copy{
  color:#aeb6bb;
  font-size:14px;
}
.sticky-quote-bar__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.sticky-quote-bar__actions .button{
  white-space:nowrap;
}
.contact-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:22px;
  box-shadow:var(--shadow);
}
.contact-card p{margin:0 0 12px;color:var(--muted)}
.product-whatsapp-link{white-space:nowrap}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:160;
  border:0;
  border-radius:999px;
  padding:14px 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #25d366, #128c7e);
  color:#fff;
  box-shadow:0 18px 40px rgba(18,140,126,.28);
  font:700 14px/1 "Space Grotesk", sans-serif;
  letter-spacing:.03em;
  cursor:pointer;
}
.whatsapp-float svg{
  width:20px;
  height:20px;
}
body.quote-modal-open{overflow:hidden}
.quote-modal[hidden]{display:none}
.quote-modal{
  position:fixed;
  inset:0;
  z-index:180;
  display:grid;
  place-items:center;
  padding:18px;
}
.quote-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,20,16,.55);
  backdrop-filter:blur(8px);
}
.quote-modal__panel{
  position:relative;
  z-index:1;
  width:min(640px, 100%);
  padding:26px;
  border-radius:var(--radius-xl);
  background:#fbf6ee;
  border:1px solid rgba(24,39,31,.08);
  box-shadow:0 30px 80px rgba(17,20,16,.18);
}
.quote-modal__panel h2{
  margin-bottom:10px;
}
.quote-modal__copy{
  margin:0 0 18px;
  color:var(--muted);
}
.quote-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(24,39,31,.06);
  color:var(--forest);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.quote-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.quote-field{
  display:grid;
  gap:8px;
}
.quote-field--full{
  grid-column:1 / -1;
}
.quote-field label{
  color:var(--forest);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.quote-field input{
  width:100%;
  border:1px solid rgba(24,39,31,.12);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  color:var(--ink);
  font:500 15px/1.4 "Space Grotesk", sans-serif;
}
.quote-form__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:4px;
}
.ready-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.stock-list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.stock-list li{margin-bottom:8px}
footer{
  padding:40px 0 56px;
  color:var(--muted);
}
.footer-card{
  border-top:1px solid rgba(24,39,31,.1);
  padding-top:22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
}
.product-page{
  color:#f3f5f6;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,140,28,.12), transparent 28%),
    radial-gradient(circle at 100% 12%, rgba(104,116,124,.12), transparent 22%),
    linear-gradient(180deg, #111416 0%, #171b1f 54%, #101315 100%);
  padding-bottom:118px;
}
.product-page::before{
  opacity:.1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
}
.product-page header{
  background:rgba(10,12,14,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.product-page .brand-note,
.product-page .nav-links,
.product-page .lede,
.product-page .section-copy,
.product-page .feature-list,
.product-page .bullet-list,
.product-page .contact-card p,
.product-page .test-meta p,
.product-page .spec-label,
.product-page .proof-spec__label{
  color:#aeb6bb;
}
.product-page .nav-links a:hover,
.product-page .brand,
.product-page h1,
.product-page h2,
.product-page h3,
.product-page .spec-value,
.product-page .proof-spec__value{
  color:#f6f7f8;
}
.product-page .eyebrow,
.product-page .proof-chip{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.12);
  color:#dbe0e3;
}
.product-page .kicker,
.product-page .hero-tagline,
.product-page .test-status{
  color:#ff8c1c;
}
.product-page .button,
.product-page button.button{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.12);
  color:#f4f6f7;
}
.product-page .button:hover{
  background:rgba(255,255,255,.08);
}
.product-page .button.primary{
  background:linear-gradient(135deg, #ff8c1c, #db6e00);
  border-color:#ff8c1c;
  color:#101416;
  box-shadow:0 18px 38px rgba(255,140,28,.24);
}
.product-page .hero-main,
.product-page .hero-stack figure,
.product-page .spec,
.product-page .test-lab,
.product-page .test-meta,
.product-page .contact-card,
.product-page .quote-modal__panel{
  background:rgba(20,24,27,.84);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 44px rgba(0,0,0,.24);
}
.product-page .hero-main,
.product-page .hero-stack figure,
.product-page .test-preview{
  border:1px solid rgba(255,255,255,.08);
}
.product-page .media-caption{
  background:linear-gradient(180deg, rgba(7,9,11,.04), rgba(7,9,11,.82));
}
.product-page .highlight{
  background:linear-gradient(135deg, rgba(255,140,28,.18), rgba(17,20,24,.96));
  border:1px solid rgba(255,140,28,.2);
}
.product-page .highlight p{
  color:rgba(255,255,255,.78);
}
.product-page .spec{
  position:relative;
}
.product-page .spec::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, #ff8c1c, rgba(255,140,28,0));
}
.product-page .test-switch{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.12);
  color:#d8dde0;
}
.product-page .test-switch.is-active{
  background:#ff8c1c;
  border-color:#ff8c1c;
  color:#111416;
  box-shadow:0 16px 34px rgba(255,140,28,.22);
}
.product-page .proof-spec{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
}
.product-page.sticky-quote-visible .sticky-quote-bar{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.product-page .sticky-quote-bar .button,
.product-page .sticky-quote-bar button.button{
  background:rgba(255,255,255,.04);
}
.product-page .sticky-quote-bar .button.primary{
  background:linear-gradient(135deg, #ff8c1c, #db6e00);
}
.product-page .whatsapp-float{
  display:none;
}
.product-page.quote-modal-open .sticky-quote-bar{
  opacity:0;
  transform:translateY(18px);
  pointer-events:none;
}
.product-page .quote-modal__panel{
  background:#171b1f;
}
.product-page .quote-modal__copy{
  color:#b7bfc4;
}
.product-page .quote-modal__close{
  background:rgba(255,255,255,.06);
  color:#f4f6f7;
}
.product-page .quote-field label{
  color:#dce1e4;
}
.product-page .quote-field input{
  background:#101315;
  border-color:rgba(255,255,255,.12);
  color:#f6f7f8;
}
.product-page .quote-field input::placeholder{
  color:#7e8990;
}
.product-page footer,
.product-page .footer-card{
  color:#96a0a6;
  border-top-color:rgba(255,255,255,.08);
}
@media (max-width:1100px){
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .spec-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ready-grid{grid-template-columns:1fr}
}
@media (max-width:960px){
  .hero,
  .split-band,
  .quote-panel,
  .test-stage{grid-template-columns:1fr}
  .hero-media{grid-template-columns:1fr}
  .hero-main img{min-height:360px}
  .hero-stack{grid-template-columns:1fr 1fr;grid-template-rows:none}
  .hero-stack img{min-height:180px}
  .grid-3{grid-template-columns:1fr}
}
@media (max-width:720px){
  .shell{padding:0 16px}
  .nav{align-items:flex-start}
  h1{font-size:46px}
  .lede{font-size:17px}
  .grid-4,.grid-2,.spec-grid,.quote-form,.proof-specs{grid-template-columns:1fr}
  .hero-stack{grid-template-columns:1fr}
  .button-row{flex-direction:column}
  .button{width:100%}
  .test-toolbar{align-items:flex-start}
  .test-preview{min-height:280px}
  .sticky-quote-bar{
    left:12px;
    right:12px;
    bottom:12px;
    grid-template-columns:1fr;
    padding:14px;
  }
  .sticky-quote-bar__title{
    font-size:28px;
  }
  .sticky-quote-bar__actions{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .sticky-quote-bar__actions .button{
    width:100%;
    min-width:0;
    padding-inline:10px;
    font-size:12px;
  }
  .quote-modal__panel{padding:22px 18px}
}
