:root {
  color-scheme: light;
  --orange: #ff851f;
  --orange-deep: #f04e0b;
  --orange-soft: #fff0df;
  --ink: #171310;
  --muted: #6f6258;
  --line: rgba(34, 22, 12, 0.12);
  --paper: #fffaf5;
  --white: #fff;
  --green: #2dc46d;
  --shadow: 0 24px 80px rgba(115, 48, 0, 0.16);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 183, 94, 0.28), transparent 38rem),
    linear-gradient(180deg, #fffaf5 0%, #fff4e8 52%, #ffffff 100%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(255, 250, 245, 0.74);
  border-bottom: 1px solid rgba(255, 133, 31, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(240, 78, 11, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(23, 19, 16, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--orange-deep);
  transform: translateY(-1px);
}

.nav-links .nav-pill {
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 10px 24px rgba(240, 78, 11, 0.22);
}

.nav-links .nav-download {
  background: #171310;
  box-shadow: 0 12px 26px rgba(23, 19, 16, 0.18);
}

.nav-links .nav-pill:hover {
  color: white;
}

.menu-button {
  display: none;
  border: 0;
  background: rgba(255, 133, 31, 0.12);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 126px 20px 72px;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px -8vw auto;
  height: 64vh;
  min-height: 430px;
  background:
    linear-gradient(rgba(255, 128, 22, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 128, 22, 0.09) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, black 0%, transparent 78%);
  transform: perspective(900px) rotateX(58deg) translateY(-120px);
  transform-origin: center top;
}

.hero-inner,
.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 54px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #8a3600;
  background: rgba(255, 133, 31, 0.14);
  border: 1px solid rgba(255, 133, 31, 0.2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-top: 24px;
  font-size: clamp(3.8rem, 8vw, 8.9rem);
  line-height: 0.88;
  font-weight: 900;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #ff7b00, #ffb05f 42%, #fc3d15 85%);
  background-clip: text;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 18px 38px rgba(240, 78, 11, 0.28);
}

.app-store-button {
  padding-left: 10px;
}

.app-store-button img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(83, 35, 9, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-stage {
  min-height: 640px;
  position: relative;
  transform-style: preserve-3d;
}

.app-icon {
  position: absolute;
  top: 26px;
  right: 12%;
  width: min(36vw, 250px);
  border-radius: 32px;
  box-shadow: 0 38px 90px rgba(111, 44, 0, 0.27);
  animation: floatIcon 5s ease-in-out infinite;
}

.phone {
  width: min(360px, 88vw);
  aspect-ratio: 0.49;
  margin: 112px auto 0;
  border-radius: 48px;
  padding: 14px;
  background: #201713;
  box-shadow: 0 48px 120px rgba(64, 29, 6, 0.35);
  transform: rotate(-5deg);
  animation: phoneIn 1000ms cubic-bezier(.2, .9, .22, 1) both;
}

.screen {
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 37px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(160deg, #fff8ef 0%, #ffd7ad 44%, #ff8a24 100%);
}

.screen::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 104px;
  height: 28px;
  border-radius: 999px;
  background: #201713;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-screen::before {
  display: none;
}

.hero-screen.screenshot-media {
  border-radius: 37px;
}

.mock-map {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    linear-gradient(62deg, transparent 46%, rgba(255,255,255,.55) 47% 50%, transparent 51%),
    linear-gradient(140deg, transparent 46%, rgba(255,255,255,.42) 47% 50%, transparent 51%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 18%),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,.62), transparent 18%);
  background-size: 160px 160px, 190px 190px, 100% 100%, 100% 100%;
  animation: mapDrift 16s linear infinite;
}

.screen-content {
  position: absolute;
  inset: 72px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-card {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 38px rgba(135, 54, 0, 0.16);
  backdrop-filter: blur(18px);
}

.round-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 850;
}

.timer {
  color: white;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-deep);
  font-size: 0.86rem;
}

.street-view {
  flex: 1;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #71bfff 0 42%, #65be6a 43% 100%);
}

.street-view::before,
.street-view::after {
  content: "";
  position: absolute;
  bottom: -18%;
  width: 58%;
  height: 70%;
  background: #44413e;
  transform: skewX(-16deg);
}

.street-view::before {
  left: -15%;
}

