:root {
  --gold: #ffc857;
  --orange: #ff8a3d;
  --deep-orange: #ff5a1f;
  --red: #e94f37;
  --cream: #fff7df;
  --white: #ffffff;
  --dark: #1a0f0a;
  --card-dark: #2a1710;
  --line: rgba(255,255,255,.20);
  --glass: rgba(255,255,255,.13);
  --glass-dark: rgba(26,15,10,.28);
  --shadow: rgba(93, 24, 0, .28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 196, 90, .20), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 122, 26, .18), transparent 26%),
    linear-gradient(
      180deg,
      #6f2109 0%,
      #9f3410 18%,
      #d75a1d 44%,
      #ff8a3d 72%,
      #e94f37 100%
    );
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(26, 15, 10, .42) 0%,
      rgba(26, 15, 10, .28) 22%,
      rgba(26, 15, 10, .08) 55%,
      rgba(26, 15, 10, .12) 100%
    );
}

a {
  color: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.040) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .34;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(42, 23, 16, .44);
  border-bottom: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.nav-shell {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.02em;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(87,20,0,.22);
}

.brand span {
  font-size: 20px;
}

.lang-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lang-select {
  appearance: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(26,15,10,.34);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 38px 10px 16px;
  font-weight: 850;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.lang-select option {
  color: #111;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 820;
}

.main-nav a {
  text-decoration: none;
  opacity: .92;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(26,15,10,.42);
  border: 1px solid rgba(255,255,255,.20);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(26,15,10,.30);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  margin: 4px auto;
  transition: .2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,.42);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-pad {
  padding: 72px 0 92px;
}

.hero-grid {
  min-height: calc(100vh - 166px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,247,223,.92);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(26, 15, 10, .36);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(58px, 8vw, 114px);
  line-height: .86;
  letter-spacing: -.065em;
  color: #fff7df;
  text-shadow:
    0 4px 12px rgba(26, 15, 10, .50),
    0 20px 52px rgba(105, 24, 0, .34);
}

.hero-text {
  width: min(650px, 100%);
  margin-top: 24px;
  color: rgba(255, 247, 223, .94);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  font-weight: 720;
  text-shadow: 0 3px 12px rgba(26, 15, 10, .42);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 920;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #561600;
  background: #fff6c9;
  box-shadow: 0 18px 44px rgba(100, 20, 0, .22);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(26,15,10,.30);
  border: 1px solid rgba(255,255,255,.24);
}

.trust-row {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(26,15,10,.24);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 820;
  text-shadow: 0 2px 8px rgba(26, 15, 10, .34);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.cube-wrap {
  width: min(74vw, 390px);
  animation: candyFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 30px 52px rgba(89,18,0,.34));
}

.cube-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11%;
  width: 56%;
  height: 16%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(88,16,0,.36);
  filter: blur(24px);
  z-index: -1;
}

.phone-card {
  position: absolute;
  width: 235px;
  height: 330px;
  border-radius: 38px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 34px 90px rgba(88,18,0,.24), inset 0 1px 0 rgba(255,255,255,.24);
  backdrop-filter: blur(18px);
}

.phone-back {
  right: 4%;
  top: 7%;
  transform: rotate(9deg);
}

.mini-profile {
  width: 86px;
  height: 86px;
  border-radius: 30px;
  margin: 36px auto 22px;
  background: linear-gradient(135deg, #fff8c8, #ff7a2a);
}

.mini-lines {
  display: grid;
  gap: 12px;
  padding: 0 34px;
}

.mini-lines span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
}

.spark {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(95,20,0,.18);
}

.spark-one {
  left: 10%;
  top: 21%;
  transform: rotate(-12deg);
}

.spark-two {
  right: 10%;
  bottom: 23%;
  transform: rotate(16deg);
}

.spark-three {
  left: 17%;
  bottom: 13%;
  transform: rotate(8deg);
  color: #fff3ba;
}

