:root {
  --ink: #17322a;
  --muted: #64756f;
  --green: #0d5d4c;
  --green-2: #147764;
  --green-3: #dbeee7;
  --cream: #f7f0e4;
  --paper: #fffdf9;
  --gold: #e3b94f;
  --line: #dfd8ca;
  --danger: #9b3e2e;
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
  --shadow: 0 24px 70px rgba(24, 59, 49, .12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Cairo, system-ui, sans-serif;
  line-height: 1.75;
  max-width: 100%;
  overflow-x: clip;
}
body.dark {
  --ink: #f3efe7;
  --muted: #afc0ba;
  --cream: #071d18;
  --paper: #102a23;
  --green-3: #183f35;
  --line: #29493f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}
.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}
body.dark .eyebrow { color: #77c5ad; }
.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.18;
  letter-spacing: -.045em;
}
.section-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 13px 0;
  transition: padding .2s ease;
}
.nav-wrap.scrolled { padding: 8px 0; }
.nav {
  min-height: 68px;
  padding: 8px 10px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 22px;
  box-shadow: 0 10px 38px rgba(23, 50, 42, .08);
  backdrop-filter: blur(18px);
}
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; font-size: 19px; font-weight: 900; white-space: nowrap; }
.brand img { width: 48px; height: 48px; border-radius: 15px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 13px; font-weight: 800; }
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.icon-btn, .menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.icon-btn svg, .menu-btn svg { width: 20px; height: 20px; }
.menu-btn { display: none; }
.nav-cta {
  padding: 11px 18px;
  color: #fff;
  background: var(--green);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 18px;
  background: rgba(5, 27, 22, .42);
  backdrop-filter: blur(8px);
}
.mobile-nav.open { display: grid; place-items: start end; }
.mobile-panel {
  width: min(350px, 100%);
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-links { display: grid; gap: 8px; }
.mobile-links a { padding: 12px 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 13px; font-weight: 800; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 148px 0 86px;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 12% 18%, rgba(227, 185, 79, .17), transparent 23%),
    radial-gradient(circle at 88% 68%, rgba(20, 119, 100, .14), transparent 27%);
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); align-items: center; gap: clamp(42px, 6vw, 92px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy-intro > * { opacity: 0; animation: hero-copy-in .72s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-copy-intro > :nth-child(1) { animation-delay: .05s; }
.hero-copy-intro > :nth-child(2) { animation-delay: .12s; }
.hero-copy-intro > :nth-child(3) { animation-delay: .19s; }
.hero-copy-intro > :nth-child(4) { animation-delay: .26s; }
.hero-copy-intro > :nth-child(5) { animation-delay: .33s; }
.hero-copy-intro > :nth-child(6) { animation-delay: .4s; }
.hero-copy-intro > :nth-child(7) { animation-delay: .47s; }
.hero-edition {
  margin-bottom: 42px;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  max-width: 610px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero-copy h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.03;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-copy h1 .marked {
  position: relative;
  display: inline-block;
  color: var(--green);
}
.hero-copy h1 .marked::after {
  position: absolute;
  right: 1%;
  bottom: 0;
  left: 1%;
  z-index: -1;
  height: 11px;
  content: "";
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  animation: underline-in .8s .75s cubic-bezier(.2,.8,.2,1) forwards;
  opacity: .7;
}
.hero-copy > p { max-width: 610px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-button {
  min-width: 190px;
  min-height: 58px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: #12241e;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(16, 40, 32, .18);
  transition: transform .18s ease;
}
.store-button:hover { transform: translateY(-3px); }
.store-button svg { width: 28px; height: 28px; flex: 0 0 auto; }
.store-button small, .store-button strong { display: block; line-height: 1.3; text-align: start; }
.store-button small { font-size: 9px; opacity: .68; }
.store-button strong { font-size: 14px; }
.hero-note { margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 12px; font-weight: 800; }
.hero-note span { display: flex; align-items: center; gap: 7px; }
.hero-note i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.hero-scroll {
  width: max-content;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.hero-scroll i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}
.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--green);
  transform: translateX(100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.hero-art {
  position: relative;
  min-height: 660px;
  transform: perspective(1100px) rotateX(var(--hero-rx, 0deg)) rotateY(var(--hero-ry, 0deg));
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
}
.hero-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, .55fr);
  gap: 12px;
  transform: translateY(var(--hero-shift, 0px));
  transition: transform .2s linear;
  clip-path: inset(0 0 100% 0 round 28px);
  animation: gallery-reveal .95s .12s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #d9d2c5;
}
.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  animation: hero-image-in 1.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-gallery-main { border-radius: 220px 28px 28px 28px; }
.hero-gallery-main img { object-position: 53% center; }
.hero-gallery-stack { display: grid; grid-template-rows: 1fr 1.08fr; gap: 12px; }
.hero-gallery-stack figure:first-child { border-radius: 24px 110px 24px 24px; }
.hero-gallery-stack figure:last-child { border-radius: 24px 24px 110px 24px; }
.hero-photo-caption {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(5, 31, 24, .72);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px 18px 18px 18px;
  backdrop-filter: blur(14px);
}
.hero-photo-caption span, .hero-photo-caption strong { display: block; }
.hero-photo-caption span { margin-bottom: 2px; font-size: 10px; opacity: .72; }
.hero-photo-caption strong { font-size: 14px; }
.live-deal {
  position: absolute;
  inset-inline-end: -28px;
  top: 72px;
  width: min(330px, 55%);
  padding: 17px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 20px 6px 20px 20px;
  box-shadow: 0 28px 65px rgba(10, 64, 52, .18);
  backdrop-filter: blur(18px);
  animation: deal-float 5.5s ease-in-out infinite;
}
.live-deal-top, .live-deal-body { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.live-deal-top { color: var(--muted); font-size: 10px; font-weight: 800; }
.live-deal-top span { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.live-deal-top i { width: 7px; height: 7px; background: #2b9a63; border-radius: 50%; box-shadow: 0 0 0 5px rgba(43,154,99,.12); }
.live-deal-body { margin-top: 15px; }
.live-deal-body strong, .live-deal-body small { display: block; }
.live-deal-body strong { font-size: 17px; }
.live-deal-body small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.live-deal-body b { flex: 0 0 auto; color: var(--green); font-size: 15px; }
.live-deal-progress { height: 3px; margin-top: 15px; overflow: hidden; background: var(--green-3); }
.live-deal-progress i { width: 64%; height: 100%; display: block; background: var(--gold); animation: deal-progress 3.8s ease-in-out infinite alternate; }

@keyframes underline-in { to { transform: scaleX(1); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes gallery-reveal { to { clip-path: inset(0 0 0 0 round 28px); } }
@keyframes hero-image-in { to { transform: scale(1); } }
@keyframes scroll-line { 0% { transform: translateX(100%); } 45%, 55% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes deal-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes deal-progress { from { width: 42%; } to { width: 78%; } }

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Full-bleed opening scene. The video carries the story; the interface stays quiet. */
.hero-video {
  position: relative;
  min-height: min(940px, 100svh);
  padding: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #073e35;
}
.hero-video::before, .hero-video::after { display: none; }
.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 26, 21, .34) 0%, rgba(2, 26, 21, .06) 30%, rgba(2, 26, 21, .84) 100%),
    linear-gradient(90deg, rgba(2, 26, 21, .58), transparent 60%);
}
.hero-video-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  padding: 190px 0 clamp(64px, 8vh, 96px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}
.hero-video-copy { max-width: 940px; }
.hero-video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
}
.hero-video-kicker::before { width: 38px; height: 2px; content: ""; background: var(--gold); }
.hero-video-copy h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 8px 38px rgba(0, 25, 19, .26);
}
.hero-video-copy h1 span { color: #f2cd67; }
.hero-video-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}
.hero-video-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-primary, .hero-secondary {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}
.hero-primary { color: var(--green); background: #fff; }
.hero-secondary { color: #fff; background: rgba(4, 43, 34, .32); backdrop-filter: blur(12px); }
.hero-primary:hover, .hero-secondary:hover { transform: translateY(-3px); }
.hero-primary:active, .hero-secondary:active { transform: translateY(1px) scale(.985); }
.hero-video-scroll {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 800;
}
.hero-video-scroll i { position: relative; width: 1px; height: 54px; overflow: hidden; background: rgba(255, 255, 255, .24); }
.hero-video-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateY(-100%);
  animation: hero-scroll-line 2.2s ease-in-out infinite;
}
@keyframes hero-scroll-line { 50%, 60% { transform: translateY(0); } 100% { transform: translateY(100%); } }

/* Desktop uses the portrait film as a framed editorial scene instead of cropping it. */
@media (min-width: 981px) {
  .hero-video {
    min-height: min(900px, 100svh);
    background:
      radial-gradient(circle at 16% 22%, rgba(242, 205, 103, .14), transparent 25%),
      radial-gradient(circle at 78% 82%, rgba(61, 148, 118, .22), transparent 30%),
      #073e35;
  }
  .hero-video-media {
    inset: auto auto clamp(44px, 7vh, 72px) clamp(110px, 15vw, 240px);
    width: auto;
    height: min(72vh, 700px);
    max-height: calc(100% - 150px);
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: clamp(24px, 2.4vw, 38px);
    box-shadow: 0 32px 80px rgba(0, 22, 17, .42);
  }
  .hero-video-shade {
    background:
      linear-gradient(90deg, rgba(3, 37, 30, .08) 0 43%, rgba(3, 37, 30, .54) 68%, rgba(3, 37, 30, .8) 100%),
      linear-gradient(180deg, rgba(2, 26, 21, .2), transparent 34%, rgba(2, 26, 21, .34));
    pointer-events: none;
  }
  .hero-video-content {
    min-height: min(900px, 100svh);
    padding-block: 170px 72px;
    align-items: center;
  }
  .hero-video-copy {
    width: min(54%, 700px);
    margin-inline-start: 0;
    margin-inline-end: auto;
  }
  .hero-video-copy h1 {
    max-width: 700px;
    font-size: clamp(52px, 5.1vw, 76px);
    line-height: 1.06;
    letter-spacing: -.045em;
  }
  .hero-video-scroll { display: none; }
}

.nav-wrap:not(.scrolled) .nav {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.nav-wrap:not(.scrolled) .nav-links { color: rgba(255, 255, 255, .82); }
.nav-wrap:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav-wrap:not(.scrolled) .icon-btn,
.nav-wrap:not(.scrolled) .menu-btn { color: #fff; border-color: rgba(255, 255, 255, .35); }
.nav-wrap:not(.scrolled) .nav-cta { color: var(--green); background: #fff; }

/* The second scene mirrors the clarity of the reference without copying it. */
.why-loqta {
  position: relative;
  padding: 118px 0 72px;
  overflow: hidden;
  background: var(--paper);
}
.why-head { text-align: center; }
.why-head > span { color: var(--green); font-size: 13px; font-weight: 900; }
.why-head h2 {
  max-width: 900px;
  margin: 8px auto 0;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.08;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.why-stage {
  max-width: 1120px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 480px) 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 24px clamp(24px, 4vw, 64px);
}
.why-image {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  aspect-ratio: .72;
  margin: 0;
  overflow: hidden;
  background: #0b5547;
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 30px 80px rgba(13, 93, 76, .16);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.why-benefit { max-width: 260px; padding-top: 18px; border-top: 1px solid var(--line); }
.why-benefit b { color: var(--gold); font-size: 11px; letter-spacing: .08em; }
.why-benefit h3 { margin: 5px 0 4px; color: var(--green); font-size: 25px; }
.why-benefit p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.benefit-one, .benefit-three { justify-self: end; text-align: end; }
.benefit-two, .benefit-four { grid-column: 3; justify-self: start; }
.benefit-one, .benefit-two { grid-row: 1; align-self: end; }
.benefit-three, .benefit-four { grid-row: 2; align-self: start; }

.why-loqta + .category-strip { color: #fff; background: var(--green); border: 0; }
.why-loqta + .category-strip .category-track { padding: 15px 0; }
.why-loqta + .category-strip .category-group { gap: 28px; padding-inline-end: 28px; }
.why-loqta + .category-strip .category-track span {
  padding: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: .01em;
}
.why-loqta + .category-strip .category-track span::after { margin-inline-start: 28px; content: "•"; color: #f2cd67; }

.category-strip { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.category-track {
  width: max-content;
  padding: 16px 0;
  display: flex;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.category-group {
  display: flex;
  flex: none;
  gap: 12px;
  padding-inline-end: 12px;
}
.category-track span {
  padding: 9px 16px;
  color: var(--green);
  background: var(--green-3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(50%); } }

.story-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  position: relative;
  min-height: 525px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step:nth-child(2) { margin-top: 42px; }
.step-media { height: 300px; overflow: hidden; border-radius: 20px; }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.step:hover .step-media img { transform: scale(1.035); }
.step-number {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-inline-start: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 5px solid var(--paper);
  border-radius: 17px;
  font-size: 17px;
  font-weight: 900;
  transform: rotate(-4deg);
}
.step h3 { margin: 16px 8px 4px; font-size: 23px; line-height: 1.35; }
.step p { margin: 8px; color: var(--muted); font-size: 14px; }

.bento {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 16px;
}
.bento-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bento-card.big { grid-row: 1 / 3; min-height: 620px; background: var(--green); color: #fff; }
.bento-card h3 { max-width: 470px; margin: 0; font-size: clamp(26px, 3.3vw, 44px); line-height: 1.25; }
.bento-card p { max-width: 490px; margin: 14px 0 0; color: var(--muted); }
.bento-card.big p { color: rgba(255, 255, 255, .72); }
.saving-orbit {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  aspect-ratio: 1.3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}
.saving-orbit::before, .saving-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}
.saving-orbit::before { inset: 14%; }
.saving-orbit::after { inset: 28%; }
.saving-number { position: relative; z-index: 2; text-align: center; }
.saving-number strong { display: block; font-size: clamp(54px, 8vw, 104px); line-height: 1; color: var(--gold); }
.saving-number span { font-weight: 800; }
.mini-illustration {
  position: absolute;
  left: 24px;
  bottom: 18px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50% 50% 18px 50%;
}
.mini-illustration img { width: 100%; height: 100%; object-fit: cover; }
.bento-list { margin: 22px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.bento-list li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 800; }
.bento-list li::before { width: 8px; height: 8px; content: ""; background: var(--gold); border-radius: 50%; }

.merchant-section { padding: 36px 0; }
.merchant-panel {
  position: relative;
  padding: clamp(32px, 6vw, 76px);
  overflow: hidden;
  color: #fff;
  background: #0a4d40;
  border-radius: var(--radius-lg);
}
.merchant-panel::after {
  position: absolute;
  inset: auto -12% -43% auto;
  width: 580px;
  height: 580px;
  content: "";
  border: 90px solid rgba(227, 185, 79, .14);
  border-radius: 50%;
}
.merchant-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.merchant-panel .eyebrow { color: var(--gold); }
.merchant-panel h2 { margin: 0; font-size: clamp(36px, 5vw, 64px); line-height: 1.18; letter-spacing: -.04em; }
.merchant-panel p { color: rgba(255, 255, 255, .72); }
.merchant-cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--green);
  background: var(--gold);
  border-radius: 14px;
  font-weight: 900;
}
.merchant-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-content: center; }
.merchant-point {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
}
.merchant-point strong { display: block; color: var(--gold); font-size: 26px; }
.merchant-point span { color: rgba(255, 255, 255, .76); font-size: 13px; }

.partners { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.partner-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.partner-type {
  position: relative;
  min-height: 176px;
  padding: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  isolation: isolate;
}
.partner-type::after {
  position: absolute;
  inset: 30% 0 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 27, 21, .9));
}
.partner-type img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.partner-type:hover img { transform: scale(1.045); }
.partner-type span {
  padding: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.favorite-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 20px;
}
.favorite-card .mini-illustration {
  position: static;
  width: 150px;
  height: 150px;
}
.favorite-card p { margin-bottom: 0; }

.closing {
  position: relative;
  padding: 78px 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
#download-app { position: absolute; top: -90px; }
.closing-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.closing h2 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: 1.2; letter-spacing: -.04em; }
.closing p { margin: 12px 0 0; color: var(--muted); }
.qr-card { width: 210px; padding: 16px; text-align: center; background: var(--cream); border: 1px solid var(--line); border-radius: 24px; }
.qr-card img { width: 100%; border-radius: 15px; }
.qr-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 800; }

footer { padding: 50px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.footer-brand p { max-width: 420px; color: var(--muted); font-size: 13px; }
.footer-column strong { display: block; margin-bottom: 12px; }
.footer-column a { display: block; margin: 8px 0; color: var(--muted); font-size: 13px; font-weight: 700; }
.footer-bottom { margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); border-top: 1px solid var(--line); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: grid; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid, .merchant-grid, .partners { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy { text-align: center; }
  .hero-edition { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-scroll { margin-inline: auto; }
  .hero-art { width: min(620px, 100%); margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; display: grid; grid-template-columns: 42% 1fr; column-gap: 10px; }
  .step:nth-child(2) { margin-top: 0; }
  .step-media { grid-row: 1 / 4; height: 320px; }
  .step-number { align-self: end; margin-top: 12px; }
  .merchant-grid { gap: 38px; }
  .hero-video { min-height: min(880px, 100svh); }
  .hero-video-content { padding-top: 160px; }
  .why-stage { grid-template-columns: 1fr minmax(310px, 420px) 1fr; gap: 20px 28px; }
}

@media (max-width: 720px) {
  :root { --shell: min(1180px, calc(100% - 24px)); }
  .section { padding: 78px 0; }
  .nav-wrap { padding: 8px 0; }
  .nav { min-height: 62px; border-radius: 18px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 16px; }
  .hero { padding-top: 118px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-copy > p { font-size: 15px; }
  .store-button { min-width: 0; flex: 1 1 165px; }
  .hero-art { min-height: 510px; }
  .hero-edition { margin-bottom: 28px; }
  .hero-gallery { grid-template-columns: minmax(0, 1.25fr) minmax(112px, .75fr); gap: 8px; }
  .hero-gallery-stack { gap: 8px; }
  .hero-gallery-main { border-radius: 120px 20px 20px 20px; }
  .hero-gallery-stack figure:first-child { border-radius: 18px 70px 18px 18px; }
  .hero-gallery-stack figure:last-child { border-radius: 18px 18px 70px 18px; }
  .live-deal { inset-inline-end: -4px; top: 38px; width: min(270px, 68%); }
  .hero-photo-caption { inset-inline-start: 12px; bottom: 12px; }
  .story-head { display: block; }
  .steps { gap: 12px; }
  .step { display: block; padding: 13px; }
  .step-media { height: 260px; }
  .step-number { margin-top: -25px; }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card.big { grid-row: auto; min-height: 540px; }
  .bento-card { padding: 24px; }
  .favorite-card { grid-template-columns: minmax(0, 1fr) 106px; gap: 12px; }
  .favorite-card .mini-illustration { width: 106px; height: 106px; }
  .partner-type { min-height: 145px; }
  .partner-type span { padding: 13px; font-size: 12px; }
  .merchant-panel { border-radius: 28px; }
  .merchant-points { grid-template-columns: 1fr; }
  .merchant-point { min-height: 120px; }
  .closing-grid, .footer-grid { grid-template-columns: 1fr; }
  .qr-card { width: 100%; display: grid; grid-template-columns: 120px 1fr; align-items: center; text-align: start; }
  .footer-bottom { display: block; }
  .hero-video { min-height: 780px; padding: 0; }
  .hero-video-media { object-position: center center; }
  .hero-video-shade {
    background: linear-gradient(180deg, rgba(2, 26, 21, .34), rgba(2, 26, 21, .12) 32%, rgba(2, 26, 21, .9) 100%);
  }
  .hero-video-content { padding: 150px 0 54px; display: block; }
  .hero-video-copy { text-align: start; }
  .hero-video-copy h1 { font-size: clamp(47px, 14vw, 70px); }
  .hero-video-copy p { max-width: 540px; font-size: 14px; }
  .hero-video-scroll { display: none; }
  .why-loqta { padding: 84px 0 58px; }
  .why-head h2 { font-size: clamp(38px, 10vw, 58px); }
  .why-stage { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 26px 18px; }
  .why-image { grid-column: 1 / 3; grid-row: 1; width: min(430px, 100%); justify-self: center; border-radius: 180px 180px 24px 24px; }
  .why-benefit { max-width: none; justify-self: stretch; text-align: start; }
  .benefit-one { grid-column: 1; grid-row: 2; }
  .benefit-two { grid-column: 2; grid-row: 2; }
  .benefit-three { grid-column: 1; grid-row: 3; }
  .benefit-four { grid-column: 2; grid-row: 3; }
}

@media (max-width: 480px) {
  .hero-art { min-height: 455px; }
  .hero-gallery { grid-template-columns: minmax(0, 1fr) 104px; }
  .hero-gallery-main { border-radius: 92px 16px 16px 16px; }
  .live-deal { top: 24px; width: min(250px, 76%); padding: 13px; }
  .live-deal-body strong { font-size: 14px; }
  .live-deal-body b { font-size: 12px; }
  .hero-photo-caption { max-width: 210px; }
  .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .store-button { width: 100%; justify-content: center; }
  .hero-video { min-height: 740px; }
  .hero-video-actions { display: grid; grid-template-columns: 1fr; }
  .hero-primary, .hero-secondary { width: 100%; }
  .why-stage { grid-template-columns: 1fr; }
  .why-image, .why-benefit { grid-column: 1; grid-row: auto; }
  .why-image { aspect-ratio: .76; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy-intro > * { opacity: 1; }
  .hero-gallery { clip-path: none; }
  .hero-copy h1 .marked::after { transform: scaleX(1); }
}