.street-view::after {
  right: -15%;
  transform: skewX(16deg);
}

.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: #ff3438;
  transform: rotate(-45deg);
  box-shadow: 0 7px 16px rgba(140, 0, 0, 0.24);
  animation: pulsePin 1700ms ease-in-out infinite;
}

.pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  inset: 9px;
  border-radius: 50%;
  background: white;
}

.pin.one {
  left: 18%;
  bottom: 18%;
}

.pin.two {
  right: 24%;
  bottom: 34%;
  background: var(--orange);
  animation-delay: 420ms;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-row span {
  padding: 12px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #5e2500;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 133, 31, 0.16);
  box-shadow: 0 18px 48px rgba(115, 48, 0, 0.15);
  font-weight: 850;
  animation: driftChip 6s ease-in-out infinite;
}

.orbit-chip.a {
  top: 168px;
  left: 4%;
}

.orbit-chip.b {
  right: 0;
  bottom: 152px;
  animation-delay: 950ms;
}

.section {
  padding: 96px 20px;
}

.section.tight {
  padding-top: 54px;
}

.section-label {
  color: var(--orange-deep);
  font-weight: 850;
  margin-bottom: 14px;
}

.section h2 {
  max-width: 800px;
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  font-weight: 900;
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.feature-card,
.policy-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.feature-card {
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(115, 48, 0, 0.2);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font-size: 1.55rem;
  box-shadow: 0 16px 34px rgba(240, 78, 11, 0.25);
}

.feature-card h3 {
  margin-top: 22px;
  font-size: 1.42rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.feature-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #7b3100;
  background: rgba(255, 133, 31, 0.12);
  border: 1px solid rgba(255, 133, 31, 0.18);
  font-size: 0.86rem;
  font-weight: 850;
}

.cinema {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #130d09;
  color: white;
}

.cinema .section-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
}

.cinema h2 {
  color: white;
}

.cinema p {
  color: rgba(255, 255, 255, 0.72);
}

.result-showcase {
  min-height: 540px;
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(18px, 4vw, 34px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 133, 31, 0.28), transparent 220px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 133, 31, 0.12)),
    #21150e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.48);
}

.result-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 28% 34%, rgba(255, 133, 31, 0.3), transparent 150px),
    radial-gradient(circle at 72% 62%, rgba(45, 196, 109, 0.22), transparent 160px),
    #2b221c;
  background-size: 58px 58px, 58px 58px, 100% 100%, 100% 100%, 100% 100%;
}

.result-map::before,
.result-map::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-22deg);
}

.result-map::before {
  width: 70%;
  height: 82px;
  left: -10%;
  top: 28%;
}

.result-map::after {
  width: 90%;
  height: 96px;
  right: -24%;
  bottom: 23%;
}

.result-route {
  position: absolute;
  left: 28%;
  right: 27%;
  top: 47%;
  z-index: 2;
  border-top: 4px dashed rgba(255, 255, 255, 0.82);
  transform: rotate(18deg);
}

.result-pin {
  position: absolute;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.result-pin::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: white;
}

.result-pin-guess {
  left: 22%;
  top: 39%;
  background: var(--orange);
}

.result-pin-answer {
  right: 24%;
  top: 55%;
  background: var(--green);
}

.map-label {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(19, 13, 9, 0.68);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.label-guess {
  left: 13%;
  top: 30%;
}

.label-answer {
  right: 11%;
  top: 47%;
}

.result-panel {
  position: absolute;
  left: clamp(30px, 6vw, 68px);
  right: clamp(30px, 6vw, 68px);
  bottom: clamp(30px, 6vw, 58px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  color: #1f1208;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
}

.result-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-panel strong {
  display: block;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
}

.result-score {
  min-width: 130px;
  padding: 12px 16px;
  border-radius: 20px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.result-score strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.result-score span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.82;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.step {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.step span {
  color: var(--orange-deep);
  font-weight: 900;
}

.step h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.step p {
  color: var(--muted);
  line-height: 1.62;
}

.gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 133, 31, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,240,223,0.74));
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 16px 34px rgba(240, 78, 11, 0.24);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(240, 78, 11, 0.3);
}

.screenshot-gallery {
  min-height: 650px;
  position: relative;
  margin-top: 42px;
}

.screenshot-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.72fr 0.9fr;
  align-items: center;
  gap: 56px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(48px) scale(0.98);
  transition: opacity 460ms ease, transform 560ms cubic-bezier(.2,.8,.2,1);
}

