:root {
  --green: #21bd2f;
  --lime: #59eb75;
  --ink: #2d2d2d;
  --muted: #555;
  --line: #23bf32;
  --content-max-width: 1440px;
  --page-gutter: clamp(20px, 4.5vw, 68px);
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #e9e9e9;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}


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

/* Tablet tweak: nudge promo phones left on tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .promo-phone.phone-one {
    transform: translateX(-6%) rotate(-10deg) !important;
    right: clamp(60px, 10vw, 110px) !important;
  }
  .promo-phone.phone-two {
    transform: translateX(-8%) !important;
    right: clamp(32px, 8vw, 80px) !important;
  }
}

/* Large-screen tweak: slightly reduce phone-two size for 1512px and 1728px widths */
@media (min-width: 1500px) {
  .promo-phone.phone-two {
    width: clamp(68px, 5vw, 90px) !important;
    height: auto !important;
  }
}

/* Specific tweak for very large screens (e.g., MacBook Pro 16" 1728px width)
   reduce phone-two a bit more to improve visual balance */
@media (min-width: 1700px) {
  .promo-phone.phone-two {
    width: clamp(50px, 3.4vw, 72px) !important;
    height: auto !important;
  }
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.page-container {
  width: 100%;
  max-width: var(--content-max-width);
  min-width: 0;
  margin: 0 auto;
  padding: 42px var(--page-gutter) 0;
}

/* Prevent Bootstrap containers or rows inside this page from adding a second gutter. */
.page-container > .container,
.page-container > .container-fluid,
.page-container .container.page-inner {
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.topbar,
.promo-banner,
.hero,
.how-section,
.impact-banner,
.download-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-wrapper.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-ring {
  width: 58px;
  height: 58px;
  border: 5px solid #d9f8df;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-wrapper p {
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 700;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.topbar {
  min-height: 74px;
  margin-bottom: 35px;
  padding: 12px 18px;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.round-action {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.round-action:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,.18);
}

.flag { position: relative; }

.action-hover-icon {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: #252525;
  font-size: 18px;
  opacity: 0;
  transform: scale(.65);
  transition: opacity .3s ease, transform .3s ease;
}

.flag:hover .action-hover-icon,
.flag:focus-visible .action-hover-icon {
  opacity: 1;
  transform: scale(1);
}

.link-action i {
  transition: transform .3s ease;
}

.link-action:hover,
.link-action:focus-visible {
  background: var(--green);
  color: #fff;
}

.link-action:hover i,
.link-action:focus-visible i {
  transform: rotate(-40deg) scale(1.12);
}

.flag.usa {
  background: repeating-linear-gradient(#d71920 0 3px, #fff 3px 6px);
}

.flag.usa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 49%;
  height: 54%;
  background: #1f4e9a;
}

.flag.mexico {
  background: linear-gradient(90deg, #087b43 0 33%, #fff 33% 66%, #d62f2f 66%);
}

.flag.mexico::after {
  content: "•";
  color: #996515;
  font-size: 22px;
}

.link-action {
  border: 0;
  background: #4a4a4a;
  color: #fff;
  font-size: 20px;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 34px;
  font-size: clamp(16px, 1.65vw, 21px);
}

.main-nav a {
  color: #222;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease;
}

.main-nav a:hover {
  color: var(--green);
  text-decoration: none;
}

.main-nav strong {
  font-size: inherit;
  font-style: italic;
  white-space: nowrap;
}

.nav-divider {
  display: inline-block;
  margin: 0 10px;
  color: #000;
  font-weight: 300;
}

.promo-banner {
  position: relative;
  min-height: 100px;
  margin-bottom: 38px;
  padding: 10px 28px;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  overflow: visible;
}

.promo-copy {
  position: relative;
  z-index: 2;
  color: #111;
  font-family: 'Architects Daughter', cursive;
  font-weight: 400;
  line-height: .6;
  letter-spacing: 2px;
  word-spacing: 6px;
  transform: rotate(-3deg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0px;
  margin-left: 40px;
}

.promo-copy .line-1 { font-size: clamp(40px, 6vw, 70px); }
.promo-copy .line-2 { font-size: clamp(32px, 4.5vw, 55px); margin-left: 3.4em; margin-top: -5px; }
.promo-copy .line-3 { font-size: clamp(50px, 7.5vw, 90px); margin-left: 3.5em; margin-top: 5px; }

.promo-bottle,
.promo-food,
.promo-phone,
.promo-art {
  position: absolute;
  opacity: 1;
}



.promo-bottle {
  bottom: 0px;
  left: 8px;
  width: 110px;
}

.promo-food {
  top: 36px;
  left: 67%;
  width: 72px;
  opacity: .7;
  width: 85px;
}

.promo-phone {
  bottom: -22px;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.22));
}

.phone-one {
  right: 174px;
  width: 119px;
  height: 200px;
  transform: rotate(-10deg);
}

.phone-two {
  right: 94px;
  width: 105px;
}

.promo-art {
  top: 0px;
  right: 9px;
  width: 85px;
  opacity: .7;
  transform: rotate(7deg);
}

.hero {
  position: relative;
  height: auto;
  margin-bottom: 54px;
  overflow: hidden;
  background: transparent;
}

.hero-bg {
  width: 80%;
  /* height: 700px; */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.09) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  /* border: 2px solid rgba(62,235,90,.75); */
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 500px;
}

.hero-copy span {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.hero-copy strong, .hero-copy em {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: #00e050;
  font-style: normal;
}

.hero-copy em {
  font-style: italic;
}

.hero-copy small {
  display: block;
  font-size: clamp(12px, 2vw, 18px);
  margin-top: 10px;
  opacity: 0.9;
}

.hero-copy h1 {
  font-size: clamp(24px, 5vw, 50px);
  margin-top: 20px;
  display: flex;
  align-items: baseline;
}

.hero-copy h1 b {
  color: #00e050;
  font-weight: 700;
  margin-right: 10px;
}

.hero-copy h1 .app-script {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: #fff;
  font-style: italic;
  font-size: clamp(28px, 6vw, 60px);
}

.hero-hand {
  position: absolute;
  right: 0;
  bottom: -25px;
  z-index: 2;
  width: min(40%, 520px);
}

.hero-products {
  position: absolute;
  top: 12%;
  right: clamp(24px, 5vw, 55px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, clamp(82px, 9vw, 112px));
  gap: clamp(16px, 2.3vw, 28px);
}

.hero-products span {
  width: clamp(82px, 9vw, 112px);
  height: clamp(76px, 8.2vw, 102px);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0,0,0,.18);
}

.hero-products span:nth-child(1) {
  margin-left: clamp(-80px, -6vw, -40px);
  margin-top: clamp(15px, 2vw, 30px);
}


.hero-products span:nth-child(2) {
  margin-top: clamp(30px, 4vw, 50px);
}

.hero-products span:nth-child(3) {
  grid-column: 1;
  margin-left: clamp(-280px, -24vw, -200px);
}

.hero-products img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.4);
}

.how-section {
  position: relative;
  padding: 8px clamp(0px, 2.6vw, 35px) 78px;
  overflow: visible;
  isolation: isolate;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(45px, 7vw, 82px);
}

.section-title span {
  width: min(180px, 18vw);
  height: 3px;
  background: var(--green);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  color: #333;
  letter-spacing: 1px;
}

.steps-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(36px, 7vw, 95px);
}

