:root {
  --bg-900: #020b2f;
  --bg-800: #061845;
  --bg-700: #0c2b66;
  --line: #5bc7ff;
  --line-soft: #2f78bd;
  --text: #e6f4ff;
  --text-dim: #a6c6e0;
  --accent: #2befff;
  --accent-2: #58ffb1;
  --card: rgba(8, 26, 73, 0.72);
  --shadow: 0 14px 40px rgba(0, 10, 40, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Exo 2", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #144f9f 0%, transparent 34%),
    radial-gradient(circle at 80% 20%, #112f80 0%, transparent 30%),
    linear-gradient(180deg, var(--bg-700), var(--bg-900));
  line-height: 1.45;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Orbitron", "Exo 2", sans-serif;
  margin: 0 0 0.7rem;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 199, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 199, 255, 0.1) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

.bg-radial {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(90, 227, 255, 0.2), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(88, 255, 177, 0.16), transparent 40%);
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
  animation: drift 12s ease-in-out infinite;
}

.site-header {
  width: min(1120px, calc(100vw - 2rem));
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(3, 16, 55, 0.7);
  box-shadow: var(--shadow);
}

.studio-mark {
  display: flex;
  align-items: center;
  color: var(--text);
}

.studio-mark__logo {
  height: 34px;
  width: auto;
  display: block;
}

.studio-mark__title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.top-links a {
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4.4rem 0 2.6rem;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--text-dim);
  max-width: 38ch;
}

.hero-metrics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hero-metrics li {
  color: #d7efff;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.store-badge {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 128, 220, 0.32);
}

.store-badge img {
  display: block;
  width: auto;
  height: 60px;
}

.phone-mockup {
  justify-self: center;
  width: min(370px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-mockup__screen {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.phone-mockup__image {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 2.6rem 0;
}

.section--small {
  padding-top: 1.4rem;
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 1.2rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  font-family: "Orbitron", sans-serif;
  border: 1px solid var(--line);
  color: var(--accent);
  background: rgba(25, 124, 204, 0.35);
}

.card--accent {
  border-color: #4db6dc;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.feature-list li {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(10, 43, 109, 0.65);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.shot {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 0.75rem 0.75rem 0.7rem;
  display: grid;
  gap: 0.6rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 190, 255, 0.27), transparent 40%),
    linear-gradient(180deg, rgba(34, 95, 178, 0.7), rgba(8, 30, 82, 0.9));
  transition: transform 0.22s ease;
}

.shot:hover {
  transform: translateY(-4px);
}

.shot figcaption {
  font-family: "Orbitron", sans-serif;
  text-align: center;
  padding: 0.42rem;
  border: 1px solid #58b8ed;
  border-radius: 10px;
  background: rgba(4, 13, 42, 0.85);
}

.shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(132, 208, 255, 0.38);
}

.studio-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1rem;
  background: var(--card);
}

.studio-logo {
  width: 190px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.site-footer {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 12, 42, 0.82);
}

.footer-grid {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.footer-brand {
  margin-bottom: 0.35rem;
  font-family: "Orbitron", sans-serif;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--card);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Orbitron", "Exo 2", sans-serif;
  font-size: 0.96rem;
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--text-dim);
}

.copyright {
  margin: 0;
  text-align: center;
  padding: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(91, 199, 255, 0.22);
}

.legal-page {
  padding-bottom: 2rem;
}

.legal-shell {
  width: min(900px, calc(100vw - 2rem));
  margin: 1rem auto;
}

.legal-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--card);
  padding: 1.2rem;
}

.legal-card h1 {
  margin-bottom: 0.5rem;
}

.legal-card h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.65rem;
}

.legal-card ul {
  margin: 0 0 1rem;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: min(430px, 100%);
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .phone-mockup__screen {
    max-height: 80vh;
  }
}
