/* ═══════════════════════════════════════════════════════════════════════════
   TweetMint Landing Page — Marc Lou / ShipFast Style
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #0f0f11;
  --bg-alt: #18181b;
  --bg-card: #1e1e24;
  --bg-card-hover: #26262e;
  --accent: #ffbe1a;
  --accent-hover: #f0b000;
  --green: #22c55e;
  --red: #ef4444;
  --text: #ffffff;
  --text-sec: #a1a1aa;
  --text-muted: #71717a;
  --border: #27272a;
  --border-light: #3f3f46;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 17, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(15, 15, 17, 0.96);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
}

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

.btn-nav {
  padding: 10px 20px !important;
  font-size: 13px !important;
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 0 20px rgba(255, 190, 26, 0.25);
  transition: all 0.3s ease !important;
}

.btn-nav:hover {
  box-shadow: 0 0 30px rgba(255, 190, 26, 0.4) !important;
  transform: translateY(-1px) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255, 190, 26, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  font-size: 1.05rem;
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-card);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-pro-notify {
  background: linear-gradient(135deg, rgba(255, 190, 26, 0.15), rgba(168, 85, 247, 0.15));
  color: var(--accent);
  padding: 16px 32px;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 190, 26, 0.3);
  transition: all 0.3s ease;
}

.btn-pro-notify:hover {
  background: linear-gradient(135deg, rgba(255, 190, 26, 0.25), rgba(168, 85, 247, 0.25));
  box-shadow: 0 0 30px rgba(255, 190, 26, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.12rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 190, 26, 0.08);
  border: 1px solid rgba(255, 190, 26, 0.2);
  color: var(--accent);
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Highlight ──────────────────────────────────────────────────────────── */
.highlight {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 6px;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 4px;
  transform: skewX(-4deg);
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 620px;
  margin-bottom: 56px;
}

.section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 190, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-sec);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-cta-group {
  margin-bottom: 28px;
}

.hero-urgency {
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 12px;
  font-weight: 500;
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.social-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero demo */
.hero-demo {
  margin-top: 56px;
  max-width: 680px;
  width: 100%;
}

.demo-window {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-url {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.demo-content {
  padding: 20px;
}

.demo-tweet {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.demo-tweet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  object-fit: cover;
}

.demo-tweet-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.demo-handle {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
}

.demo-tweet-text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}

.demo-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.demo-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-panel-logo {
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
}

.demo-tones {
  display: flex;
  gap: 6px;
}

.demo-tone {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.demo-tone.active {
  background: rgba(255, 190, 26, 0.15);
  color: var(--accent);
}

.demo-reply {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 8px;
  border-left: 3px solid var(--accent);
  opacity: 0;
  animation: fadeSlideUp 0.5s ease forwards;
}

.demo-reply-1 {
  animation-delay: 0.6s;
}

.demo-reply-2 {
  animation-delay: 1.2s;
}

.demo-reply:last-child {
  margin-bottom: 0;
}

/* ── Comparison ─────────────────────────────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  text-align: left;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.comparison-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.comparison-title-bad {
  color: var(--red);
}

.comparison-title-good {
  color: var(--green);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sec);
  margin-bottom: 14px;
  line-height: 1.5;
}

.x-mark {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.check-mark {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.check-mark-muted {
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Features ───────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 190, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step-card {
  padding: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.stat-accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-masonry {
  columns: 3;
  column-gap: 20px;
  text-align: left;
}

.testimonial-card {
  break-inside: avoid;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  transition: border-color 0.25s;
}

.testimonial-card:hover {
  border-color: var(--border-light);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-handle {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  text-align: left;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255, 190, 26, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 12px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list {
  text-align: left;
  width: 100%;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 190, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  margin-bottom: 12px;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  margin: 0;
}

.footer-right {
  display: flex;
  gap: 20px;
}

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

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

/* ── Pro Pricing Card ──────────────────────────────────────────────────── */
.pricing-pro {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.06), rgba(255, 190, 26, 0.04));
}

.pricing-pro:hover {
  border-color: rgba(168, 85, 247, 0.5);
}

.pro-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.08), transparent, rgba(255, 190, 26, 0.08), transparent);
  animation: proRotate 8s linear infinite;
  pointer-events: none;
}

.pro-coming-soon {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.coming-soon-text {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-sec), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-text-accent {
  background: linear-gradient(135deg, var(--accent), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s ease-in-out infinite;
}

.coming-soon-sparkle {
  font-size: 1.6rem;
  animation: sparkleFloat 2s ease-in-out infinite;
}

/* ── Waitlist Form ──────────────────────────────────────────────────────── */
.waitlist-wrapper {
  position: relative;
}

.waitlist-form {
  display: none;
  margin-top: 16px;
  animation: fadeSlideUp 0.4s ease both;
}

.waitlist-wrapper.open .waitlist-form {
  display: block;
}

.waitlist-wrapper.open #waitlistToggle {
  display: none;
}

.waitlist-input-group {
  display: flex;
  gap: 8px;
}

.waitlist-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input:focus {
  border-color: var(--accent);
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-submit {
  padding: 12px 24px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.waitlist-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(255, 190, 26, 0.3);
}

.waitlist-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.waitlist-success {
  display: none;
  font-size: 0.9rem;
  color: var(--green);
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
  animation: fadeSlideUp 0.4s ease both;
}

.waitlist-wrapper.submitted .waitlist-success {
  display: block;
}

.waitlist-wrapper.submitted .waitlist-input-group {
  display: none;
}

.waitlist-wrapper.submitted .waitlist-hint {
  display: none;
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmerText {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.4);
  }
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(15deg);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(255, 190, 26, 0.08);
  }

  50% {
    box-shadow: 0 0 60px rgba(255, 190, 26, 0.15);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 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;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.badge {
  animation: floatBadge 3s ease-in-out infinite;
}

.pricing-featured {
  animation: glowPulse 4s ease-in-out infinite;
}

.feature-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(255, 190, 26, 0.08);
}

.hero-title,
.section-title {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle {
  animation: fadeSlideUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta-group {
  animation: fadeSlideUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.social-proof {
  animation: fadeSlideUp 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stat-number {
  transition: transform 0.3s ease;
}

.stat:hover .stat-number {
  transform: scale(1.1);
}

.testimonial-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(255, 190, 26, 0.35);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: none;
}

.btn-primary:hover::after {
  animation: btnShine 0.6s ease forwards;
}

@keyframes btnShine {
  to {
    transform: translateX(100%);
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .features-grid,
  .testimonials-masonry {
    columns: 2;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .section {
    padding: 72px 0;
  }

  .features-grid,
  .steps-grid,
  .comparison-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-masonry {
    columns: 1;
  }

  .stats-row {
    gap: 32px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}