/* ==========================================================================
   Holbein — Landing Page Styles
   Aesthetic: Swiss Engraving / Dark Editorial
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --bg-primary: #08080A;
  --bg-secondary: #0E0E11;
  --bg-tertiary: #141418;
  --bg-card: #111115;
  --bg-card-hover: #16161B;

  --border: #23232A;
  --border-subtle: #1A1A20;
  --border-hover: #2E2E36;

  --text-primary: #E8E4DE;
  --text-secondary: #9A9690;
  --text-tertiary: #6A665F;

  --accent: #C4973B;
  --accent-hover: #D4A74B;
  --accent-muted: rgba(196, 151, 59, 0.12);
  --accent-faint: rgba(196, 151, 59, 0.05);

  --success: #4A9E6A;
  --warning: #C4973B;
  --danger: #B83B3B;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Menlo', monospace;

  --container: 1160px;
  --gutter: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

::selection {
  background: var(--accent-muted);
  color: var(--text-primary);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ---------- Grain / Texture Overlay ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M0,0 L20,20' stroke='%23C4973B' stroke-width='0.4'/%3E%3Cpath d='M20,0 L0,20' stroke='%23C4973B' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.15;
}

.hide-mobile {
  display: inline;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(196, 151, 59, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--outline:disabled:hover {
  border-color: var(--border);
  color: var(--text-primary);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-logo-mark {
  width: 22px;
  height: 22px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link--github {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(196, 151, 59, 0.045) 0%, transparent 70%);
}

.hero-crosshatch {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0,0 L40,40' stroke='%23C4973B' stroke-width='0.3'/%3E%3Cpath d='M40,0 L0,40' stroke='%23C4973B' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-heading {
  font-size: clamp(2.8rem, 6.5vw, 5.25rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero ornament */
.hero-ornament,
.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.ornament-line {
  width: 48px;
  height: 1px;
  background: var(--border);
}

.ornament-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 var(--gutter);
  max-width: 240px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.divider-diamond {
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---------- Positioning Cards ---------- */
.positioning {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
}

.positioning-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

.positioning-card:first-child {
  border-radius: 6px 0 0 6px;
}

.positioning-card:last-child {
  border-radius: 0 6px 6px 0;
}

.positioning-card:hover {
  border-color: var(--border-hover);
}

.positioning-card--highlight {
  background: var(--bg-tertiary);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(196, 151, 59, 0.06);
}

.positioning-card--highlight:hover {
  border-color: var(--accent);
}

.positioning-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 3px 14px;
  border-radius: 3px;
  white-space: nowrap;
}

.positioning-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.positioning-label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.positioning-price {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
}

.positioning-names {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.positioning-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.positioning-item {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.positioning-item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
}

.positioning-item--yes::before {
  background: rgba(74, 158, 106, 0.15);
  box-shadow: inset 0 0 0 1px rgba(74, 158, 106, 0.4);
}

.positioning-item--yes {
  color: var(--text-primary);
}

.positioning-item--no::before {
  background: rgba(184, 59, 59, 0.1);
  box-shadow: inset 0 0 0 1px rgba(184, 59, 59, 0.3);
}

.positioning-item--no {
  color: var(--text-tertiary);
}

.positioning-item--warn::before {
  background: rgba(196, 151, 59, 0.12);
  box-shadow: inset 0 0 0 1px rgba(196, 151, 59, 0.35);
}

.positioning-item--warn {
  color: var(--text-secondary);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out);
}

.feature-card:nth-child(1) { border-radius: 6px 0 0 0; }
.feature-card:nth-child(3) { border-radius: 0 6px 0 0; }
.feature-card:nth-child(4) { border-radius: 0 0 0 6px; }
.feature-card:nth-child(6) { border-radius: 0 0 6px 0; }

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.85;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- Trust Grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 44px 36px;
  transition: border-color 0.4s var(--ease-out);
}

.trust-card:nth-child(1) { border-radius: 6px 0 0 0; }
.trust-card:nth-child(2) { border-radius: 0 6px 0 0; }
.trust-card:nth-child(3) { border-radius: 0 0 0 6px; }
.trust-card:nth-child(4) { border-radius: 0 0 6px 0; }

.trust-card:hover {
  border-color: var(--border-hover);
}

.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.85;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.trust-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.pricing-card:first-child { border-radius: 6px 0 0 6px; }
.pricing-card:last-child { border-radius: 0 6px 6px 0; }

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card--active {
  border-color: var(--accent);
  background: var(--bg-tertiary);
  box-shadow: 0 0 48px rgba(196, 151, 59, 0.06);
}

.pricing-card--active:hover {
  border-color: var(--accent);
}

.pricing-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-unit {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.pricing-period {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

.pricing-card--active .pricing-features li::before {
  border-color: var(--accent);
  background: var(--accent-faint);
}

/* ---------- CTA Section ---------- */
.section--cta {
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-top: 16px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.0625rem;
}

.footer-links-grid {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal,
.footer-license {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:first-child { border-radius: 6px 0 0 0; }
  .pricing-card:nth-child(2) { border-radius: 0 6px 0 0; }
  .pricing-card:nth-child(3) { border-radius: 0 0 0 6px; }
  .pricing-card:last-child { border-radius: 0 0 6px 0; }

  .footer-links-grid {
    gap: 40px;
  }
}

@media (max-width: 840px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .positioning {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .positioning-card,
  .positioning-card:first-child,
  .positioning-card:last-child {
    border-radius: 6px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(6) {
    border-radius: 0;
  }

  .feature-card:nth-child(1) { border-radius: 6px 0 0 0; }
  .feature-card:nth-child(2) { border-radius: 0 6px 0 0; }
  .feature-card:nth-child(5) { border-radius: 0 0 0 6px; }
  .feature-card:nth-child(6) { border-radius: 0 0 6px 0; }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card,
  .trust-card:nth-child(1),
  .trust-card:nth-child(2),
  .trust-card:nth-child(3),
  .trust-card:nth-child(4) {
    border-radius: 6px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hide-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px var(--gutter);
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  }

  .nav-links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) {
    border-radius: 6px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card,
  .pricing-card:first-child,
  .pricing-card:nth-child(2),
  .pricing-card:nth-child(3),
  .pricing-card:last-child {
    border-radius: 6px;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 28px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }
}

/* ============================================================
   Product screenshots
   ============================================================ */

.shot {
  margin: 0 auto;
  max-width: 980px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}

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

/* Placeholder shown until a real screenshot is dropped in.
   Replace the .shot--placeholder div with <img src="..."> when ready. */
.shot--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 40px;
  text-align: center;
  border-style: dashed;
  border-color: var(--border-hover);
  background:
    repeating-linear-gradient(
      135deg,
      var(--accent-faint),
      var(--accent-faint) 1px,
      transparent 1px,
      transparent 11px
    ),
    var(--bg-card);
}

.shot--placeholder span {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  line-height: 1.8;
}

.shot-caption {
  margin: 18px auto 0;
  max-width: 980px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  text-align: center;
}

.section--hero-shot {
  padding-top: 0;
  margin-top: -32px;
}

/* Spotlight: single differentiated feature with its own screenshot */
.spotlight-lead {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-secondary);
}
