/* ---- CSS Custom Properties ---- */
#hero.hero-moon {
    --moon-teal:        #0084c9;
    --moon-teal-dim:    #00a5db;
    --moon-white:       #FFFFFF;
    --moon-off-white:   #D8E8EC;
    --moon-dark:        #0a0d10;
    --moon-overlay:     rgba(8, 14, 20, 0.52);
    --moon-rule-color:  rgba(255, 255, 255, 0.55);
    --moon-font-display: 'Barlow Condensed', sans-serif;
    --moon-font-body:    'Barlow', sans-serif;
}

/* ============================================================
   SECTION RESET  BASE
   ============================================================ */
#hero.hero-moon {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--moon-dark);
    padding: 0;
}

/* ============================================================
   BACKGROUND  moon image fills the section
   ============================================================ */

/* Moon photo as a pseudo-element so z-indexing stays clean */
#hero.hero-moon::before {
    content: '';
    position: absolute;
    inset: 0;
	background-image: url('../img/public/moon-bg.jpg');
	opacity: 1;
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Cinematic dark gradient overlay — heavier at top & bottom, lighter mid */
#hero.hero-moon::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(8, 14, 20, 0.78) 0%,
            rgba(8, 14, 20, 0.15) 10%,
            rgba(8, 14, 20, 0) 55%,
            rgba(8, 14, 20, 0.15) 90%,
            rgba(8, 14, 20, 0.92) 100%
        );
    z-index: 1;
}

/* ============================================================
   CONTENT WRAPPER
   ============================================================ */
#hero.hero-moon .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
	container-type: inline-size;
    align-items: center;
    text-align: center;
}

#hero.hero-moon .hero-text {
    width: 100%;
}

/* ============================================================
   EYEBROW  "THE LAST NEW INHALED ANESTHETIC"
   Matches the ad: small, widely-tracked, split teal + white
   ============================================================ */
#hero.hero-moon .hero-eyebrow {
    font-family: var(--moon-font-display);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--moon-off-white);

    /* Replicate the ad's two-line teal/white colour split via a painted gradient */
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   HEADLINE IT'S TIME.
   Ad uses em-dashes as flanking rules; we recreate with
   ::before / ::after pseudo-elements on the inner span
   ============================================================ */
#hero.hero-moon .hero-title {
    font-family: var(--moon-font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 8vw, 3rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moon-white);
    margin: 0 0 60px 0;
    line-height: 1;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

#hero.hero-moon .hero-title .title-highlight {
    /* Remove any inherited highlight color */
    color: var(--moon-white);
    -webkit-text-fill-color: var(--moon-white);
    background: none;
	font-weight: 300;
    /* Flanking rule lines — mirrors the ad's — IT'S TIME. — */
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    white-space: nowrap;
}

#hero.hero-moon .hero-title .title-highlight::before,
#hero.hero-moon .hero-title .title-highlight::after {
    content: '';
    display: block;
    width: clamp(30px, 5vw, 70px);
    height: 1px;
    background: var(--moon-rule-color);
    flex-shrink: 0;
    margin-top: 0.08em; /* optical baseline alignment */
}

/* ============================================================
   SUBTITLE
   ============================================================ */
#hero.hero-moon .hero-subtitle {
    font-family: var(--moon-font-body);
    font-weight: 300;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: rgba(216, 232, 236, 0.82);
    max-width: 560px;
    margin: 0 auto 44px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
#hero.hero-moon .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
	position: relative; 
	z-index: 2;
}

#hero.hero-moon .hero-buttons .btn-primary,
#hero.hero-moon .hero-buttons .btn.btn-primary {
    font-family: var(--moon-font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 3px;
    background: var(--moon-teal);
    color: #fff;
    border: 1px solid var(--moon-teal);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.18s ease;
    cursor: pointer;
}

#hero.hero-moon .hero-buttons .btn-primary:hover,
#hero.hero-moon .hero-buttons .btn.btn-primary:hover {
    background: var(--moon-teal-dim);
    border-color: var(--moon-teal-dim);
    transform: translateY(-2px);
}

