/* Cloned from join.portersdailyjournal.com */

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    .pcdj-join { -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font: inherit; }

    /* ── TOKENS ── */
    :root {
      --copper:      #c8703e;
      --copper-dk:   #a85c2e;
      --copper-lt:   #e8956a;
      --copper-pale: #f9ede4;
      --navy:        #1a2035;
      --navy-dk:     #0d1525;
      --off-white:   #faf8f5;
      --cream:       #f5f0e8;
      --body:        #2c2c2c;
      --muted:       #6b6460;
      --border:      #e2dbd4;
      --gold-star:   #e8a020;

      --font-d: 'Playfair Display', Georgia, serif;
      --font-b: 'DM Sans', 'Helvetica Neue', sans-serif;
    }

    .pcdj-join {
      font-family: var(--font-b);
      background: var(--off-white);
      color: var(--body);
      min-height: 100vh;
      min-height: 100dvh;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      padding-left: env(safe-area-inset-left, 0);
      padding-right: env(safe-area-inset-right, 0);
      padding-bottom: env(safe-area-inset-bottom, 0);
    }

    /* ══════════════════════════════════
       TOP BAR
    ══════════════════════════════════ */
    .top-bar {
      background: var(--navy-dk);
      text-align: center;
      padding: 10px 1.5rem;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.02em;
    }
    .top-bar strong { color: #fff; font-weight: 600; }

    /* ══════════════════════════════════
       HEADER
    ══════════════════════════════════ */
    .site-header {
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-lockup {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1px;
      text-decoration: none;
    }
    .logo-eyebrow {
      font-family: var(--font-b);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--copper);
    }
    .logo-name {
      font-family: var(--font-d);
      font-size: 28px;
      font-weight: 500;
      color: var(--body);
      line-height: 1;
      letter-spacing: -0.01em;
    }

    /* ══════════════════════════════════
       HERO SECTION
    ══════════════════════════════════ */
    .hero {
      background: var(--off-white);
      padding: 5rem 2rem 0;
      position: relative;
      overflow: hidden;
    }

    /* Subtle texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,112,62,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      position: relative;
      z-index: 1;
    }

    /* ─ Left col ─ */
    .hero-left {
      padding-bottom: 5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--copper-pale);
      border: 1px solid rgba(200,112,62,0.3);
      border-radius: 2px;
      padding: 0.4rem 0.875rem;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--copper-dk);
      margin-bottom: 1.75rem;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--copper);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .hero-h1 {
      font-family: var(--font-d);
      font-size: clamp(2.4rem, 3.8vw, 3.6rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--body);
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
    }
    .hero-h1 em {
      font-style: italic;
      font-weight: 500;
      color: var(--copper);
    }
    .hero-h1 .stat {
      font-style: normal;
      color: var(--copper);
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 2.5rem;
      max-width: 460px;
    }
    .hero-sub em { font-style: italic; color: var(--body); }
    .hero-sub strong { font-weight: 600; color: var(--body); }

    /* Bullets */
    .hero-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
    }
    .hero-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 15.5px;
      color: var(--body);
      line-height: 1.5;
    }
    .bullet-check {
      flex-shrink: 0;
      width: 18px; height: 18px;
      background: var(--copper);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .bullet-check svg { color: white; }

    /* Form */
    .hero-form-wrap {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.75rem;
    }
    .form-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
      display: block;
    }
    .form-row {
      display: flex;
      gap: 0;
    }
    .form-email {
      flex: 1;
      min-width: 0;
      padding: 0.85rem 1rem;
      font-family: var(--font-b);
      /* 16px minimum — prevents iOS Safari zoom-on-focus */
      font-size: 16px;
      line-height: 1.3;
      border: 1.5px solid var(--border);
      border-right: none;
      border-radius: 0;
      background: #fff;
      color: var(--body);
      outline: none;
      transition: border-color 0.18s;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-email:focus { border-color: var(--copper); }
    .form-email::placeholder { color: #b0a89e; }
    .form-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.85rem 1.5rem;
      background: var(--copper);
      color: #fff;
      font-family: var(--font-b);
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1.5px solid var(--copper);
      border-radius: 0;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.18s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .form-submit:hover { background: var(--copper-dk); border-color: var(--copper-dk); }
    .form-submit:disabled { opacity: 0.7; cursor: wait; }

    .form-privacy {
      margin-top: 0.85rem;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .form-privacy svg { flex-shrink: 0; color: #9a9290; }

    /* ─ Right col — Article preview stack ─ */
    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    /* Decorative backdrop card */
    .preview-stack {
      position: relative;
      width: 100%;
      max-width: 420px;
    }
    .preview-card-back {
      position: absolute;
      top: -16px;
      left: 16px;
      right: -16px;
      bottom: 0;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 4px;
      z-index: 0;
    }
    .preview-card-back2 {
      position: absolute;
      top: -8px;
      left: 8px;
      right: -8px;
      bottom: 0;
      background: #efe9df;
      border: 1px solid var(--border);
      border-radius: 4px;
      z-index: 1;
    }
    .preview-article-scroll {
      max-height: 340px;
      overflow-y: auto;
      overflow-x: hidden;
      border-top: 1px solid rgba(0,0,0,0.08);
      scrollbar-width: thin;
      scrollbar-color: rgba(200,112,62,0.3) transparent;
    }
    .preview-article-scroll::-webkit-scrollbar { width: 4px; }
    .preview-article-scroll::-webkit-scrollbar-thumb { background: rgba(200,112,62,0.4); border-radius: 2px; }
    .preview-card {
      position: relative;
      z-index: 2;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    }
    .preview-header {
      background: var(--navy-dk);
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .preview-pub-name {
      font-family: var(--font-d);
      font-style: italic;
      font-size: 15px;
      color: #fff;
    }
    .preview-date {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }

    /* Issue hero image */
    .preview-img-wrap {
      position: relative;
      height: 140px;
      overflow: hidden;
      background: #c8d0d8;
    }
    .preview-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.85);
    }
    .preview-img-label {
      position: absolute;
      bottom: 0; left: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      width: 100%; padding: 1.5rem 1.25rem 0.6rem;
    }
    .preview-tag {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--copper-lt);
      display: block;
      margin-bottom: 3px;
    }
    .preview-img-title {
      font-family: var(--font-d);
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      line-height: 1.25;
    }

    .preview-body { padding: 1.25rem; }
    .preview-section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 0.6rem;
    }
    .preview-items { display: flex; flex-direction: column; gap: 0.75rem; }
    .preview-item {
      display: flex; gap: 0.75rem; align-items: flex-start;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid #f0ede8;
    }
    .preview-item:last-child { border-bottom: none; padding-bottom: 0; }
    .preview-item-num {
      flex-shrink: 0;
      width: 20px; height: 20px;
      background: var(--copper-pale);
      border: 1px solid rgba(200,112,62,0.25);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      color: var(--copper-dk);
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .preview-item-text {
      font-size: 12.5px;
      color: var(--body);
      line-height: 1.5;
      font-weight: 500;
    }
    .preview-item-sub {
      font-size: 11.5px;
      color: var(--muted);
      font-weight: 400;
      display: block;
      margin-top: 1px;
    }

    /* "Today's issue" badge */
    .preview-issue-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background: var(--copper);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 2px;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(200,112,62,0.4);
    }

    /* ══════════════════════════════════
       TICKER / SOCIAL PROOF
    ══════════════════════════════════ */
    .ticker-section {
      background: var(--navy-dk);
      padding: 1.1rem 0;
      overflow: hidden;
      position: relative;
    }
    .ticker-inner {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .ticker-label {
      flex-shrink: 0;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      padding: 0 2rem;
      white-space: nowrap;
    }
    .ticker-divider {
      width: 1px; height: 18px;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
    }
    .ticker-track-wrap {
      flex: 1;
      overflow: hidden;
      position: relative;
    }
    .ticker-track-wrap::before,
    .ticker-track-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }
    .ticker-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy-dk), transparent); }
    .ticker-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--navy-dk), transparent); }
    .ticker-track {
      display: flex;
      gap: 1rem;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.65);
      padding: 0.3rem 0.9rem;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 2px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .ticker-item svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }

    /* ══════════════════════════════════
       PROOF SECTION
    ══════════════════════════════════ */
    .proof-section {
      background: #fff;
      padding: 5rem 2rem;
      border-top: 1px solid var(--border);
    }
    .proof-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-eyebrow {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 0.75rem;
      text-align: center;
    }
    .section-h2 {
      font-family: var(--font-d);
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--body);
      text-align: center;
      margin-bottom: 1rem;
    }
    .section-h2 em { font-style: italic; font-weight: 500; color: var(--copper); }
    .section-sub {
      font-size: 16px;
      color: var(--muted);
      text-align: center;
      max-width: 580px;
      margin: 0 auto 3.5rem;
      line-height: 1.7;
    }

    /* Stats row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    .stat-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .stat-number {
      font-family: var(--font-d);
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 600;
      color: var(--copper);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-label {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.5;
    }
    .stat-label strong { color: var(--body); font-weight: 600; display: block; font-size: 14px; margin-bottom: 2px; }

    /* Testimonials */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testi-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.75rem;
      position: relative;
    }
    .testi-stars {
      display: flex; gap: 3px; margin-bottom: 1rem;
    }
    .testi-stars svg { color: var(--gold-star); }
    .testi-quote {
      font-family: var(--font-d);
      font-style: italic;
      font-size: 16px;
      line-height: 1.65;
      color: var(--body);
      margin-bottom: 1.25rem;
    }
    .testi-author { display: flex; align-items: center; gap: 0.75rem; }
    .testi-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--cream);
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-d);
      font-size: 15px;
      color: var(--copper);
      font-weight: 500;
      flex-shrink: 0;
    }
    .testi-name { font-size: 13.5px; font-weight: 600; color: var(--body); }
    .testi-role { font-size: 12px; color: var(--muted); }
    .testi-open-quote {
      position: absolute;
      top: 1rem; right: 1.25rem;
      font-family: var(--font-d);
      font-size: 64px;
      line-height: 1;
      color: var(--copper-pale);
      font-style: normal;
      pointer-events: none;
      user-select: none;
    }

    /* ══════════════════════════════════
       WHAT YOU GET SECTION
    ══════════════════════════════════ */
    .wyg-section {
      background: var(--navy-dk);
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .wyg-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 60% 80% at 85% 50%, rgba(200,112,62,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .wyg-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .wyg-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .wyg-section .section-eyebrow { text-align: left; }
    .wyg-section .section-h2 { text-align: left; color: #fff; }
    .wyg-section .section-h2 em { color: var(--copper-lt); }

    .wyg-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .wyg-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .wyg-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: rgba(200,112,62,0.15);
      border: 1px solid rgba(200,112,62,0.3);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--copper-lt);
    }
    .wyg-item-title {
      font-family: var(--font-d);
      font-size: 17px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 0.3rem;
    }
    .wyg-item-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
    }

    /* Right side — schedule card */
    .schedule-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      overflow: hidden;
    }
    .schedule-header {
      background: rgba(200,112,62,0.15);
      border-bottom: 1px solid rgba(200,112,62,0.2);
      padding: 1.25rem 1.5rem;
    }
    .schedule-header-title {
      font-family: var(--font-d);
      font-size: 17px;
      font-weight: 500;
      color: #fff;
    }
    .schedule-header-sub {
      font-size: 12.5px;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }
    .schedule-rows { padding: 0.5rem 0; }
    .schedule-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.1rem 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.15s;
    }
    .schedule-row:last-child { border-bottom: none; }
    .schedule-row:hover { background: rgba(255,255,255,0.03); }
    .schedule-day {
      flex-shrink: 0;
      width: 90px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--copper-lt);
      padding-top: 2px;
    }
    .schedule-info-title {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      margin-bottom: 2px;
    }
    .schedule-info-desc {
      font-size: 12.5px;
      color: rgba(255,255,255,0.4);
      line-height: 1.5;
    }
    .schedule-time {
      margin-left: auto;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.3);
      padding-top: 2px;
    }

    /* ══════════════════════════════════
       PORTER SECTION
    ══════════════════════════════════ */
    .porter-section {
      background: var(--cream);
      padding: 5rem 2rem;
      border-top: 1px solid var(--border);
    }
    .porter-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 5rem;
      align-items: center;
    }
    .porter-photo-wrap {
      position: relative;
    }
    .porter-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: 4px;
      display: block;
    }
    .porter-photo-caption {
      position: absolute;
      bottom: -1px;
      left: 0; right: 0;
      background: linear-gradient(transparent, rgba(13,21,37,0.9));
      padding: 3rem 1.5rem 1.25rem;
      border-radius: 0 0 4px 4px;
    }
    .porter-name {
      font-family: var(--font-d);
      font-size: 22px;
      font-weight: 600;
      color: #fff;
    }
    .porter-title {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--copper-lt);
      margin-top: 3px;
    }

    .porter-text .section-h2 { text-align: left; margin-bottom: 1.5rem; }
    .porter-text .section-eyebrow { text-align: left; }
    .porter-.pcdj-join {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .porter-body strong { color: var(--body); font-weight: 600; }
    .porter-body em { font-style: italic; }

    .porter-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.75rem;
    }
    .cred-pill {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--body);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 0.35rem 0.75rem;
    }

    /* ══════════════════════════════════
       BOTTOM CTA
    ══════════════════════════════════ */
    .bottom-cta {
      background: var(--off-white);
      padding: 5rem 2rem 4rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .bottom-cta .section-h2 { margin-bottom: 0.75rem; }
    .bottom-cta .section-sub { margin-bottom: 2.5rem; }

    .cta-form-wrap {
      max-width: 520px;
      margin: 0 auto 1.5rem;
    }
    .cta-form-wrap .form-row { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
    .cta-form-wrap .form-email { font-size: 16px; padding: 1rem 1.25rem; }
    .cta-form-wrap .form-submit { padding: 1rem 1.75rem; font-size: 14px; }

    .bottom-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 13px;
      color: var(--muted);
    }
    .proof-item svg { color: var(--copper); flex-shrink: 0; }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    .site-footer {
      background: var(--navy-dk);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: var(--font-d);
      font-style: italic;
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 1rem;
    }
    .footer-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.25rem;
    }
    .footer-links a {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.7); }
    .footer-links span { color: rgba(255,255,255,0.15); font-size: 12px; }
    .footer-legal {
      font-size: 11.5px;
      color: rgba(255,255,255,0.22);
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
    @media (max-width: 900px) {
      .top-bar { padding: 10px 1rem; font-size: 12px; line-height: 1.4; }
      .site-header { padding: 0.9rem 1rem; }
      .logo-name { font-size: 24px; }

      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-left { padding-bottom: 0; }
      .hero-right { display: none; }
      .hero { padding: 2.5rem 1.25rem 3rem; }
      .hero-h1 { font-size: clamp(1.85rem, 7.5vw, 2.6rem); margin-bottom: 1.1rem; }
      .hero-sub { font-size: 16px; margin-bottom: 1.75rem; max-width: none; }
      .hero-bullets { margin-bottom: 1.75rem; gap: 0.65rem; }
      .hero-bullets li { font-size: 15px; }
      .hero-form-wrap { padding: 1.25rem; }

      /* Stack email + CTA early so forms never squeeze on tablets */
      .form-row { flex-direction: column; gap: 0.5rem; }
      .form-email {
        border: 1.5px solid var(--border);
        width: 100%;
        min-height: 48px;
        border-radius: 2px;
      }
      .form-submit {
        width: 100%;
        min-height: 52px;
        font-size: 14px;
        letter-spacing: 0.06em;
        border-radius: 2px;
      }

      .ticker-label { padding: 0 1rem; font-size: 9px; }
      .ticker-item { font-size: 11px; padding: 0.28rem 0.7rem; }

      .proof-section,
      .wyg-section,
      .bottom-cta { padding: 3.5rem 1.25rem; }
      .section-sub { margin-bottom: 2.5rem; font-size: 15px; padding: 0 0.25rem; }
      .stats-row { grid-template-columns: 1fr; gap: 0.85rem; margin-bottom: 2.5rem; }
      .stat-card { padding: 1.5rem 1.25rem; }
      .testimonials { grid-template-columns: 1fr; gap: 1rem; }
      .testi-card { padding: 1.35rem; }
      .testi-quote { font-size: 15px; }

      .wyg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .wyg-section .section-eyebrow,
      .wyg-section .section-h2 { text-align: left; }
      .schedule-row {
        flex-wrap: wrap;
        gap: 0.35rem 1rem;
        padding: 1rem 1.15rem;
      }
      .schedule-day { width: auto; min-width: 5.5rem; }
      .schedule-time { margin-left: 0; width: 100%; padding-top: 0.15rem; }

      .porter-inner { grid-template-columns: 1fr; }
      .porter-photo { max-height: 380px; }

      .cta-form-wrap { max-width: none; margin-bottom: 1.75rem; }
      .cta-form-wrap .form-row { box-shadow: none; }
      .bottom-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        max-width: 20rem;
        margin: 0 auto;
      }

      .site-footer {
        padding: 2rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
      }
      .footer-links { gap: 0.35rem 0.5rem; }
      .footer-links a {
        font-size: 13px;
        padding: 0.35rem 0.25rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
      .footer-legal { font-size: 11px; padding: 0 0.25rem; }
    }

    @media (max-width: 480px) {
      .top-bar { padding: 9px 0.85rem; font-size: 11.5px; }
      .hero { padding: 2rem 1rem 2.5rem; }
      .hero-badge {
        font-size: 11px;
        padding: 0.35rem 0.7rem;
        margin-bottom: 1.25rem;
      }
      .hero-form-wrap { padding: 1rem; }
      .form-label { font-size: 11px; letter-spacing: 0.1em; margin-bottom: 0.65rem; }
      .proof-section,
      .wyg-section,
      .bottom-cta { padding: 2.75rem 1rem; }
      .stat-number { font-size: clamp(2rem, 10vw, 2.8rem); }
      .schedule-header { padding: 1rem 1.1rem; }
      .wyg-icon { width: 40px; height: 40px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-badge-dot,
      .ticker-track { animation: none !important; }
    }
  