/* ═══════════════════════════════════════════
   ShortCut Media — Quiet Luxury Theme
   Apple-style scroll animations + warm ivory palette
   ═══════════════════════════════════════════ */

:root {
  --bg:           #F5F3EF;
  --bg-2:         #EFECE6;
  --fg:           #2C2C2C;
  --fg-muted:     #7A7570;
  --stone:        #A89F91;
  --stone-light:  rgba(168,159,145,0.15);
  --card:         #FAF9F6;
  --card-border:  rgba(168,159,145,0.20);
  --cognac:       #8B5E3C;
  --cognac-light: rgba(139,94,60,0.08);
  --cognac-hover: #6E4A2F;
  --sage:         #8A9A7B;
  --sage-light:   rgba(138,154,123,0.10);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.45s; }
.delay-5 { transition-delay: 0.60s; }
.delay-6 { transition-delay: 0.75s; }

/* Line-by-line reveal for manifesto */
.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.line-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.line-reveal:nth-child(2) { transition-delay: 0.12s; }
.line-reveal:nth-child(3) { transition-delay: 0.24s; }
.line-reveal:nth-child(4) { transition-delay: 0.36s; }
.line-reveal:nth-child(5) { transition-delay: 0.48s; }

/* Nav scroll effect */
nav.scrolled {
  background: rgba(245, 243, 239, 0.92);
  border-bottom-color: var(--stone-light);
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid transparent;
  background: rgba(245, 243, 239, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-download-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FAF9F6;
  background: var(--cognac);
  padding: 6px 14px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-download-btn:hover {
  background: var(--cognac-hover);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cognac);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.75;
  font-weight: 300;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.website-mockup {
  width: 260px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}
.mockup-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--card-border);
  padding: 0.55rem 0.75rem;
}
.mockup-dots {
  display: flex;
  gap: 0.35rem;
}
.mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stone);
  opacity: 0.4;
}
.mockup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup-hero-block {
  height: 70px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--card-border) 100%);
  opacity: 0.8;
}
.mockup-content-row {
  display: flex;
  gap: 0.4rem;
}
.mockup-card {
  flex: 1;
  height: 45px;
  border-radius: 5px;
  background: var(--surface);
  opacity: 0.5;
}

.hero-result-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  width: 230px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.result-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.result-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--cognac);
  line-height: 1;
}
.result-sub {
  font-size: 0.65rem;
  color: var(--fg-muted);
  margin-top: 0.35rem;
}

/* ── Stats ── */
.stats {
  background: var(--card);
  padding: 4rem 2rem;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.stat-item {
  flex: 1;
  padding: 0 2.5rem;
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--cognac);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 55px;
  background: var(--stone-light);
}

/* ── What ── */
.what {
  padding: 7rem 2rem;
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cognac);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 1.1rem;
}
.section-body {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
}
.what-card {
  background: var(--card);
  padding: 2.25rem;
  border-right: 1px solid var(--card-border);
}
.what-card:last-child { border-right: none; }
.what-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--cognac);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.what-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--fg);
  margin-bottom: 0.55rem;
}
.what-desc {
  font-size: 0.86rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Niches ── */
.niches {
  padding: 7rem 2rem;
  background: var(--bg-2);
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.niche-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
}
.niche-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  display: block;
}
.niche-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.45rem;
}
.niche-desc {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.niches-note {
  font-size: 0.78rem;
  color: var(--stone);
  text-align: center;
  font-style: italic;
}

/* ── Portfolio ── */
.portfolio {
  padding: 7rem 2rem;
  border-top: 1px solid var(--card-border);
}
.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.portfolio-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 3px 16px rgba(0,0,0,0.04);
}
.portfolio-before,
.portfolio-after {
  flex: 1;
  padding: 2.25rem;
}
.portfolio-after {
  background: var(--sage-light);
}
.portfolio-phase-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.portfolio-stats-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.portfolio-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.portfolio-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--fg);
  line-height: 1;
  min-width: 65px;
  letter-spacing: -0.02em;
}
.portfolio-stat-value.accent { color: var(--cognac); }
.portfolio-stat-label {
  font-size: 0.83rem;
  color: var(--fg-muted);
}
.portfolio-divider {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: rgba(168,159,145,0.06);
  border-left: 1px solid var(--card-border);
  border-right: 1px solid var(--card-border);
}
.portfolio-arrow {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--cognac);
}
.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.portfolio-client-tag {
  background: var(--cognac-light);
  color: var(--cognac);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.portfolio-tag {
  font-size: 0.75rem;
  color: var(--stone);
}

/* ── Testimonials ── */
.testimonials {
  padding: 7rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--card-border);
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 3px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.07);
}
.testimonial-quote-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--cognac);
  line-height: 0.8;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}
.testimonial-metrics {
  display: flex;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.testimonial-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-metric-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cognac);
  line-height: 1;
}
.testimonial-metric-label {
  font-size: 0.68rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.testimonial-by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cognac-light);
  border: 1px solid rgba(139,94,60,0.2);
  color: var(--cognac);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--stone);
}

/* ── Manifesto ── */
.manifesto {
  padding: 8rem 2rem;
  text-align: center;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-line {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--fg);
  margin-bottom: 0;
}
.manifesto-sub {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-weight: 300;
}
.manifesto-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}
.proof-block {
  background: var(--card);
  padding: 2.25rem;
  text-align: left;
  border-right: 1px solid var(--card-border);
}
.proof-block:last-child { border-right: none; }
.proof-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.85rem;
  font-weight: 300;
}
.proof-attr {
  font-size: 0.75rem;
  color: var(--stone);
}

/* ── Pricing ── */
.pricing {
  padding: 7rem 2rem;
  border-top: 1px solid var(--card-border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.pricing-card.featured {
  border-color: var(--cognac);
  box-shadow: 0 4px 24px rgba(139,94,60,0.12);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cognac);
  color: #FAF9F6;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.85rem;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}
.pricing-currency {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  line-height: 1;
}
.pricing-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 0.9rem;
  color: var(--stone);
  margin-left: 0.2rem;
}
.pricing-videos {
  font-size: 0.78rem;
  color: var(--stone);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.86rem;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
}
.pricing-features li::before {
  content: '✓';
  color: var(--cognac);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-size: 0.8rem;
}
.pricing-cta {
  display: block;
  text-align: center;
  background: var(--cognac);
  color: #FAF9F6;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pricing-cta:hover {
  background: var(--cognac-hover);
  transform: translateY(-1px);
}
.pricing-card.featured .pricing-cta {
  background: var(--cognac);
}
.pricing-footnote {
  font-size: 0.75rem;
  color: var(--stone);
  text-align: center;
}
.pricing-footnote a {
  color: var(--cognac);
  text-decoration: none;
  font-weight: 500;
}
.pricing-footnote a:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer-meta {
  font-size: 0.72rem;
  color: rgba(168,159,145,0.55);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured {
    order: -1;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .stat-item { padding: 0; }
  .stat-divider { display: none; }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .what-card { border-right: none; border-bottom: 1px solid var(--card-border); }
  .what-card:last-child { border-bottom: none; }
  .niches-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-proof {
    grid-template-columns: 1fr;
  }
  .proof-block { border-right: none; border-bottom: 1px solid var(--card-border); }
  .proof-block:last-child { border-bottom: none; }
  .hero {
    padding-top: 7rem;
  }
  .website-mockup {
    width: 210px;
  }

  /* Simplified animations on mobile for performance */
  .reveal, .reveal-up, .reveal-scale, .reveal-left, .reveal-right,
  .line-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}