.screenshot-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.screenshot-phone {
  width: min(330px, 82vw);
  aspect-ratio: 0.49;
  margin: 0 auto;
  padding: 13px;
  border-radius: 46px;
  background: #201713;
  box-shadow: 0 42px 110px rgba(82, 35, 4, 0.28);
}

.screenshot-media,
.shot-screen {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
}

.screenshot-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 133, 31, 0.16), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 70% 24%, rgba(255, 133, 31, 0.22), transparent 120px),
    #fffaf5;
}

.screenshot-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.screenshot-media.missing::before {
  content: "";
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: url("assets/AppIcon.png") center / cover no-repeat;
  box-shadow: 0 18px 40px rgba(115, 48, 0, 0.2);
}

.screenshot-media.missing::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #5e2500;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 133, 31, 0.18);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(115, 48, 0, 0.12);
}

.shot-screen {
  padding: 58px 18px 20px;
  background: linear-gradient(160deg, #fff8ef, #ffd0a0 44%, #ff7c1a);
}

.shot-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 100px;
  height: 27px;
  border-radius: 999px;
  background: #201713;
  transform: translateX(-50%);
}

.shot-topbar,
.player-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shot-topbar {
  color: #5e2500;
  font-weight: 900;
  margin-bottom: 18px;
}

.shot-card,
.player-row {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(115, 48, 0, 0.12);
  backdrop-filter: blur(16px);
}

.shot-card span,
.player-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-card {
  min-height: 104px;
  align-content: center;
  background: rgba(255, 255, 255, 0.88);
}

.shot-start {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(240, 78, 11, 0.3);
}

.explore-shot {
  padding: 0;
  background: #7dc1ff;
}

.shot-sky {
  height: 48%;
  background:
    radial-gradient(circle at 72% 25%, rgba(255,255,255,.86), transparent 44px),
    linear-gradient(180deg, #87ceff, #d7f1ff);
}

.shot-road {
  position: absolute;
  inset: 42% -24% 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.75) 49% 51%, transparent 52%),
    #4a4540;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}

.shot-compass,
.shot-map-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(58, 31, 9, 0.16);
}

.shot-compass {
  right: 20px;
  top: 62px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--orange-deep);
  font-weight: 900;
}

.shot-map-chip {
  left: 20px;
  bottom: 22px;
  padding: 12px 16px;
  color: #5e2500;
  font-weight: 900;
}

.map-shot {
  background: #fff4e8;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 133, 31, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 133, 31, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 133, 31, 0.16), transparent 160px);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.guess-pin {
  left: 34%;
  top: 38%;
  background: var(--orange);
}

.answer-pin {
  right: 25%;
  top: 56%;
  background: var(--green);
}

.map-route {
  position: absolute;
  z-index: 1;
  left: 39%;
  right: 30%;
  top: 50%;
  border-top: 4px dashed rgba(255, 133, 31, 0.76);
  transform: rotate(22deg);
}

.map-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.score-shot {
  background: linear-gradient(180deg, #fff7ed, #ffd8b0);
}

.score-ring {
  width: 168px;
  height: 168px;
  margin: 14px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-deep);
  background:
    radial-gradient(circle, white 0 52%, transparent 54%),
    conic-gradient(var(--orange) 0 78%, rgba(255, 133, 31, 0.16) 78% 100%);
  font-size: 2.2rem;
  font-weight: 950;
}

.score-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 80px;
  margin-top: 18px;
}

.score-bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
}

.score-bars i:nth-child(1) { height: 42%; }
.score-bars i:nth-child(2) { height: 68%; }
.score-bars i:nth-child(3) { height: 88%; }
.score-bars i:nth-child(4) { height: 56%; }

.multiplayer-shot {
  background: linear-gradient(180deg, #fffaf5, #ffe1bf);
}

.player-row {
  grid-template-columns: 1fr auto;
  margin-bottom: 10px;
}

.player-row.local {
  border-color: rgba(255, 133, 31, 0.42);
  box-shadow: 0 16px 36px rgba(240, 78, 11, 0.18);
}

.slide-copy span {
  color: var(--orange-deep);
  font-weight: 950;
}

.slide-copy h3 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
  font-weight: 950;
}