#hero.hero-moon .hero-buttons .btn-ghost,
#hero.hero-moon .hero-buttons .btn.btn-ghost {
    font-family: var(--moon-font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 3px;
    background: transparent;
    color: var(--moon-off-white);
    border: 1px solid rgba(216, 232, 236, 0.45);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.18s ease;
    cursor: pointer;
}

#hero.hero-moon .hero-buttons .btn-ghost:hover,
#hero.hero-moon .hero-buttons .btn.btn-ghost:hover {
    border-color: var(--moon-off-white);
    color: var(--moon-white);
    transform: translateY(-2px);
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
#hero.hero-moon .scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#hero.hero-moon .scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: moon-scroll-pulse 2s ease-in-out infinite;
}

#hero.hero-moon .scroll-indicator span {
    font-family: var(--moon-font-display);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes moon-scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1);   }
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
#hero.hero-moon .hero-eyebrow,
#hero.hero-moon .hero-title,
#hero.hero-moon .hero-subtitle {
    opacity: 0;
    transform: translateY(18px);
    animation: moon-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#hero.hero-moon .hero-buttons {
    opacity: 0;
    animation: moon-fade-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.05s;
}

#hero.hero-moon .hero-eyebrow  { animation-delay: 0.25s; }
#hero.hero-moon .hero-title    { animation-delay: 0.55s; }
#hero.hero-moon .hero-subtitle { animation-delay: 0.80s; }

@keyframes moon-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes moon-fade-in {
    to { opacity: 1; }
}

.show-sm {display:none !important;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    #hero.hero-moon .hero-eyebrow {
		font-size: 1.2rem;
	}

}

@media (max-width: 768px) {
    #hero.hero-moon .hero-content {
        padding: 0 24px;
    }

    #hero.hero-moon .hero-title .title-highlight::before,
    #hero.hero-moon .hero-title .title-highlight::after {
        width: 20px;
    }

    #hero.hero-moon .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    #hero.hero-moon .hero-buttons .btn-primary,
    #hero.hero-moon .hero-buttons .btn-ghost,
    #hero.hero-moon .hero-buttons .btn.btn-primary,
    #hero.hero-moon .hero-buttons .btn.btn-ghost {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ============================================================
   MOBILE — 480px and below
   Portrait layout mirroring the print ad:
   - Ad image (astronaut/earth portrait crop) as background
   - Eyebrow + title pinned to top
   - Subtitle hidden (too much text for small screen)
   - Buttons + scroll indicator pinned to bottom
   ============================================================ */
@media (max-width: 510px) {

    /* Switch to portrait ad image */
    #hero.hero-moon::before {
        background-image: url('../img/public/moon-bg-mobile.jpg');
        background-position: center top;
        background-size: cover;
    }

    /* Slightly heavier overlay at top and bottom on mobile
       so white text stays readable against the bright Earth */
    #hero.hero-moon::after {
        background:
            linear-gradient(
                to bottom,
                rgba(8, 14, 20, 0.72) 0%,
                rgba(8, 14, 20, 0.20) 25%,
                rgba(8, 14, 20, 0.10) 50%,
                rgba(8, 14, 20, 0.55) 80%,
                rgba(8, 14, 20, 0.88) 100%
            );
    }

    /* Section becomes a positioned container for absolute children */
    #hero.hero-moon {
        justify-content: flex-start;
        min-height: 100svh; /* svh respects mobile browser chrome */
    }

    /* Section: full-screen, flex column, space-between so
       content sits top and buttons sit bottom naturally */
    #hero.hero-moon {
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        padding: 28px 0 80px;
        min-height: 100svh;
    }

    /* Content block: static in flow at the top, centered */
    #hero.hero-moon .hero-content {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 28px;
        align-items: center;
        text-align: center;
        container-type: inline-size;
        /* push it to the top of the flex column */
        align-self: flex-start;
    }

    #hero.hero-moon .hero-text {
        width: 100%;
    }

    /* Eyebrow: slightly smaller tracking on narrow screens */
    #hero.hero-moon .hero-eyebrow {
        font-size: 0.85rem;
        letter-spacing: 0.16em;
        margin-bottom: 16px;
    }

    /* Title: scale to container width, left-aligned */
    #hero.hero-moon .hero-title {
        /*font-size: clamp(2rem, 13cqi, 3.2rem);*/
        margin-bottom: 0;
    }

    /* Keep the flanking rules but shorter on mobile */
    #hero.hero-moon .hero-title .title-highlight::before,
    #hero.hero-moon .hero-title .title-highlight::after {
        width: 18px;
    }

    /* Hide subtitle — too much text competing with the image */
    #hero.hero-moon .hero-subtitle {
        display: none;
    }

    /* Buttons: flex item pushed to bottom of the section column */
    #hero.hero-moon .hero-buttons {
        position: static;
        width: 100%;
        padding: 0 28px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 3;
        align-self: flex-end;
        transform: none;
    }

    #hero.hero-moon .hero-buttons .btn-primary,
    #hero.hero-moon .hero-buttons .btn-ghost,
    #hero.hero-moon .hero-buttons .btn.btn-primary,
    #hero.hero-moon .hero-buttons .btn.btn-ghost {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 15px 24px;
    }

    /* Scroll indicator stays at very bottom */
    #hero.hero-moon .scroll-indicator {
        bottom: 20px;
    }

    
	
	.hide-sm {display:none !important;}
	.show-sm {display:block !important;}
	
}


