/* ==========================================================================
   MomentCast Marketing Site — Premium Cinematic Theme
   Dark · Warm gold accents · Editorial typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */

:root {
  --bg:           #0b0b0d;
  --surface:      #131315;
  --surface-2:    #1b1b1e;
  --border:       rgba(255, 255, 255, 0.07);
  --border-2:     rgba(255, 255, 255, 0.04);

  --text-1:       #ede9e3;
  --text-2:       rgba(237, 233, 227, 0.55);
  --text-3:       rgba(237, 233, 227, 0.28);

  --gold:         #c8a96e;
  --gold-dim:     rgba(200, 169, 110, 0.15);
  --gold-glow:    rgba(200, 169, 110, 0.25);

  --live-red:     #e54b4b;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}


/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  background-color: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.mc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.mc-gold { color: var(--gold); }


/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.mc-btn-primary {
  background: var(--gold);
  color: #0b0b0d;
}
.mc-btn-primary:hover {
  background: #d4b87a;
  box-shadow: 0 0 24px var(--gold-glow);
}

.mc-btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.mc-btn-ghost:hover {
  color: var(--text-1);
  border-color: rgba(255,255,255,0.18);
}

.mc-btn-nav {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 8px 20px;
  font-size: 14px;
}
.mc-btn-nav:hover {
  background: var(--gold-dim);
}

.mc-btn-full { width: 100%; }
.mc-btn-lg { padding: 16px 40px; font-size: 16px; }


/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.mc-kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mc-section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 16px;
}

.mc-section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */

.mc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
}

.mc-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mc-nav-logo-img {
  height: 60px;
  width: auto;
}

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

.mc-nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s;
}
.mc-nav-links a:hover { color: var(--text-1); }


/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.mc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.mc-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.mc-hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,169,110,0.18) 0%, transparent 70%);
}
.mc-hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
}

.mc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: mc-fadein 0.8s ease both;
}

.mc-hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.mc-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.mc-hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.mc-hero-sub strong {
  color: var(--text-1);
  font-weight: 600;
}

.mc-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mc-hero-proof {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}


/* --------------------------------------------------------------------------
   HERO MOCKUP
   -------------------------------------------------------------------------- */

.mc-hero-mockup {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  width: 100%;
  max-width: 680px;
  animation: mc-fadein 1s ease 0.3s both;
}

.mc-mockup-browser {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    0 0 80px rgba(200,169,110,0.04);
}

.mc-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.mc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.mc-mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  font-family: monospace;
}

.mc-mockup-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, #1a1a1e 0%, #0f0f12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-mockup-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--live-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  animation: mc-pulse 2s ease infinite;
}

.mc-mockup-overlay {
  opacity: 0.6;
}
.mc-mockup-play {
  width: 56px;
  height: 56px;
}

.mc-mockup-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.mc-mockup-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
}

.mc-mockup-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
}


/* --------------------------------------------------------------------------
   PAIN → SOLUTION
   -------------------------------------------------------------------------- */

.mc-pain {
  padding: 120px 0;
  text-align: center;
}

.mc-pain .mc-section-sub {
  margin: 0 auto 48px;
  max-width: 640px;
}

.mc-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.mc-pain-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: left;
}

.mc-pain-bad {
  background: rgba(229, 75, 75, 0.04);
  border: 1px solid rgba(229, 75, 75, 0.12);
}

.mc-pain-good {
  background: var(--gold-dim);
  border: 1px solid rgba(200, 169, 110, 0.18);
}

.mc-pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  background: rgba(229, 75, 75, 0.1);
  color: var(--live-red);
}
.mc-pain-icon.mc-gold {
  background: var(--gold-dim);
  color: var(--gold);
}

.mc-pain-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mc-pain-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   FEATURES
   -------------------------------------------------------------------------- */

.mc-features {
  padding: 120px 0;
  text-align: center;
}

.mc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mc-feature {
  text-align: left;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.mc-feature:hover {
  border-color: rgba(200,169,110,0.2);
  box-shadow: 0 0 40px rgba(200,169,110,0.04);
}

.mc-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.mc-feature-icon svg {
  width: 24px;
  height: 24px;
}

.mc-feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mc-feature p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */

.mc-pricing {
  padding: 120px 0;
  text-align: center;
}

.mc-pricing .mc-section-sub {
  margin: 0 auto 48px;
}

.mc-pricing-card {
  max-width: 440px;
  margin: 0 auto 32px;
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(200,169,110,0.04);
}

.mc-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.mc-pricing-dollar {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
}

.mc-pricing-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-1);
}

.mc-pricing-per {
  font-size: 16px;
  color: var(--text-2);
}

.mc-pricing-list {
  text-align: left;
  margin-bottom: 32px;
}

.mc-pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 15px;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
}
.mc-pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

.mc-pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
}

.mc-pricing-compare {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
}

.mc-pricing-compare p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.mc-pricing-compare strong {
  color: var(--text-1);
}


/* --------------------------------------------------------------------------
   HOW IT WORKS
   -------------------------------------------------------------------------- */

.mc-steps {
  padding: 120px 0;
  text-align: center;
}

.mc-steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.mc-step {
  flex: 1;
  max-width: 280px;
  text-align: left;
  padding: 32px 24px;
}

.mc-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.mc-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mc-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.mc-step-arrow {
  flex: 0 0 24px;
  margin-top: 56px;
  color: var(--text-3);
}
.mc-step-arrow svg {
  width: 24px;
  height: 24px;
}


/* --------------------------------------------------------------------------
   USE CASES
   -------------------------------------------------------------------------- */

.mc-usecases {
  padding: 120px 0;
  text-align: center;
}

.mc-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mc-usecase {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s;
}
.mc-usecase:hover {
  border-color: var(--gold-dim);
}

.mc-usecase-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.mc-usecase h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mc-usecase p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.mc-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.mc-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.mc-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}

.mc-cta-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  position: relative;
}


/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.mc-footer {
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.mc-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

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

.mc-footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 14px;
}

.mc-footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

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

.mc-footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}

.mc-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  padding: 4px 0;
  transition: color 0.2s;
}
.mc-footer-col a:hover { color: var(--text-1); }

.mc-footer-bottom {
  border-top: 1px solid var(--border-2);
  padding: 24px;
  text-align: center;
}

.mc-footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}


/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes mc-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes mc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}


/* --------------------------------------------------------------------------
   Scroll reveal — elements appear as you scroll
   -------------------------------------------------------------------------- */

.mc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mc-reveal.mc-visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .mc-features-grid,
  .mc-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .mc-step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .mc-step {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mc-nav-links { display: none; }

  .mc-hero { padding: 100px 20px 60px; }
  .mc-hero-title { font-size: clamp(32px, 8vw, 48px); }
  .mc-hero-sub { font-size: 16px; }

  .mc-pain-grid {
    grid-template-columns: 1fr;
  }

  .mc-footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .mc-footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .mc-features-grid,
  .mc-usecases-grid {
    grid-template-columns: 1fr;
  }

  .mc-pricing-card {
    padding: 36px 24px;
  }

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