.slide-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 78, 11, 0.24);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.gallery-dots button.active {
  width: 34px;
  background: var(--orange-deep);
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 96px;
  padding: clamp(36px, 7vw, 78px);
  overflow: hidden;
  position: relative;
  border-radius: 36px;
  color: white;
  background: linear-gradient(135deg, #ff851f, #ff5a12 54%, #19100b);
  box-shadow: 0 34px 120px rgba(240, 78, 11, 0.28);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -110px;
  background: url("assets/AppIcon.png") center / contain no-repeat;
  opacity: 0.24;
  transform: rotate(-12deg);
}

.cta-band h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.cta-band p {
  max-width: 610px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 1.12rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy a {
  color: var(--orange-deep);
  font-weight: 800;
}

.footer-info-button {
  justify-self: start;
  width: fit-content;
  border: 1px solid rgba(255, 133, 31, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #7b3100;
  background: rgba(255, 133, 31, 0.1);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-info-button:hover,
.footer-info-button.active {
  background: rgba(255, 133, 31, 0.18);
  transform: translateY(-1px);
}

.footer-source-panel {
  max-width: 520px;
  line-height: 1.5;
}

.page-hero {
  padding: 148px 20px 64px;
}

.page-hero .section-inner {
  max-width: 920px;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 8vw, 7rem);
}

.policy-layout,
.contact-layout {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 100px;
}

.policy-card,
.contact-card {
  padding: clamp(24px, 4vw, 44px);
}

.policy-card h2,
.contact-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 36px;
}

.policy-card h2:first-child,
.contact-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.contact-tile {
  padding: 22px;
  border-radius: 22px;
  background: var(--orange-soft);
}

.contact-tile a {
  color: var(--orange-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.support-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  color: #5e2500;
  background: rgba(255, 133, 31, 0.12);
  border: 1px solid rgba(255, 133, 31, 0.2);
}

.form-frame {
  width: 100%;
  height: min(965px, 78svh);
  min-height: 680px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 133, 31, 0.18);
  background: white;
  box-shadow: 0 18px 60px rgba(115, 48, 0, 0.12);
}

.form-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(23, 19, 16, 0.72);
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 133, 31, 0.24);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 31, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes phoneIn {
  from { opacity: 0; transform: translateY(60px) rotate(-12deg) scale(.92); }
  to { opacity: 1; transform: translateY(0) rotate(-5deg) scale(1); }
}

@keyframes mapDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 320px 180px, -240px 280px, 0 0, 0 0; }
}

@keyframes pulsePin {
  0%, 100% { transform: translateY(0) rotate(-45deg) scale(1); }
  50% { transform: translateY(-8px) rotate(-45deg) scale(1.08); }
}

@keyframes driftChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

@keyframes roadRush {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 220px, 0 260px, 0 0; }
}

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

@media (max-width: 900px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .nav-pill {
    margin: 12px;
    text-align: center;
  }

  .hero-inner,
  .cinema .section-inner,
  .screenshot-slide,
  .feature-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .screenshot-gallery {
    min-height: 900px;
  }

  .screenshot-slide {
    align-content: start;
    gap: 30px;
  }

  .slide-copy {
    text-align: center;
  }

  .slide-copy h3,
  .slide-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-stage {
    min-height: 590px;
  }

  .app-icon {
    right: 4%;
    width: 150px;
  }

  .orbit-chip.b {
    bottom: 90px;
  }

  .feature-card {
    min-height: 280px;
  }

  .result-showcase {
    min-height: 430px;
  }

  .result-map {
    min-height: 340px;
  }

  .result-panel {
    align-items: stretch;
    flex-direction: column;
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .hero-stage {
    min-height: 520px;
  }

  .phone {
    margin-top: 92px;
    transform: rotate(-2deg);
  }

  .screenshot-gallery {
    min-height: 820px;
  }

  .screenshot-phone {
    width: min(300px, 82vw);
  }

  .gallery-button {
    width: 48px;
    height: 48px;
  }

  .orbit-chip {
    font-size: 0.86rem;
    padding: 10px 12px;
  }

  .section {
    padding: 72px 16px;
  }

  .feature-card,
  .policy-card,
  .contact-card {
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
