@font-face {
  font-family: "Moderniz";
  src: url("assets/fonts/Moderniz.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "Bai Jamjuree";
  src: url("assets/fonts/Bai_Jamjuree/BaiJamjuree-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Bai Jamjuree";
  src: url("assets/fonts/Bai_Jamjuree/BaiJamjuree-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Bai Jamjuree";
  src: url("assets/fonts/Bai_Jamjuree/BaiJamjuree-Bold.ttf") format("truetype");
  font-weight: 800;
}

:root {
  --yellow: #ffcf00;
  --black: #050505;
  --panel: #11110f;
  --panel-soft: #191916;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f5e8;
  --muted: rgba(248, 245, 232, 0.68);
  --ink: #090909;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Bai Jamjuree", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.brand img {
  width: 180px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(255, 207, 0, 0.14);
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.48) 46%, rgba(5, 5, 5, 0.24) 100%),
    url("assets/images/hero-run.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 207, 0, 0.2) 0%, rgba(255, 207, 0, 0.1) 26%, transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 77% 55%, rgba(255, 207, 0, 0.16), transparent 31%),
    linear-gradient(180deg, transparent 72%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.78fr);
  align-items: end;
  gap: clamp(18px, 5vw, 76px);
  min-height: 100svh;
  padding: 128px clamp(18px, 5vw, 78px) 44px;
}

.hero-copy {
  max-width: 860px;
  min-width: 0;
  padding-bottom: clamp(10px, 5vh, 50px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Moderniz", "Bai Jamjuree", Arial, sans-serif;
  letter-spacing: 0;
  transform: scaleY(1.3);
  transform-origin: left top;
}

h1 {
  max-width: 780px;
  margin-bottom: clamp(48px, 5vw, 76px);
  font-size: clamp(56px, 6.8vw, 112px);
  line-height: 0.9;
}

h2 {
  margin-bottom: clamp(72px, 8vw, 138px);
  font-size: clamp(34px, 4.8vw, 74px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 188px;
  min-height: 60px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 207, 0, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 207, 0, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(255, 207, 0, 0.2);
  font-size: 20px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #ffe05a;
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.store-button-dark {
  background: var(--black);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: none;
}

.store-button-dark:hover {
  background: #1a1a16;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 8px;
  font-family: "Moderniz", "Bai Jamjuree", Arial, sans-serif;
  font-size: 16px;
}

.store-button-dark .store-icon {
  background: var(--yellow);
  color: var(--ink);
}

.play-icon {
  font-family: Arial, sans-serif;
}

.microcopy {
  margin: 18px 0 0;
  color: rgba(248, 245, 232, 0.48);
  font-size: 14px;
  font-weight: 700;
}

.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device::before {
  position: absolute;
  inset: 20% 4% 0;
  background: rgba(255, 207, 0, 0.18);
  border-radius: 50%;
  filter: blur(42px);
  content: "";
}

.hero-device img {
  position: relative;
  width: min(560px, 45vw);
  max-height: calc(100svh - 110px);
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.72));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  min-height: 168px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--black);
}

.proof-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 25px;
}

.proof-strip span {
  display: block;
  max-width: 360px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.section {
  padding: clamp(70px, 10vw, 148px) clamp(18px, 5vw, 78px);
}

.editorial {
  background: var(--black);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
}

.editorial-grid h2 {
  max-width: 960px;
  margin: 0 0 clamp(54px, 6vw, 104px);
}

.editorial-grid p {
  align-self: end;
  padding-bottom: clamp(18px, 3vw, 48px);
}

.editorial-grid p,
.showcase-copy p,
.phone-copy p,
.visual-split p,
.yellow-cta p {
  color: var(--muted);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.scroll-video-section {
  height: 240vh;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scroll-video-frame {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100svh;
  padding: 0;
  overflow: hidden;
}

.scroll-video-frame video {
  display: none;
}

.scroll-video-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(60px, 7vw, 110px);
  padding-top: clamp(40px, 5vw, 72px);
  background: var(--panel);
}

.showcase-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.showcase-copy {
  max-width: 1160px;
  min-width: 0;
}

.showcase-copy h2 {
  color: var(--yellow);
}

.showcase-intro img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.05);
}

.showcase-copy p,
.phone-copy p,
.visual-split p,
.yellow-cta p {
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.showcase-grid article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel-soft);
}

