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

    :root {
      /* Backgrounds — Ascending Void palette */
      --bg-primary: #06060E;
      --bg-surface: #0D0D1A;
      --bg-elevated: #141426;
      --bg-card: #0E0E1C;

      /* Primary Accent — Violet */
      --accent: #A855F7;
      --accent-light: #C084FC;
      --accent-dark: #8B3EDC;
      --accent-glow: rgba(168, 85, 247, 0.15);
      --accent-glow-strong: rgba(168, 85, 247, 0.3);

      /* Pillar Colors */
      --gym: #FF3B5C;
      --reading: #00D4AA;
      --goals: #FF9F0A;
      --journal: #64D2FF;

      /* Text */
      --text-primary: #F0F0FA;
      --text-secondary: #8282A0;
      --text-tertiary: #46465F;

      /* Status */
      --success: #34D399;
      --warning: #FBBF24;
      --error: #F87171;

      /* Borders */
      --border-subtle: rgba(255, 255, 255, 0.07);
      --border-light: rgba(255, 255, 255, 0.13);

      /* Typography */
      --font-display: 'Outfit', sans-serif;
      --font-body: 'DM Sans', sans-serif;

      /* Spacing */
      --section-padding: clamp(80px, 12vw, 160px);
      --container-max: 1200px;
      --container-padding: clamp(20px, 5vw, 40px);
    }

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

    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* ========================================
       UTILITIES
       ======================================== */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    }

    /* ========================================
       SCROLL REVEAL ANIMATIONS
       ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s 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; }

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

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

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

    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    /* ========================================
       NAV
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 0;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
    }

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

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

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--text-primary);
      text-decoration: none;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo svg {
      flex-shrink: 0;
    }

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

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

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

    .nav-cta {
      background: rgba(168, 85, 247, 0.12);
      color: var(--accent-light) !important;
      padding: 8px 20px;
      border-radius: 8px;
      border: 1px solid rgba(168, 85, 247, 0.25);
      transition: all 0.3s ease !important;
    }

    .nav-cta:hover {
      background: rgba(168, 85, 247, 0.2) !important;
      border-color: rgba(168, 85, 247, 0.4) !important;
    }

    /* Mobile menu button */
    .nav-mobile-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-mobile-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-primary);
      margin: 5px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* ========================================
       HERO
       ======================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 0 var(--section-padding);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 70%;
      height: 80%;
      background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -10%;
      width: 50%;
      height: 60%;
      background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.06) 0%, transparent 60%);
      filter: blur(80px);
      pointer-events: none;
    }

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

    .hero-content {
      max-width: 600px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-light);
      border-radius: 100px;
      padding: 6px 16px 6px 8px;
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    }

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

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1.05rem, 1.8vw, 1.25rem);
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 480px;
      opacity: 0;
      animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }

    .hero-pillars {
      display: flex;
      gap: 16px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    .hero-pillar-dot {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--text-tertiary);
      font-weight: 500;
    }

    .hero-pillar-dot::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .hero-pillar-dot.gym::before { background: var(--gym); }
    .hero-pillar-dot.reading::before { background: var(--reading); }
    .hero-pillar-dot.goals::before { background: var(--goals); }
    .hero-pillar-dot.journal::before { background: var(--journal); }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    }

    /* Buttons */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
      color: #fff;
      padding: 16px 32px;
      border-radius: 12px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-secondary {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
    }

    .btn-secondary:hover {
      color: var(--text-primary);
    }

    .btn-secondary svg {
      transition: transform 0.3s ease;
    }

    .btn-secondary:hover svg {
      transform: translateY(3px);
    }

    /* Phone mockup */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      opacity: 0;
      animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }

    .phone-mockup {
      width: 280px;
      height: 580px;
      background: var(--bg-surface);
      border-radius: 40px;
      border: 2px solid var(--border-light);
      position: relative;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(168, 85, 247, 0.1);
    }

    .phone-notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 30px;
      background: var(--bg-primary);
      border-radius: 0 0 20px 20px;
      z-index: 3;
    }

    .phone-screen {
      padding: 50px 20px 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .phone-greeting {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .phone-date {
      font-size: 0.7rem;
      color: var(--text-tertiary);
      margin-bottom: 12px;
    }

    .phone-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .phone-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .phone-card-icon.gym { background: rgba(255, 59, 92, 0.15); }
    .phone-card-icon.reading { background: rgba(0, 212, 170, 0.15); }
    .phone-card-icon.goals { background: rgba(255, 159, 10, 0.15); }
    .phone-card-icon.journal { background: rgba(100, 210, 255, 0.15); }

    .phone-card-text {
      flex: 1;
    }

    .phone-card-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--text-primary);
      margin-bottom: 2px;
    }

    .phone-card-sub {
      font-size: 0.65rem;
      color: var(--text-tertiary);
    }

    .phone-card-status {
      font-size: 0.65rem;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    .phone-card-status.done {
      background: rgba(52, 211, 153, 0.15);
      color: var(--success);
    }

    .phone-card-status.pending {
      background: rgba(130, 130, 160, 0.15);
      color: var(--text-secondary);
    }

    /* Floating cards around phone */
    .float-card {
      position: absolute;
      background: var(--bg-elevated);
      border: 1px solid var(--border-light);
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 0.8rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      z-index: 2;
      animation: float 6s ease-in-out infinite;
    }

    .float-card-1 {
      top: 60px;
      right: -30px;
      animation-delay: 0s;
    }

    .float-card-2 {
      bottom: 80px;
      left: -40px;
      animation-delay: -2s;
    }

    .float-card-icon {
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .float-card-value {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--text-primary);
    }

    .float-card-label {
      font-size: 0.7rem;
      color: var(--text-tertiary);
    }

    /* ========================================
       SECTION HEADINGS
       ======================================== */
    .section-label {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: var(--text-secondary);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 64px;
    }

    /* ========================================
       FEATURES — FOUR PILLARS
       ======================================== */
    .features {
      padding: var(--section-padding) 0;
      position: relative;
    }

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

    .feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .feature-card:hover {
      border-color: var(--border-light);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

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

    .feature-card.gym-card::before {
      background: linear-gradient(90deg, transparent, var(--gym), transparent);
    }
    .feature-card.reading-card::before {
      background: linear-gradient(90deg, transparent, var(--reading), transparent);
    }
    .feature-card.goals-card::before {
      background: linear-gradient(90deg, transparent, var(--goals), transparent);
    }
    .feature-card.journal-card::before {
      background: linear-gradient(90deg, transparent, var(--journal), transparent);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
    }

    .feature-icon.gym {
      background: rgba(255, 59, 92, 0.12);
    }
    .feature-icon.gym svg { color: var(--gym); }

    .feature-icon.reading {
      background: rgba(0, 212, 170, 0.12);
    }
    .feature-icon.reading svg { color: var(--reading); }

    .feature-icon.goals {
      background: rgba(255, 159, 10, 0.12);
    }
    .feature-icon.goals svg { color: var(--goals); }

    .feature-icon.journal {
      background: rgba(100, 210, 255, 0.12);
    }
    .feature-icon.journal svg { color: var(--journal); }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .feature-card .feature-detail {
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-tertiary);
    }

    .feature-card .feature-detail span {
      width: 4px;
      height: 4px;
      background: var(--text-tertiary);
      border-radius: 50%;
    }

    /* ========================================
       DAILY LOOP — "The Day Builds Itself"
       Two-column scroll-driven card dealing
       ======================================== */
    .daily-loop {
      padding: var(--section-padding) 0;
      position: relative;
    }

    .loop-theater {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    /* LEFT: Sticky clock rail */
    .loop-deck-rail {
      position: sticky;
      top: 16vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }

    /* The 24-hour clock */
    .loop-clock {
      position: relative;
      width: 340px;
      height: 340px;
    }

    .loop-clock svg {
      width: 100%;
      height: 100%;
    }

    /* Full ring track — very faint base */
    .ring-track {
      fill: none;
      stroke: rgba(255,255,255,0.06);
      stroke-width: 12;
    }

    /* Background segment slots — always visible as empty pillars */
    .seg-bg {
      fill: none;
      stroke-width: 12;
      stroke-linecap: round;
      opacity: 0.2;
    }

    /* Foreground segments — sweep-fill on scroll */
    .seg-fg {
      fill: none;
      stroke-width: 12;
      stroke-linecap: round;
      transition: stroke-dasharray 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Completion: ring track brightens slightly */
    .loop-clock.complete .ring-track {
      stroke: rgba(168,85,247,0.18);
      transition: stroke 0.6s ease;
    }

    /* Center content */
    .clock-center-count {
      font-family: var(--font-display);
      font-size: 44px;
      font-weight: 800;
      fill: var(--text-primary);
      text-anchor: middle;
      dominant-baseline: central;
      transition: fill 0.4s ease;
    }
    .clock-center-pillar {
      font-family: var(--font-display);
      font-size: 9px;
      font-weight: 700;
      fill: var(--text-tertiary);
      text-anchor: middle;
      dominant-baseline: central;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      transition: fill 0.4s ease;
    }
    .clock-center-label {
      font-family: var(--font-display);
      font-size: 9px;
      font-weight: 600;
      fill: var(--text-tertiary);
      text-anchor: middle;
      dominant-baseline: central;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      opacity: 0.5;
    }

    /* Completion badge */
    .loop-completion {
      margin-top: 20px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--success);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }
    .loop-completion.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RIGHT: Scrolling content panels */
    .loop-content-rail {
      display: flex;
      flex-direction: column;
    }

    .loop-step {
      min-height: 55vh;
      padding: 60px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0.25;
      transition: opacity 0.5s ease;
    }
    .loop-step:last-child {
      min-height: 40vh;
    }
    .loop-step.active {
      opacity: 1;
    }

    .loop-step-num {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 16px;
      opacity: 0.15;
    }
    .loop-step[data-step="0"] .loop-step-num { color: var(--accent); }
    .loop-step[data-step="1"] .loop-step-num { color: var(--gym); }
    .loop-step[data-step="2"] .loop-step-num { color: var(--reading); }
    .loop-step[data-step="3"] .loop-step-num { color: var(--goals); }
    .loop-step[data-step="4"] .loop-step-num { color: var(--journal); }

    .loop-step-time {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }
    .loop-step[data-step="0"] .loop-step-time { color: var(--accent); }
    .loop-step[data-step="1"] .loop-step-time { color: var(--gym); }
    .loop-step[data-step="2"] .loop-step-time { color: var(--reading); }
    .loop-step[data-step="3"] .loop-step-time { color: var(--goals); }
    .loop-step[data-step="4"] .loop-step-time { color: var(--journal); }

    .loop-step-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .loop-step-desc {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 400px;
    }

    /* Mobile: hide deck, show simple list */
    @media (max-width: 900px) {
      .loop-theater {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .loop-deck-rail { display: none; }
      .loop-step {
        min-height: auto;
        padding: 28px 0 28px 28px;
        opacity: 1;
        border-left: 2px solid var(--border-subtle);
        position: relative;
      }
      .loop-step::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 36px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .loop-step[data-step="0"]::before { background: var(--accent); box-shadow: 0 0 8px rgba(168,85,247,0.4); }
      .loop-step[data-step="1"]::before { background: var(--gym); box-shadow: 0 0 8px rgba(255,59,92,0.4); }
      .loop-step[data-step="2"]::before { background: var(--reading); box-shadow: 0 0 8px rgba(0,212,170,0.4); }
      .loop-step[data-step="3"]::before { background: var(--goals); box-shadow: 0 0 8px rgba(255,159,10,0.4); }
      .loop-step[data-step="4"]::before { background: var(--journal); box-shadow: 0 0 8px rgba(100,210,255,0.4); }
      .loop-step-num { font-size: 1.8rem; margin-bottom: 8px; }
    }

    /* ========================================
       STATS
       ======================================== */
    .stats {
      padding: var(--section-padding) 0;
      position: relative;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stat-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 36px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.15;
    }

    .stat-card:nth-child(1)::before { background: var(--gym); }
    .stat-card:nth-child(2)::before { background: var(--reading); }
    .stat-card:nth-child(3)::before { background: var(--goals); }
    .stat-card:nth-child(4)::before { background: var(--journal); }

    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 4px;
      position: relative;
    }

    .stat-card:nth-child(1) .stat-number { color: var(--gym); }
    .stat-card:nth-child(2) .stat-number { color: var(--reading); }
    .stat-card:nth-child(3) .stat-number { color: var(--goals); }
    .stat-card:nth-child(4) .stat-number { color: var(--journal); }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .stat-sub {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      margin-top: 4px;
    }

    /* ========================================
       COMING SOON
       ======================================== */
    .coming-soon {
      padding: var(--section-padding) 0;
      position: relative;
    }

    .coming-soon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .integration-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 36px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .integration-card:hover {
      border-color: var(--border-light);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .integration-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
    }

    .integration-icon svg {
      width: 28px;
      height: 28px;
      color: var(--accent-light);
    }

    .integration-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    .integration-badge {
      display: inline-block;
      margin-top: 16px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      background: rgba(168, 85, 247, 0.1);
      padding: 4px 12px;
      border-radius: 6px;
    }

    /* ========================================
       CTA
       ======================================== */
    .cta {
      padding: var(--section-padding) 0;
      position: relative;
    }

    .cta-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: 28px;
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
      filter: blur(60px);
      pointer-events: none;
    }

    .cta-box .section-title {
      position: relative;
      z-index: 1;
    }

    .cta-box .section-subtitle {
      margin: 0 auto 40px;
      position: relative;
      z-index: 1;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      max-width: 460px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-form input {
      flex: 1;
      padding: 16px 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .cta-form input::placeholder {
      color: var(--text-tertiary);
    }

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

    .cta-form button {
      white-space: nowrap;
    }

    .cta-note {
      font-size: 0.8rem;
      color: var(--text-tertiary);
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      padding: 60px 0 40px;
      border-top: 1px solid var(--border-subtle);
    }

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

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand-text {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .footer-brand-byline {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      font-weight: 400;
      margin-left: 2px;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      color: var(--text-tertiary);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

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

    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-tertiary);
      width: 100%;
      text-align: center;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border-subtle);
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 900px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-sub {
        max-width: 100%;
      }

      .hero-pillars {
        justify-content: center;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .phone-mockup {
        width: 240px;
        height: 500px;
      }

      .float-card {
        display: none;
      }

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

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

      .coming-soon-grid {
        grid-template-columns: 1fr;
      }

      .cta-form {
        flex-direction: column;
      }

      .nav-links {
        display: none;
      }

      .nav-mobile-btn {
        display: block;
      }
    }

    @media (max-width: 600px) {
      .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
      }

      .hero-pillars {
        flex-wrap: wrap;
        gap: 10px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .stat-card {
        padding: 24px 16px;
      }

      .loop-step {
        min-height: auto;
        padding: 20px 0 20px 24px;
      }

      .cta-box {
        padding: 60px 24px;
      }

      .footer .container {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
