/* ======================================
   VELOX V3 — Volvo EX30 Inspired
   Zero shadows · Flat cards · Grey canvas
   ====================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --bg: #D5D5D5;
  --card: #fff;
  --ink: #1a1a1a;
  --sub: #6b7280;
  --muted: #9ca3af;
  --red: #DC2626;
  --red-bg: #FEF2F2;
  --green: #16A34A;
  --green-bg: #DCFCE7;
  --blue: #2563EB;
  --blue-bg: #DBEAFE;
  --amber-bg: #FEF9EE;
  --wa: #25D366;
  --r: 24px;
  --r-sm: 16px;
  --gap: 10px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: #b0b0b0;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

strong {
  font-weight: 700;
  color: var(--ink)
}

/* PHONE WRAPPER */
.phone {
  max-width: 430px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

@media(min-width:431px) {
  .phone {
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  }
}

@media(max-width:430px) {
  body {
    background: var(--bg)
  }
}

/* GRID PAD — section spacing */
.grid-pad {
  padding: 0 var(--gap) var(--gap);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* CARD — the core building block */
.card {
  background: var(--card);
  border-radius: var(--r);
  padding: 24px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ================== NAV ================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 6px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sub);
  background: var(--card);
  padding: 7px 14px;
  border-radius: 999px;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

/* ================== HERO ================== */
.hero-card {
  padding: 28px 24px
}

.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

h1 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.6px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  line-height: 1.5;
}

.card-img {
  padding: 0;
  overflow: hidden
}

.card-img img {
  width: 100%;
  display: block
}

.body-text {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
}

/* CTA CARD */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 24px;
  font-size: 14px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform .2s;
}

.cta-card:active {
  transform: scale(.98)
}

.cta-circle {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================== WARNING ================== */
.card-amber {
  background: var(--amber-bg);
  padding: 22px 20px;
}

.amber-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.amber-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, .12);
  border-radius: 10px;
  flex-shrink: 0;
}

.amber-head span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #92400E;
}

.amber-body {
  font-size: 13px;
  color: #78350F;
  line-height: 1.7;
}

.red-bold {
  font-weight: 800;
  color: var(--red);
}

/* ================== PROBLEM ITEMS ================== */
h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.25;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.p-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-bg);
  border-radius: 10px;
  flex-shrink: 0;
}

.problem-item span {
  font-size: 13.5px;
  line-height: 1.5;
}

/* ================== GIF PLACEHOLDER ================== */
.gif-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}

.gif-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--r);
  background: conic-gradient(from 0deg, var(--red), #F97316, #EAB308, var(--red));
  animation: spin 3s linear infinite;
  z-index: 0;
}

@keyframes spin {
  to {
    filter: hue-rotate(360deg)
  }
}

.gif-content {
  position: relative;
  z-index: 1;
  background: var(--card);
  margin: 2px;
  border-radius: calc(var(--r) - 2px);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gif-play {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-bg);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

.gif-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

/* ================== BENTO FEATURES ================== */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.bento-a {
  grid-column: 1/-1
}

.bento-b,
.bento-c {
  padding: 20px 16px
}

.b-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 14px;
}

.b-red {
  background: var(--red-bg)
}

.b-green {
  background: var(--green-bg)
}

.b-blue {
  background: var(--blue-bg)
}

h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento p,
.mode-slide p {
  font-size: 12.5px;
  color: var(--sub);
  line-height: 1.5;
}

/* ================== MODES CAROUSEL ================== */
.modes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.h2-inline {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.3px
}

.dots {
  display: flex;
  gap: 5px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: all .3s;
}

.dot.active {
  background: var(--ink);
  width: 20px;
  border-radius: 4px;
}

.carousel {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.carousel::-webkit-scrollbar {
  display: none
}

.mode-slide {
  min-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: center;
  padding: 22px 18px;
}

.mode-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mode-emoji {
  font-size: 26px
}

.pill {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill-red {
  background: var(--red-bg);
  color: var(--red)
}

.pill-blue {
  background: var(--blue-bg);
  color: var(--blue)
}

.pill-green {
  background: var(--green-bg);
  color: var(--green)
}

/* ================== PRICING ================== */
.tier-card {
  position: relative;
  overflow: hidden;
  padding: 26px 22px
}

.tier-prem .tier-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #F97316, var(--red));
}

.tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--red);
  background: var(--red-bg);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tier-name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.3px;
  margin-bottom: 2px
}

.tier-sub {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 16px
}

.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.tier-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.chk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.chk-red {
  background: var(--red-bg);
  color: var(--red)
}

.chk-grey {
  background: #f1f5f9;
  color: var(--muted)
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through
}

.price-now {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.5px
}

.price-red {
  color: var(--red)
}

/* BUTTONS */
.btn-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s;
}

.btn-dark:active {
  transform: scale(.98)
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  transition: transform .2s;
}

.btn-outline:active {
  transform: scale(.98)
}

/* ================== SHIPPING ================== */
.ship-card {
  padding: 24px 20px
}

.ship-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ship-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  flex-shrink: 0;
}

.ship-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: var(--r-sm);
  margin-bottom: 8px;
}

.ship-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--amber-bg);
  border-radius: var(--r-sm);
  margin-top: 4px;
}

.ship-warn svg {
  flex-shrink: 0;
  margin-top: 2px
}

.ship-warn p {
  font-size: 12px;
  color: #92400E;
  line-height: 1.6
}

/* ================== SPACER + STICKY ================== */
.spacer {
  height: 82px
}

.sticky {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 50;
  padding: 8px var(--gap) 12px;
  background: rgba(213, 213, 213, .7);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--wa);
  border-radius: 999px;
  transition: transform .2s;
}

.btn-wa:active {
  transform: scale(.98)
}

.wa-arr {
  animation: bounce 1.5s ease-in-out infinite;
  font-size: 16px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(4px)
  }
}