/* ════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════ */
[data-theme="light"] {
  --bg: #fafaf8;
  --bg-raised: #f5f4f0;
  --surface: #ffffff;
  --card: #f9f8f5;
  --card-hover: #f2f1ec;
  --border: rgba(0, 0, 0, 0.07);
  --border-md: rgba(0, 0, 0, 0.11);
  --text: #141412;
  --text-2: #6b6b65;
  --text-3: #b4b4aa;
  --accent: #ea6c0a;
  --accent-2: #f97316;
  --acent-3: #fde6d4;
  --accent-soft: rgba(249, 115, 22, 0.08);
  --accent-border: rgba(249, 115, 22, 0.22);
  --green: #16a34a;
  --teal: #0891b2;
  --amber: #d97706;
  --rose: #e11d48;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  --dot-color: rgba(0, 0, 0, 0.15);
  --particle-color: 249, 115, 22;
  --beam-color: rgba(249, 115, 22, 0.7);
}

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

html,
body {
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.6;

  transition:
    background 0.5s ease,
    color 0.5s ease;
}
::selection {
  background: var(--accent-soft);
  color: var(--accent);
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ════════════════════════════════════
   SCROLL PROGRESS BAR (Magic UI)
════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════
   DOT PATTERN BACKGROUND (Magic UI)
════════════════════════════════════ */
.dot-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    var(--dot-color) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    black 40%,
    transparent 100%
  );
  transition: all 0.5s ease;
  opacity: 0.65;
}

/* ════════════════════════════════════
   PARTICLES CANVAS (Magic UI — subtle)
════════════════════════════════════ */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

nav.scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 0;
  cursor: pointer;
}
.logo-nexdo {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.3px;
  transition: color 0.3s;
}
.logo-dot {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-style: normal;
}
.logo-app {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-left: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin-right: 20px;
}
nav ul a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 13px;
  border-radius: 7px;
  transition: all 0.18s;
}
nav ul a:hover {
  color: var(--text);
  background: var(--card);
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border-md);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── FULLSCREEN OVERLAY ── */
.nav-overlay {
  position: fixed;

  inset: 0;
  z-index: 501;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto; /* allows scrolling inside overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.nav-overlay-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-md);
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nav-overlay-close:hover {
  background: var(--card);
  color: var(--text);
}

/* Inner content */
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 32px 48px;
  width: 100%;
}

/* Links */
.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav-overlay-links li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-overlay-links li:first-child {
  border-top: 1px solid var(--border);
}
.nav-overlay.open .nav-overlay-links li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open .nav-overlay-links li:nth-child(1) {
  transition-delay: 0.05s;
}
.nav-overlay.open .nav-overlay-links li:nth-child(2) {
  transition-delay: 0.1s;
}
.nav-overlay.open .nav-overlay-links li:nth-child(3) {
  transition-delay: 0.15s;
}
.nav-overlay.open .nav-overlay-links li:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-overlay-links a {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-2);
  padding: 18px 0;
  transition: color 0.2s;
}
.nav-overlay-links a:hover {
  color: var(--accent);
}

