/* ============================================================
       CSS CUSTOM PROPERTIES & THEME SYSTEM
    ============================================================ */
    :root {
      /* Instagram-inspired gradient */
      --ig-grad: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      --ig-grad-alt: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      --ig-grad-cool: linear-gradient(135deg, #6441a5, #2a0845);

      /* Brand accent */
      --accent-1: #c13584;
      --accent-2: #e1306c;
      --accent-3: #fd1d1d;
      --accent-4: #f77737;
      --accent-5: #fcb045;

      /* Radius */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-pill: 9999px;

      /* Transitions */
      --t-fast: 0.18s ease;
      --t-med: 0.35s ease;
      --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-theme="dark"] {
      --bg-primary:    #0a0a0a;
      --bg-secondary:  #111111;
      --bg-card:       #1a1a1a;
      --bg-card-hover: #222222;
      --bg-glass:      rgba(255,255,255,0.05);
      --bg-glass-2:    rgba(255,255,255,0.08);
      --border:        rgba(255,255,255,0.08);
      --border-hover:  rgba(255,255,255,0.18);
      --text-primary:  #f5f5f5;
      --text-secondary:#b0b0be;
      --text-muted:    #72728a;
      --shadow-card:   0 4px 40px rgba(0,0,0,0.5);
      --shadow-glow:   0 0 60px rgba(193,53,132,0.25);
      --nav-bg:        rgba(10,10,10,0.92);
      --input-bg:      rgba(255,255,255,0.06);
      --stat-grad:     linear-gradient(135deg, #d060b0, #ff6060, #ffb040);
      --green-readable:#4dbb70;
    }

    [data-theme="light"] {
      --bg-primary:    #ffffff;
      --bg-secondary:  #f7f7fb;
      --bg-card:       #ffffff;
      --bg-card-hover: #f2f2f7;
      --bg-glass:      rgba(0,0,0,0.03);
      --bg-glass-2:    rgba(0,0,0,0.05);
      --border:        rgba(0,0,0,0.09);
      --border-hover:  rgba(0,0,0,0.2);
      --text-primary:  #0d0d0d;
      --text-secondary:#4a4a5a;
      --text-muted:    #8888a0;
      --shadow-card:   0 4px 40px rgba(0,0,0,0.08);
      --shadow-glow:   0 0 60px rgba(193,53,132,0.12);
      --nav-bg:        rgba(255,255,255,0.92);
      --input-bg:      rgba(0,0,0,0.04);
      --stat-grad:     linear-gradient(135deg, #8b1a6b, #c0302a, #b06000);
      --green-readable:#1e8840;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      transition: background var(--t-med), color var(--t-med);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ============================================================
       UTILITY CLASSES
    ============================================================ */
    .grad-text {
      background: var(--ig-grad-alt);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* EngageDM logo wordmark */
    .logo-flo {
      font-weight: 900;
      background: linear-gradient(135deg, #ffffff 0%, #f0c0d8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
    }
    [data-theme="light"] .logo-flo {
      background: linear-gradient(135deg, #2d0a3e 0%, #7b1fa2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .logo-gram {
      font-weight: 800;
      background: var(--ig-grad-alt);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.04em;
    }

    .grad-border {
      position: relative;
      border-radius: var(--radius-pill);
    }
    .grad-border::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: var(--ig-grad-alt);
      z-index: -1;
    }

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

    .section { padding: 100px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-2);
      background: rgba(225, 48, 108, 0.1);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(225, 48, 108, 0.25);
      margin-bottom: 20px;
    }
    [data-theme="light"] .section-label {
      color: #a01040;
      background: rgba(160, 16, 64, 0.08);
      border-color: rgba(160, 16, 64, 0.2);
    }

    .section-title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.75;
    }

    /* ============================================================
       SCROLLBAR
    ============================================================ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

    /* ============================================================
       NAVBAR
    ============================================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: var(--nav-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background var(--t-med), border-color var(--t-med);
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--ig-grad-alt);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: color var(--t-fast);
      position: relative;
    }

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

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--ig-grad-alt);
      border-radius: 1px;
      transform: scaleX(0);
      transition: transform var(--t-fast);
    }

    .nav-links a:hover::after { transform: scaleX(1); }

    /* Active section highlight set by scroll listener in landing.js */
    .nav-links a.active-link { color: var(--text-primary); }
    .nav-links a.active-link::after { transform: scaleX(1); }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      transition: all var(--t-fast);
      white-space: nowrap;
    }

    .btn-ghost {
      color: var(--text-secondary);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover {
      color: var(--text-primary);
      border-color: var(--border-hover);
      background: var(--bg-glass);
    }

    .btn-primary {
      background: var(--ig-grad-alt);
      color: white;
      box-shadow: 0 4px 20px rgba(193,53,132,0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(193,53,132,0.5);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 16px;
    }

    .btn-outline-grad {
      background: transparent;
      color: var(--text-primary);
      border: 1.5px solid transparent;
      background-clip: padding-box;
      position: relative;
    }
    .btn-outline-grad::before {
      content: '';
      position: absolute;
      inset: -1.5px;
      border-radius: inherit;
      background: var(--ig-grad-alt);
      z-index: -1;
      border-radius: var(--radius-pill);
    }
    .btn-outline-grad:hover { background: var(--bg-glass); }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
      cursor: pointer;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-primary);
      border-radius: 1px;
      transition: all var(--t-fast);
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      /* Base padding for navbar; JS adds --announce-offset when bar is visible */
      padding-top: calc(80px + var(--announce-offset, 0px));
      position: relative;
      overflow: hidden;
      transition: padding-top 0.35s ease;
    }

    /* Animated gradient blobs */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.35;
      pointer-events: none;
      animation: blobFloat 8s ease-in-out infinite;
    }
    .hero-blob-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, #c13584, transparent);
      top: -100px; left: -100px;
      animation-delay: 0s;
    }
    .hero-blob-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, #fd1d1d, transparent);
      top: 100px; right: 0;
      animation-delay: -3s;
    }
    .hero-blob-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, #fcb045, transparent);
      bottom: 0; left: 40%;
      animation-delay: -5s;
    }

    [data-theme="light"] .hero-blob { opacity: 0.12; }

    @keyframes blobFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      background: var(--bg-glass-2);
      border: 1px solid var(--border);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--ig-grad-alt);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.7; }
    }

    .hero-headline {
      font-size: clamp(40px, 6vw, 68px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: 18px;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 40px;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 40px;
    }

    .trust-avatars {
      display: flex;
    }
    .trust-avatars span {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 2px solid var(--bg-primary);
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: white;
      margin-left: -8px;
    }
    .trust-avatars span:first-child { margin-left: 0; }

    .trust-text { font-size: 13px; color: var(--text-secondary); }
    .trust-text strong { color: var(--text-primary); }

    /* ============================================================
       PHONE MOCKUP (Hero Right)
    ============================================================ */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-wrap {
      position: relative;
      z-index: 2;
    }

    .phone {
      width: 280px;
      background: var(--bg-card);
      border-radius: 44px;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow-card), var(--shadow-glow);
      position: relative;
    }

    .phone-notch {
      width: 100px; height: 28px;
      background: var(--bg-primary);
      border-radius: 0 0 18px 18px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .phone-screen {
      padding: 0 12px 20px;
    }

    /* Instagram-like story bar */
    .phone-stories {
      display: flex;
      gap: 12px;
      padding: 14px 0 12px;
      overflow: hidden;
    }

    .story-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .story-ring {
      width: 48px; height: 48px;
      border-radius: 50%;
      padding: 2px;
      background: var(--ig-grad-alt);
    }

    .story-avatar {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: var(--bg-secondary);
      border: 2.5px solid var(--bg-card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      overflow: hidden;
    }

    .story-name {
      font-size: 9px;
      color: var(--text-secondary);
      text-align: center;
      max-width: 48px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Instagram post mockup */
    .phone-post {
      background: var(--bg-secondary);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 10px;
      border: 1px solid var(--border);
    }

    .post-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px;
    }

    .post-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: white;
      font-weight: 700;
    }

    .post-user { font-size: 11px; font-weight: 600; }
    .post-time { font-size: 9px; color: var(--text-muted); margin-left: auto; }

    .post-image {
      width: 100%;
      height: 140px;
      background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
    }

    [data-theme="light"] .post-image {
      background: linear-gradient(135deg, #e8d5f5, #f5c6d0, #fde8cc);
    }

    .post-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 10px;
    }

    .post-action-btn {
      font-size: 16px;
      cursor: pointer;
    }

    .post-caption {
      padding: 0 10px 6px;
      font-size: 10px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .post-caption strong { color: var(--text-primary); font-weight: 600; }

    /* DM bubble animation */
    .dm-bubble {
      background: var(--bg-glass-2);
      border: 1px solid var(--border);
      border-radius: 12px 12px 12px 2px;
      padding: 8px 12px;
      font-size: 10px;
      color: var(--text-secondary);
      margin-bottom: 6px;
      max-width: 180px;
      animation: slideInLeft 0.5s ease forwards;
      opacity: 0;
    }

    .dm-bubble.sent {
      background: var(--ig-grad-alt);
      color: white;
      border-radius: 12px 12px 2px 12px;
      margin-left: auto;
      animation: slideInRight 0.5s ease forwards;
    }

    .dm-label {
      font-size: 9px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 8px;
    }

    .dm-wrap { padding: 6px 0; }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-10px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(10px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Floating cards around phone */
    .float-card {
      position: absolute;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      box-shadow: var(--shadow-card);
      white-space: nowrap;
      z-index: 3;
    }

    .float-card-1 {
      top: 10%;
      right: -20px;
      animation: floatUpDown 4s ease-in-out infinite;
    }

    .float-card-2 {
      bottom: 15%;
      left: -30px;
      animation: floatUpDown 4s ease-in-out infinite;
      animation-delay: -2s;
    }

    @keyframes floatUpDown {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .float-card-icon { font-size: 20px; margin-bottom: 4px; }
    .float-card-value { font-size: 18px; font-weight: 800; }
    .float-card-label { font-size: 11px; color: var(--text-secondary); }

    /* ============================================================
       STATS STRIP
    ============================================================ */
    .stats-strip {
      padding: 32px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg-secondary);
    }

    .stats-grid {
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 24px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-value {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -0.04em;
      background: var(--stat-grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 2px;
    }

    .stat-divider {
      width: 1px;
      height: 40px;
      background: var(--border);
    }

    /* ============================================================
       FEATURES SECTION
    ============================================================ */
    .features-header { text-align: center; margin-bottom: 64px; }
    .features-header .section-sub { margin: 0 auto; }

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

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all var(--t-med);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--ig-grad-alt);
      opacity: 0;
      transition: opacity var(--t-med);
    }

    .feature-card:hover {
      border-color: transparent;
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(193,53,132,0.2);
    }

    .feature-card:hover::before { opacity: 0.06; }

    .feature-card > * { position: relative; z-index: 1; }

    .feature-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius-md);
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      box-shadow: 0 8px 24px rgba(193,53,132,0.3);
    }

    .feature-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .feature-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .feature-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: 11px;
      font-weight: 700;
      color: var(--accent-2);
      background: rgba(225, 48, 108, 0.12);
      padding: 4px 12px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(225, 48, 108, 0.2);
    }
    [data-theme="light"] .feature-tag {
      color: #a01040;
      background: rgba(160, 16, 64, 0.08);
      border-color: rgba(160, 16, 64, 0.18);
    }

    /* ============================================================
       HOW IT WORKS
    ============================================================ */
    .how-section {
      background: var(--bg-secondary);
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .how-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .how-step {
      display: flex;
      gap: 24px;
      position: relative;
    }

    .how-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 20px;
      top: 52px;
      bottom: -20px;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent-2), transparent);
    }

    .step-num {
      flex-shrink: 0;
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      color: white;
      box-shadow: 0 4px 20px rgba(193,53,132,0.4);
      z-index: 1;
    }

    .step-content { padding-bottom: 40px; }

    .step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Automation Flow Visual */
    .flow-visual {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 32px;
      box-shadow: var(--shadow-card);
    }

    .flow-visual-title {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .flow-node {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 14px 16px;
      margin-bottom: 12px;
      transition: border-color var(--t-fast);
    }

    .flow-node:hover { border-color: var(--border-hover); }

    .flow-node-icon {
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .flow-node-body { flex: 1; }
    .flow-node-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
    .flow-node-sub { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

    .flow-arrow {
      display: flex;
      justify-content: center;
      font-size: 20px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .flow-node-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      background: rgba(80, 200, 120, 0.15);
      color: #50c878;
    }

    /* ============================================================
       SHOWCASE / DEMO SECTION
    ============================================================ */
    .showcase-section { overflow: hidden; }

    .showcase-header { text-align: center; margin-bottom: 60px; }
    .showcase-header .section-sub { margin: 0 auto; }

    .showcase-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .showcase-tab {
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      background: var(--bg-card);
      cursor: pointer;
      transition: all var(--t-fast);
    }

    .showcase-tab.active,
    .showcase-tab:hover {
      background: var(--ig-grad-alt);
      color: white;
      border-color: transparent;
      box-shadow: 0 4px 20px rgba(193,53,132,0.3);
    }

    .showcase-display {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .showcase-browser-bar {
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .browser-dots { display: flex; gap: 6px; }
    .browser-dots span {
      width: 12px; height: 12px;
      border-radius: 50%;
    }
    .browser-dots span:nth-child(1) { background: #ff5f57; }
    .browser-dots span:nth-child(2) { background: #febc2e; }
    .browser-dots span:nth-child(3) { background: #28c840; }

    .browser-url {
      flex: 1;
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 6px 16px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .showcase-content {
      padding: 40px;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Dashboard mockup */
    .dashboard-mock {
      width: 100%;
    }

    .dash-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .dash-stat-card {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
    }

    .dash-stat-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
    .dash-stat-val { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary); }
    .dash-stat-val.green { color: var(--green-readable); }
    .dash-stat-val.pink { background: var(--stat-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    .dash-chart-placeholder {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
      height: 120px;
      display: flex;
      align-items: flex-end;
      gap: 8px;
    }

    .chart-bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: var(--ig-grad-alt);
      opacity: 0.7;
      transition: opacity var(--t-fast);
    }
    .chart-bar:hover { opacity: 1; }
    .chart-bar.highlight { opacity: 1; }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonials-header { text-align: center; margin-bottom: 60px; }
    .testimonials-header .section-sub { margin: 0 auto; }

    .testimonials-track-wrap {
      overflow: hidden;
      position: relative;
    }

    .testimonials-track-wrap::before,
    .testimonials-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .testimonials-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-primary), transparent);
    }
    .testimonials-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-primary), transparent);
    }

    .testimonials-track {
      display: flex;
      gap: 20px;
      animation: scroll 30s linear infinite;
      width: max-content;
    }

    .testimonials-track:hover { animation-play-state: paused; }

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

    .testimonial-card {
      width: 320px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      flex-shrink: 0;
      transition: border-color var(--t-fast);
    }

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

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

    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--ig-grad-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }

    .testi-name { font-size: 14px; font-weight: 700; }
    .testi-handle { font-size: 12px; color: var(--text-muted); }

    .testi-stars { color: #ffd700; font-size: 13px; margin-bottom: 12px; letter-spacing: 1px; }

    .testi-text {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .testi-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent-2);
    }
    [data-theme="light"] .testi-badge { color: #a01040; }

    /* ============================================================
       META BADGE
    ============================================================ */
    .meta-badge-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
      padding: 10px 20px;
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      width: fit-content;
    }
    .meta-badge-strip svg { flex-shrink: 0; }
    .meta-badge-text { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
    .meta-badge-text strong { color: var(--text-primary); }
    .meta-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #50c878;
      box-shadow: 0 0 6px #50c878;
      flex-shrink: 0;
    }

    /* ============================================================
       PRICING SECTION
    ============================================================ */
    .pricing-section { background: var(--bg-secondary); }
    .pricing-header { text-align: center; margin-bottom: 60px; }
    .pricing-header .section-sub { margin: 0 auto; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    .pricing-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 760px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px;
      transition: all var(--t-med);
      position: relative;
      overflow: hidden;
    }

    .pricing-card.popular {
      border: 2px solid transparent;
      background-clip: padding-box;
      /* Ensure card face stays fully opaque so gradient border doesn't bleed in */
      background-color: var(--bg-card);
    }

    .pricing-card.popular::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: linear-gradient(135deg, #6a2a90, #c0253a, #c88030);
      opacity: 0.55;
      z-index: -1;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.25);
    }

    .pricing-card.popular:hover {
      box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 32px rgba(193,53,132,0.12);
    }

    .popular-badge {
      position: absolute;
      top: 20px; right: 20px;
      background: rgba(193, 53, 132, 0.18);
      color: #d4608a;
      border: 1px solid rgba(193, 53, 132, 0.3);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-pill);
    }
    [data-theme="light"] .popular-badge {
      background: rgba(160, 16, 64, 0.09);
      color: #a01040;
      border-color: rgba(160, 16, 64, 0.22);
    }

    .pricing-plan { font-size: 12px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.12em; }
    .pricing-price { font-size: 48px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; color: var(--text-primary); }
    .pricing-price span { font-size: 20px; font-weight: 600; color: var(--text-secondary); }
    .pricing-period { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }

    .pricing-features {
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      font-weight: 450;
      color: var(--text-primary);
      opacity: 0.82;
    }

    .pricing-feature-icon {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(80, 200, 120, 0.15);
      color: #50c878;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 24px;
    }

    /* Billing toggle */
    /* ── 4-cycle billing tab picker ─────────────────────────── */
    .lp-cycle-tabs {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .lp-cycle-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      background: var(--bg-glass);
      color: var(--text-muted);
      font-family: inherit;
      cursor: pointer;
      transition: all var(--t-fast);
      min-width: 120px;
    }
    .lp-cycle-tab:hover:not(.active) {
      border-color: var(--text-muted);
      color: var(--text-secondary);
    }
    .lp-cycle-tab.active {
      border-color: var(--accent);
      background: rgba(124,58,237,0.12);
      color: var(--text-primary);
    }
    .lp-tab-label {
      font-size: 14px;
      font-weight: 700;
      color: inherit;
    }
    .lp-tab-price {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .lp-cycle-tab.active .lp-tab-price { color: var(--text-secondary); }
    .lp-tab-savings {
      font-size: 10px;
      font-weight: 700;
      background: rgba(80,200,120,0.15);
      color: var(--green-readable);
      border: 1px solid rgba(80,200,120,0.25);
      padding: 2px 7px;
      border-radius: var(--radius-pill);
    }

    /* Account selector */
    .account-selector {
      display: flex;
      align-items: center;
      gap: 0;
      background: var(--bg-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      margin-bottom: 16px;
    }
    .account-selector-label {
      flex: 1;
    }
    .account-selector-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 2px;
    }
    .account-selector-sub {
      font-size: 11px;
      color: var(--text-secondary);
    }
    .account-stepper {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .stepper-btn {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      color: var(--text-primary);
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--t-fast);
      line-height: 1;
      font-family: inherit;
    }
    .stepper-btn:hover:not(:disabled) {
      border-color: var(--accent-2);
      color: var(--accent-2);
      background: rgba(225,48,108,0.08);
    }
    .stepper-btn:disabled { opacity: 0.35; cursor: not-allowed; }
    .stepper-count {
      font-size: 18px;
      font-weight: 800;
      min-width: 24px;
      text-align: center;
      color: var(--text-primary);
    }

    /* Dynamic price display */
    .pricing-total-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }
    .pricing-total-label {
      font-size: 13px;
      color: var(--text-secondary);
    }
    .pricing-total-val {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--text-primary);
    }
    .pricing-total-val .per-period {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
    }
    .pricing-per-account {
      font-size: 12px;
      color: var(--text-secondary);
      margin-bottom: 20px;
    }
    .pricing-per-account span {
      font-weight: 600;
      color: var(--text-primary);
    }

    /* 1-account note */
    .pricing-account-note {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      background: rgba(252,176,69,0.08);
      border: 1px solid rgba(252,176,69,0.2);
      border-radius: var(--radius-md);
      padding: 10px 14px;
      margin-bottom: 20px;
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .pricing-account-note .note-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
    .pricing-account-note a { color: var(--accent-2); font-weight: 600; }
    [data-theme="light"] .pricing-account-note a { color: #a01040; }

    /* Meta disclaimer */
    .meta-disclaimer {
      padding: 16px 0 0;
      margin-top: 16px;
      border-top: 1px solid var(--border);
      font-size: 11.5px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .meta-disclaimer-icon { display: none; }

    /* ============================================================
       ANNOUNCEMENT BAR
    ============================================================ */
    .announce-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1001; /* above navbar */
      background: linear-gradient(90deg, #6a11cb 0%, #c13584 50%, #fd1d1d 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 9px 48px 9px 16px;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.4;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .announce-bar.dismissed {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    .announce-bar-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }

    .announce-bar-icon { font-size: 16px; flex-shrink: 0; }

    .announce-bar-price { color: #ffe066; }

    .announce-bar-cta {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.4);
      color: #fff;
      padding: 3px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: background var(--t-fast);
      flex-shrink: 0;
    }
    .announce-bar-cta:hover { background: rgba(255,255,255,0.32); }

    .announce-bar-close {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.75);
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      padding: 4px 6px;
      border-radius: 4px;
      transition: color var(--t-fast), background var(--t-fast);
    }
    .announce-bar-close:hover { color: #fff; background: rgba(255,255,255,0.15); }

    /* Push navbar down when bar is visible */
    .navbar { transition: top 0.35s ease, background var(--t-med), border-color var(--t-med), padding var(--t-med); }
    .announce-bar-visible .navbar { top: var(--bar-h, 40px); }

    /* ============================================================
       HERO PRICE PILL
    ============================================================ */
    .hero-price-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      background: var(--bg-glass-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text-secondary);
    }

    .hero-price-pill-icon { font-size: 15px; }

    .hero-price-pill strong { color: var(--text-primary); }

    .hero-price-pill s {
      color: var(--text-muted);
      text-decoration-color: var(--accent-3);
    }

    /* ============================================================
       PRICING COMPARISON TABLE
    ============================================================ */
    .pricing-vs-banner {
      max-width: 720px;
      margin: 0 auto 40px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-card);
    }

    .pricing-vs-row {
      display: grid;
      grid-template-columns: 1.6fr 1.2fr 1.2fr 1.5fr;
      border-bottom: 1px solid var(--border);
    }
    .pricing-vs-row:last-of-type { border-bottom: none; }

    .pricing-vs-cell {
      padding: 13px 18px;
      font-size: 13.5px;
      color: var(--text-secondary);
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .pricing-vs-cell:last-child { border-right: none; }

    .pricing-vs-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      background: var(--bg-secondary);
      padding: 10px 18px;
    }

    /* "Other tools" row */
    .pricing-vs-them .pricing-vs-cell { color: var(--text-muted); }

    /* EngageDM row */
    .pricing-vs-us {
      background: linear-gradient(90deg, rgba(131,58,180,0.08), rgba(252,176,69,0.06));
    }
    .pricing-vs-us .pricing-vs-cell { color: var(--text-primary); font-weight: 600; }

    .pricing-vs-good {
      color: var(--green-readable) !important;
    }
    .pricing-vs-good span { font-size: 11px; font-weight: 400; color: var(--text-muted); margin-left: 2px; }

    .pricing-vs-bad { color: var(--text-muted) !important; }
    .pricing-vs-bad span { font-size: 11px; margin-left: 2px; }

    .pricing-vs-note {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      padding: 8px 18px 10px;
      border-top: 1px solid var(--border);
      margin: 0;
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background: var(--ig-grad-alt);
      opacity: 0.07;
    }

    .cta-section .container {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-section .section-title { font-size: clamp(36px, 5vw, 60px); }

    .cta-input-wrap {
      display: flex;
      max-width: 480px;
      margin: 40px auto 0;
      gap: 12px;
    }

    .cta-input {
      flex: 1;
      background: var(--input-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 14px 22px;
      font-size: 15px;
      color: var(--text-primary);
      font-family: inherit;
      outline: none;
      transition: border-color var(--t-fast);
    }

    .cta-input::placeholder { color: var(--text-muted); }
    .cta-input:focus { border-color: var(--accent-2); }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      border-top: 1px solid var(--border);
      padding: 60px 0 32px;
      background: var(--bg-primary);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .footer-logo-icon {
      width: 34px; height: 34px;
      background: var(--ig-grad-alt);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .footer-tagline {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 260px;
      margin-bottom: 20px;
    }

    .footer-socials { display: flex; gap: 10px; }

    .footer-social {
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      background: var(--bg-glass-2);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all var(--t-fast);
      cursor: pointer;
    }

    .footer-social:hover {
      background: var(--ig-grad-alt);
      border-color: transparent;
      transform: translateY(-2px);
    }

    .footer-col-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--text-secondary);
      transition: color var(--t-fast);
    }

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

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy { font-size: 13px; color: var(--text-muted); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 13px; color: var(--text-muted); transition: color var(--t-fast); }
    .footer-legal a:hover { color: var(--text-primary); }

    /* ============================================================
       SCROLL REVEAL ANIMATION
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      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-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       MOBILE MENU
    ============================================================ */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 73px; left: 0; right: 0;
      background: var(--nav-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
      z-index: 999;
      flex-direction: column;
      gap: 16px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    /* ============================================================
       RESPONSIVE — TABLET & MOBILE
    ============================================================ */

    /* --- Tablet landscape: 1024px --- */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
      .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
      .how-grid { gap: 48px; }
    }

    /* --- Tablet portrait: 768px --- */
    @media (max-width: 768px) {
      /* Announcement bar */
      .announce-bar { font-size: 12px; padding: 8px 40px 8px 12px; }
      .announce-bar-cta { display: none; } /* too cramped on small screens */

      /* Pricing comparison — stack to 2 columns on mobile */
      .pricing-vs-row { grid-template-columns: 1fr 1fr; }
      .pricing-vs-cell:nth-child(3),
      .pricing-vs-cell:nth-child(4),
      .pricing-vs-label:nth-child(3),
      .pricing-vs-label:nth-child(4) { display: none; } /* hide last two cols */

      /* Nav */
      .nav-links, .nav-actions .btn-ghost { display: none; }
      .nav-hamburger { display: flex; }
      .nav-actions { gap: 10px; }
      .nav-actions .btn-primary { padding: 9px 16px; font-size: 13px; }

      /* Hero */
      .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
      }
      .hero-visual { order: -1; }
      .hero-badge { display: inline-flex; }
      .hero-sub { margin: 0 auto 36px; max-width: 100%; }
      .hero-cta-group { justify-content: center; }
      .hero-trust { justify-content: center; }
      .phone { width: 230px; }
      .float-card { display: none; }

      /* Stats */
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
      .stat-divider { display: none; }
      .stat-value { font-size: 26px; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }
      .feature-card { padding: 24px; }

      /* How it works */
      .how-grid { grid-template-columns: 1fr; gap: 40px; }
      .flow-visual { order: -1; padding: 24px; }

      /* Showcase */
      .showcase-content { padding: 20px 16px; }
      .dash-stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .dash-stat-card { padding: 14px; }
      .dash-stat-val { font-size: 20px; }
      .browser-url { font-size: 11px; padding: 5px 12px; }

      /* Pricing */
      .pricing-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
      .pricing-card { padding: 28px; }
      .lp-cycle-tabs { gap: 6px; }
      .lp-cycle-tab  { min-width: 0; flex: 1; padding: 10px 8px; font-size: 12px; }

      /* CTA */
      .cta-section { padding: 80px 0; }
      .cta-input-wrap { flex-direction: column; max-width: 100%; }
      .cta-input { width: 100%; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
      .footer-brand { grid-column: 1 / -1; }

      /* General spacing */
      .section { padding: 64px 0; }
      .section-title { font-size: clamp(28px, 7vw, 44px); }
      .section-sub { font-size: 15px; }
    }

    /* --- Mobile: 480px --- */
    @media (max-width: 480px) {
      .container { padding: 0 16px; }

      /* Nav */
      .nav-logo { font-size: 18px; }
      .nav-logo-icon { width: 32px; height: 32px; font-size: 17px; }
      .nav-actions .btn-primary { padding: 8px 14px; font-size: 12px; }

      /* Hero */
      .hero .container { gap: 36px; padding-top: 28px; }
      .hero-headline { font-size: clamp(32px, 9vw, 44px); }
      .hero-sub { font-size: 15px; }
      .hero-cta-group { flex-direction: column; align-items: stretch; }
      .hero-cta-group .btn { justify-content: center; width: 100%; }
      .phone { width: 210px; }
      .phone-stories { gap: 8px; }
      .story-ring { width: 40px; height: 40px; }

      /* Stats */
      .stats-strip { padding: 24px 0; }
      .stat-value { font-size: 24px; }

      /* Sections */
      .section { padding: 52px 0; }
      .features-header { margin-bottom: 40px; }
      .feature-card { padding: 20px; }
      .feature-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; }
      .feature-title { font-size: 16px; }

      /* How it works */
      .how-step { gap: 16px; }
      .step-num { width: 36px; height: 36px; font-size: 14px; }
      .step-content { padding-bottom: 32px; }
      .step-title { font-size: 16px; }
      .step-desc { font-size: 13px; }
      .how-step:not(:last-child)::after { left: 17px; }

      /* Showcase */
      .showcase-tabs { gap: 6px; }
      .showcase-tab { padding: 8px 16px; font-size: 13px; }
      .showcase-browser-bar { padding: 10px 14px; }
      .browser-dots span { width: 10px; height: 10px; }
      .dash-stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .dash-stat-card { padding: 12px; }
      .dash-stat-label { font-size: 10px; }
      .dash-stat-val { font-size: 18px; }
      .dash-chart-placeholder { height: 90px; gap: 5px; }

      /* Flow nodes */
      .flow-visual { padding: 20px 16px; }
      .flow-node { padding: 10px 12px; gap: 10px; }
      .flow-node-icon { width: 30px; height: 30px; font-size: 14px; }
      .flow-node-title { font-size: 12px; }
      .flow-node-sub { font-size: 11px; }

      /* Testimonials */
      .testimonial-card { width: 280px; padding: 18px; }

      /* Pricing */
      .pricing-card { padding: 24px 20px; }
      .pricing-price { font-size: 40px; }
      .popular-badge { font-size: 10px; top: 16px; right: 16px; }

      /* CTA */
      .cta-section { padding: 60px 0; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer { padding: 48px 0 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
      .footer-legal { flex-wrap: wrap; gap: 12px; }

      /* Buttons */
      .btn-lg { padding: 14px 28px; font-size: 15px; min-height: 48px; }
    }

    /* --- Small mobile: 360px --- */
    @media (max-width: 360px) {
      .container { padding: 0 12px; }
      .hero-headline { font-size: 28px; }
      .phone { width: 190px; }
      .phone-stories { gap: 6px; }
      .story-ring { width: 34px; height: 34px; }
      .story-name { font-size: 8px; }
      .post-image { height: 110px; font-size: 28px; }
      .dm-bubble { font-size: 9px; padding: 6px 10px; }
      .showcase-tab { padding: 7px 12px; font-size: 12px; }
      .section-title { font-size: 26px; }
      .stats-grid { gap: 16px; }
    }

/* ── Toast Notifications ──────────────────────────────────── */
#notify-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; max-width: 360px; width: calc(100vw - 40px); pointer-events: none; }
.notify-toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); pointer-events: all; animation: notify-in 0.22s ease; font-size: 14px; line-height: 1.5; color: var(--text-primary); }
.notify-toast.notify-out { animation: notify-out 0.22s ease forwards; }
.notify-toast.notify-error   { border-left: 3px solid #ef4444; }
.notify-toast.notify-success { border-left: 3px solid #22c55e; }
.notify-toast.notify-warning { border-left: 3px solid #f59e0b; }
.notify-toast.notify-info    { border-left: 3px solid #c13584; }
.notify-icon  { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.notify-msg   { flex: 1; }
.notify-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; line-height: 1; padding: 0; flex-shrink: 0; }
.notify-close:hover { color: var(--text-primary); }
@keyframes notify-in  { from { opacity: 0; transform: translateX(16px); } to   { opacity: 1; transform: translateX(0);    } }
@keyframes notify-out { from { opacity: 1; transform: translateX(0);    } to   { opacity: 0; transform: translateX(16px); } }
@media (max-width: 480px) { #notify-container { top: 12px; right: 12px; left: 12px; max-width: 100%; width: auto; } }
