:root {
  --bg: #0a0c10;
  --bg-elevated: #12151c;
  --text: #eef0f4;
  --muted: #8b92a5;
  --primary: #6eb8ff;
  --primary-soft: rgba(110, 184, 255, 0.14);
  --accent: #e8c547;
  --border: rgba(255, 255, 255, 0.08);
  --soft: #10131a;
  --glow: rgba(110, 184, 255, 0.35);
  --brand-violet: #7c5cff;
  --brand-violet-soft: rgba(124, 92, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(110, 184, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(232, 197, 71, 0.06), transparent 50%);
  background-attachment: fixed;
}

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

a:hover {
  color: var(--primary);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.hero {
  padding: 5.5rem 0 4rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
}

.hero-art {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 24px 80px -20px var(--glow);
}

.hero-art img,
.hero-art video {
  width: 100%;
  display: block;
}

.cta-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.app-store-badge {
  display: inline-block;
  margin-top: 1.25rem;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.app-store-badge:hover {
  opacity: 1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #0a0c10;
  box-shadow: 0 0 24px -4px var(--glow);
}

.btn-primary:hover {
  background: #8ac6ff;
  color: #0a0c10;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-elevated);
}

.btn-secondary:hover {
  border-color: rgba(110, 184, 255, 0.35);
  color: var(--primary);
}

.section {
  padding: 4rem 0;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
  margin: -0.5rem 0 1.75rem;
}

.product-section {
  padding-top: 3rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(110, 184, 255, 0.06), 0 28px 72px -36px var(--glow);
}

.product-showcase > * {
  min-width: 0;
}

.product-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(110, 184, 255, 0.22);
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 36%, rgba(110, 184, 255, 0.18), #151a26 52%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.product-visual img,
.product-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  min-height: 0;
}

.product-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}

.product-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-tagline {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 54ch;
}

.product-features {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.product-features li {
  margin-bottom: 0.65rem;
}

.product-features li:last-child {
  margin-bottom: 0;
}

.product-features strong {
  color: var(--text);
  font-weight: 600;
}

.product-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 54ch;
}

.product-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gtp-gallery {
  margin-top: 3.25rem;
  padding: 2.25rem 2rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(124, 92, 255, 0.2);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, var(--brand-violet-soft), transparent 55%),
    var(--bg-elevated);
}

.gtp-gallery-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
}

.gtp-gallery-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
  font-size: 1rem;
}

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

.gtp-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0f14;
  box-shadow: 0 20px 56px -28px rgba(0, 0, 0, 0.65);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gtp-shot:hover {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: 0 24px 64px -24px rgba(124, 92, 255, 0.2);
}

.gtp-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.gtp-shot figcaption {
  padding: 1.05rem 1.2rem 1.2rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.92);
}

.gtp-shot figcaption strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.gtp-shot figcaption span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.45rem;
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(110, 184, 255, 0.25);
  box-shadow: 0 16px 48px -24px var(--glow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: start;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.85;
}

.stats {
  display: grid;
  gap: 0.85rem;
}

.stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.2rem;
}

.stat strong {
  color: var(--text);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: block;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-text {
  color: var(--muted);
  line-height: 1.85;
  max-width: 72ch;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  background: var(--bg-elevated);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.footer-cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.footer-cta p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.footer-cta a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.copyright {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .cards,
  .split,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    padding: 1.5rem 1.35rem;
  }

  .product-visual {
    max-width: 320px;
  }

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

  .gtp-gallery {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .footer-legal {
    text-align: left;
  }
}