/* Sign in / Sign up buttons */
.nav-overlay-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease 0.25s,
    transform 0.3s ease 0.25s;
}
.nav-overlay.open .nav-overlay-actions {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay-actions .btn-signin,
.nav-overlay-actions .btn-cta-nav {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── ANIMATED THEME TOGGLER (Magic UI) ── */
.theme-toggle {
  position: relative;
  width: 76px;
  height: 34px;
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 3px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.toggle-track {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
[data-theme="dark"] .toggle-track {
  transform: translateX(40px);
}
.toggle-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  position: absolute;
  transition: opacity 0.3s;
}
.toggle-label-light {
  right: 8px;
}
.toggle-label-dark {
  left: 8px;
  opacity: 0;
}
[data-theme="dark"] .toggle-label-light {
  opacity: 0;
}
[data-theme="dark"] .toggle-label-dark {
  opacity: 1;
}

.btn-signin {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 15px;
  border-radius: 8px;
  transition: all 0.18s;
}
.btn-signin:hover {
  color: var(--text);
}
/* SHIMMER BUTTON (Magic UI) */
.btn-cta-nav {
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  color: var(--surface);
  background: var(--text);
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
}
[data-theme="dark"] .btn-cta-nav {
  color: var(--bg);
}
.btn-cta-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s 1s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.btn-cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 64px;
  position: relative;
  z-index: 1;
}
/* Soft gradient radial — subtle, not loud */
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

/* ANIMATED SHINY TEXT badge (Magic UI) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 5px 14px 5px 6px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(79, 70, 229, 0.06) 50%,
    transparent 70%,
    transparent 100%
  );
  background-size: 200% auto;
  animation: shiny-sweep 3s linear infinite;
}
@keyframes shiny-sweep {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.badge-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pip-pulse 2s ease-in-out infinite;
}
@keyframes pip-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
.badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  z-index: 1;
}
.badge-text strong {
  color: var(--accent);
}

/* ── AURORA TEXT (Magic UI) ── */
.aurora-text {
  background: linear-gradient(
    120deg,
    var(--text) 0%,
    var(--text) 15%,
    #f97316 30%,
    #fbbf24 48%,
    #fb923c 62%,
    #f97316 75%,
    var(--text) 88%,
    var(--text) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora-sweep 5s ease-in-out infinite alternate;
}
@keyframes aurora-sweep {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}
[data-theme="dark"] .aurora-text {
  background: linear-gradient(
    120deg,
    var(--text) 0%,
    var(--text) 12%,
    #fb923c 28%,
    #fde68a 46%,
    #fbbf24 62%,
    #fb923c 76%,
    var(--text) 88%,
    var(--text) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: aurora-sweep 5s ease-in-out infinite alternate;
}

/* ── ANIMATED GRADIENT TEXT (Magic UI) — for badge ── */
.animated-gradient-text {
  background: linear-gradient(
    90deg,
    #ea6c0a 0%,
    #f97316 20%,
    #fbbf24 40%,
    #f97316 60%,
    #ea6c0a 80%,
    #fb923c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-text-move 3s linear infinite;
  font-weight: 600;
}
[data-theme="dark"] .animated-gradient-text {
  background: linear-gradient(
    90deg,
    #fb923c 0%,
    #fbbf24 20%,
    #fdba74 40%,
    #fbbf24 60%,
    #fb923c 80%,
    #fde68a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: grad-text-move 3s linear infinite;
}
@keyframes grad-text-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ── TYPING ANIMATION (Magic UI) ── */
.typing-wrap {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  gap: 0;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  border-radius: 1px;
  animation: cursor-blink 0.9s step-end infinite;
  vertical-align: middle;
}
@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* MORPHING TEXT (Magic UI) */
.hero-h1 {
  font-family: "Lora", serif;
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 600;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -3px;
  max-width: 860px;
  color: var(--text);
}
.h1-line-plain {
  display: block;
  font-style: normal;
  color: var(--text-3);
}
.h1-morph-wrap {
  display: inline-block;
  position: relative;
  min-width: 3px;
}
.h1-morph {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 1.2rem;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-2);
  max-width: 480px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
/* RIPPLE BUTTON (Magic UI) */
/* ── HERO RAINBOW BUTTON (Magic UI accurate) — bottom glow style ── */
.btn-hero-rainbow {
  position: relative;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #18181b;
  transition: transform 0.25s;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.typing-wrap {
  min-height: 1.6em;
}

/* ── HERO SECONDARY BUTTON — orange accent ── */
.btn-hero-secondary {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--accent-border);
  background: var(--accent-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s;
}
.btn-hero-secondary:hover {
  background: rgba(249, 115, 22, 0.14);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-soft);
}

.btn-ripple:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-outline:hover {
  color: var(--text);
  background: var(--card);
}

/* AVATAR CIRCLES (Magic UI) */
.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
}
.avatar-circles {
  display: flex;
}
.av-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  transition: transform 0.2s;
}
.av-circle:first-child {
  margin-left: 0;
}
.avatar-circles:hover .av-circle {
  transform: translateX(-2px);
}
.avatar-circles:hover .av-circle:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 10;
}
.social-sep {
  width: 1px;
  height: 18px;
  background: var(--border-md);
}
.social-txt {
  font-size: 13px;
  color: var(--text-2);
}
.social-txt strong {
  color: var(--text);
}
.social-stars {
  color: var(--amber);
  font-size: 11px;
}

/* ════════════════════════════════════
   MAC BROWSER MOCKUP — SAFARI (Magic UI)
════════════════════════════════════ */
.mockup-section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.mac-shell {
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.mac-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mac-dot:nth-child(1) {
  background: #ff5f57;
}
.mac-dot:nth-child(2) {
  background: #ffbd2e;
}
.mac-dot:nth-child(3) {
  background: #28ca42;
}
.mac-url-bar {
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 11.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mac-url-bar::before {
  content: "🔒";
  font-size: 9px;
}
.mac-content {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 400px;
}

/* Main area */
.mac-main {
  padding: 20px;
  overflow: hidden;
}
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mm-title {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 500;
  /* font-style: italic; */
}
.mm-btn {
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: default;
}
[data-theme="dark"] .mm-btn {
  background: var(--accent);
  color: #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px;
  cursor: default;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.proj-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.proj-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.proj-name {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 6px;
}
.proj-meta {
  font-size: 10.5px;
  color: var(--text-3);
  display: flex;
  gap: 10px;
}
.proj-bar {
  margin-top: 10px;
  height: 3px;
  background: var(--bg-raised);
  border-radius: 2px;
  overflow: hidden;
}
.proj-fill {
  height: 100%;
  border-radius: 2px;
  animation: bar-grow 2s ease both;
  animation-delay: 1s;
}
@keyframes bar-grow {
  from {
    width: 0 !important;
  }
}

/* ════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════ */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.sec-title {
  font-family: "Lora", serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
}
.sec-title .roman {
  font-style: normal;
  color: var(--text-3);
}
.sec-sub {
  font-size: 16.5px;
  color: var(--text-2);
  max-width: 420px;
  margin-top: 14px;
  line-height: 1.75;
}

/* ════════════════════════════════════
   FEATURES — STICKY SCROLL
════════════════════════════════════ */
.features-bg {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s;
}
.feat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
}
.feat-sticky {
  position: sticky;
  top: 90px;
}
.feat-steps {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.feat-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.28;
  transition: opacity 0.4s;
  cursor: default;
}
.feat-step:last-child {
  border-bottom: none;
}
.feat-step.active {
  opacity: 1;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.4s;
}
.feat-step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.step-body h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  color: var(--text-3);
  margin-top: 10px;
}
.feat-step.active .step-tag {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent-border);
}
/* MAGIC CARD (Magic UI) */
.feat-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.magic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.magic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x, -400px) var(--mouse-y, -400px),
    var(--accent-soft),
    transparent 60%
  );
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.magic-card:hover::before {
  opacity: 1;
}
.magic-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg);
}
.mc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Spaces */
.space-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.space-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  cursor: default;
  transition: all 0.18s;
  font-size: 13px;
}
.space-item:hover {
  border-color: var(--border-md);
  transform: translateX(3px);
}
.space-item.selected {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}
.space-info {
  flex: 1;
}
.space-name {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 1px;
}
.space-count {
  font-size: 10.5px;
  color: var(--text-3);
}