.step-card {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.video-circle {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1;
  padding: 0;
  border: 14px solid #d9d9d9;
  border-radius: 50%;
  overflow: visible;
  background: #fff;
  cursor: pointer;
}

.video-circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 14px solid transparent;
  border-radius: 50%;
}

.progress-left::before {
  border-top-color: #00e050;
  border-left-color: #00e050;
  border-bottom-color: #00e050;
  transform: rotate(-45deg);
}

.progress-right::before {
  border-top-color: #00e050;
  border-left-color: #00e050;
  border-bottom-color: #00e050;
  transform: rotate(-45deg);
}

.video-circle img {
  width: 100%;
  height: 100%;
  border: 7px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.video-circle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(58px, 7vw, 74px);
  height: clamp(58px, 7vw, 74px);
  padding-left: 4px;
  border: 4px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #00e050;
  color: #fff;
  font-size: clamp(24px, 3vw, 31px);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.video-circle:hover i {
  transform: translate(-50%, -50%) scale(1.08);
}

.step-card h3 {
  margin: 24px 0 0;
  font-size: clamp(22px, 2.6vw, 27px);
  line-height: 1.08;
}

.decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}

.taco { top: 10px; right: -150px; width: 200px; }
.rings { right: -30px; bottom: 50px; width: 250px; }
.sneaker { bottom: 15px; left: -5px; width: 180px; }

