:root{
  /* Brand palette */
  --orange:#EB600A;
  --yellow:#FCCD0D;
  --red:#E01D10;
  --deep-blue:#0256AB;
  --green:#5DA30F;
  --sky-blue:#0392D9;
  --ink:#270E08;
  --bg:#FFFFFF;

  /* Neutrals */
  --card:#FFFFFF;
  --border: rgba(39,14,8,.10);
  --muted: rgba(39,14,8,.65);

  /* Layout */
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(39,14,8,.08);
  --shadow-soft: 0 8px 20px rgba(39,14,8,.06);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

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

/* Header */
header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:saturate(180%) blur(10px);
  background: rgba(255,255,255,.9);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.logo{
  font-weight:900;
  letter-spacing:.2px;
  font-size:22px;
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-container{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-left{
  height:112px;
  width:auto;
}
.logo-right{
  height:64px;
  width:auto;
}
.logo-badge{
  width:34px;height:34px;border-radius:12px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  box-shadow: 0 8px 20px rgba(235,96,10,.25);
}
nav ul{
  list-style:none;
  display:flex;
  gap:22px;
  padding:0;
  margin:0;
  align-items:center;
}
nav a{
  color: rgba(39,14,8,.75);
  font-weight:600;
  font-size:14px;
}
nav a:hover{color:var(--ink)}
.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:46px;
  padding:0 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--deep-blue);
  color:var(--bg);
  box-shadow: 0 10px 24px rgba(2,86,171,.22);
}
.btn-primary:hover{box-shadow: 0 14px 32px rgba(2,86,171,.28)}
.btn-outline{
  background:transparent;
  color:var(--deep-blue);
  border-color: rgba(2,86,171,.35);
}
.btn-outline:hover{border-color: rgba(2,86,171,.6); box-shadow: var(--shadow-soft)}
.icon-btn{
  width:46px;
  padding:0;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.6);
}

/* Hero */
.hero{
  padding:48px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero-grid > .product-card{
  order:-1;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.65);
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  color: rgba(39,14,8,.8);
  margin-bottom:14px;
}
.dot{
  width:10px;height:10px;border-radius:999px;background:var(--green);
  box-shadow: 0 0 0 6px rgba(93,163,15,.15);
}
h1{
  margin:0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.1;
  letter-spacing:-.6px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-weight:600;
  max-width:52ch;
}
.price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin: 10px 0 14px;
}
.price{
  font-size:32px;
  font-weight:950;
}
.price-note{
  color: rgba(39,14,8,.55);
  font-weight:700;
  font-size:14px;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}
.trust{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:10px;
  color: rgba(39,14,8,.75);
  font-weight:650;
  font-size:14px;
}
.trust .item{
  display:flex;
  align-items:center;
  gap:10px;
}
.check{
  width:20px;height:20px;border-radius:6px;
  background: rgba(93,163,15,.16);
  display:grid;place-items:center;
  color: var(--green);
  font-weight:900;
}

/* Product card mock */
.product-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
  min-height: 360px;
}
.product-card:before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:240px;height:240px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(252,205,13,.35), rgba(3,146,217,.18), transparent 70%);
  filter: blur(0px);
}
.badge{
  position:absolute;
  top:14px;
  right:14px;
  background: rgba(252,205,13,.25);
  border:1px solid rgba(252,205,13,.55);
  color: rgba(39,14,8,.85);
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
}
.product-visual{
  display:grid;
  gap:12px;
  padding-top:20px;
  overflow:hidden;
}
.product-visual img{
  width:100%;
  height:auto;
  display:block;
}
.box{
  width:100%;
  border-radius:16px;
  border:1px dashed rgba(39,14,8,.18);
  background: linear-gradient(180deg, rgba(2,86,171,.06), rgba(235,96,10,.04));
  padding:18px;
  min-height: 220px;
  display:grid;
  place-items:center;
  color: rgba(39,14,8,.55);
  font-weight:800;
  text-align:center;
}
.box strong{color:rgba(39,14,8,.75)}
.mini-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.mini{
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  height:64px;
  display:grid;
  place-items:center;
  font-weight:800;
  color: rgba(39,14,8,.6);
  font-size:12px;
}

/* Panels */
section{padding: 22px 0;}
.panel{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding:18px;
}
.panel-title{
  margin:0 0 10px;
  font-size:16px;
  font-weight:950;
  letter-spacing:-.2px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Early bird pricing card */
.pricing-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
  margin-top:10px;
}
.tier{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  display:grid;
  gap:6px;
}
.tier .label{
  font-weight:950;
  color: rgba(39,14,8,.75);
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.pill{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.7);
  color: rgba(39,14,8,.7);
}
.tier .value{
  font-size:22px;
  font-weight:1000;
  letter-spacing:-.4px;
}
.tier.t1 .value{color:var(--orange)}
.tier.t2 .value{color:var(--deep-blue)}
.tier.t3 .value{color:rgba(39,14,8,.85)}
.tier small{color:var(--muted); font-weight:650}

.note{
  margin:10px 0 0;
  color: rgba(39,14,8,.6);
  font-weight:650;
  font-size:13px;
}

