/* ── Ditther Landing — Styles ── */

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 120px;
  border-bottom: 1px solid var(--border4);
  background: rgba(13,13,15,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.4);
  animation: navSlide 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.nav-logo {
  font-size: 17px;  
  mix-blend-mode: lighten;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.nav-logo img{
  height:24px;
  width:auto;
  -webkit-user-drag: none;
  user-drag: none;
}

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

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--ease-sm);
}

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

/* Nav CTA — glass pill */
.nav-cta {
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%);
  color: var(--text);
  border: 1px solid var(--border2);
  padding: 7px 18px;
  border-radius: var(--radius-2xl);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    inset 0 1px 0 var(--shadow-inset-top),
    inset 0 -1px 0 var(--shadow-inset-bottom),
    0 4px 12px rgba(0,0,0,0.4);
  transition: all var(--ease-sm);
}

.nav-cta:hover { border-color: var(--border2); color: var(--text); opacity: 0.9; }

/* ─────────────────────────────────────────────
   HERO — full-bleed image + content row
───────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0; /* override section base */
}

/* Full-bleed image — no side margins, offset for fixed nav */
.hero-visual {
  position: relative;
  width: 100%;
  height: auto; /* include nav offset */
  min-height: 550px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 0;
}

/* All images stacked, inactive hidden */
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25,0,0,1);
  /* No transform here — avoids fighting the animation */
  -webkit-user-drag: none;
  user-select: none;
}

/* Active image fully visible, 4s scale-in */
.hero-img.active {
  opacity: 1;
  animation: heroBgScale 4s cubic-bezier(0.45,0,0.55,1) forwards;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  /* Stronger fade at bottom so text row reads clearly */
  /* background: linear-gradient(
    to bottom,
    rgba(13,13,15,0) 70%,
    rgba(13,13,15,0.4) 85%,
    rgba(13,13,15,0.7) 100%
  ); */
  z-index: 1;
}

/* Tabs sit above overlay */
.hero-tabs { z-index: 2; }

/* Effect tabs — floating bottom-right on image */
/* Effect tabs - floating bottom-right on image */
.hero-tabs {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 420px;
  justify-content: flex-end;
  z-index: 2;
  margin-right: 100px;
}



