@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --color-main: #3f74a3;
  --color-accent: #f28a2e;
  --color-highlight: #dce6f3;
  --color-bg: #091117;
  --color-surface: rgba(10, 20, 30, 0.82);
  --color-border: rgba(183, 208, 232, 0.24);
  --color-text: #f5f8fb;
  --color-muted: #9cafc3;
  --shadow-lg: 0 28px 70px rgba(2, 8, 14, 0.45);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --transition: 180ms ease;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgba(63, 116, 163, 0.28), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(242, 138, 46, 0.12), transparent 24%),
    linear-gradient(180deg, #0b141d 0%, #081016 48%, #05090d 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 26%),
    repeating-linear-gradient(135deg, rgba(220, 230, 243, 0.02) 0, rgba(220, 230, 243, 0.02) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(100% - 32px, var(--site-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 12, 18, 0.72);
  border-bottom: 1px solid rgba(183, 208, 232, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.brand small {
  display: block;
  font-size: 0.66rem;
  color: var(--color-muted);
  letter-spacing: 0.18em;
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-text);
  background: rgba(63, 116, 163, 0.16);
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(220, 230, 243, 0.14);
  background: rgba(220, 230, 243, 0.04);
}

.lang-button {
  min-width: 52px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-button.is-active {
  background: rgba(63, 116, 163, 0.2);
  color: var(--color-text);
  transform: translateY(-1px);
}

.page {
  padding-bottom: 72px;
}

.hero,
.page-hero {
  padding: 84px 0 42px;
}

.hero-grid,
.project-layout,
.card-grid.two,
.contact-grid,
.download-grid,
.fact-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.project-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.card-grid.two,
.contact-grid,
.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.fact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.hero-copy,
.stack-lg,
.stack-md,
.stack-sm,
.section-header,
.contact-form {
  display: grid;
}

.hero-copy,
.stack-lg {
  gap: 22px;
}

.stack-md,
.section-header,
.contact-form {
  gap: 16px;
}

.stack-sm {
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(220, 230, 243, 0.16);
  border-radius: 999px;
  color: var(--color-highlight);
  background: rgba(220, 230, 243, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(242, 138, 46, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
  line-height: 1.72;
  color: var(--color-muted);
}

code {
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(220, 230, 243, 0.08);
  color: var(--color-highlight);
}

.lede {
  font-size: 1.08rem;
  max-width: 62ch;
}

.button-row,
.chip-row,
.meta-list,
.store-links,
.footer-inner,
.play-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-accent), #ffb14a);
  color: #101317;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(242, 138, 46, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242, 138, 46, 0.3);
}

.button-secondary,
.button-muted {
  color: var(--color-text);
  border-color: rgba(220, 230, 243, 0.16);
  box-shadow: none;
}

.button-secondary {
  background: rgba(220, 230, 243, 0.05);
}

.button-muted {
  background: rgba(63, 116, 163, 0.12);
  color: var(--color-highlight);
}

.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.hero-panel,
.card,
.feature-strip,
.play-shell,
.availability,
.contact-card,
.download-card,
.fact-card,
.brand-story,
.timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%), var(--color-surface);
  box-shadow: var(--shadow-md);
}

.hero-panel,
.card,
.feature-strip,
.play-shell,
.availability,
.contact-card,
.download-card,
.fact-card,
.brand-story,
.timeline-card {
  padding: 24px;
}

.hero-panel::after,
.card::after,
.play-shell::after,
.contact-card::after,
.download-card::after,
.fact-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(63, 116, 163, 0.32), transparent 62%);
}

.hero-panel img {
  width: min(100%, 480px);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
}

.feature-strip strong,
.availability strong,
.hero-caption strong,
.highlight {
  color: var(--color-highlight);
}

.section {
  padding: 42px 0;
}

.section-header.compact {
  margin-bottom: 2px;
}

.media-frame,
.video-placeholder,
.shot,
.press-preview,
.play-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(220, 230, 243, 0.18);
}

.media-frame,
.video-placeholder,
.shot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%), linear-gradient(145deg, rgba(63, 116, 163, 0.14), rgba(9, 17, 23, 0.94));
}

.media-frame {
  min-height: 420px;
  padding: 32px;
}

.media-frame img,
.press-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 17, 23, 0.75);
  border: 1px solid rgba(220, 230, 243, 0.12);
  color: var(--color-highlight);
}

.shot {
  min-height: 280px;
  padding: 18px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 14, 0.92)), linear-gradient(120deg, rgba(63, 116, 163, 0.18), transparent 48%);
}

.shot-copy {
  position: relative;
  display: grid;
  gap: 8px;
}

.shot-copy span {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.video-placeholder {
  min-height: 340px;
  padding: 30px;
  display: grid;
  place-items: center;
  text-align: center;
}

.play-badge {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(242, 138, 46, 0.95), rgba(242, 138, 46, 0.72));
  color: #101317;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(242, 138, 46, 0.28);
  margin-bottom: 18px;
}

.chip,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-highlight);
  background: rgba(63, 116, 163, 0.14);
  border: 1px solid rgba(63, 116, 163, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--color-highlight);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(220, 230, 243, 0.12);
  background: rgba(6, 12, 17, 0.7);
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.press-preview img {
  aspect-ratio: 1 / 1;
}

.download-card {
  display: flex;
  flex-direction: column;
}

.download-copy {
  display: grid;
  gap: 12px;
  flex: 1;
  padding-top: 22px;
}

.download-actions {
  margin-top: auto;
  padding-top: 22px;
}

.download-actions .button {
  width: 100%;
}

.play-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.play-frame {
  width: 100%;
  min-height: 680px;
  background: #05090d;
}

.footer {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(183, 208, 232, 0.08);
  color: var(--color-muted);
}

.footer-inner {
  justify-content: space-between;
}

.muted {
  color: var(--color-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 680ms ease forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 300ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .project-layout,
  .card-grid.two,
  .card-grid.three,
  .contact-grid,
  .download-grid,
  .fact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .play-frame {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    padding: 18px 0;
  }

  .header-controls {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 18px;
  }

  .lang-switcher {
    justify-self: start;
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .hero-panel,
  .card,
  .feature-strip,
  .play-shell,
  .availability,
  .contact-card,
  .download-card,
  .fact-card,
  .brand-story,
  .timeline-card {
    padding: 20px;
  }

  .media-frame,
  .video-placeholder {
    min-height: 280px;
    padding: 20px;
  }

  .play-frame {
    min-height: 420px;
  }

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