:root{
  --orange: #FF5A1F;
  --orange-dark: #E8470F;
  --orange-light: #FF8C42;
  --peach: #FFF1E6;
  --ink: #191512;
  --ink-soft: #6B6259;
  --white: #FFFFFF;
  --line: #F0E3D8;
  --shadow: 0 20px 40px -20px rgba(232, 71, 15, 0.35);
  --error: #E8470F;
  --success: #2E9A57;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--white);
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* Ambient blobs */
.blob{
  position:fixed;
  border-radius:50%;
  filter:blur(70px);
  opacity:0.35;
  z-index:0;
  pointer-events:none;
}
.blob-1{ width:480px; height:480px; background:var(--orange-light); top:-180px; right:-160px; }
.blob-2{ width:360px; height:360px; background:var(--peach); bottom:-140px; left:-120px; opacity:0.9; }

header{
  position:relative; z-index:20;
  display:flex; align-items:center; justify-content:space-between;
  padding: 28px 6vw;
}

.logo{
  font-family:'Raleway', sans-serif;
  font-weight:600;
  font-size:1.4rem;
  letter-spacing:-0.02em;
  display:flex; align-items:center; gap:8px;
}
.logo .dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--orange);
  display:inline-block;
  box-shadow:0 0 0 5px var(--peach);
}

.logo-link{
    color:inherit;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
  }

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Hamburger menu */
.menu-wrap{ position:relative; }
.hamburger-btn{
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:42px; height:42px;
  border-radius:12px;
  border:1.5px solid var(--line);
  background:var(--white);
  cursor:pointer;
  padding:0;
  box-shadow:none;
  transition: border-color .2s ease, background .2s ease;
}
.hamburger-btn:hover{ border-color:var(--orange-light); background:var(--peach); transform:none; }
.hamburger-btn span{
  display:block; width:20px; height:3px; border-radius:1px;
  background:var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger-btn.open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2){ opacity:0; }
.hamburger-btn.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.dropdown-menu{
  position:absolute; top:calc(100% + 10px); right:0;
  min-width:250px;
  background:var(--white);
  border:1.5px solid var(--line);
  border-radius:16px;
  box-shadow:0 20px 40px -16px rgba(25,21,18,0.22);
  padding:10px;
  opacity:0; transform:translateY(-6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown-menu.show{ opacity:1; transform:translateY(0); pointer-events:auto; }
.dropdown-menu a, .dropdown-menu button.menu-item{
  display:flex; align-items:center; gap:10px;
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
  color:var(--ink);
  font-weight:500;
  font-size:0.9rem;
  background:none;
  border:none;
  box-shadow:none;
  cursor:pointer;
  text-align:left;
  font-family:'Inter', sans-serif;
  transition: background .15s ease, color .15s ease;
}
.dropdown-menu a:hover, .dropdown-menu button.menu-item:hover{ background:var(--peach); color:var(--orange-dark); }
.dropdown-menu .menu-icon{ width:20px; text-align:center; flex-shrink:0; }
.dropdown-menu .divider-line{ height:1px; background:var(--line); margin:6px 4px; }

main{
  position:relative; z-index:2;
  max-width:720px;
  margin:0 auto;
  padding: 6vh 6vw 8vh;
  text-align:center;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.8rem; font-weight:700;
  color:var(--orange-dark);
  background:var(--white);
  border:1.5px solid var(--orange-light);
  padding:7px 16px;
  border-radius:999px;
  margin-bottom:28px;
  animation: pulse-border 2.4s ease-in-out infinite;
}

@keyframes pulse-border{
  0%,100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(255,90,31,0); }
}

h1{
  font-family:'Raleway', sans-serif;
  font-weight:700;
  font-size:clamp(2.4rem, 6vw, 4rem);
  line-height:1.05;
  letter-spacing:-0.02em;
  margin-bottom:22px;
}
h1 .accent{ color:var(--orange); }

.subhead{
  font-size:1.08rem;
  color:var(--ink-soft);
  line-height:1.6;
  max-width:520px;
  margin:0 auto 48px;
}

/* Route signature element */
.route{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:520px;
  margin:0 auto 52px;
  height:64px;
}
.route::before{
  content:'';
  position:absolute;
  left:28px; right:28px; top:50%;
  height:0;
  border-top:2.5px dashed var(--orange-light);
  transform:translateY(-50%);
}
.stop{
  position:relative; z-index:2;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--orange-light);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
}
.puck{
  position:absolute;
  top:50%; left:0;
  width:14px; height:14px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 6px rgba(255,90,31,0.18);
  transform:translate(20px,-50%);
  animation: travel 6.5s cubic-bezier(.65,0,.35,1) infinite alternate;
}
@keyframes travel{
  0%   { left:0%; }
  100% { left:calc(100% - 34px); }
}