.hero-tab {
  background: linear-gradient(180deg, #ffffff29 0%, #ffffff14 80%);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 4px 12px;
  width: fit-content;
  font-size: 12px;
  font-weight: 400;
  color: var(--text1);
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0.5px 0 var(--shadow-inset-top),
    0 4px 16px rgba(0,0,0,0.1);
  transition: all var(--ease-sm);
  letter-spacing: 0.01em;

  white-space: nowrap;       /* Prevents single words from breaking into two lines */
  flex: 0 1 auto;            /* Allows tabs to size naturally based on content */
}

.hero-tab:hover {
  color: var(--text);
  border-color: var(--border2);
  background: linear-gradient(180deg, #ffffff58 0%, #ffffff23 80%);
}

.hero-tab.active {
  background: linear-gradient(180deg, var(--thickglass-from) 0%, var(--thickglass-to) 80%);
  color: var(--bg);
  border-color: rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 4px 16px rgba(0,0,0,0.5);
}

/* Content row below image */
.hero-content {
  display: flex;
  justify-content: space-between;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: flex-end;
  padding: 60px 120px;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;

}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 4px 14px;
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  max-width: 740px;
  /* No animation here — splitWords handles word-by-word reveal */
}

.hero-right {
  max-width: 360px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;


  animation: fadeUp 0.8s 0.65s cubic-bezier(0.16,1,0.3,1) both;
}

/* ─────────────────────────────────────────────
   BUTTONS — Ditther glass style
───────────────────────────────────────────── */

/* Primary — white thick glass (Upgrade style) */
.btn-primary {
  background: linear-gradient(180deg, var(--thickglass-from) 0%, var(--thickglass-to) 80%);
  color: #0d0d0f;
  width: 100%;
  display: inline-flex;
  justify-content: center; /* Centers text horizontally */
  align-items: center;     /* Centers text vertically */
  
  padding: 12px 28px;
  border-radius: var(--radius-2xl);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 4px 20px rgba(0,0,0,0.5);
  transition: all var(--ease-sm);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary:hover { 
  opacity: 0.9; transform: translateY(-1px); 
}

/* Primary-not full width — white thick glass (Upgrade style) */
.btn-primary-short {
  background: linear-gradient(180deg, var(--thickglass-from) 0%, var(--thickglass-to) 80%);
  color: #0d0d0f;

  display: inline-flex;

  padding: 12px 28px;
  border-radius: var(--radius-2xl);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 12px 20px rgba(0,0,0,0.2);
  transition: all var(--ease-sm);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary:hover { 
  opacity: 0.9; transform: translateY(-1px); 
}


/* Secondary — dark glass (Shuffle/Remix style) */
.btn-ghost {
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%);
  color: var(--text);
  padding: 12px 28px;
  width: 100%;
  display: inline-flex;
  justify-content: center; /* Centers text horizontally */
  align-items: center;     /* Centers text vertically */
  border-radius: var(--radius-2xl);
  font-size: 14px;
  font-weight: 400;

  text-decoration: none;
  font-family: 'Geist', sans-serif;
  border: 1px solid var(--border2);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow:
    inset 0 1px 0 var(--shadow-inset-top),
    inset 0 -1px 0 var(--shadow-inset-bottom),
    0 4px 20px rgba(0,0,0,0.4);
  transition: all var(--ease-sm);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-ghost:hover { 
  color: var(--text); 
  border-color: var(--border2); 
  opacity: 0.9; 
  transform: translateY(-1px); 
 }

/* ─────────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────────── */
section { padding: 100px 40px; }
section.hero { padding: 0; } /* hero manages its own spacing */
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   EFFECTS GRID
───────────────────────────────────────────── */
.effects-section { background: var(--bg); }
.effects-header { margin-bottom: 64px; }

.effects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.effect-card {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
  transition: transform var(--ease-md);
border-radius: 20px;
}

.effect-card:hover { transform: translateY(-4px); z-index: 1; }

.effect-card img {
  width: 100%;
  aspect-ratio: 16/12;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.effect-card:hover img { transform: scale(1.04);   filter: saturate(1.4);}

.effect-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
}

.effect-name { font-size: 20px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 4px; }

.effect-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }

.effect-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
/* ─── IMAGE STRIP — marquee ─── */
/* /* ───────────────────────────────────────────── */

.strip-section {
  padding: 0;
  margin-top: 60px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  
}

.strip-track { overflow: hidden; width: 100%; }

.strip-inner {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee 35s linear infinite;
  pointer-events: none;

}

.strip-track--reverse .strip-inner {
  animation: marquee-reverse 40s linear infinite;
}

/* .strip-track:hover .strip-inner { animation-duration: 120s; } */

.strip-inner img {
  height: 300px;
  width: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
  flex-shrink: 0;
  transition: filter 0.4s ease, transform 0.4s ease;
  border-radius: 16px;
}

.strip-inner img:hover {
  filter: saturate(1.4);
  transform: scale(.95);
  z-index: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.how-section { background: var(--bg2); }

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

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 60%);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 var(--shadow-inset-top);
  transition: border-color var(--ease-sm), transform var(--ease-md), box-shadow var(--ease-sm);
}

.step-video {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  opacity: 0.95;
}

.step-contents{
  padding: 0px 16px;
}

.step:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 var(--shadow-inset-top);
}

.step-num { font-size: 11px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 20px; }
.step h3 { font-size: 20px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 12px;}