.section-carded {
  background: linear-gradient(180deg, rgba(26,15,10,.10), rgba(26,15,10,.18));
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-head.compact {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.safety-card h2,
.download-card h2 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.055em;
}

.section-head p,
.safety-card p,
.download-card p {
  margin-top: 15px;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 630;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article,
.faq-grid details {
  padding: 24px;
  border-radius: 30px;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(95,20,0,.18), inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: blur(20px);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(26,15,10,.22);
  margin-bottom: 18px;
}

.feature-grid h3 {
  font-size: 23px;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.feature-grid p,
.faq-grid p {
  color: rgba(255,255,255,.78);
  line-height: 1.52;
  font-weight: 620;
}

.section-screens {
  overflow: hidden;
}

.screens-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  perspective: 1200px;
}

.screens-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(820px, 90vw);
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 248, 205, .24), transparent 62%),
    radial-gradient(circle, rgba(255, 90, 31, .18), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.screen-wrap {
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.screen-wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 36%,
      rgba(255,255,255,.22) 48%,
      transparent 60%,
      transparent 100%
    );
  opacity: 0;
  transform: translateX(-32%);
  transition: opacity .35s ease, transform .55s ease;
}

.screen-wrap:hover::after {
  opacity: 1;
  transform: translateX(32%);
}

.screen {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(26,15,10,.22);
  box-shadow:
    0 22px 55px rgba(80, 18, 0, .28),
    0 6px 18px rgba(26, 15, 10, .22),
    inset 0 1px 0 rgba(255,255,255,.22);
  cursor: zoom-in;
  transform: translateY(22px) scale(.96);
  opacity: 0;
  filter: saturate(1.06) contrast(1.03);
  transition:
    transform .42s cubic-bezier(.2,.8,.2,1),
    box-shadow .42s cubic-bezier(.2,.8,.2,1),
    opacity .55s ease,
    filter .42s ease;
}

.screen.screen-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.screen-wrap:nth-child(1) {
  margin-top: 30px;
}

.screen-wrap:nth-child(2) {
  margin-top: 0;
}

.screen-wrap:nth-child(3) {
  margin-top: 42px;
}

.screen-wrap:nth-child(4) {
  margin-top: 10px;
}

.screen-wrap:nth-child(5) {
  margin-top: 34px;
}

.screen-wrap:nth-child(1) .screen {
  transition-delay: .02s;
}

.screen-wrap:nth-child(2) .screen {
  transition-delay: .08s;
}

.screen-wrap:nth-child(3) .screen {
  transition-delay: .14s;
}

.screen-wrap:nth-child(4) .screen {
  transition-delay: .20s;
}

.screen-wrap:nth-child(5) .screen {
  transition-delay: .26s;
}

.screen:hover {
  transform:
    translateY(-14px)
    scale(1.045)
    rotateX(3deg)
    rotateY(-3deg);
  box-shadow:
    0 34px 82px rgba(80, 18, 0, .38),
    0 14px 28px rgba(26, 15, 10, .28),
    inset 0 1px 0 rgba(255,255,255,.26);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.screen:active {
  transform: translateY(-6px) scale(1.015);
}

.localized-screen {
  cursor: zoom-in;
}

.safety-card,
.download-card {
  border-radius: 42px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(26,15,10,.26);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 28px 90px rgba(82,15,0,.22), inset 0 1px 0 rgba(255,255,255,.20);
  backdrop-filter: blur(20px);
}

.safety-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 30px;
  align-items: center;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.safety-list span {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 850;
}

.faq-grid {
  display: grid;
  gap: 14px;
  width: min(850px,100%);
  margin: 0 auto;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 920;
}

.faq-grid p {
  margin-top: 12px;
}

.download-card {
  text-align: center;
  width: min(820px,100%);
  margin: 0 auto;
}

.download-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
}

.store-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-link {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.store-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 18px rgba(78, 18, 0, .24));
}

