/* Brick Forge Landing — Forge Harbor Studios */
:root {
  --bg: #0B1020;
  --bg-secondary: #111827;
  --card: #172033;
  --coral: #FF5A3D;
  --yellow: #FFC857;
  --cyan: #44D7B6;
  --blue: #60A5FA;
  --purple: #8B5CF6;
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--cyan); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Decorative bricks */
.brick-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.brick-float {
  position: absolute;
  border-radius: 6px;
  opacity: 0.12;
  animation: floatBrick 12s ease-in-out infinite;
}

.brick-float:nth-child(1) { width: 48px; height: 24px; background: var(--coral); top: 12%; left: 8%; animation-delay: 0s; }
.brick-float:nth-child(2) { width: 36px; height: 18px; background: var(--yellow); top: 28%; right: 10%; animation-delay: -2s; }
.brick-float:nth-child(3) { width: 42px; height: 21px; background: var(--cyan); top: 55%; left: 5%; animation-delay: -4s; }
.brick-float:nth-child(4) { width: 30px; height: 15px; background: var(--blue); top: 70%; right: 15%; animation-delay: -6s; }
.brick-float:nth-child(5) { width: 40px; height: 20px; background: var(--purple); top: 85%; left: 20%; animation-delay: -8s; }

@keyframes floatBrick {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.site-wrap { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 16, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.logo:hover { opacity: 0.92; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher { position: relative; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  list-style: none;
  margin: 0;
  display: none;
}

.lang-menu.is-open { display: block; }

.lang-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.875rem;
  text-decoration: none;
}

.lang-menu a:hover,
.lang-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: inherit;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #ff7a5c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 90, 61, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 90, 61, 0.45);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-store {
  min-width: 200px;
  padding: 14px 24px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 8px 10px;
  cursor: pointer;
  font-family: inherit;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(11, 16, 32, 0.96);
  backdrop-filter: blur(12px);
  padding: 24px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  color: var(--text);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 56px 0 72px;
  position: relative;
}

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

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(68, 215, 182, 0.12);
  border: 1px solid rgba(68, 215, 182, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.55;
}

.hero-support {
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.85);
  margin: 0 0 28px;
}

.hero-availability {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.7);
  margin: 14px 0 0;
  text-align: left;
}

.store-buttons--center + .hero-availability,
.download-cta .hero-availability {
  text-align: center;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
}

.store-buttons--center {
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  line-height: 1.25;
  border-radius: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  max-width: 240px;
}

.store-badge-caption {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

/* Google Play badge has more internal padding — taller height for visual parity with App Store */
.store-badge--google img {
  height: 88px;
}

.store-badge--apple img {
  height: 64px;
}

.store-badge--cta.store-badge--google img {
  height: 92px;
}

.store-badge--cta.store-badge--apple img {
  height: 68px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.device-mockup {
  width: min(100%, 620px);
  background: linear-gradient(160deg, var(--bg-secondary), var(--card));
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 10px 14px;
  box-shadow: var(--shadow), 0 0 60px rgba(255, 90, 61, 0.15);
  position: relative;
}

.device-screen {
  width: 100%;
  aspect-ratio: 960 / 443;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0f1a;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0a0f1a;
}

.device-glow {
  position: absolute;
  width: 280px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(255, 90, 61, 0.22), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Highlights */
.highlights {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.5);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.highlight-item {
  text-align: center;
  padding: 16px 12px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.highlight-item:nth-child(1) .highlight-icon { background: rgba(255, 90, 61, 0.15); }
.highlight-item:nth-child(2) .highlight-icon { background: rgba(96, 165, 250, 0.15); }
.highlight-item:nth-child(3) .highlight-icon { background: rgba(68, 215, 182, 0.15); }
.highlight-item:nth-child(4) .highlight-icon { background: rgba(255, 200, 87, 0.15); }

.highlight-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.18);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--text);
}

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

.features .card:nth-child(1) .card-icon { background: rgba(68, 215, 182, 0.15); }
.features .card:nth-child(2) .card-icon { background: rgba(255, 200, 87, 0.15); }
.features .card:nth-child(3) .card-icon { background: rgba(96, 165, 250, 0.15); }
.features .card:nth-child(4) .card-icon { background: rgba(139, 92, 246, 0.15); }

/* Updates */
.updates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.update-card {
  background: rgba(23, 32, 51, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.update-card::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--coral);
}

.update-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Flow */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.flow-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.flow-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Media gallery */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0px;
  column-gap: 0px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s;
}

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

