:root {
  color-scheme: dark;
  --bg: #06101d;
  --bg-2: #0b1727;
  --panel: #111f31;
  --panel-2: #172a42;
  --text: #f6f4ee;
  --muted: #b8c8d8;
  --line: #2d415a;
  --blue: #3aa7ff;
  --cyan: #7dd7ff;
  --violet: #9ea8ff;
  --ice: #d9f2ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(58, 167, 255, .16), transparent 34rem),
    linear-gradient(145deg, rgba(125, 215, 255, .10), transparent 40rem),
    linear-gradient(35deg, transparent, rgba(158, 168, 255, .10)),
    var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(6, 16, 29, .78);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.brand.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(58, 167, 255, .26);
}

.nav-links,
.language-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links { gap: 60px; }

.nav-links a,
.language-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
}

.nav-links a:hover,
.language-links a:hover,
.language-links a[aria-current="page"] {
  color: var(--text);
}

.language-links a[aria-current="page"] { font-weight: 800; }

.more-languages {
  position: relative;
}

.more-languages summary {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.more-languages summary::-webkit-details-marker {
  display: none;
}

.more-languages[open] summary {
  color: var(--text);
  border-color: rgba(58, 167, 255, .58);
  background: rgba(58, 167, 255, .12);
}

.more-languages div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 49, .98);
  box-shadow: var(--shadow);
}

.more-languages a {
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 6px;
}

.more-languages a:hover,
.more-languages a:focus-visible {
  background: rgba(255, 255, 255, .06);
}

.more-languages span {
  color: var(--muted);
  font-size: .82rem;
}

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

.hero {
  min-height: calc(100svh - 72px);
  padding: 62px 0 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: .9;
  letter-spacing: 0;
}

.hero-brand {
  min-height: clamp(84px, 14vw, 132px);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.hero-brand img {
  width: clamp(72px, 12vw, 112px);
  height: clamp(72px, 12vw, 112px);
  flex: 0 0 auto;
  border-radius: clamp(16px, 2.4vw, 26px);
  box-shadow: 0 20px 58px rgba(58, 167, 255, .28);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.subtitle {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--ice);
  font-size: clamp(1.28rem, 2.3vw, 1.78rem);
  font-weight: 720;
  line-height: 1.16;
}

.lead {
  max-width: 680px;
  color: #deebf7;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(58, 167, 255, .52);
  border-radius: 8px;
  background: linear-gradient(135deg, #3aa7ff, #7dd7ff);
  color: #06101d;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(58, 167, 255, .22);
}

.button.secondary {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.phone-stage {
  display: grid;
  justify-items: center;
}

.phone {
  width: min(100%, 318px);
  aspect-ratio: 642 / 1396;
  overflow: hidden;
  border: 10px solid #050a12;
  border-radius: 34px;
  background: #050a12;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .09);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 49, .78);
  overflow: hidden;
}

.stat {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 8px; color: var(--ice); }
.stat span { color: var(--muted); font-size: .95rem; }

.section { padding: 82px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.faq,
.feature-list article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 31, 49, .78);
}

.card {
  padding: 24px;
  min-height: 250px;
}

.card p,
.faq p,
.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(58, 167, 255, .28), rgba(125, 215, 255, .18));
  position: relative;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 999px;
  border: 2px solid var(--blue);
}

.card-icon::after {
  inset: 19px 9px 9px 19px;
  border-color: var(--cyan);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 56px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(58, 167, 255, .14), rgba(158, 168, 255, .10)), rgba(11, 23, 39, .72);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list article { padding: 18px; }

.gallery {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.shot-buttons {
  display: grid;
  grid-template-columns: repeat(4, 46px);
  gap: 8px;
}

.shot-buttons button {
  min-width: 46px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.shot-buttons button[aria-pressed="true"] {
  color: #08100f;
  border-color: transparent;
  background: var(--blue);
}

.faq {
  min-height: 184px;
  padding: 22px;
}

.final-cta {
  margin-top: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-cta .eyebrow { grid-column: 1 / -1; margin-bottom: -6px; }
.final-cta h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 3rem); }

.site-footer {
  margin-top: 58px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #050a12;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: 36px;
  color: var(--muted);
}

.footer-inner address {
  font-style: normal;
}

.footer-inner strong,
.footer-inner a {
  color: var(--text);
}

.footer-inner span {
  justify-self: end;
  color: var(--ice);
  font-weight: 800;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .feature-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 40px;
    padding-top: 44px;
  }

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

  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-inner span { justify-self: start; text-align: left; }
}

@media (max-width: 680px) {
  .nav {
    padding: 10px 0;
  }

  .brand span { display: none; }
  .hero { gap: 32px; }
  .hero-brand { align-items: center; }
  .phone { width: min(74vw, 286px); border-radius: 30px; }
  .stat-strip,
  .grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child { border-bottom: 0; }
  .feature-band { padding: 22px; }
  .final-cta { grid-template-columns: 1fr; }
}