/* ── 1. BASE ── */

:root {
  --ex-blue:       #0084c9;
  --ex-blue-light: #00a5db;
  --ex-green:      #00db6d;
  --ex-text:       #595959;
  --ex-body:       #777;
  --ex-muted:      #999;
  --ex-bg-off:     #f8f9fa;
  --ex-bg-mid:     #f0f5f9;
  --ex-border:     #e0e0e0;
  --ex-blue-tint:  rgba(0,132,201,0.06);
  --ex-blue-glow:  rgba(0,132,201,0.15);
}

/* ── 3. TRANSITION BRIDGE ── */
/*
   Sits between the dark hero and the first light section.
   Creates a smooth gradient fade from dark to site white.
   Usage: <div class="lp-bridge"></div>
*/

.lp-bridge {
  height: 80px;
  background: linear-gradient(to bottom, #0a0c0f 0%, #ffffff 100%);
  pointer-events: none;
}

/* ============================================================
   EXPANESTHETICS — /launch/ SECTIONAL SYSTEM
   launch-sections.css

   A flexible sectional system for the /launch/ landing page.
   Designed for streamlined narrative sections that funnel
   toward a registration form.

   FONT DEPENDENCIES (add to <head>):
     Ruda          — eyebrows, headings, labels
     Roboto        — body copy, captions, disclaimers
     Cormorant Garamond — display headings (framing, form)
     Barlow Condensed   — scroll hints, subtle UI labels

   COLOR TOKENS (inherits from site :root or sections.css):
     --ex-blue, --ex-blue-light, --ex-text, --ex-body,
     --ex-muted, --ex-bg-off, --ex-border, --ex-blue-tint

   SECTION INDEX
     1. Section shell & containers
     2. Section header (eyebrow, heading, body)
     3. Section footer (references & disclaimers)
     4. Components: content boxes, image frame, data row
     5. Framing section (post-hero intro)
     6. Explore section (post-form exit ramp)
     7. Helpers & utilities
     8. Responsive
   ============================================================ */


/* ============================================================
   1. SECTION SHELL & CONTAINERS
   ============================================================ */

/*
   Base section wrapper. Apply background/border modifiers as needed.

   <section class="ls-section">
   <section class="ls-section ls-section--off">
   <section class="ls-section ls-section--tint ls-section--rule">
*/

.ls-section {
	padding: 80px 30px;
	background: #fff;
}

.ls-section--off {
	background: var(--ex-bg-off);
}

.ls-section--tint {
	background: linear-gradient(135deg, rgba(0,132,201,0.03) 0%, rgba(0,165,219,0.05) 100%);
}

.ls-section--rule {
	border-top: 1px solid var(--ex-border);
}

.ls-section--rule-bottom {
	border-bottom: 1px solid var(--ex-border);
}

/* Containers */
.ls-container {
	max-width: 820px;
	margin: 0 auto;
}

.ls-container--narrow {
	max-width: 620px;
	margin: 0 auto;
}

.ls-container--wide {
	max-width: 1000px;
	margin: 0 auto;
}


/* ============================================================
   2. SECTION HEADER
      Eyebrow, heading, body text
   ============================================================ */

/*
   Usage:
   <div class="ls-header">
     <span class="ls-eyebrow">The Landscape</span>
     <h2 class="ls-heading">The field is reconsidering IOH</h2>
     <p class="ls-body">Supporting copy here...</p>
   </div>
*/

.ls-header {
	margin-bottom: 32px;
}

/* Eyebrow label */
.ls-eyebrow {
	font-family: 'Ruda', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--ex-blue);
	margin-bottom: 16px;
	display: block;
}