/* Progress */
.progress-wrap{
  display:grid;
  gap:10px;
}
.progress-head{
  display:grid;
  gap:4px;
}
.progress-head h3{
  margin:0;
  font-size:20px;
  font-weight:1000;
  letter-spacing:-.3px;
}
.progress-head p{
  margin:0;
  color: rgba(39,14,8,.70);
  font-weight:650;
}
.bar{
  height:14px;
  background: rgba(2,86,171,.10);
  border:1px solid rgba(2,86,171,.18);
  border-radius:999px;
  overflow:hidden;
}
.fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(3,146,217,.9), rgba(2,86,171,1));
  border-radius:999px;
}
.progress-meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(39,14,8,.65);
  font-weight:750;
  font-size:13px;
}
.refund{
  margin:0;
  color: rgba(39,14,8,.60);
  font-weight:650;
  font-size:13px;
}

/* Why you'll love it */
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:12px;
}
.why{
  background: var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 14px;
  display:grid;
  gap:16px;
  align-items:center;
  justify-items:center;
}
.why .icon{
  width:140px;height:140px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:1000;
  color: var(--ink);
  border:1px solid var(--border);
  background: rgba(255,255,255,.8);
}
.why .icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.why:nth-child(1) .icon{background: rgba(252,205,13,.20); border-color: rgba(252,205,13,.35)}
.why:nth-child(2) .icon{background: rgba(3,146,217,.14); border-color: rgba(3,146,217,.25)}
.why:nth-child(3) .icon{background: rgba(93,163,15,.14); border-color: rgba(93,163,15,.25)}
.why:nth-child(4) .icon{background: rgba(235,96,10,.14); border-color: rgba(235,96,10,.25)}
.why h4{margin:0; font-size:14px; font-weight:950}
.why p{margin:0; color:var(--muted); font-weight:650; font-size:13px}

/* Why you'll love it gallery */
.gallery-note{
  margin:0;
  color: rgba(39,14,8,.62);
  font-weight:650;
  font-size:13px;
}
.gallery-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 10px;
}
.gallery-controls{
  display:flex;
  align-items:center;
  gap:8px;
}
.gallery-arrow{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--card);
  color: rgba(39,14,8,.82);
  font-size:24px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-arrow:hover{
  border-color: rgba(2,86,171,.35);
}
.love-gallery{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(220px, 28%);
  gap:12px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  padding:4px 2px 10px;
}
.love-gallery::-webkit-scrollbar{
  height:10px;
}
.love-gallery::-webkit-scrollbar-thumb{
  background: rgba(2,86,171,.25);
  border-radius:999px;
}
.love-item{
  margin:0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  scroll-snap-align:start;
}
.love-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.love-item figcaption{
  padding:10px 12px 12px;
  font-weight:800;
  color: rgba(39,14,8,.82);
  font-size:13px;
}

/* How it works */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}
.step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  display:grid;
  gap:8px;
}
.step .num{
  width:34px;height:34px;border-radius:999px;
  display:grid;place-items:center;
  font-weight:1000;
  color: var(--ink);
  border:1px solid var(--border);
}
.step:nth-child(1) .num{background: rgba(252,205,13,.25); border-color: rgba(252,205,13,.5)}
.step:nth-child(2) .num{background: rgba(3,146,217,.16); border-color: rgba(3,146,217,.35)}
.step:nth-child(3) .num{background: rgba(235,96,10,.16); border-color: rgba(235,96,10,.35)}
.step h4{margin:0; font-size:14px; font-weight:950}
.step p{margin:0; color:var(--muted); font-weight:650; font-size:13px}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
  margin-top:12px;
}
details{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
  color: rgba(39,14,8,.85);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
summary::-webkit-details-marker{display:none}
.chev{
  width:28px;height:28px;border-radius:10px;
  border:1px solid var(--border);
  display:grid;place-items:center;
  color: rgba(39,14,8,.65);
  background: rgba(255,255,255,.7);
  flex:0 0 auto;
}
details[open] .chev{transform: rotate(180deg)}
details p{
  margin:10px 0 0;
  color: var(--muted);
  font-weight:650;
  font-size:13px;
}

/* Final CTA */
.final{
  background: rgba(2,86,171,.06);
  border:1px solid rgba(2,86,171,.16);
  border-radius: var(--radius);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.final h3{margin:0; font-size:20px; font-weight:1000}
.final p{margin:4px 0 0; color: rgba(39,14,8,.7); font-weight:650}

/* Footer */
footer{
  padding:28px 0 40px;
  color: rgba(39,14,8,.70);
  font-weight:650;
  font-size:13px;
}
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  padding-top:18px;
}
.links{display:flex; gap:14px; flex-wrap:wrap}
.links a:hover{color:var(--ink); text-decoration:underline}

/* Responsive */
@media (max-width: 700px){
  nav ul{display:none}
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .hero-grid > .product-card{order:-1}
  .product-card{min-height: 320px}
  .pricing-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
  .gallery-controls{display:none}
  .love-gallery{grid-auto-columns:minmax(220px, 72%)}
}
@media (max-width: 520px){
  .container{width: min(var(--max), calc(100% - 28px))}
  .why-grid{grid-template-columns:1fr}
  .btn{width:100%}
  .nav-right .icon-btn{display:none}
  .logo-left{height:96px}
  .love-gallery{grid-auto-columns:minmax(210px, 86%)}
  .love-item img{height:200px}
}