/* Tasks */
.task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  cursor: default;
  transition: all 0.18s;
}
.task-item:hover {
  border-color: var(--border-md);
}
.task-item.highlighted {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}
.task-cb {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px solid var(--border-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
}
.task-cb.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.task-name {
  font-size: 12px;
  font-weight: 500;
  flex: 1;
}
.task-item.striked .task-name {
  text-decoration: line-through;
  color: var(--text-3);
}
.status-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
}
.chip-g {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
}
.chip-b {
  background: rgba(8, 145, 178, 0.1);
  color: var(--teal);
}
.chip-a {
  background: rgba(217, 119, 6, 0.1);
  color: var(--amber);
}

/* Comments */
.comment-task-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 13px;
  margin-bottom: 12px;
}
.ctb-title {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 3px;
}
.ctb-meta {
  font-size: 11px;
  color: var(--text-3);
}
.comment-thread {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.comment {
  display: flex;
  gap: 9px;
}
.comment-av {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comment-bubble {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 2px;
  padding: 8px 11px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
}
.comment-name {
  font-weight: 700;
  color: var(--text);
  font-size: 10.5px;
  margin-bottom: 2px;
}
.comment-input {
  display: flex;
  gap: 8px;
  margin-top: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 12px;
  color: var(--text-3);
}
code {
  background: var(--card-hover);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--accent);
}

/* Progress */
.number-ticker {
  font-family: "Lora", serif;
  font-size: 54px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}
.ticker-label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 18px;
}
.bar-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
/* .bar-row {
} */
.bar-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 5px;
}
.bar-name {
  font-weight: 600;
}
.bar-pct {
  color: var(--text-3);
}
.prog-track {
  height: 5px;
  background: var(--card-hover);
  border-radius: 3px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  border-radius: 3px;
  animation: bar-grow 1.8s ease both;
}