.showcase-grid span {
  display: block;
  margin-bottom: 82px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.showcase-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(22px, 4vw, 46px) clamp(18px, 5vw, 78px);
  background: var(--yellow);
  color: var(--ink);
}

.visual-split img {
  width: 100%;
  height: min(68vw, 700px);
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.visual-split .section-kicker {
  color: var(--ink);
}

.visual-split p {
  color: rgba(9, 9, 9, 0.72);
}

.phone-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 207, 0, 0.18), transparent 26%),
    var(--black);
  overflow: hidden;
}

.phone-copy {
  max-width: 720px;
  min-width: 0;
}

.phone-copy ul {
  display: grid;
  gap: 14px;
  margin: clamp(40px, 5vw, 76px) 0 0;
  padding: 0;
  list-style: none;
}

.phone-copy li {
  position: relative;
  padding-left: 34px;
  color: rgba(248, 245, 232, 0.84);
  font-size: 18px;
  font-weight: 800;
}

.phone-copy li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.phone-pair {
  position: relative;
  min-height: 650px;
}

.phone-pair img {
  position: absolute;
  width: min(370px, 54%);
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.55));
}

.phone-pair img:first-child {
  left: 4%;
  top: 0;
}

.phone-pair img:last-child {
  right: 0;
  bottom: 0;
  width: min(430px, 62%);
}

.yellow-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.38) 48%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.52) 100%),
    url("assets/images/run-big.jpg") center / cover no-repeat;
  color: var(--text);
}

.yellow-cta > * {
  position: relative;
  z-index: 1;
}

.yellow-cta .section-kicker {
  color: var(--yellow);
}

.yellow-cta h2 {
  max-width: 1120px;
  margin-bottom: clamp(70px, 8vw, 132px);
}

.yellow-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(248, 245, 232, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #030303;
  color: rgba(255, 207, 0, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.site-footer img {
  width: 124px;
  opacity: 0.82;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.privacy-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 207, 0, 0.42);
  background: transparent;
  color: rgba(248, 245, 232, 0.58);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: var(--yellow);
}

.privacy-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(820px, calc(100svh - 32px));
  padding: 0;
  border: 1px solid rgba(255, 207, 0, 0.28);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.privacy-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 14px;
  background: linear-gradient(180deg, var(--panel) 75%, transparent);
}

.privacy-dialog-header .section-kicker {
  margin: 0;
}

.privacy-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog-content {
  padding: 10px 46px 46px;
}

.privacy-dialog-content h2 {
  margin-bottom: 64px;
  color: var(--yellow);
  font-size: clamp(34px, 6vw, 58px);
}

.privacy-dialog-content section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.privacy-dialog-content h3 {
  margin-bottom: 20px;
  font-family: "Bai Jamjuree", Arial, sans-serif;
  font-size: 20px;
  transform: none;
}

.privacy-dialog-content p,
.privacy-dialog-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.privacy-dialog-content ul {
  padding-left: 22px;
}

.privacy-dialog-content a:not(.privacy-action) {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-action {
  display: inline-flex;
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .hero-content,
  .editorial-grid,
  .product-showcase,
  .showcase-intro,
  .visual-split,
  .phone-section,
  .yellow-cta {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.54) 44%, rgba(5, 5, 5, 0.94) 100%),
      url("assets/images/hero-run.jpg") center / cover no-repeat;
  }

  .hero-content {
    align-items: center;
    padding-top: 116px;
  }

  .hero-device {
    justify-content: flex-start;
  }

  .hero-device img {
    width: min(480px, 86vw);
    max-height: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .phone-pair {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .brand img {
    width: 156px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-content {
    padding-top: 156px;
  }

  h1 {
    font-size: clamp(42px, 13.6vw, 62px);
  }

  h2 {
    font-size: clamp(30px, 8.8vw, 43px);
  }

  .hero-lede,
  .editorial-grid p,
  .showcase-copy p,
  .phone-copy p,
  .visual-split p,
  .yellow-cta p {
    font-size: 18px;
  }

  .store-button {
    width: 100%;
  }

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

  .showcase-grid article {
    min-height: 210px;
  }

  .showcase-grid span {
    margin-bottom: 48px;
  }

  .visual-split img {
    min-height: 320px;
  }

  .phone-pair {
    min-height: 420px;
  }

  .phone-pair img {
    width: 58%;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-dialog-content {
    padding: 6px 22px 32px;
  }

  .privacy-dialog-header {
    padding: 18px 20px 12px;
  }
}
