@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Manrope:wght@400;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #0f172a;
  --surface: #111827;
  --surface-2: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --line: #374151;
  --success: #22c55e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.25), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18), transparent 35%),
    var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3,
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

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

.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  text-decoration: none;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

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

.nav-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-decoration: none;
  line-height: 1;
  padding: 10px 12px;
}

.nav-actions a.btn,
.nav-actions a.btn:visited,
.nav-actions a.btn:hover,
.nav-actions a.btn:active {
  text-decoration: none;
}

.nav-login {
  gap: 6px;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.nav-login-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  margin-top: 0;
}

.nav-login-label {
  line-height: 1;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
}

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 999px;
  color: #bfdbfe;
  font-weight: 700;
  font-size: 0.9rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.hero-copy {
  margin-top: 14px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-proof {
  margin-top: 16px;
  color: #d1d5db;
  font-size: 0.95rem;
}

.hero-image-card,
.card,
.shot-card {
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border: 1px solid rgba(75, 85, 99, 0.55);
  border-radius: 16px;
}

.hero-image-card {
  padding: 10px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.45);
}

.hero-image-card img,
.shot-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.section {
  padding: 54px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.section-copy {
  margin: 0 0 22px;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.card {
  padding: 20px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.status {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.status-live {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.status-beta {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.45);
}

.status-soon {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.visual-band {
  padding-top: 8px;
}

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

.shot-card {
  padding: 8px;
}

.shot-card figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 10px 8px 2px;
}

.price-card .plan {
  color: #93c5fd;
  font-weight: 700;
}

.price {
  margin: 4px 0;
  font-size: 2rem;
  color: white;
}

.limit {
  margin-bottom: 14px;
  color: #cbd5e1;
}

.price-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.price-card li {
  margin-bottom: 8px;
}

.featured {
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.45);
}

.sora-card .prompt {
  margin-top: 10px;
  color: #d1d5db;
  font-size: 0.94rem;
  white-space: pre-wrap;
}

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

.footer {
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  padding: 22px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

  .nav-links {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