.store-link:focus-visible {
  outline: 3px solid #fff4ad;
  outline-offset: 5px;
}

.store-link.disabled {
  pointer-events: none;
  cursor: default;
}

.store-badge {
  display: block;
  height: 48px;
  width: auto;
}

.store-availability-modal {
  width: min(460px, calc(100% - 30px));
  padding: 0;
  color: #fff8df;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(71, 15, 0, .42);
}

.store-availability-modal::backdrop {
  background: rgba(36, 12, 4, .68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.store-availability-card {
  position: relative;
  padding: 38px 30px 34px;
  text-align: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 241, 170, .24), transparent 45%),
    linear-gradient(145deg, #ff8b30, #e94f37 62%, #a92719);
}

.store-availability-card > img {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(83, 17, 0, .30);
}

.store-availability-card h2 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -.045em;
}

.store-availability-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.55;
}

.store-availability-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff8df;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(70, 17, 4, .22);
  font-size: 26px;
  cursor: pointer;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(26,15,10,.20);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 750;
}

.localized-screen {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 6, 0.78);
  backdrop-filter: blur(14px);
}

.image-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 460px);
  max-height: 92vh;
  display: flex;
  justify-content: center;
  animation: lightboxPop 0.18s ease-out;
}

.image-lightbox-content img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2b170d;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.image-lightbox-close:hover {
  transform: scale(1.05);
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes candyFloat {
  0%,100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }

  50% {
    transform: translateY(-15px) rotate(1deg) scale(1.025);
  }
}

@keyframes lightboxPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .lang-center {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    z-index: 60;
    width: min(360px, calc(100vw - 28px));
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(42,23,16,.94);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 28px 90px rgba(0,0,0,.32);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-card {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 20% 4%, rgba(255, 180, 80, .16), transparent 30%),
      linear-gradient(
        180deg,
        #55200f 0%,
        #823011 24%,
        #c94f18 58%,
        #e94f37 100%
      );
  }

  body::before {
    background:
      linear-gradient(
        180deg,
        rgba(26, 15, 10, .54) 0%,
        rgba(26, 15, 10, .34) 28%,
        rgba(26, 15, 10, .10) 70%,
        rgba(26, 15, 10, .14) 100%
      );
  }

  .container {
    width: min(100% - 26px, 1120px);
  }

  .nav-shell {
    height: 68px;
  }

  .brand span {
    display: none;
  }

  .lang-select {
    max-width: 172px;
    padding: 9px 14px;
    background: rgba(26,15,10,.42);
  }

  .main-nav {
    top: 68px;
  }

  .section {
    padding: 66px 0;
  }

  .section-pad {
    padding: 44px 0 66px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
    text-shadow:
      0 4px 14px rgba(26, 15, 10, .62),
      0 20px 48px rgba(80, 18, 0, .42);
  }

  .hero-text {
    font-size: 17px;
    color: rgba(255, 247, 223, .96);
    text-shadow: 0 3px 12px rgba(26, 15, 10, .55);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

.screens-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.screens-grid::before {
  width: 92vw;
  height: 180px;
  filter: blur(24px);
}

.screen {
  border-radius: 18px;
  box-shadow:
    0 16px 38px rgba(80, 18, 0, .30),
    inset 0 1px 0 rgba(255,255,255,.20);
}

.screen-wrap {
  border-radius: 20px;
}

.screen-wrap::after {
  display: none;
}

.screen:hover {
  transform: translateY(-6px) scale(1.025);
}

.screen-wrap:nth-child(1) {
  margin-top: 16px;
}

.screen-wrap:nth-child(2) {
  margin-top: 0;
}

.screen-wrap:nth-child(3) {
  margin-top: 24px;
}

.screen-wrap:nth-child(4) {
  margin-top: 8px;
}

.screen-wrap:nth-child(5) {
  margin-top: 20px;
}

  .footer-grid {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
