/*
Theme Name: Freeing Up Our Future
Theme URI: https://freeingupourfuture.com/
Author: The Whole Partnership
Description: Editable landing-page theme based on the approved Freeing Up Our Future v14 design.
Version: 1.0.5
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freeing-up-our-future
*/

:root {
    --indigo:     #064960;
    --indigo-2:   #043A4D;
    --indigo-3:   #022A38;
    --indigo-4:   #011C26;
    --indigo-l:   #E6F3F8;
    --indigo-m:   #7FBCDA;
    --moss:       #869765;
    --moss-l:     #F2F4EC;
    --moss-m:     #BEC8A4;
    --moss-d:     #525E3C;
    --moss-2:     #3A432A;
    --ochre:      #B68000;
    --ochre-l:    #FEF6DC;
    --ochre-m:    #F5C45A;
    --ochre-2:    #D99F00;
    --ochre-d:    #6B4A00;
    --warm-white: #F8F6F0;
    --stone:      #EAE8E1;
    --stone-2:    #C8C6BE;
    --charcoal:   #3A3830;
    --near-black: #1A1914;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HERO ── */
  .hero {
    background: var(--indigo);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182,128,0,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134,151,101,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-left { position: relative; z-index: 1; }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(182,128,0,0.18);
    border: 1px solid rgba(245,196,90,0.35);
    color: var(--ochre-m);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
  }
  .badge::before { content: '◎'; font-size: 9px; }

  .hero-title {
    font-family: 'Lora', serif;
    font-size: 68px;
    font-weight: 400;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 28px;
  }
  .hero-title .accent { color: var(--ochre-m); display: block; }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 20px;
  }
  .hero-byline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss-m);
    margin-bottom: 32px;
  }

  .email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    max-width: 460px;
  }
  .email-input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 13px 18px;
    font-size: 14px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .email-input::placeholder { color: rgba(255,255,255,0.4); }
  .email-input:focus { border-color: var(--ochre-m); }

  .btn-notify {
    background: var(--ochre);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-notify:hover { background: var(--ochre-2); transform: translateY(-1px); }

  .hero-social-proof {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
  }

  /* book cover */
  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .book-cover-wrap {
    position: relative;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)) drop-shadow(0 10px 20px rgba(0,0,0,0.25));
  }
  
  .book-cover-img {
    display: block;
    width: 300px;
    border-radius: 0 6px 6px 0;
    position: relative;
    z-index: 2;
  }

  /* ── ABOUT ── */
  .about {
    padding: 100px 80px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .section-eyebrow {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 16px;
  }

  /* 215% bigger for About the Book and About the Authors labels */
  .eyebrow-xl {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ochre);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  h2.section-title,
  h3.section-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--indigo);
    margin-bottom: 24px;
  }

  .about-body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .about-body strong { color: var(--charcoal); font-weight: 500; }

  .about-quote {
    border-left: 3px solid var(--ochre);
    background: var(--ochre-l);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 28px;
  }
  .about-quote-mark {
    font-family: 'Lora', serif;
    font-size: 48px;
    line-height: 1;
    color: var(--ochre);
    margin-bottom: -8px;
    display: block;
  }
  .about-quote-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--indigo-2);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .about-quote-attr {
    font-size: 12px;
    color: var(--moss-d);
    font-weight: 500;
  }

  .discover-title {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--indigo);
    margin-bottom: 32px;
  }

  .discover-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 0.5px solid var(--stone);
  }
  .discover-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  .discover-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }
  .discover-item-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--indigo);
    margin-bottom: 5px;
  }
  .discover-item-text {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
  }

  .stars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 28px;
  }
  .star { color: var(--ochre); font-size: 18px; }
  .stars-label { font-size: 12px; color: #888; margin-left: 8px; }

  /* ── AUTHOR ── */
  .author-section {
    padding: 100px 80px;
    background: var(--indigo-l);
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 64px;
    align-items: start;
  }

  .author-photo {
    width: 264px;
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--ochre-m);
    flex-shrink: 0;
  }
  .author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .author-body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .author-body strong { color: var(--indigo); font-weight: 500; }
  .author-biography p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .author-biography strong { color: var(--indigo); font-weight: 500; }

  .author-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .author-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--stone-2);
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--indigo);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
  }
  .author-link:hover { background: var(--indigo-l); border-color: var(--indigo-m); }

  /* ── FAQ ── */
  .faq-section {
    padding: 100px 80px;
    background: #fff;
    text-align: center;
  }

  .faq-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--ochre-l);
    border: 1px solid var(--ochre-m);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    color: var(--ochre);
  }

  .faq-section h2 {
    font-family: 'Lora', serif;
    font-size: 46px;
    font-weight: 400;
    color: var(--indigo);
    margin-bottom: 10px;
  }

  .faq-lead {
    font-size: 15px;
    color: #888;
    font-weight: 300;
    margin-bottom: 48px;
  }

  .faq-list {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: left;
  }

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

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 15px;
    color: var(--charcoal);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    width: 100%;
    border: 0;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
  }
  .faq-question:hover { color: var(--indigo); }

  .faq-chevron {
    font-size: 18px;
    color: var(--moss);
    transition: transform 0.25s;
    flex-shrink: 0;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.75;
    color: #777;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-item.open .faq-question { color: var(--indigo); }

  .btn-ask {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ochre-l);
    border: 1px solid var(--ochre-m);
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ochre-d);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-ask:hover { background: var(--ochre-m); color: var(--ochre-d); transform: translateY(-1px); }

  /* ── LAUNCH EVENT ── */
  .launch-section {
    padding: 90px 80px;
    background: var(--indigo);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .launch-section::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,196,90,0.10) 0%, transparent 65%);
    pointer-events: none;
  }

  .launch-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,196,90,0.15);
    border: 1px solid rgba(245,196,90,0.30);
    color: var(--ochre-m);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
  }

  .launch-section h2 {
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
  }
  .launch-section h2 em {
    font-style: italic;
    color: var(--ochre-m);
  }

  .launch-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(255,255,255,0.80);
    margin-bottom: 14px;
  }

  .launch-detail {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
  }
  .launch-detail p { margin: 0; }

  .launch-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .launch-card {
    background: rgba(255,255,255,0.07);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 22px 28px;
    min-width: 180px;
    text-align: center;
  }
  .launch-card-icon {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--ochre-m);
  }
  .launch-card-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
  }
  .launch-card-value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
  }

  .btn-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--ochre);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    z-index: 1;
  }
  .btn-join:hover { background: var(--ochre-2); transform: translateY(-2px); }

  /* ── SHARE ── */
  /* Moss 400 = #869765. Text must be accessible on it — use white (#fff) for all text */
  .share-section {
    padding: 80px 80px;
    background: var(--moss);   /* Moss 400 */
    text-align: center;
  }

  .share-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px;
    color: #fff;
  }

  .share-section h2 {
    font-family: 'Lora', serif;
    font-size: 46px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
  }

  .share-lead {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 36px;
  }

  .share-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-family: 'DM Sans', sans-serif;
  }
  .share-btn:hover { background: rgba(255,255,255,0.25); border-color: #fff; transform: translateY(-1px); }
  .share-btn .icon { font-size: 14px; }

  /* ── CTA / WAITLIST ── */
  .cta-section {
    padding: 100px 80px;
    background: var(--indigo-4);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182,128,0,0.10) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-envelope {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(182,128,0,0.15);
    border: 1px solid rgba(245,196,90,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 22px;
    color: var(--ochre-m);
  }

  .cta-section h2 {
    font-family: 'Lora', serif;
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
  }

  .cta-lead {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .cta-form { max-width: 420px; margin: 0 auto; }

  .cta-input {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    padding: 13px 18px;
    font-size: 14px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
  }
  .cta-input::placeholder { color: rgba(255,255,255,0.35); }
  .cta-input:focus { border-color: var(--ochre-m); }

  .btn-waitlist {
    width: 100%;
    background: var(--ochre);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-waitlist:hover { background: var(--ochre-2); transform: translateY(-1px); }
  .cta-privacy { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 12px; }

  /* ── FOOTER ── */
  .footer {
    background: var(--near-black);
    padding: 24px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid rgba(255,255,255,0.08);
  }
  .footer-brand {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
  }
  .footer-brand span { color: var(--ochre-m); }
  .footer-brand > a { color: inherit; }
  .footer-share {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .footer-share-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .footer-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 0.5px solid rgba(255,255,255,0.15);
    background: transparent;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-icon:hover { border-color: var(--ochre-m); color: var(--ochre-m); }
  .footer-right {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: right;
    line-height: 1.6;
  }
  .footer-right a { color: var(--ochre-m); }
  .footer-brand > a,
  .footer-right a {
    text-decoration-line: underline;
    text-decoration-color: rgba(245,196,90,0.55);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.2s, text-decoration-color 0.2s;
  }
  .footer-brand > a:hover,
  .footer-right a:hover {
    color: var(--ochre-m);
    text-decoration-color: var(--ochre-m);
  }
  .footer-brand > a:focus-visible,
  .footer-right a:focus-visible {
    outline: 2px solid var(--ochre-m);
    outline-offset: 4px;
    border-radius: 2px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * { animation: fadeUp 0.6s ease both; }
  .badge         { animation-delay: 0.1s; }
  .hero-title    { animation-delay: 0.2s; }
  .hero-subtitle { animation-delay: 0.3s; }
  .hero-byline   { animation-delay: 0.35s; }
  .email-form    { animation-delay: 0.4s; }
  .hero-social-proof { animation-delay: 0.5s; }
  .book-cover-wrap { animation: fadeUp 0.7s 0.3s ease both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero, .about, .author-section {
      grid-template-columns: 1fr;
      padding: 60px 32px;
      gap: 40px;
    }
    .hero-title { font-size: 46px; }
    .hero-right { justify-content: flex-start; }
    .faq-section, .share-section, .cta-section, .launch-section { padding: 60px 32px; }
    .footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px 32px; }
    .book-cover-img { width: 220px; }
    .eyebrow-xl { font-size: 24px; }
  }

  /* ── CHROME-SAFE CURSOR GLOW CANVAS ── */
  .cursor-glow-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
    opacity: 1;
  }



/* ── AUTHORS UPDATE ── */
.authors-section {
  display: block;
  padding: 100px 80px;
  background: var(--indigo-l);
}
.authors-heading {
  max-width: 1100px;
  margin: 0 auto 48px;
}
.author-profile {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 64px;
  align-items: start;
}
.author-profile:last-child {
  margin-bottom: 0;
}
.author-content {
  min-width: 0;
}
.author-name {
  margin-bottom: 20px;
}
.author-body p,
.faq-answer p {
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.btn-ask {
  text-decoration: none;
}
@media (max-width: 900px) {
  .authors-section {
    padding: 60px 32px;
  }
  .author-profile {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
}

/* ── WORDPRESS INTEGRATION ── */
.about-body-group p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-body-group p:last-child { margin-bottom: 0; }
.about-body-group strong { color: var(--charcoal); font-weight: 500; }

.discover-indigo { background: var(--indigo-l); color: var(--indigo); }
.discover-moss { background: var(--moss-l); color: var(--moss-d); }
.discover-ochre { background: var(--ochre-l); color: var(--ochre-d); }

.faq-question:focus-visible,
.share-btn:focus-visible,
.footer-icon:focus-visible,
.author-link:focus-visible,
.btn-ask:focus-visible,
.btn-join:focus-visible {
  outline: 2px solid var(--ochre-m);
  outline-offset: 4px;
}

.fuof-form-slot { width: 100%; }
.fuof-form-slot > * { width: 100%; }
.fuof-form-placeholder {
  width: 100%;
  border: 1px dashed rgba(255,255,255,0.45);
  border-radius: 6px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.45;
}

.fuof-hero-form { display: block; }
.fuof-hero-form .ff-el-input--label label {
  color: rgba(255,255,255,0.82) !important;
}
.fuof-hero-form .ff-el-input--label.ff-el-is-required label::after {
  color: var(--ochre-m) !important;
}
.fuof-hero-form form {
  display: flex;
  gap: 10px;
  width: 100%;
}
.fuof-hero-form input[type='email'],
.fuof-hero-form .ff-el-form-control {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}
.fuof-hero-form button[type='submit'],
.fuof-hero-form input[type='submit'],
.fuof-hero-form .ff-btn-submit {
  background: var(--ochre);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 13px 22px;
  font: 500 13px 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.fuof-waitlist-form form { width: 100%; }
.fuof-waitlist-form .ff-el-group {
  width: 100% !important;
  text-align: left !important;
}
.fuof-waitlist-form .ff-el-input--label {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}
.fuof-waitlist-form .ff-el-input--label label {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  color: rgba(255,255,255,0.82) !important;
}
.fuof-waitlist-form .ff-el-input--label.ff-el-is-required label::after {
  color: var(--ochre-m) !important;
}
.fuof-hero-form .ff-message-success,
.fuof-waitlist-form .ff-message-success {
  margin: 0 !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(245,196,90,0.55) !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.9) !important;
  font: 400 15px/1.6 'DM Sans', sans-serif !important;
  text-align: center !important;
}
.fuof-hero-form .ff-message-success *,
.fuof-waitlist-form .ff-message-success * {
  color: inherit !important;
}
.fuof-waitlist-form input[type='text'],
.fuof-waitlist-form input[type='email'],
.fuof-waitlist-form .ff-el-form-control {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  padding: 13px 18px;
  margin-bottom: 10px;
  font: 400 14px 'DM Sans', sans-serif;
  color: #fff;
}
.fuof-waitlist-form button[type='submit'],
.fuof-waitlist-form input[type='submit'],
.fuof-waitlist-form .ff-btn-submit {
  width: 100%;
  background: var(--ochre);
  color: #fff;
  border: 0;
  border-radius: 7px;
  padding: 14px;
  font: 500 14px 'DM Sans', sans-serif;
  cursor: pointer;
}

.fuof-content-fallback {
  max-width: 760px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 80px 24px;
}
.fuof-content-fallback h1 {
  margin-bottom: 24px;
  color: var(--indigo);
  font: 400 46px/1.2 'Lora', serif;
}

@media (max-width: 600px) {
  .fuof-hero-form form { display: block; }
  .fuof-hero-form input[type='email'],
  .fuof-hero-form .ff-el-form-control,
  .fuof-hero-form button[type='submit'],
  .fuof-hero-form input[type='submit'],
  .fuof-hero-form .ff-btn-submit {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-glow-canvas { display: none; }
}

/* ── LOCAL FAQ BEHAVIOUR SUPPORT ── */
.faq-question:focus {
  outline: 2px solid var(--ochre-m);
  outline-offset: 4px;
}


/* ── REVISION: author heading, Deborah crop support, FAQ focus/padding ── */
.authors-section {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 64px;
  align-items: start;
}
.author-profile {
  display: contents;
  max-width: none;
  margin: 0;
}
.author-profile + .author-profile .author-photo,
.author-profile + .author-profile .author-content {
  margin-top: 64px;
}
.author-content {
  min-width: 0;
}
.author-section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}
.author-body sup {
  font-size: 1.05em;
  line-height: 0;
  vertical-align: super;
}
.faq-question:focus,
.faq-question:focus-visible {
  outline: none;
}
.faq-item.open .faq-answer {
  padding-top: 2px;
  padding-bottom: 24px;
}
.faq-answer p {
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .authors-section {
    display: block;
    padding: 60px 32px;
  }
  .author-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }
  .author-profile + .author-profile .author-photo,
  .author-profile + .author-profile .author-content {
    margin-top: 0;
  }
}

/* Final accessibility overrides must follow the preserved v14 revision rules. */
.faq-question:focus-visible,
.share-btn:focus-visible,
.footer-icon:focus-visible,
.author-link:focus-visible,
.btn-ask:focus-visible,
.btn-join:focus-visible,
.fuof-form-slot input:focus-visible,
.fuof-form-slot button:focus-visible {
  outline: 2px solid var(--ochre-m);
  outline-offset: 4px;
}
.author-biography sup {
  font-size: 1.05em;
  line-height: 0;
  vertical-align: super;
}
