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

    :root {
      --white:      #FFFFFF;
      --bg:         #F7F5F2;
      --surface:    #FFFFFF;
      --border:     #E2DDD8;
      --text:       #1A1917;
      --muted:      #6B6762;
      --red:        #D93025;
      --red-light:  #FEF0EF;
      --red-border: #F4B5B1;
    }

    html { scroll-behavior: smooth; }

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

    /* â”€â”€ NAV â”€â”€ */
    body.followlive-page nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5vw;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(247,245,242,0.94);
      backdrop-filter: blur(8px);
      z-index: 200;
    }

    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
    }
    .logo span { color: var(--red); }

    .nav-cta {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
      background: var(--red);
      text-decoration: none;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      transition: opacity 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { opacity: 0.88; }

    /* â”€â”€ HERO â”€â”€ */
    .hero {
      max-width: 1100px;
      margin: 0 auto;
      padding: 5rem 5vw 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 760px) {
      .hero { grid-template-columns: 1fr; padding: 3rem 5vw 2.5rem; gap: 2.5rem; }
      .hero-visual { order: -1; }
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      background: var(--red-light);
      border: 1px solid var(--red-border);
      border-radius: 20px;
      padding: 0.28rem 0.8rem;
      margin-bottom: 1.5rem;
    }

    .live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--red);
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity:1; }
      50% { opacity:0.2; }
    }
    @media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

    .hero-text h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 1.1rem;
    }
    .hero-text h1 em { font-style: normal; color: var(--red); }

    .hero-text p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

    .btn-primary {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      background: var(--red);
      text-decoration: none;
      padding: 0.8rem 1.75rem;
      border-radius: 6px;
      transition: opacity 0.15s;
    }
    .btn-primary:hover { opacity: 0.88; }

    .btn-ghost {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      border: 1.5px solid var(--border);
      padding: 0.8rem 1.75rem;
      border-radius: 6px;
      transition: border-color 0.15s, color 0.15s;
    }
    .btn-ghost:hover { border-color: #aaa; color: var(--text); }

    /* â”€â”€ DIGEST MOCKUP â”€â”€ */
    .digest-phone {
      background: var(--white);
      border-radius: 24px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      overflow: hidden;
      max-width: 300px;
      margin: 0 auto;
    }

    .phone-bar {
      background: var(--bg);
      padding: 0.65rem 1rem 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }
    .phone-bar-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--text);
    }
    .phone-bar-sub { font-size: 0.7rem; color: var(--muted); }

    .digest-header {
      background: var(--red);
      padding: 0.9rem 1rem;
      color: #fff;
    }
    .digest-header-greeting {
      font-size: 0.7rem;
      opacity: 0.85;
      margin-bottom: 0.15rem;
    }
    .digest-header-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1rem;
    }
    .digest-header-date { font-size: 0.7rem; opacity: 0.8; margin-top: 0.1rem; }

    .digest-body { padding: 0.75rem 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; }

    .digest-item {
      background: var(--bg);
      border-radius: 10px;
      padding: 0.6rem 0.75rem;
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
    }

    .digest-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      color: #fff;
    }
    .av-red    { background: #C0392B; }
    .av-blue   { background: #1565C0; }
    .av-green  { background: #2E7D32; }

    .digest-info { flex: 1; min-width: 0; }
    .digest-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .digest-desc {
      font-size: 0.68rem;
      color: var(--muted);
      margin-top: 0.05rem;
      line-height: 1.35;
    }
    .digest-time {
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--red);
      white-space: nowrap;
      margin-top: 0.05rem;
    }

    .digest-footer {
      border-top: 1px solid var(--border);
      padding: 0.65rem 0.9rem;
      text-align: center;
      font-size: 0.7rem;
      color: var(--muted);
    }
    .digest-footer span { color: var(--red); font-weight: 600; }

    /* â”€â”€ SECTION SHARED â”€â”€ */
    .section-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4.5rem 5vw;
    }

    .section-eyebrow {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 0.6rem;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .section-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 0;
    }
    .section-header-row .section-sub { margin-bottom: 2.5rem; }

    .see-all-link {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--red);
      text-decoration: none;
      padding: 0.45rem 1rem;
      border: 1.5px solid var(--red-border);
      border-radius: 6px;
      background: var(--red-light);
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 0.15rem;
      transition: background 0.15s;
    }
    .see-all-link:hover { background: #fde0de; }

    hr.divider { border: none; border-top: 1px solid var(--border); margin: 0 5vw; }

    /* â”€â”€ FEATURED PROFILES â”€â”€ */
    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
    }

    .profile-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .profile-top { display: flex; align-items: center; gap: 0.9rem; }

    .profile-avatar {
      width: 50px; height: 50px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--border);
    }
    .profile-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .profile-meta { flex: 1; min-width: 0; }
    .profile-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
    }
    .profile-role { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

    .profile-followers {
      font-size: 0.75rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .profile-next {
      background: var(--bg);
      border-radius: 8px;
      padding: 0.7rem 0.85rem;
    }
    .profile-next-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }
    .profile-next-event {
      font-size: 0.82rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.4;
    }
    .profile-next-time { font-size: 0.75rem; color: var(--red); margin-top: 0.2rem; font-weight: 600; }

    .follow-btn {
      display: block;
      text-align: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--red);
      background: var(--red-light);
      border: 1.5px solid var(--red-border);
      border-radius: 6px;
      padding: 0.55rem 1rem;
      text-decoration: none;
      transition: background 0.15s;
      cursor: pointer;
    }
    .follow-btn:hover { background: #fde0de; }

    .profile-card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }
    .profile-card-link:hover .profile-name { color: var(--red); }
    .profile-card {
      display: flex;
      flex-direction: column;
    }

    /* â”€â”€ HOW IT WORKS â”€â”€ */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }

    .step-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem 1.5rem;
    }

    .step-num {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .step-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .step-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

    /* â”€â”€ CTA BANNER â”€â”€ */
    .cta-band {
      background: var(--text);
      padding: 4.5rem 5vw;
      text-align: center;
    }
    .cta-band h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .cta-band p { color: #999; font-size: 1rem; margin-bottom: 1.75rem; }

    .email-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
    }
    .email-row input {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 0.8rem 1.25rem;
      width: 270px;
      outline: none;
    }
    .email-row input:focus { border-color: #aaa; }
    .email-row button {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      background: var(--red);
      border: none;
      border-radius: 6px;
      padding: 0.8rem 1.75rem;
      cursor: pointer;
      transition: opacity 0.15s;
    }
    .email-row button:hover { opacity: 0.85; }

    /* â”€â”€ FOOTER â”€â”€ */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 1.25rem 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    footer p { font-size: 0.78rem; color: var(--muted); }
    footer a { color: var(--muted); text-decoration: none; font-size: 0.78rem; }
    footer a:hover { color: var(--text); }
    .footer-links { display: flex; gap: 1.25rem; }

    /* â”€â”€ BACK TO TOP â”€â”€ */
    #back-to-top {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 42px; height: 42px;
      background: var(--text);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      z-index: 300;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    }
    #back-to-top.visible { opacity: 1; pointer-events: auto; }
    #back-to-top:hover { transform: translateY(-2px); }
    #back-to-top svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.5; fill: none; }

    /* â”€â”€ MOBILE TWEAKS â”€â”€ */
    @media (max-width: 480px) {
      .digest-phone { max-width: 100%; }
      .email-row input { width: 100%; }
      .email-row button { width: 100%; }
      footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    }
  
