/* ============================================================
   MORE THAN MOMENTUM — style.css
   ============================================================ */

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

:root {
  --black: #0c0c0c;
  --white: #f4f4f2;
  --gray: #888;
  --mid: #555;
  --light: #e6e6e4;
  --accent: #2D6BE4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --speed: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  cursor: none !important;
  overflow-x: hidden;
}

/* --- SPEED HEADINGS --- */
.hero-title,
.about-heading,
.services-heading,
.pricing-heading,
.portfolio-heading,
.process-heading,
.contact-heading {
  font-family: var(--speed);
  font-weight: 700;
  letter-spacing: -.01em;
}

.hero-title em,
.about-heading em,
.services-heading em,
.pricing-heading em,
.portfolio-heading em,
.process-heading em,
.contact-heading em {
  font-style: italic;
  font-weight: 700;
  color: inherit;
  opacity: .6;
}

/* --- CURSOR --- */

* { cursor: none !important; }
a, button, .nav-cta, .plan-cta, .btn-primary, .btn-ghost, .social-link, select { cursor: pointer !important; }
.cursor {
  position: fixed;
  width: 110px; height: 110px;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor.big { width: 130px; height: 130px; }
.cursor img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .15s ease;
}

.cursor-ring { display: none; }

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem 5rem;
  z-index: 200;
  transition: background .4s, padding .4s;
  overflow: hidden;
}
nav.scrolled {
  background: rgba(244,244,242,.98);
  padding: .4rem 5rem;
  border-bottom: 1px solid var(--light);
}
.nav-logo {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; color: var(--black);
}

#nav-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: opacity .3s, filter .3s;
 filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(1200%) hue-rotate(205deg) brightness(110%);
  margin: -35px 0;
  overflow: hidden;
}

.nav-logo-text {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 400; letter-spacing: .04em;
  transition: color .3s;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: var(--white); font-weight: 400;
  transition: opacity .2s, color .3s;
}
.nav-links a:hover { opacity: .35; }
.nav-cta {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--white); background: var(--accent);
  padding: .65rem 1.4rem; font-weight: 400; transition: background .25s;
}
.nav-cta:hover { background: #1a52c4; }

/* --- HERO --- */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5rem 5rem; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-bg-logo {
  position: absolute; right: -5rem; top: 50%;
  transform: translateY(-50%); opacity: .9;
  width: 58vw; pointer-events: none;
  mix-blend-mode: screen;
  filter: brightness(2) contrast(2) grayscale(1);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(255,255,255,.15);
  padding: .45rem 1rem; margin-bottom: 2.5rem;
  width: fit-content; opacity: 0;
  animation: fadeUp .7s .2s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 1; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}
.hero-badge-text {
  font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

.hero-title {
  font-family: var(--speed);
  font-size: clamp(3.8rem, 9vw, 9.5rem);
  font-weight: 700; line-height: .92;
  letter-spacing: -.025em; color: var(--white);
  opacity: 0; animation: fadeUp .9s .35s forwards;
}

.hero-title em { font-style: italic; color: #2D6BE4; }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 3.5rem; opacity: 0; animation: fadeUp .9s .6s forwards;
}
.hero-desc {
  max-width: 380px; font-size: .92rem;
  color: rgba(255,255,255,.45); line-height: 1.9;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--white); color: var(--black);
  text-decoration: none; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 2rem; font-weight: 500; transition: gap .3s;
}
.btn-primary::after { content: '→'; }
.btn-primary:hover { gap: 1.3rem; }
.btn-ghost {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: .2rem;
  transition: color .25s, border-color .25s;
}
.btn-ghost:hover { color: #2D6BE4; border-color: #2D6BE4; }

/* --- TICKER --- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: .9rem 0;
}
.ticker-track {
  display: flex; gap: 2.5rem;
  animation: ticker 28s linear infinite;
  width: max-content; white-space: nowrap;
}
.ticker-item { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--black); }
.ticker-sep { color: var(--light); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SHARED SECTION TAG --- */
.section-tag {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: #0c0c0c; margin-bottom: 2.5rem;
}
.section-tag::before { content: ''; width: 1.8rem; height: 1px; background: var(--black); }

/* --- ABOUT --- */
.about { display: grid; grid-template-columns: 5fr 7fr; border-bottom: 1px solid var(--light); }
.about-left {
  padding: 7rem 5rem; border-right: 1px solid #1a1a1a;
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-left .section-tag { color: #2D6BE4; }
.about-left .section-tag::before { background: #2D6BE4; }
.about-heading {
  font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.01em; color: var(--white);
}
.about-heading em { font-style: italic; color: #2D6BE4; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding-top: 3rem; margin-top: 3rem; border-top: 1px solid #1e1e1e;
}
.stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; letter-spacing: -.02em; color: var(--white); }
.stat-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: #555; margin-top: .3rem; }
.about-right { padding: 7rem 5rem; }
.about-body { font-size: .95rem; color: var(--mid); line-height: 1.95; margin-bottom: 1.6rem; }
.about-body strong { color: var(--black); font-weight: 500; }
.about-pillars { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem; border: 1px solid var(--light); transition: border-color .3s;
}
.pillar:hover { border-color: var(--black); }
.pillar-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--white); font-family: var(--sans);
}
.pillar-text strong { display: block; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; margin-bottom: .2rem; }
.pillar-text span { font-size: .85rem; color: var(--gray); }

/* --- SERVICES --- */
.services { padding: 7rem 5rem; border-bottom: 1px solid var(--light); }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.services-heading { font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem); font-weight: 300; letter-spacing: -.01em; }
.services-heading em { font-style: italic; color: #2D6BE4; }
.services-note { max-width: 260px; font-size: .85rem; color: var(--gray); line-height: 1.7; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.svc {
  padding: 2.5rem 2.5rem 3rem;
  border-top: 1px solid var(--light); border-right: 1px solid var(--light);
  position: relative; overflow: hidden; transition: background .3s;
}
.svc:nth-child(3n) { border-right: none; }
.svc::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--black); transition: width .45s ease;
}
.svc:hover::before { width: 100%; }
.svc:hover { background: rgba(0,0,0,.02); }

.svc-icon { font-size: 1.3rem; margin-bottom: .8rem; display: block; }
.svc-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .8rem; line-height: 1.2; }
.svc-desc { font-size: .85rem; color: var(--gray); line-height: 1.85; }
.svc-tag {
  display: inline-flex; margin-top: 1.2rem;
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); padding: .28rem .65rem;
}