.impact-banner {
  position: relative;
  --impact-banner-height: 272px;
  min-height: var(--impact-banner-height);
  margin-top: 24px;
  margin-bottom: 42px;
  overflow: hidden;
  background: #f4f7f4;
}

.impact-banner > img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  margin-top: 0;
  display: block;
}

.impact-copy {
  position: absolute;
  top: 50%;
  right: clamp(24px, 5vw, 54px);
  width: min(46%, 560px);
  transform: translateY(-50%);
}

.impact-copy h2 {
  margin: 0 0 7px;
  color: #27a243;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.impact-copy p {
  margin: 0;
  color: #333;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 90%;
}

.impact-copy a {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 20px;
  border: 2px solid #84c98c;
  border-radius: 6px;
  background: transparent;
  color: #27a243;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.impact-copy a:hover {
  background: #27a243;
  color: #fff;
  border-color: #27a243;
}

.download-section {
  position: relative;
  min-height: 430px;
  padding: 0 clamp(10px, 3vw, 40px) 0;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: center;
  gap: 0px;
  background: #fff;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 3px;
  background-color: var(--green);
}

.download-phones {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-self: end;
  margin-right: -40px;
}

.download-phones img {
  width: min(300px, 100%);
  filter: drop-shadow(0 10px 9px rgba(0,0,0,.15));
  margin-bottom: 80px;
}

.download-copy {
  min-width: 0;
  text-align: center;
  align-self: start;
  margin-top: 45px;
}

.download-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(23px, 2.8vw, 32px);
  line-height: 1.17;
  font-weight: 800;
  color: #333;
}