/* Section heading */
.ls-heading {
	font-family: 'Ruda', sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	color: var(--ex-text);
	line-height: 1.3;
	margin-bottom: 12px;
	letter-spacing: -0.3px;
}

/* Display heading variant — lighter, serif */
.ls-heading--display {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 300;
	letter-spacing: -0.5px;
}

.ls-heading em {
	font-style: italic;
	color: var(--ex-blue);
}

/* Body text */
.ls-body {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: var(--ex-body);
	line-height: 1.75;
	margin-bottom: 16px;
}

.ls-body:last-child {
	margin-bottom: 0;
}

.ls-body strong {
	color: var(--ex-text);
	font-weight: 500;
}

/* Inline reference marker */
.ls-ref-inline {
	font-size: 0.75em;
	vertical-align: super;
	line-height: 0;
	color: var(--ex-blue);
	margin-left: 1px;
	cursor: default;
}

/* ============================================================
   3. SECTION FOOTER
      References (citations) and/or disclaimers.
      Both are optional; use one or both.
   ============================================================ */

/*
   Usage:
   <footer class="ls-footer">
     <div class="ls-footer__refs">
       <span class="ls-ref"><sup>1</sup>Author et al. <em>Journal.</em> 2024.</span>
       <span class="ls-ref"><sup>2</sup>Author et al. <em>Journal.</em> 2025.</span>
     </div>
     <p class="ls-footer__disclaimer">
       All findings are preclinical...
     </p>
   </footer>
*/

.ls-footer {
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid var(--ex-border);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* References — inline set of citations */
.ls-footer__refs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
}

.ls-ref {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: var(--ex-body);
	line-height: 1.7;
}

.ls-ref sup {
	font-size: 0.75em;
	vertical-align: super;
	line-height: 0;
	margin-right: 1px;
	color: var(--ex-blue);
}

.ls-ref em {
	font-style: italic;
}

/* Disclaimer */
.ls-footer__disclaimer {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--ex-muted);
	margin: 0;
}

/* Dark variant — for blue/dark background sections */
.ls-footer--dark {
	border-top-color: rgba(255,255,255,0.2);
}

.ls-footer--dark .ls-ref {
	color: rgba(255,255,255,0.5);
}

.ls-footer--dark .ls-ref sup {
	color: rgba(255,255,255,0.7);
}

.ls-footer--dark .ls-footer__disclaimer {
	color: rgba(255,255,255,0.35);
}


/* ============================================================
   4. COMPONENTS
   ============================================================ */

/* ── 4a. Content Boxes (pair) ── */
/*
   Two side-by-side boxes for structured content
   (e.g. institutional responses).

   <div class="ls-box-grid">
     <div class="ls-box">
       <div class="ls-box__label">Organization Name</div>
       <p class="ls-box__text">Description...</p>
       <div class="ls-box__meta">2024</div>
     </div>
     <div class="ls-box">...</div>
   </div>
*/

.ls-box-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

.ls-box {
	background: #fff;
	border: 1px solid var(--ex-border);
	border-radius: 10px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* On off-white backgrounds, boxes stay white.
   On white backgrounds, give them a subtle fill. */
.ls-section--off .ls-box {
	background: #fff;
}

.ls-box__label {
	font-family: 'Ruda', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ex-blue);
	line-height: 1.4;
	text-align: center; 
}

.ls-box__text {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: var(--ex-body);
	line-height: 1.65;
	flex-grow: 1;
	margin: 0;
}

