:root {
  --bg: #041326;
  --bg-soft: #08213b;
  --panel: #0e2a45;
  --line: rgba(120, 169, 214, 0.24);
  --text: #e9f4ff;
  --muted: #95b4d1;
  --orange: #ff7d21;
  --orange-soft: #ffa257;
  --gold: #efe7b8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  overflow-x: hidden;
}

body {
  position: relative;
}

.bg-orb {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(84px);
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  top: -160px;
  left: -130px;
  background: radial-gradient(circle, rgba(255, 125, 33, 0.2), transparent 72%);
}

.orb-b {
  right: -180px;
  top: 140px;
  background: radial-gradient(circle, rgba(22, 109, 204, 0.24), transparent 72%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 20%, #000 20%, transparent 82%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(123, 170, 214, 0.18);
  background: linear-gradient(180deg, rgba(4, 14, 30, 0.98), rgba(4, 14, 30, 0.86));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(255, 125, 33, 0.35);
  background: var(--panel);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Slight zoom to better center the shield logo */
}

.logo span:last-child {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.79rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}

.menu a:hover {
  color: var(--orange-soft);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(130deg, var(--orange), #ff9f52);
  border-radius: 0;
  padding: 0.86rem 1.35rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  box-shadow: 0 12px 28px rgba(255, 125, 33, 0.28);
}

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

.btn-mini {
  padding: 0.55rem 0.95rem;
  font-size: 0.74rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
  color: var(--gold);
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3.2rem 0 2rem;
}

.eyebrow {
  margin: 0;
  color: var(--orange-soft);
  font-size: 0.74rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-metrics {
  margin-top: 1rem;
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-metrics article {
  background: linear-gradient(180deg, rgba(13, 37, 61, 0.66), rgba(9, 24, 40, 0.92));
  border: 1px solid rgba(130, 177, 219, 0.22);
  border-radius: 12px;
  padding: 0.8rem 0.65rem;
}

.hero-metrics b {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  color: var(--orange-soft);
  letter-spacing: 0.08em;
}

.hero-metrics span {
  font-size: 0.72rem;
  color: #9bb9d5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scene {
  margin-top: 1.7rem;
  border: 1px solid rgba(131, 178, 220, 0.24);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(8, 27, 47, 0.96), rgba(6, 18, 31, 0.97));
  padding: clamp(1rem, 2vw, 1.8rem);
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 1.2rem;
  align-items: center;
}

.scene.reverse {
  grid-template-columns: 0.88fr 1fr;
}

.scene-tag {
  margin: 0;
  color: var(--orange-soft);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scene-copy h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.scene-copy h2 span {
  color: var(--orange);
}

.scene-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.scene-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.scene-copy li {
  color: #bdd6ee;
}

.device {
  width: min(320px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 125, 33, 0.42);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(19, 46, 70, 0.95), rgba(15, 36, 56, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 125, 33, 0.12), 0 25px 55px rgba(0, 0, 0, 0.46);
  padding: 1rem 0.9rem 0.9rem;
  position: relative;
}

.notch {
  width: 68px;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: rgba(2, 12, 22, 0.8);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.device-title {
  margin: 0.55rem 0 0.7rem;
  color: var(--orange-soft);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tile-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.tile-row div {
  background: rgba(23, 51, 76, 0.9);
  border: 1px solid rgba(131, 177, 220, 0.24);
  border-radius: 10px;
  padding: 0.55rem;
}

.tile-row span {
  display: block;
  color: #96b4d0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.62rem;
}

.tile-row b {
  display: block;
  color: var(--orange-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
}

.list {
  margin: 0.65rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.list li {
  background: rgba(12, 34, 53, 0.95);
  border: 1px solid rgba(126, 173, 216, 0.22);
  border-radius: 8px;
  padding: 0.44rem 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
}

.list b {
  color: var(--orange-soft);
}

.device button {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: #101015;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.62rem 0.7rem;
}

.pitch {
  margin: 0.2rem 0 0.65rem;
  height: 150px;
  border-radius: 10px;
  border: 1px solid rgba(157, 208, 150, 0.55);
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)) center/1px 100% no-repeat,
    linear-gradient(180deg, #2f8f45, #2b8440);
  position: relative;
}

.pitch i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
}

.pitch .red {
  background: #ff6558;
}

.pitch .blue {
  background: #4da3ff;
}

.pitch .r-gk {
  top: 45%;
  left: 10%;
}

.pitch .r-cb1 {
  top: 25%;
  left: 25%;
}

.pitch .r-cb2 {
  top: 65%;
  left: 25%;
}

.pitch .r-lm {
  top: 15%;
  left: 42%;
}

.pitch .r-cm {
  top: 45%;
  left: 35%;
}

.pitch .r-rm {
  top: 75%;
  left: 42%;
}

.pitch .r-st1 {
  top: 45%;
  left: 48%;
}

.pitch .r-st2 {
  top: 45%;
  left: 48%;
}

.pitch .b-gk {
  top: 45%;
  left: 90%;
}

.pitch .b-cb1 {
  top: 65%;
  left: 75%;
}

.pitch .b-cb2 {
  top: 25%;
  left: 75%;
}

.pitch .b-lm {
  top: 75%;
  left: 58%;
}

.pitch .b-cm {
  top: 45%;
  left: 65%;
}

.pitch .b-rm {
  top: 15%;
  left: 58%;
}

.pitch .b-st1 {
  top: 45%;
  left: 52%;
}

.pitch .b-st2 {
  top: 45%;
  left: 52%;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.score-strip span {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(136, 182, 223, 0.24);
  border-radius: 8px;
  padding: 0.45rem;
  color: #b9d2ea;
}

.social {
  margin-top: 1.6rem;
  border: 1px solid rgba(131, 178, 220, 0.24);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(8, 25, 43, 0.95), rgba(6, 18, 31, 0.97));
  padding: clamp(1rem, 2vw, 1.6rem);
}

.social header p {
  margin: 0;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.social header h2 {
  margin: 0.45rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.3rem);
  line-height: 1.05;
}

.social-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.social-card {
  border: 1px solid rgba(132, 178, 221, 0.24);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(8, 24, 40, 0.75);
}

.social-card h3 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
}

.social-card p {
  margin: 0.4rem 0;
  color: #bcd6ee;
  line-height: 1.6;
}

.social-card small {
  color: #98b7d3;
}

.pro-glow {
  box-shadow: inset 0 0 0 1px rgba(255, 125, 33, 0.2);
}

.freepro {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.freepro article {
  border: 1px solid rgba(132, 178, 221, 0.23);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(8, 24, 41, 0.95), rgba(6, 18, 31, 0.97));
  padding: 0.95rem;
}

.freepro p {
  margin: 0;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.freepro h3 {
  margin: 0.35rem 0 0.7rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
}

.freepro ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.48rem;
  color: #bad4ed;
}

.release {
  margin-top: 1.5rem;
  border: 1px solid rgba(131, 178, 220, 0.24);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(8, 25, 43, 0.95), rgba(6, 18, 31, 0.97));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.release h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.release p {
  margin: 0.65rem auto 0;
  max-width: 80ch;
  color: var(--muted);
  line-height: 1.75;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.store-card {
  background: linear-gradient(180deg, rgba(16, 38, 59, 0.4), rgba(11, 26, 43, 0.7));
  border: 1px solid rgba(132, 178, 221, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 125, 33, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.store-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(19, 46, 70, 0.6), rgba(13, 33, 53, 0.8));
}

.store-card:hover::before {
  opacity: 1;
}

.store-card.android-card:hover {
  border-color: rgba(61, 220, 132, 0.4);
  box-shadow: 0 16px 40px rgba(61, 220, 132, 0.12), 0 0 20px rgba(61, 220, 132, 0.05) inset;
}

.store-card.apple-card:hover {
  border-color: rgba(163, 170, 174, 0.4);
  box-shadow: 0 16px 40px rgba(163, 170, 174, 0.12), 0 0 20px rgba(163, 170, 174, 0.05) inset;
}

.store-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.android-card .store-icon svg {
  color: #3DDC84;
  width: 32px;
}

.apple-card .store-icon svg {
  color: #F5F5F7;
  width: 34px;
}

.store-card h3 {
  margin: 0 0 0.5rem 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  color: white;
}

.store-card .status {
  margin: 0 0 0.8rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
}

.android-status {
  background: rgba(61, 220, 132, 0.15);
  color: #3DDC84;
}

.apple-status {
  background: rgba(163, 170, 174, 0.15);
  color: #d1d5d8;
}

.store-card small {
  color: #98b7d3;
  line-height: 1.6;
  font-size: 0.85rem;
}

.final-cta {
  position: relative;
  margin: 1.7rem 0 2rem;
  border: 1px solid rgba(135, 181, 223, 0.25);
  border-radius: 24px;
  background: #29495a;
  padding: clamp(1.4rem, 3vw, 2.7rem);
  text-align: center;
  overflow: hidden;
}

.ghost-text {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 19vw, 18rem);
  letter-spacing: 0.03em;
  color: rgba(20, 57, 78, 0.5);
  pointer-events: none;
  white-space: nowrap;
}

.final-cta h2 {
  position: relative;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.9;
  color: var(--gold);
  z-index: 1;
}

.final-cta p {
  position: relative;
  margin: 0.75rem auto 0;
  max-width: 62ch;
  color: #d2d7c0;
  line-height: 1.7;
  z-index: 1;
}

footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 0.7rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(132, 178, 219, 0.2);
  color: #91b0cc;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.float {
  animation: floatA 4.8s ease-in-out infinite;
}

.float-delay {
  animation: floatB 5.4s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.gallery {
  margin-top: 2rem;
  padding: 2rem 0;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-img {
  flex: 0 0 auto;
  height: 500px;
  width: auto;
  max-width: 85vw;
  object-fit: contain;
  border-radius: 20px;
  scroll-snap-align: center;
  border: 1px solid rgba(131, 178, 220, 0.24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  background-color: var(--bg);
}

.gallery-img:hover {
  transform: translateY(-5px);
  border-color: var(--orange-soft);
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene,
  .scene.reverse,
  .social-grid,
  .freepro {
    grid-template-columns: 1fr;
  }

  .scene-copy h2 {
    font-size: clamp(2rem, 10vw, 3.8rem);
  }
}

@media (max-width: 720px) {

  main,
  footer {
    width: calc(100% - 1.1rem);
  }

  .topbar {
    padding: 0.72rem 0.55rem;
  }

  .logo span:last-child {
    font-size: 1rem;
  }

  .btn-mini {
    padding: 0.46rem 0.75rem;
    font-size: 0.7rem;
  }

  .hero {
    text-align: left;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 17vw, 5rem);
    line-height: 0.92;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .scene {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .device {
    width: 100%;
    max-width: 100%;
  }

  .release-actions {
    justify-content: flex-start;
  }

  .ghost-text {
    font-size: clamp(4rem, 24vw, 8rem);
  }

  .final-cta {
    text-align: left;
  }

  .final-cta .hero-actions {
    justify-content: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}