.download-copy p {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.35;
  color: #444;
  font-weight: 500;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-btn {
  min-width: 168px;
  padding: 9px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #050505;
  color: #fff;
  text-align: left;
  transition: transform .25s ease;
}

.store-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.store-btn i { font-size: 28px; }
.store-btn img { width: 28px; height: 28px; object-fit: contain; }
.store-btn span { font-size: 17px; font-weight: 600; line-height: 1; }
.store-btn small { display: block; margin-bottom: 3px; font-size: 8px; font-weight: 400; }

.site-footer {
  width: 100%;
  margin: 0;
  background: var(--green);
  padding: 15px 20px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.site-footer a:hover {
  text-decoration: none;
}

.video-modal iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

@media (min-width: 768px) {
  .video-modal iframe {
    height: min(50vh, 450px);
  }
}

@media (min-width: 992px) {
  .video-modal iframe {
    height: min(70vh, 600px);
  }
}

.video-modal {
  z-index: 1000000;
}

.video-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.video-modal .modal-content {
  border: 4px solid var(--green);
}

.video-modal .close {
  position: absolute;
  top: -44px;
  right: -14px;
  z-index: 5;
  color: #fff;
  font-size: 38px;
  opacity: 1;
}

.download-modal {
  z-index: 1000000;
}

.download-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.download-modal .modal-dialog {
  width: min(900px, calc(100vw - 30px));
  max-width: 900px;
  margin: auto;
}

.download-modal .modal-content {
  max-height: calc(100vh - 30px);
  overflow-y: auto;
  background: linear-gradient(135deg, #5ffc86 0%, #a5dbb1 50%, #a4e7b4 100%);
  border: 0;
  border-radius: 24px;
}

.download-modal .close {
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 5;
  font-size: 34px;
  line-height: 1;
}

.download-modal .modal-body {
  min-height: 280px;
  padding: 48px;
}

.download-modal-buttons {
  gap: 40px;
}

.download-modal-buttons img {
  width: min(300px, 34vw);
  height: auto;
  max-width: 300px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

.download-modal-buttons img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

@media (max-width: 767px) {
  .download-modal .modal-dialog {
    width: calc(100vw - 32px);
  }

  .download-modal .modal-content {
    border-radius: 18px;
  }

  .download-modal .modal-body {
    min-height: 0;
    padding: 52px 24px 36px;
  }

  .download-modal-buttons {
    width: 100%;
    gap: 20px;
  }

  .download-modal-buttons img {
    width: min(200px, 80vw);
  }
}

@media (max-width: 480px) {
  .download-modal .modal-dialog {
    width: calc(100vw - 24px);
  }

  .download-modal .modal-body {
    padding: 48px 18px 30px;
  }

  .download-modal-buttons img {
    width: min(160px, 60vw);
  }
}

@media (max-width: 992px) {
  :root { --page-gutter: clamp(20px, 4vw, 36px); }

  body { background: #fff; }

  .page-container { padding-top: 26px; }

  .topbar {
    margin-bottom: 36px;
    padding: 15px;
    flex-direction: column;
  }

  .main-nav {
    justify-content: center;
    gap: 14px 20px;
    font-size: 16px;
  }

  .promo-banner { min-height: 130px; }
  .promo-copy { margin-left: 20px; }
  .phone-one { width: 45px; left: 68%; right: auto; bottom: -15px; height: auto; }
  .phone-two { width: 40px; left: 75%; right: auto; bottom: -15px; height: auto; }
  .promo-food { left: 55%; }

  .site-header { padding: 10px 0; }
  .hero-hand { width: 48%; }

  .hero-products {
    top: 105px;
    right: 20px;
    grid-template-columns: repeat(2, 85px);
  }

  .hero-products span { width: 85px; height: 78px; }
  .hero-products span:nth-child(3) { margin-left: -60px; }

  .video-circle { max-width: 260px; }
  .impact-copy { right: 25px; width: 50%; }
  .download-section { padding: 0 10px 0; }

  .taco { top: 5px; right: -70px; width: 140px; }
  .rings { right: -20px; bottom: 20px; width: 140px; }
  .sneaker { bottom: -20px; left: -10px; width: 120px; }
}

@media (max-width: 1024px) {
:root { --page-gutter: clamp(20px, 4vw, 36px); }

  body { background: #fff; }

  .page-container { padding-top: 26px; }

  .topbar {
    margin-bottom: 36px;
    padding: 15px;
    flex-direction: column;
  }

  .main-nav {
    justify-content: center;
    gap: 14px 20px;
    font-size: 16px;
  }

  .promo-banner { min-height: 130px; }
  .promo-copy { margin-left: 20px; }
  .phone-one { width: 85px; right: 70px; bottom: -15px; left: 75%; height:160px}
  .phone-two { width: 80px; right: 20px; left: 80%; bottom: -15px; height:180px}
  .promo-food { left: 64%; }
  .promo-art { right: 0px; }

  .site-header { padding: 10px 0; }
  .hero-hand { width: 48%; }

  .hero-products {
    top: 105px;
    right: 20px;
    grid-template-columns: repeat(2, 85px);
  }

  .hero-products span { width: 85px; height: 78px; }
  .hero-products span:nth-child(3) { margin-left: -60px; }

  .video-circle { max-width: 260px; }
  .impact-copy { right: 25px; width: 50%; }
  .download-section { padding: 0 10px 0; }

  .taco { top: 5px; right: -70px; width: 140px; }
  .rings { right: -20px; bottom: 20px; width: 140px; }
  .sneaker { bottom: -20px; left: -10px; width: 120px; }

}

@media (max-width: 820px) {
:root { --page-gutter: clamp(20px, 4vw, 36px); }

  body { background: #fff; }

  .page-container { padding-top: 26px; }

  .topbar {
    margin-bottom: 36px;
    padding: 15px;
    flex-direction: column;
  }

  .main-nav {
    justify-content: center;
    gap: 14px 20px;
    font-size: 16px;
  }

  .promo-banner { min-height: 130px; }
  .promo-copy { margin-left: 20px; }
  .phone-one { width: 85px; right: 70px; bottom: -15px; left: 71%; height:150px}
  .phone-two { width: 80px; right: 20px; left: 76%; bottom: -15px; height:170px}
  .promo-food { left: 60%; }

  .site-header { padding: 10px 0; }
  .hero-hand { width: 48%; }

  .hero-products {
    top: 105px;
    right: 20px;
    grid-template-columns: repeat(2, 85px);
  }

  .hero-products span { width: 85px; height: 78px; }
  .hero-products span:nth-child(3) { margin-left: -60px; }

  .video-circle { max-width: 260px; }
  .impact-copy { right: 25px; width: 50%; }
  .download-section { padding: 0 10px 0; }

  .taco { top: 5px; right: -70px; width: 140px; }
  .rings { right: -20px; bottom: 20px; width: 140px; }
  .sneaker { bottom: -20px; left: -10px; width: 120px; }

}

@media (max-width: 767px) {
  :root { --page-gutter: 20px; }

  .page-container { padding-top: 20px; }

  .topbar {
    margin-bottom: 28px;
    gap: 18px;
  }

  .topbar-actions { order: 2; }

  .main-nav {
    order: 1;
    width: 100%;
    gap: 10px 16px;
  }

  .nav-divider { display: none; }

  .promo-banner {
    min-height: 112px;
    margin-bottom: 28px;
    padding: 16px;
  }
  .promo-copy { margin-left: 5px; }

  .promo-copy .line-2 { margin-left: 2em; margin-top: -10px; }
  .promo-copy .line-3 { margin-left: 2.2em; margin-top: 0px; }


  .promo-food, .promo-art { display: none; }

  .hero { margin-bottom: 42px; }
  .hero::after { inset: 10px; }

  .hero-copy {
    right: 24px;
    left: 24px;
    max-width: 72%;
  }

  .hero-hand {
    right: -70px;
    width: 64%;
  }

  .hero-products { display: none; }

  .how-section { padding: 8px 0 60px; }

  .section-title { gap: 0px; }
  .section-title span { width: 48px; }
  .section-title h2 { white-space: normal; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .video-circle {
    width: min(280px, calc(100vw - 80px));
    max-width: none;
  }

  .taco {
    top: 0;
    right: -55px;
    width: 110px;
  }

  .rings {
    right: -18px;
    bottom: 88px;
    width: 90px;
  }

  .sneaker {
    bottom: -8px;
    left: -16px;
    width: 98px;
  }

  .impact-banner {
    min-height: 260px;
  }

  .impact-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
    opacity: 1 !important;
  }

  .impact-copy {
    inset: 0;
    width: auto;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(244, 247, 244, 0.85);
    transform: none;
  }

  .download-section {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0 10px 0;
  }

  .download-copy { order: 1; }
  .download-phones { 
    order: 2; 
    align-self: center; 
    justify-content: center;
    margin-right: 0;
    margin-top: 10px;
  }

  .download-phones img { 
    width: 100%; 
    max-width: 180px; 
    height: auto; 
  }
}

@media (max-width: 480px) {
  :root { --page-gutter: 14px; }

  .page-container { padding-top: 14px; }

  .topbar { padding: 14px 10px; }
  .main-nav { font-size: 14px; }
  .round-action { width: 38px; height: 38px; flex-basis: 38px; }

  .promo-banner { min-height: 105px; }
  .promo-copy { margin-left: 0px; }
  .promo-copy .line-2 { margin-left: 1.5em; margin-top: -8px; }
  .promo-copy .line-3 { margin-left: 1.8em; margin-top: 0px; }

    .phone-one { left: 250px; height:140px}
  .phone-two {  height:150px}


  /* .hero removed fixed height */

  .hero-copy {
    right: 18px;
    left: 18px;
    max-width: 78%;
  }

  .hero-hand { right: -90px; width: 72%; }

  .section-title span { width: 30px; }
  .section-title h2 { font-size: 20px; }

  .video-circle {
    width: min(260px, calc(100vw - 58px));
    border-width: 11px;
  }

  .video-circle::before {
    inset: -11px;
    border-width: 11px;
  }

  .impact-copy { padding: 24px 18px; }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn { width: 180px; }
}

/* Responsive overrides for promo banner phones */
.promo-phone { max-width: 100%; height: auto; }
.promo-phone.phone-one {
  left: auto !important;
  right: clamp(24px, 12vw, 174px) !important;
  bottom: -22px !important;
  width: clamp(85px, 10.8vw, 160px) !important;
  height: auto !important;
  transform: rotate(-10deg) !important;
}
.promo-phone.phone-two {
  left: auto !important;
  right: clamp(12px, 8vw, 94px) !important;
  bottom: -18px !important;
  width: clamp(70px, 8vw, 119px) !important;
  height: auto !important;
}

/* Slightly reduce phones on standard 1440px desktop */
@media (min-width: 1400px) and (max-width: 1499px) {
  .promo-phone.phone-one {
    width: 130px !important;
  }
  .promo-phone.phone-two {
    width: 105px !important;
    right: 100px !important;
  }
}

/* Ensure large-screen overrides appear after base rules to take effect */
@media (min-width: 1500px) {
  .promo-phone.phone-one {
    width: clamp(120px, 10vw, 155px) !important;
  }
  .promo-phone.phone-two {
    /* increased for large desktop */
    width: clamp(105px, 7vw, 140px) !important;
    height: auto !important;
    right: 104px !important;
  }
}

@media (min-width: 1700px) {
  .promo-phone.phone-one {
    width: 130px !important;
  }
  .promo-phone.phone-two {
    /* increased size for Macbook Pro 16" */
    width: 100px !important;
    height: auto !important;
    right: 104px !important;
  }
}