.stat{
  font-family:'JetBrains Mono', monospace;
  font-size:0.92rem;
  color:var(--ink-soft);
  margin-bottom:36px;
}
.stat strong{
  color:var(--orange-dark);
  font-weight:700;
}

form{
  display:center;
  gap:10px;
  max-width:420px;
  margin:0 auto;
}
input[type="email"]{
  flex:1;
  padding:15px 18px;
  border-radius:14px;
  border:2px solid var(--line);
  font-family:'Inter', sans-serif;
  font-size:0.96rem;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
  background:var(--white);
}
input[type="email"]:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(255,90,31,0.12);
}
input.error{
  border-color:#E8470F;
  animation: shake .4s ease;
}
@keyframes shake{
  0%,100%{ transform:translateX(0); }
  25%{ transform:translateX(-6px); }
  75%{ transform:translateX(6px); }
}
input:disabled{
  opacity:0.7;
}

button{
  font-family:'Raleway', sans-serif;
  font-weight:600;
  font-size:0.96rem;
  color:var(--white);
  background:var(--orange);
  border:none;
  padding:15px 26px;
  border-radius:14px;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition: transform .15s ease, background .2s ease;
  white-space:nowrap;
}
button:hover{ background:var(--orange-dark); transform:translateY(-2px); }
button:active{ transform:translateY(0); }
button:disabled{ background:#3FAE6B; cursor:default; transform:none; }

.form-msg{
  margin-top:14px;
  font-size:0.85rem;
  color:var(--ink-soft);
  min-height:18px;
}
.form-msg.success{ color:#2E9A57; font-weight:600; }
.form-msg.error{ color:var(--orange-dark); font-weight:600; }

.stores{
  margin-top:44px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.stores-label{
  font-size:0.74rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-soft);
}
.store-badges{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.store-badge{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:12px;
  background:var(--ink);
  border:1.5px solid var(--ink);
  color:var(--white);
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.store-badge:hover{
  background:var(--orange-dark);
  border-color:var(--orange-dark);
  transform:translateY(-2px);
}
.store-badge svg{ width:20px; height:20px; flex-shrink:0; }
.badge-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
  text-align:left;
}
.badge-text small{
  font-size:0.6rem;
  font-weight:500;
  opacity:0.75;
}
.badge-text .store-name{
  font-family:'Raleway', sans-serif;
  font-size:0.9rem;
  font-weight:600;
}
.badge-tip{
  position:absolute;
  bottom:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(4px);
  background:var(--white);
  color:var(--ink);
  font-size:0.7rem;
  font-weight:600;
  padding:6px 10px;
  border-radius:8px;
  box-shadow:0 10px 20px -8px rgba(25,21,18,0.35);
  opacity:0;
  pointer-events:none;
  white-space:nowrap;
  transition: opacity .2s ease, transform .2s ease;
}
.badge-tip::after{
  content:'';
  position:absolute;
  top:100%; left:50%;
  transform:translateX(-50%);
  border:5px solid transparent;
  border-top-color:var(--white);
}
.store-badge.show-tip .badge-tip{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.legal {
  position:relative; z-index:2;
  max-width:720px;
  margin:0 auto;
  padding: 6vh 6vw 8vh;
  text-align:left;
}

.legal h1 {
  font-family:'Raleway', sans-serif;
  font-weight:700;
  font-size:clamp(2.4rem, 6vw, 4rem);
  line-height:1.05;
  letter-spacing:-0.02em;
  margin-bottom:22px;
}


footer{
  position:relative; z-index:2;
  text-align:center;
  padding:28px 6vw 40px;
  font-size:0.82rem;
  color:var(--ink-soft);
}
footer a{ color:var(--orange-dark); text-decoration:none; font-weight:600; }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

  

@media (max-width:520px){
  form{ flex-direction:column; }
  button{ width:100%; }
}

@media (prefers-reduced-motion: reduce){
  .puck, .eyebrow{ animation:none; }
}
