/* ============================================
   TaskMetas — Style System
   Clean & Spacious dark theme
   ============================================ */

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

:root {
  --bg: #0A0A0A;
  --bg-raised: #101010;
  --bg-card: #141414;
  --border: #1C1C1C;
  --border-hover: #2A2A2A;

  --text: #EBEBEB;
  --text-secondary: #A0A0A0;
  --text-muted: #5A5A5A;

  --green: #49A133;
  --green-soft: rgba(73, 161, 51, 0.12);

  --accent: #00A3FF;
  --accent-light: #19ACFF;
  --accent-dark: #0082CC;
  --accent-soft: rgba(0, 163, 255, 0.10);
  --accent-glow: rgba(0, 163, 255, 0.25);

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

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

html.lenis, html.lenis body {
  height: auto;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg);
  overflow-x: hidden;
}

/* Background grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 1001;
  width: 0%;
  transition: none;
  box-shadow: 0 0 8px var(--accent-glow);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

strong {
  color: var(--text);
  font-weight: 600;
}

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


/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
}


/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}

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

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-raised);
}

.btn-nav {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background: var(--accent-dark);
  color: #fff !important;
}

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


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.nav-links a.active {
  color: var(--text);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}


/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent-soft);
  border-radius: 100px;
  background: var(--accent-soft);
  margin-bottom: 1.75rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.3em;
}

.hero h1 .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1.split-visible .word-inner {
  transform: translateY(0);
}

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

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Parallax containers */
.hero-content > * {
  will-change: transform;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background:
    radial-gradient(circle at 40% 40%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(circle at 65% 60%, rgba(25, 172, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  animation: glow-drift 8s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.08); }
}


/* --- Brand Partnerships --- */
.partners {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
  padding: 0 1rem;
}

.proof-number {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.proof-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.375rem;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-hover);
}

.partner-marquee {
  overflow: hidden;
  width: 100%;
  margin: 0 -clamp(1.25rem, 4vw, 2rem);
  width: calc(100% + clamp(1.25rem, 4vw, 2rem) * 2);
}

.partner-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  flex-shrink: 0;
  width: 200px;
}

.partner-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.partner-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.partner-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-left h2 {
  margin-bottom: 2.5rem;
}

.about-stat {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-stat-number {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-right p {
  margin-bottom: 1.25rem;
}

.about-right p:last-child {
  margin-bottom: 0;
}


/* --- Process --- */
.process {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-header {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.process-header h2 {
  margin-bottom: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  padding: 2.25rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.process-card:hover {
  border-color: var(--border-hover);
  border-top-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.process-num {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  border-radius: 6px;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}


/* --- Results --- */
.results-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.results-header h2 {
  margin-bottom: 1rem;
}

.results-header .section-sub {
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.metric-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.metric-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: conic-gradient(from var(--_angle, 0deg), var(--accent), transparent 30%, transparent 70%, var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.metric-card:hover {
  border-color: transparent;
  box-shadow: 0 0 30px var(--accent-soft);
}

.metric-card:hover::before {
  opacity: 1;
  animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
  to { --_angle: 360deg; }
}

@property --_angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Magnetic button style */
.btn-magnetic {
  transition: transform 0.2s ease-out;
}

.metric-number {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.results-details {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.results-details p {
  font-size: 1.0625rem;
  line-height: 1.75;
}


/* --- Video Showcase — Infinite Marquee --- */
.work-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.work-header h2 {
  margin-bottom: 0;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 36s) linear infinite;
}

.marquee.paused .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.video-card {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.video-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  transition: all var(--transition);
  z-index: 2;
}

.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
}

.play-circle svg {
  margin-left: 2px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}

.video-card:hover .play-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.video-card.previewing .video-play {
  background: rgba(0, 0, 0, 0.1);
}

.video-card.playing .video-play {
  opacity: 0;
  pointer-events: none;
}


/* --- Testimonial --- */
.testimonial {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  width: 64px;
  height: 64px;
  color: var(--accent);
  opacity: 0.15;
  margin-bottom: 1.5rem;
}

blockquote p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.8;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  position: relative;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-style: normal;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}


/* --- Contact --- */
.contact-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.contact-card-header {
  margin-bottom: 2rem;
}

.contact-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.contact-card-header h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.contact-card-header p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--accent);
}

.form-success.show {
  display: block;
}

.form-success svg {
  margin: 0 auto 1rem;
}

.form-success p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form.hidden {
  display: none;
}

/* Creator perks */
.creator-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.perk svg {
  flex-shrink: 0;
  color: var(--accent);
}

.creator-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}


/* --- Footer --- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: clamp(3rem, 6vw, 5rem);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


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

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

/* Staggered children */
.process-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.process-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.process-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

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


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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-links .btn-nav {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .proof-divider {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-split {
    grid-template-columns: 1fr;
  }

  .video-card {
    width: 220px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

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