/* ─────────────────────────────────────────────
   PRICING
───────────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  padding: 48px 40px;
  background: linear-gradient(180deg, var(--glass-from) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 32px rgba(0,0,0,0.3), inset 0 1px 0 var(--shadow-inset-top);
  transition: border-color var(--ease-sm), box-shadow var(--ease-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 var(--shadow-inset-top);
}

.pricing-price .pricing-original {
  font-size: 32px !important;
  color: var(--text2);
  text-decoration: line-through;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.pricing-price .pricing-detail {
  font-size: 20px !important;
  color: var(--text2);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-left: 30px;
}

.pricing-card.pro {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  border-color: var(--border2);
}

.pricing-tier { font-size: 12px; letter-spacing: 0.1em; color: var(--text2); text-transform: uppercase; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 300; letter-spacing: -0.04em; margin-bottom: 4px; }
.pricing-price span { font-size: 16px; color: var(--text2); font-weight: 400; }
.pricing-desc { font-size: 14px; color: var(--text2); margin-bottom: 36px; line-height: 1.6; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.pricing-features li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text3);
  flex-shrink: 0;
}

.pricing-features li.pro-only { color: var(--text); }
.pricing-features li.pro-only::before { background: var(--accent); }

.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-2xl);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  transition: all var(--ease-sm);
  cursor: pointer;
  margin-top: auto;
}

.pricing-btn.free {
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%);
  border: 1px solid var(--border2);
  color: var(--text2);
  box-shadow: inset 0 1px 0 var(--shadow-inset-top), 0 4px 16px rgba(0,0,0,0.3);
}

.pricing-btn.free:hover { color: var(--text); border-color: var(--border2); }

.pricing-btn.pro-btn {
  background: linear-gradient(180deg, var(--thickglass-from) 0%, var(--thickglass-to) 80%);
  color: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 20px rgba(0,0,0,0.4);
}

.pricing-btn.pro-btn:hover { opacity: 0.9; }

/* ─────────────────────────────────────────────
   BLOG / GUIDES
───────────────────────────────────────────── */
.blog-section { background: var(--bg2); }

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

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--glass-from) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 var(--shadow-inset-top);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease-sm), transform var(--ease-md), box-shadow var(--ease-sm);
}

.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 var(--shadow-inset-top);
}

.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: saturate(0.8); }
.blog-card-body { padding: 24px; }
.blog-tag { font-size: 10px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; display: block; }
.blog-card h3 { font-size: 17px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.4; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section { background: var(--bg); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q { font-size: 15px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--text); }
.faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; }

.faq-side h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 20px; }
.faq-side p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
/* ─── CTA ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 0;
}

.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}

/*
  Total cycle: 20s
  ─────────────────────────────
  0s   → og_1 fades in
  2s   → og_1 fully visible, holds
  5s   → sky-1 fades in over og_1
  7s   → sky-1 fully visible, holds
  9s   → everything fades to black
  10s  → black
  11s  → og_2 fades in
  13s  → og_2 fully visible, holds
  16s  → space-2 fades in over og_2
  18s  → space-2 fully visible, holds
  20s  → everything fades to black → loop
*/

/* og_1: fades in at start, fades out at black transition */
.cta-img-1 {
  z-index: 1;
  animation: cta1 10s ease-in-out infinite;
}

/* sky-1: fades in over og_1, fades out at black */
.cta-img-2 {
  z-index: 2;
  animation: cta2 10s ease-in-out infinite;
}

/* og_2: fades in after black, fades out at second black */
.cta-img-3 {
  z-index: 3;
  animation: cta3 10s ease-in-out infinite;
}

/* space-2: fades in over og_2, fades out at end */
.cta-img-4 {
  z-index: 4;
  animation: cta4 10s ease-in-out infinite;
}