.ls-box__text strong {
	color: var(--ex-text);
	font-weight: 500;
}

/* Box image — centered logo or icon */
.ls-box__img {
	display: flex;
	justify-content: center;
	margin-bottom: 4px;
}

.ls-box__img img {
	max-height: 40px;
	width: auto;
	display: block;
	opacity: 1;
}

.ls-box__meta {
	font-family: 'Ruda', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--ex-muted);
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}


/* ── 4b. Image Frame ── */
/*
   Container for a graph, chart, map, or photo.
   Use .ls-img-frame--flush for no padding (full-bleed image).
   Use .ls-img-frame--borderless for no border.

   <div class="ls-img-frame">
     <img src="graph.png" alt="Description">
     <p class="ls-img-caption">Caption text here</p>
   </div>
*/

.ls-img-frame {
	background: #fff;
	border: 1px solid var(--ex-border);
	border-radius: 10px;
	padding: 28px;
	margin-bottom: 24px;
	overflow: hidden;
}

.ls-img-frame img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* SVG inside image frame */
.ls-img-frame svg {
	width: 100%;
	height: auto;
	display: block;
}

.ls-img-frame--flush {
	padding: 0;
}

.ls-img-frame--flush img {
	border-radius: 0;
}

.ls-img-frame--borderless {
	border: none;
	padding: 0;
	background: transparent;
}

.ls-img-frame--borderless img {
	border-radius: 10px;
}

.ls-img-caption {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	color: var(--ex-muted);
	margin-top: 16px;
	line-height: 1.5;
}

/* Caption inside flush frames needs its own padding */
.ls-img-frame--flush .ls-img-caption {
	padding: 12px 20px 16px;
}


/* ── 4c. Data Row ── */
/*
   Horizontal strip of key metrics.

   <div class="ls-data-row">
     <div class="ls-data-cell">
       <span class="ls-data-value">100+</span>
       <span class="ls-data-label">Clinician Investors</span>
     </div>
     ...
   </div>

   Modifiers:
     .ls-data-row--dark   for use on blue/dark backgrounds
     .ls-data-value--blue blue accent on a specific value
*/

.ls-data-row {
	display: grid;
	grid-template-columns: repeat(var(--ls-data-cols, 3), 1fr);
	border-top: 1px solid var(--ex-border);
	border-bottom: 1px solid var(--ex-border);
}

.ls-data-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 24px 16px;
	border-right: 1px solid var(--ex-border);
	text-align: center;
}

.ls-data-cell:last-child {
	border-right: none;
}

.ls-data-value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 300;
	color: var(--ex-text);
	line-height: 1;
}

.ls-data-value--blue {
	color: var(--ex-blue);
}

.ls-data-label {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ex-muted);
}

/* Dark variant */
.ls-data-row--dark {
	border-color: rgba(255,255,255,0.2);
}

.ls-data-row--dark .ls-data-cell {
	border-color: rgba(255,255,255,0.2);
}

.ls-data-row--dark .ls-data-value {
	color: #fff;
}

.ls-data-row--dark .ls-data-label {
	color: rgba(255,255,255,0.55);
}


/* ── 4d. Closing Line ── */
/*
   A single italic statement at the end of a section,
   before the footer. Optional.

   <p class="ls-closing">The tools haven't changed in 30 years.</p>
*/

.ls-closing {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--ex-text);
	line-height: 1.7;
	font-style: italic;
}


/* ============================================================
   5. FRAMING SECTION
      Compact centered intro immediately after the hero.
      Establishes the ask and frames the narrative.
   ============================================================ */

.ls-framing__scroll {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.ls-framing__scroll-text {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ex-muted);
}

.ls-framing__scroll-line {
	display: block;
	width: 1px;
	height: 28px;
	background: linear-gradient(to bottom, var(--ex-border), transparent);
}


/* ============================================================
   6. EXPLORE SECTION
      Soft exit ramp below the registration form.
      Low visual weight — allows exploration without
      encouraging it.
   ============================================================ */

/*
   Usage:
   <section class="ls-explore">
     <div class="ls-explore__inner">
       <p class="ls-explore__heading">Want to learn more first?</p>
       <nav class="ls-explore__links">
         <a href="/impact/" class="ls-explore__link">
           The evidence on IOH
           <svg>...</svg>
         </a>
         ...
       </nav>
     </div>
   </section>
*/

