@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #0c0614;
  --bg-2: #160b22;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 214, 120, 0.22);
  --text: #f7f1ff;
  --muted: #c9bdd8;
  --gold: #f0c14b;
  --gold-2: #ffe29a;
  --rose: #d94aa8;
  --violet: #7a2fd0;
  --ok: #3dd68c;
  --danger: #ff6b7a;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font: "Outfit", sans-serif;
  --display: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(217, 74, 168, 0.28), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(122, 47, 208, 0.35), transparent 50%),
    linear-gradient(180deg, #14081f 0%, var(--bg) 40%, #09040f 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 5, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(240, 193, 75, 0.45);
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-download {
  color: #1a0d08 !important;
  background: linear-gradient(135deg, #ffe29a, #f0c14b 45%, #e0a62a);
  box-shadow: 0 10px 30px rgba(240, 193, 75, 0.35);
}

.btn-ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 3, 14, 0.25) 0%, rgba(8, 3, 14, 0.55) 45%, rgba(8, 3, 14, 0.96) 100%),
    radial-gradient(circle at 70% 30%, rgba(217, 74, 168, 0.25), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.2rem;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.4rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.app-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.4rem;
  align-items: center;
}

.app-icon {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(122, 47, 208, 0.35);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
}

.spec-table th {
  color: var(--muted);
  font-weight: 500;
  width: 38%;
}

.spec-table td {
  color: #fff;
  font-weight: 600;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.shot-grid img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease;
}

.shot-grid img:hover {
  transform: translateY(-4px) scale(1.02);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-family: var(--display);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--violet));
  font-weight: 800;
  font-size: 0.9rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.article-card {
  display: block;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  border-color: rgba(240, 193, 75, 0.45);
  transform: translateY(-3px);
  color: inherit;
}

.article-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-family: var(--display);
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 650;
  padding: 1rem 1.1rem;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-a {
  display: block;
}

.prose {
  max-width: 760px;
}

.prose h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.prose h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 2rem 0 0.7rem;
}

.prose h3 {
  font-size: 1.12rem;
  margin: 1.4rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose strong {
  color: #fff;
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
}

.cta-band {
  margin: 2rem 0;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(217, 74, 168, 0.2), rgba(122, 47, 208, 0.25));
  border: 1px solid rgba(240, 193, 75, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.28);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  font-family: var(--display);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.float-download {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .app-grid,
  .feature-list,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .app-grid {
    justify-items: center;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(14, 8, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .hero {
    min-height: 78vh;
  }

  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-download {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}