/* og_1 fades in → holds → fades out as sky-1 comes in */
@keyframes cta1 {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  38%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

/* sky-1 fades in over og_1 → fades out as og_2 comes in */
@keyframes cta2 {
  0%   { opacity: 0; }
  30%  { opacity: 0; }
  42%  { opacity: 1; }
  55%  { opacity: 1; }
  67%  { opacity: 0; }
  100% { opacity: 0; }
}

/* og_2 fades in as sky-1 fades → holds → fades out as space-2 comes in */
@keyframes cta3 {
  0%   { opacity: 0; }
  58%  { opacity: 0; }
  68%  { opacity: 1; }
  80%  { opacity: 1; }
  92%  { opacity: 0; }
  100% { opacity: 0; }
}

/* space-2 fades in over og_2 → holds → fades out as og_1 starts again */
@keyframes cta4 {
  0%   { opacity: 0; }
  82%  { opacity: 0; }
  92%  { opacity: 1; }
  98%  { opacity: 1; }
  100% { opacity: 0; }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(
    to bottom,
    rgba(13,13,15,0.4) 0%,
    rgba(13,13,15,0.25) 50%,
    rgba(13,13,15,0.55) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 6;
  max-width: 600px;
  text-align: center;
  padding: 80px 40px;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-section h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-section > .cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer-top {
  display: flex;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 80px 120px;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}
.footer-brand { padding-right: 120px; }
.footer-tagline { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; max-width: 400px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  transition: all var(--ease-sm);
}
.footer-social-btn:hover { color: var(--text); border-color: var(--border2); }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col {max-width: 400px;}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color var(--ease-sm); }
.footer-col ul a:hover { color: var(--text2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 120px;
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-bottom p a { color: var(--text3); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text3); text-decoration: none; }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes heroBgScale {
  from { transform: scale(1.06); opacity: 1; }
  to   { transform: scale(1);    opacity: 1; }
}

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — blur + slide */
.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    filter 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

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

.reveal-stagger > * {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16,1,0.3,1),
    filter 0.6s cubic-bezier(0.16,1,0.3,1),
    transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.reveal-stagger.visible > *:nth-child(1) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.6s; }
.reveal-stagger.visible > *:nth-child(8) { opacity: 1; filter: blur(0); transform: none; transition-delay: 0.7s; }

/* Word blur reveal */
.word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(4px);
  transition:
    opacity 0.5s cubic-bezier(0.16,1,0.3,1),
    filter 0.5s cubic-bezier(0.16,1,0.3,1),
    transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.word.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 800px) {
  .nav-logo img{
    height:22px;
    width:auto;
  }

  nav{
    padding:12px 20px;
    display:flex;
    align-items:center;
  }

  .nav-cta{
    padding:8px 16px;
    font-size:12px;
  }

  .nav-links{
    display:none;
  }

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

  .hero-visual{
    min-height:340px;
    height:50vh;
  }

  .hero-visual-overlay {
    position: absolute;
    inset: 0;
    /* Stronger fade at bottom so text row reads clearly */
    background: linear-gradient(
      to bottom,
      rgba(13,13,15,0) 70%,
      rgba(13,13,15,0.4) 85%,
      rgba(13,13,15,0.7) 100%
    );
    z-index: 1;
  }

  .hero-img{
    background-position:center 35%;
  }

  /* ---------- EFFECT TABS ---------- */

  .hero-tabs{
    position:absolute;
    left:20px;
    right:20px;
    bottom:18px;

    display:flex;
    flex-wrap:wrap;
    justify-content:left;
    gap:8px;

    width:auto;
    margin:0;
}

.hero-tab{
    flex:0 0 auto;
    width:auto;
    white-space:nowrap;

    font-size:10px;
    line-height:1;

    padding:6px 12px;

    border-radius:999px;
}

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

  .hero-content{
    display:flex;
    flex-direction:column;

    gap:16px;

    padding:36px 20px 48px;

    align-items:flex-start;
  }

  .hero-left,
  .hero-right{
    width:100%;
    max-width:none;
  }

  .hero h1{
    font-size:44px;
    line-height:1.02;
    max-width:100%;
  }

  .hero-sub{
    font-size:13px;
    line-height:1.6;
    margin-bottom:24px;
  }

  .hero-badge{
padding: 8px;
font-size:11px;
line-height:1.02;
  }
  /* ---------- BUTTONS ---------- */

  .hero-actions{
    display:flex;
    flex-direction:row;
    width:100%;
    gap:12px;
  }

  .hero-actions a{
    flex:1;
    min-width:0;
    white-space:nowrap;
  }

  .btn-primary,
  .btn-ghost{
    width:100%;
    min-height:52px;
    padding:14px 18px;
  }

  section { padding: 72px 20px; }
  .effects-grid { grid-template-columns: 1fr; gap:16px; }
  .effect-card {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    cursor: pointer;
    transition: transform var(--ease-md);
  border-radius: 16px;
  }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .strip img { height: 160px; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > *, .word, .strip img, .hero-img { opacity: 1; filter: none; transform: none; }
  .strip-inner { animation: none; }
}