.ls-explore {
	padding: 56px 30px;
	background: var(--ex-bg-off);
}

.ls-explore__inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.ls-explore__heading {
	font-family: 'Ruda', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--ex-muted);
	margin-bottom: 20px;
}

.ls-explore__links {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.ls-explore__link {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--ex-body);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	border-bottom: 1px solid transparent;
	transition: all 0.25s ease;
}

.ls-explore__link:hover {
	color: var(--ex-blue);
	border-bottom-color: var(--ex-blue);
}

.ls-explore__link svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	opacity: 0.5;
}


/* ============================================================
   7. HELPERS & UTILITIES
   ============================================================ */

/* Text alignment */
.ls-text-center { text-align: center; }
.ls-text-left   { text-align: left; }

/* Center children (for centered layouts like community) */
.ls-center-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Constrain body text width when centered */
.ls-center-col .ls-body {
	max-width: 560px;
}

/* Spacing helpers */
.ls-mb-0  { margin-bottom: 0; }
.ls-mb-8  { margin-bottom: 8px; }
.ls-mb-16 { margin-bottom: 16px; }
.ls-mb-24 { margin-bottom: 24px; }
.ls-mb-32 { margin-bottom: 32px; }
.ls-mb-48 { margin-bottom: 48px; }

.ls-mt-0  { margin-top: 0; }
.ls-mt-16 { margin-top: 16px; }
.ls-mt-24 { margin-top: 24px; }
.ls-mt-32 { margin-top: 32px; }
.ls-mt-36 { margin-top: 36px; }
.ls-mt-48 { margin-top: 48px; }

/* Max-width helpers for body text */
.ls-max-480 { max-width: 480px; }
.ls-max-560 { max-width: 560px; }
.ls-max-620 { max-width: 620px; }

/* Image max-width (e.g. shareholder map) */
.ls-img-max-600 { max-width: 600px; width: 100%; }


/* ============================================================
   8. RESPONSIVE
   ============================================================ */

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
	.ls-section {
		padding: 60px 24px;
	}

	.ls-framing {
		padding: 48px 24px;
	}

	.ls-explore {
		padding: 48px 24px;
	}

	/* Boxes stack */
	.ls-box-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	/* Image frame tighter */
	.ls-img-frame {
		padding: 20px;
	}

	/* Data row: 4-col → 2x2 if used */
	.ls-data-row[style*="--ls-data-cols: 4"] {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ── Mobile (480px) ── */
@media (max-width: 480px) {
	.ls-section {
		padding: 48px 20px;
	}

	.ls-framing {
		padding: 40px 20px;
	}

	.ls-framing__heading {
		font-size: 24px;
	}

	.ls-framing__body {
		font-size: 14px;
	}

	/* Headings */
	.ls-heading {
		font-size: 22px;
	}

	.ls-body {
		font-size: 14px;
	}

	/* Boxes */
	.ls-box {
		padding: 20px;
		gap: 10px;
	}

	.ls-box__text {
		font-size: 13px;
	}

	/* Image frame */
	.ls-img-frame {
		padding: 16px;
		border-radius: 8px;
	}

	/* Data row stacks to key-value pairs */
	.ls-data-row {
		grid-template-columns: 1fr;
	}

	.ls-data-cell {
		border-right: none;
		border-bottom: 1px solid var(--ex-border);
		padding: 18px 16px;
		flex-direction: row;
		gap: 12px;
	}

	.ls-data-cell:last-child {
		border-bottom: none;
	}

	.ls-data-value {
		font-size: 24px;
		min-width: 72px;
		text-align: right;
	}

	.ls-data-label {
		text-align: left;
	}

	/* Explore links stack */
	.ls-explore__links {
		flex-direction: column;
		gap: 4px;
	}

	.ls-explore__link {
		justify-content: center;
		padding: 12px 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.ls-explore__link:last-child {
		border-bottom-color: transparent;
	}

	/* Footer refs stack */
	.ls-footer__refs {
		flex-direction: column;
		gap: 4px;
	}
}