/* --- PRICING --- */
.pricing { padding: 7rem 5rem; background: var(--black); color: var(--white); border-bottom: 1px solid #111; }
.pricing .section-tag { color: #2D6BE4; }
.pricing .section-tag::before { background: #2D6BE4; }
.pricing-heading {
  font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem);
  font-weight: 300; color: var(--white); letter-spacing: -.01em; margin-bottom: 4rem;
}
.pricing-heading em { font-style: italic; color: #2D6BE4; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; }
.plan { background: var(--black); padding: 3rem; position: relative; transition: background .3s; }
.plan:hover { background: #0f0f0f; }
.plan.featured { background: var(--white); color: var(--black); }
.plan.featured:hover { background: #f0f0ee; }
.plan-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #555; margin-bottom: 1.5rem; }
.plan.featured .plan-label { color: var(--gray); }
.plan-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; margin-bottom: 2rem; letter-spacing: -.01em; }
.plan.featured .plan-name { color: var(--black); }
.plan-divider { height: 1px; background: #1e1e1e; margin-bottom: 2rem; }
.plan.featured .plan-divider { background: var(--light); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .8rem; font-size: .85rem; color: #666; line-height: 1.5; }
.plan.featured .plan-features li { color: var(--mid); }
.plan-features li::before { content: '→'; color: #333; font-size: .75rem; margin-top: .05rem; flex-shrink: 0; }
.plan.featured .plan-features li::before { color: var(--black); }
.plan-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: #555; border-bottom: 1px solid #333; padding-bottom: .25rem;
  transition: color .25s, border-color .25s, gap .25s;
}
.plan-cta::after { content: '→'; }
.plan-cta:hover { gap: 1.1rem; color: var(--accent); border-color: var(--accent); }
.plan.featured .plan-cta { color: var(--black); border-color: var(--black); }
.plan.featured .plan-cta:hover { color: #333; }
.plan-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: .62rem; letter-spacing: .13em; text-transform: uppercase;
  background: var(--black); color: var(--white); padding: .25rem .6rem;
}

/* --- PORTFOLIO / VIDEO --- */
.portfolio { padding: 7rem 5rem; border-bottom: 1px solid var(--light); }
.portfolio-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.portfolio-heading { font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem); font-weight: 300; letter-spacing: -.01em; }
.portfolio-heading em { font-style: italic; color: #2D6BE4 }
.portfolio-note { font-size: .82rem; color: var(--gray); max-width: 240px; text-align: right; }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.video-row-2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.video-slot {
  aspect-ratio: 9/16; background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; cursor: none;
}
.video-slot video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.video-slot:hover video { transform: scale(1.04); }
.video-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.video-placeholder-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: rgba(255,255,255,.07); font-style: italic; }
.video-placeholder-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.18); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity .35s;
}
.video-slot:hover .video-overlay { opacity: 1; }
.video-client { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.video-title { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-top: .2rem; }

/* --- PROCESS --- */
.process { padding: 7rem 5rem; border-bottom: 1px solid var(--light); background: #f9f9f7; }
.process-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.process-left { position: sticky; top: 8rem; }
.process-heading { font-family: var(--speed); font-size: clamp(2.2rem,3vw,3.2rem); font-weight: 300; letter-spacing: -.01em; line-height: 1.1; }
.process-heading em { font-style: italic; color: #2D6BE4; }
.process-sub { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-top: 1.5rem; }
.step { display: grid; grid-template-columns: 3rem 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--light); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gray); padding-top: .2rem; }
.step-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .7rem; }
.step-desc { font-size: .88rem; color: var(--gray); line-height: 1.85; }

/* --- CONTACT --- */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  padding: 7rem 5rem; background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-left .section-tag { color: #2D6BE4; }
.contact-left .section-tag::before { background: #2D6BE4; }
.contact-heading {
  font-family: var(--speed); font-size: clamp(2.2rem,3.2vw,3.6rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.02em; color: var(--white);
}
.contact-heading em { font-style: italic; color: #2D6BE4; }
.contact-details { margin-top: 4rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-detail-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: #444; margin-bottom: .3rem; }
.contact-detail-value { font-size: .92rem; color: #888; }
.contact-socials { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.social-link {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #444; text-decoration: none; border: 1px solid #222;
  padding: .5rem 1rem; transition: color .25s, border-color .25s;
}
.social-link:hover { color: #2D6BE4; border-color: #2D6BE4; }
.contact-right { padding: 7rem 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 2.2rem; margin-top: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); }
.form-input, .form-select, .form-textarea {
  border: none; border-bottom: 1px solid var(--light);
  padding: .8rem 0; font-family: var(--sans); font-size: .9rem;
  font-weight: 300; background: transparent; color: var(--black);
  outline: none; transition: border-color .3s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--black); }
.form-select { appearance: none; cursor: none; }
.form-textarea { resize: none; height: 100px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--black); color: var(--white); border: none;
  padding: 1.1rem 2.4rem; font-family: var(--sans); font-size: .75rem;
  letter-spacing: .13em; text-transform: uppercase; cursor: none;
  transition: background .25s, gap .3s; align-self: flex-start; font-weight: 400;
}
.form-submit:hover { background: #222; gap: 1.5rem; }
.form-submit::after { content: '→'; }

/* --- FOOTER --- */
footer {
  padding: 2.5rem 5rem; border-top: 1px solid var(--light);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo-text { font-family: var(--serif); font-size: .9rem; font-style: italic; color: var(--gray); }
.footer-copy { font-size: .7rem; letter-spacing: .07em; color: var(--gray); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--black); }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 1.5rem 2.5rem; }
  .hero { padding: 0 2.5rem 4rem; }
  .about { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid #1a1a1a; padding: 5rem 2.5rem; }
  .about-right { padding: 5rem 2.5rem; }
  .services, .pricing, .portfolio, .process { padding: 5rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(3n) { border-right: 1px solid var(--light); }
  .svc:nth-child(2n) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }
  .video-grid, .video-row-2 { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-left { position: static; }
  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 5rem 2.5rem; }
  footer { padding: 2rem 2.5rem; flex-wrap: wrap; gap: 1.2rem; }
}

@media (max-width: 640px) {
  .hero-bottom, .services-top, .portfolio-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-note, .portfolio-note { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none !important; }
  .video-grid, .video-row-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