/* ════════════════════════════════════
   HOW IT WORKS — v1 style grid
════════════════════════════════════ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 72px;
}
/* horizontal connector line */
.how-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(249, 115, 22, 0.4) 50%,
    rgba(249, 115, 22, 0.1) 100%
  );
  z-index: 0;
}
.how-step-card {
  text-align: center;
  position: relative;
  padding: 4px 8px;
}

.how-step-card:hover {
  outline: 0.5px solid var(--acent-3);
  border-radius: 4px;
}
.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border: 1.5px solid var(--border-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
}
.how-step-card:hover .how-step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow:
    0 0 0 6px var(--accent-soft),
    0 8px 24px rgba(249, 115, 22, 0.3);
  transform: scale(1.12);
}
.how-step-icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}
.how-step-card:hover .how-step-icon {
  transform: translateY(-3px);
}
.how-step-card h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text);
}
.how-step-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.how-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--text-3);
  transition: all 0.2s;
}
.how-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--accent-soft),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: 12px;
}
.how-step-card:hover::after {
  opacity: 1;
}
.how-scroll-hint {
  display: none;
}

/* ════════════════════════════════════
   FINAL CTA — RIPPLE background (Magic UI)
════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.cta-ripple {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  animation: cta-ripple-expand ease-out infinite;
  opacity: 0;
}
.cta-ring:nth-child(1) {
  width: 160px;
  height: 160px;
  animation-duration: 4s;
  animation-delay: 0s;
}
.cta-ring:nth-child(2) {
  width: 280px;
  height: 280px;
  animation-duration: 4s;
  animation-delay: 0.8s;
}
.cta-ring:nth-child(3) {
  width: 420px;
  height: 420px;
  animation-duration: 4s;
  animation-delay: 1.6s;
}
.cta-ring:nth-child(4) {
  width: 580px;
  height: 580px;
  animation-duration: 4s;
  animation-delay: 2.4s;
}
@keyframes cta-ripple-expand {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    var(--accent-soft),
    transparent 65%
  );
  pointer-events: none;
}
.cta-section h2 {
  font-family: "Lora", serif;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -3px;
  line-height: 0.92;
  margin-bottom: 22px;
  position: relative;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--accent);
}
.cta-section p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* RAINBOW BUTTON (Magic UI) */
.btn-rainbow {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #ea6c0a,
    #f97316,
    #fb923c,
    #fbbf24,
    #f59e0b,
    #ea6c0a,
    #dc2626,
    #f97316,
    #ea6c0a
  );
  background-size: 400% auto;
  animation: rainbow-move 14s linear infinite;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