.media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #141c2e;
}

.media-card--chapter img {
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.media-card--portrait {
  max-width: 220px;
  margin: 0 auto;
}

.media-card--portrait img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: top center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.media-video {
  max-width: 720px;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0f1a;
}

.media-video-player {
  width: 100%;
  display: block;
  aspect-ratio: 960 / 443;
  object-fit: contain;
  background: #0a0f1a;
}

.media-label {
  padding: 10px 12px;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Audience */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.audience-card {
  text-align: center;
  padding: 24px 16px;
  background: rgba(23, 32, 51, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
}

/* Download CTA */
.download-cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 90, 61, 0.08), rgba(17, 24, 39, 0.4));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.download-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.download-cta p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* SEO content sections */
.seo-prose {
  max-width: 820px;
  margin: 0 auto;
}

.seo-prose--center {
  text-align: center;
}

.seo-prose h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text);
}

.seo-prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.seo-prose p:last-child {
  margin-bottom: 0;
}

.seo-disclaimer {
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  opacity: 0.85;
}

.seo-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.seo-feature-grid--reverse .seo-feature-shot {
  order: -1;
}

.seo-feature-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.seo-feature-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 860px) {
  .seo-feature-grid,
  .seo-detail-grid {
    grid-template-columns: 1fr;
  }

  .seo-feature-grid--reverse .seo-feature-shot {
    order: 0;
  }
}

.seo-list {
  margin: 16px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.seo-list li {
  margin-bottom: 8px;
}

.seo-list--check {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
  max-width: 640px;
  margin: 20px auto 0;
}

.seo-list--check li::before {
  content: "✓ ";
  color: var(--cyan);
  font-weight: 700;
}

.seo-about {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.35), transparent);
}

.seo-walk,
.seo-why {
  background: rgba(17, 24, 39, 0.25);
}

.build-ideas-grid,
.creation-ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.build-idea-card,
.creation-idea-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.build-idea-card h3,
.creation-idea-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.build-idea-card p,
.creation-idea-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--card);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.footer-lang .lang-menu {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: auto;
}

.footer-lang .lang-menu a {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .store-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .device-mockup { width: min(100%, 520px); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions .btn-primary { display: none; }
  .menu-toggle { display: block; }
  .section { padding: 56px 0; }
  .logo-img { height: 44px; max-width: 200px; }
  .seo-detail-grid { grid-template-columns: 1fr; }
}

/* RTL (Arabic) */
html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .header-inner {
  direction: rtl;
}

html[dir="rtl"] .nav-desktop,
html[dir="rtl"] .store-buttons,
html[dir="rtl"] .highlights-grid,
html[dir="rtl"] .flow-steps {
  direction: rtl;
}

html[dir="rtl"] .faq-item summary {
  text-align: right;
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .store-buttons { justify-content: center; }
  .store-badge--google img { height: 76px; }
  .store-badge--apple img { height: 56px; }
  .store-badge--cta.store-badge--google img { height: 80px; }
  .store-badge--cta.store-badge--apple img { height: 60px; }
}

/* Video watch page */
.watch-page .watch-main {
  padding: 48px 0 64px;
}

.watch-inner {
  max-width: 960px;
}

.watch-inner h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.watch-lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 720px;
}

.watch-player {
  margin: 0 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0f1a;
}

.watch-video {
  width: 100%;
  display: block;
  aspect-ratio: 960 / 443;
  object-fit: contain;
  background: #0a0f1a;
}

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

.watch-back a:hover {
  text-decoration: underline;
}