@keyframes rainbow-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 400% center;
  }
}
.btn-rainbow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.4);
}
.btn-rainbow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 55%
  );
}
.btn-ghost-final {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-final:hover {
  color: var(--text);
  background: var(--card);
}

/* ════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════ */
.contact-section {
  padding: 112px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .eyebrow {
  margin-bottom: 16px;
}
.contact-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
}
.contact-meta-icon {
  font-size: 16px;
}

/* Form card */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.contact-field input,
.contact-field textarea {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 10px 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: none;
  outline: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-3);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Submit button */
.contact-submit {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 9px;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s;
}
.contact-submit:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}
.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success message */
.contact-success {
  display: none;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.contact-success.visible {
  display: flex;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-raised);
  transition: background 0.5s;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-logo {
  font-family: "Lora", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
}
.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.18s;
}
.foot-links a:hover {
  color: var(--text);
}
.foot-copy {
  font-size: 12px;
  color: var(--text-3);
}

/* ════════════════════════════════════
   WAITLIST MODAL
════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: none;
  color: var(--text-3);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--card);
  color: var(--text);
}

/* Content */
.modal-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.modal-title {
  font-family: "Sora", serif;
  font-size: 26px;
  font-weight: 600;
  /* font-style: italic; */
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.modal-field input {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: 9px;
  padding: 11px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.modal-field input::placeholder {
  color: var(--text-3);
}
.modal-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.modal-field input.error {
  border-color: #ef4444;
  animation: modal-shake 0.3s ease;
}

/* Submit */
.modal-submit {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 9px;
  padding: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s;
  margin-top: 4px;
}
.modal-submit:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}
.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success */
.modal-success {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-align: center;
  padding: 12px 0;
}
.modal-success.visible {
  display: block;
}

/* Note */
.modal-note {
  font-size: 11.5px;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
}

@keyframes modal-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

@media (max-width: 480px) {
  .modal-card {
    padding: 32px 24px 28px;
  }
}

/* ════════════════════════════════════
   BLUR FADE — GSAP owns all animation
════════════════════════════════════ */
.bf-d1 {
  --bf-delay: 0.1;
}
.bf-d2 {
  --bf-delay: 0.2;
}
.bf-d3 {
  --bf-delay: 0.3;
}
.bf-d4 {
  --bf-delay: 0.4;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 780px) {
  #scroll-progress {
    display: none;
  }

  .nav-links {
    display: none;
  }
  .nav-desktop-only {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .nav-hamburger .open {
    display: none;
  }

  .container {
    max-width: 90%;
    padding: 0 20px;
    margin: 0 auto;
  }
  section {
    padding: 72px 0;
  }
  .mac-content {
    grid-template-columns: 1fr;
  }
  .mac-sidebar {
    display: none;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-sticky {
    position: static;
  }

  .feat-cards {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .magic-card {
    width: calc(50% - 10px);
  }

  .int-layout {
    grid-template-columns: 1fr;
  }
  .orbit-wrap {
    margin-bottom: 40px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr); /*repeat(2, 1fr); */
    gap: 28px;
  }
  .how-grid::before {
    display: none;
  }
  .testi-col:nth-child(2) {
    margin-top: 0;
  }
  .reveal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reveal-stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    gap: 20px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .feat-sticky {
    position: static;
  }
  .feat-layout {
    grid-template-columns: 1fr;
  }
  #featCards .magic-card {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec-sub {
    max-width: 90%;
  }
}

@media (max-width: 680px) {
  .magic-card {
    width: calc(100% - 30px);
  }
}

@media (max-width: 550px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-section,
  .contact-section {
    padding: 70px 30px;
  }
  .feat-layout {
    padding: 30px 0;
  }
}
