/* ========================================================================
   Nume Uno Landing v2 — styles.css
   App nav-section colors: teal #8fdae2, charcoal #141318, surface #1c1d22
   ======================================================================== */

/* ── Reset & Base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* App-derived palette */
    --nu-teal: #8fdae2;
    --nu-teal-dim: #6bc4ce;
    --nu-charcoal: #141318;
    --nu-surface: #1c1d22;
    --nu-surface-raised: #252630;
    --nu-border: #3d4048;
    --nu-text: #dfe0e5;
    --nu-text-muted: #9d9da7;
    --nu-white: #f8f8fa;
    --nu-bg-light: #f2f3f5;
    --nu-bg-warm: #edeef1;

    /* Functional */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --font: 'Lexend', system-ui, -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

#hero,
#story,
#pricing,
#platform,
#waitlist {
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--nu-charcoal);
    color: var(--nu-text);
    line-height: 1.6;
    min-height: 100dvh;
    overflow-x: clip;
}

/* ── Nav (sticky dark bar) ────────────────────────────── */
.ht-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 2.5rem;
    background: rgba(20, 19, 24, 0);
    transition: background 0.4s ease;
}

.ht-nav.scrolled {
    background: rgba(20, 19, 24, 0.95);
    border-bottom: 1px solid rgba(61, 64, 72, 0.4);
}

.ht-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Nav logo: hidden by default, visible on scroll */
#nav-logo {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    filter: brightness(0) invert(1);
}

.ht-nav.scrolled #nav-logo {
    opacity: 1;
    transform: translateY(0);
}

.ht-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ht-nav-link {
    font-family: var(--font);
    color: var(--nu-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.ht-nav-link:hover,
.ht-nav-link.active {
    color: var(--nu-teal);
    background: rgba(143, 218, 226, 0.08);
}

.ht-nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.ht-btn-ghost {
    font-family: var(--font);
    color: var(--nu-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.ht-btn-ghost:hover {
    color: var(--nu-white);
}

.ht-btn-pill {
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.ht-btn-pill--solid {
    background: var(--nu-teal);
    color: var(--nu-charcoal);
    font-weight: 700;
}

.ht-btn-pill--solid:hover {
    background: #a3e4eb;
}

.ht-btn-pill--accent {
    background: var(--nu-teal);
    color: var(--nu-charcoal);
}

.ht-btn-pill--accent:hover {
    background: #a3e4eb;
}

/* ── Hero (big centered logo) ─────────────────── */
.ht-hero {
    position: relative;
    min-height: 76svh;
    background: var(--nu-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.ht-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ht-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ht-hero-logo {
    height: clamp(70px, 14vw, 150px);
    width: auto;
    filter: brightness(0) invert(1);
    animation: heroFadeIn 1.2s var(--ease-out) both;
}

.ht-hero-tagline {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--nu-text-muted);
    animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

.ht-hero-scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--nu-text-muted);
    text-decoration: none;
    opacity: 0.4;
    z-index: 2;
    animation: scrollArrowIn 1.2s var(--ease-out) 0.6s both, gentleBob 3s ease-in-out 2s infinite;
    transition: opacity 0.2s ease;
}

@keyframes scrollArrowIn {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to { opacity: 0.4; transform: translateX(-50%) translateY(0); }
}

.ht-hero-scroll:hover {
    opacity: 0.8;
}

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

@keyframes gentleBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Story (Glyphs & Grids style) ──────────────────── */
.ht-story {
    position: relative;
    background: var(--nu-charcoal);
    color: var(--nu-text);
    padding: 0 2.5rem clamp(6rem, 12vw, 12rem);
}

.ht-story-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Noto Color Emoji inline */
.ne {
    font-family: 'Noto Color Emoji', sans-serif;
    font-size: 0.85em;
    display: inline-block;
    vertical-align: -0.08em;
    margin: 0 0.15em;
}

.ht-story-line {
    font-family: var(--font);
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--nu-text-muted);
    padding: 0.6em 0;
    opacity: 0;
}

.ht-story-line--gap {
    margin-top: 2rem;
    font-weight: 700;
    color: var(--nu-white);
}

.ht-story-line--accent {
    color: var(--nu-teal);
    font-weight: 600;
}

.ht-story-line--small {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--nu-text-muted);
    opacity: 0;
    padding: 0.4em 0;
}

/* Emoji bounce+wiggle keyframes */
@keyframes emojiBounce {
    0% { transform: scale(0.3) rotate(-15deg); opacity: 0; }
    50% { transform: scale(1.15) rotate(8deg); opacity: 1; }
    70% { transform: scale(0.9) rotate(-4deg); }
    85% { transform: scale(1.05) rotate(2deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ── Pricing ───────────────────────────────────────────────────── */
.ht-pricing {
    position: relative;
    background: var(--nu-charcoal);
    padding: clamp(5rem, 10vw, 9rem) 2.5rem;
}

.ht-pricing-inner {
    max-width: 960px;
    margin: 0 auto;
}

.ht-pricing-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nu-text-muted);
    margin-bottom: 1rem;
}

.ht-pricing-heading {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 0.75rem;
    color: var(--nu-white);
}

.ht-pricing-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--nu-text-muted);
    margin: 0 0 2.5rem;
}

/* Business type selector */
.ht-biz-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.ht-biz-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
    border-radius: 9999px;
    color: var(--nu-text-muted);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ht-biz-btn:hover {
    border-color: var(--nu-text-muted);
    color: var(--nu-text);
}

.ht-biz-btn--active,
.ht-biz-btn[aria-pressed="true"] {
    background: var(--nu-surface-raised);
    border-color: var(--nu-white);
    color: var(--nu-white);
}

.ht-biz-icon {
    font-size: 1.1em;
}

/* Scenario panels */
.ht-scenario-panels {
    position: relative;
}

.ht-scenario {
    display: none;
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    animation: fadeIn 0.35s var(--ease-out);
}

.ht-scenario--active {
    display: block;
}

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

.ht-scenario-badge {
    position: absolute;
    top: -0.7rem;
    right: 2rem;
    background: var(--nu-white);
    color: var(--nu-charcoal);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ht-scenario-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ht-scenario-tier {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nu-white);
    letter-spacing: -0.03em;
}

.ht-scenario-price {
    text-align: right;
}

.ht-price-val {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nu-white);
    letter-spacing: -0.03em;
}

.ht-price-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--nu-text-muted);
}

.ht-price-monthly {
    display: block;
    font-size: 0.8rem;
    color: var(--nu-text-muted);
    margin-top: 0.15rem;
}

.ht-scenario-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nu-text-muted);
    margin-bottom: 2rem;
}

/* Compare block */
.ht-scenario-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ht-compare-them,
.ht-compare-us {
    padding: 1.25rem;
    border-radius: var(--radius);
}

.ht-compare-them {
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
}

.ht-compare-us {
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
}

.ht-compare-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nu-text-muted);
    margin-bottom: 0.5rem;
}

.ht-compare-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ht-compare-them .ht-compare-val {
    color: var(--nu-text-muted);
}

.ht-compare-us .ht-compare-val {
    color: var(--nu-white);
}

.ht-compare-note {
    display: block;
    font-size: 0.78rem;
    color: var(--nu-text-muted);
    font-weight: 300;
}

/* Includes list */
.ht-scenario-includes h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nu-text-muted);
    margin-bottom: 0.75rem;
}

.ht-scenario-includes ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
}

.ht-scenario-includes li {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--nu-text);
    padding-left: 1.1rem;
    position: relative;
}

.ht-scenario-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nu-teal);
}

.ht-scenario-cta {
    margin-top: 2rem;
}

/* Pack grid */
.ht-scenario-packs h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nu-text-muted);
    margin-bottom: 1rem;
}

.ht-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ht-pack {
    background: var(--nu-surface-raised);
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}

.ht-pack-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nu-white);
    margin-bottom: 0.15rem;
}

.ht-pack-price {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nu-text);
    margin-bottom: 0.25rem;
}

.ht-pack-desc {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--nu-text-muted);
    line-height: 1.4;
}

.ht-pack-bundle {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--nu-text-muted);
    padding: 0.75rem 1rem;
    background: var(--nu-surface-raised);
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-sm);
}

.ht-pack-bundle strong {
    color: var(--nu-white);
}

/* TCO section */
.ht-tco {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--nu-border);
}

.ht-tco-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--nu-white);
    margin-bottom: 0.75rem;
}

.ht-tco-sub {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--nu-text-muted);
    margin-bottom: 2rem;
}

.ht-tco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ht-tco-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-sm);
}

.ht-tco-cat {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--nu-text);
}

.ht-tco-cost {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nu-text-muted);
    white-space: nowrap;
}

.ht-tco-total {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ht-tco-total-them,
.ht-tco-total-us {
    padding: 1.5rem;
    border-radius: var(--radius);
}

.ht-tco-total-them {
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
}

.ht-tco-total-them span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nu-text-muted);
    margin-bottom: 0.4rem;
}

.ht-tco-total-them strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nu-text);
}

.ht-tco-total-us {
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
}

.ht-tco-total-us span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nu-text-muted);
    margin-bottom: 0.4rem;
}

.ht-tco-total-us strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nu-teal);
}

.ht-tco-total-us em {
    display: block;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 300;
    color: var(--nu-text-muted);
    margin-top: 0.25rem;
}

.ht-pricing-disclaimer {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nu-text-muted);
    opacity: 0.7;
    margin-top: 2rem;
}

.ht-pricing-disclaimer a {
    color: var(--nu-teal);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.ht-pricing-disclaimer a:hover {
    color: var(--nu-white);
}

/* BYO */
.ht-byo {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-lg);
}

.ht-byo-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nu-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.ht-byo-body {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nu-text-muted);
}

.ht-byo-body--future {
    margin-top: 0.75rem;
    opacity: 0.7;
    font-style: italic;
}

/* ── Founders ──────────────────────────────────────────────────── */
.ht-founders {
    background: var(--nu-bg-light);
    padding: clamp(5rem, 10vw, 8rem) 2.5rem;
}

.ht-founders-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.ht-founder-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ht-founder-row--reverse {
    direction: ltr;
}

.ht-founder-row--reverse .ht-founder-copy {
    order: -1;
}

.ht-founder-row--reverse .ht-founder-video {
    justify-self: end;
}

.ht-founder-video {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ht-video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--nu-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid var(--nu-border);
    border-radius: var(--radius-lg);
}

.ht-video-play {
    font-size: 2.5rem;
    color: var(--nu-text-muted);
    opacity: 0.6;
}

.ht-video-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nu-text-muted);
    opacity: 0.5;
}

.ht-founder-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ht-founder-quote {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a5e;
    font-style: italic;
}

.ht-founder-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #9d9da7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Divider ───────────────────────────────────────────────────── */
.ht-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--nu-border), transparent);
    max-width: 960px;
    margin: 0 auto;
}

/* ── Sticky Grid Scroll ─────────────────────────────────────── */
.sgs-block {
    position: relative;
    height: 400vh;
    background: var(--nu-charcoal);
}

.sgs-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    will-change: transform;
    background: var(--nu-charcoal);
}

.sgs-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    padding: 0 2rem;
    background: radial-gradient(
        ellipse 50% 45% at 50% 50%,
        rgba(20, 19, 24, 0.92) 0%,
        rgba(20, 19, 24, 0.65) 55%,
        transparent 100%
    );
}

.sgs-label {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nu-text-muted);
    margin-bottom: 1rem;
}

.sgs-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--nu-white);
    margin: 0;
    max-width: 16ch;
}

.sgs-description {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nu-text-muted);
    max-width: 42ch;
    margin-top: 1.25rem;
}

.sgs-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding: 0.7rem 2rem;
    border-radius: 9999px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--nu-teal);
    color: var(--nu-charcoal);
    transition: all 0.22s ease;
    pointer-events: auto;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.sgs-button:hover {
    background: #a3e4eb;
}

.sgs-gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.sgs-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 42vh;
    gap: 1rem;
    padding: 2rem;
    width: 100%;
    will-change: transform;
}

.sgs-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.sgs-item:hover {
    opacity: 1 !important;
}

.sgs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Waitlist Section ──────────────────────────────────────────── */
.ht-waitlist-footer {
    position: relative;
    background: var(--nu-charcoal);
    padding: clamp(5rem, 10vw, 9rem) 2.5rem;
    overflow: hidden;
    text-align: center;
}

.ht-waitlist-footer-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.ht-waitlist-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.ht-waitlist-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nu-text-muted);
    margin-bottom: 1.25rem;
}

.ht-waitlist-heading {
    font-family: var(--font);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
    color: var(--nu-white);
}

.ht-waitlist-heading em {
    font-style: normal;
    color: var(--nu-text-muted);
}

.ht-waitlist-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--nu-text-muted);
    margin: 0 0 2.5rem;
}

/* ── Waitlist Form ─────────────────────────────────────────────── */
.ht-wl-form {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.ht-wl-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ht-wl-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nu-text-muted);
}

.ht-wl-optional {
    font-weight: 400;
    text-transform: none;
    color: var(--nu-text-muted);
    opacity: 0.65;
    letter-spacing: 0;
}

.ht-wl-input,
.ht-wl-select {
    width: 100%;
    padding: 0.6rem 0.875rem;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--nu-text);
    background: var(--nu-surface);
    border: 1px solid var(--nu-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ht-wl-input::placeholder {
    color: var(--nu-text-muted);
    opacity: 0.75;
}

.ht-wl-input:focus,
.ht-wl-select:focus {
    border-color: rgba(143, 218, 226, 0.4);
    box-shadow: 0 0 0 3px rgba(143, 218, 226, 0.1);
}

.ht-wl-select-wrap {
    position: relative;
}

.ht-wl-select-wrap .ht-wl-select {
    padding-right: 2.5rem;
    cursor: pointer;
}

.ht-wl-chevron {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--nu-text-muted);
    pointer-events: none;
}

.ht-wl-hint {
    font-size: 0.75rem;
    color: var(--nu-text-muted);
    opacity: 0.65;
}

.ht-wl-turnstile {
    display: flex;
    justify-content: flex-start;
    min-height: 65px;
}

.ht-wl-disclaimer {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--nu-text-muted);
    opacity: 0.6;
    line-height: 1.6;
}

.ht-wl-error {
    font-size: 0.82rem;
    color: #f87171;
    min-height: 1.2em;
}

.ht-wl-submit {
    position: relative;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nu-charcoal);
    background: var(--nu-teal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.15s var(--ease-out);
    letter-spacing: -0.01em;
}

.ht-wl-submit:not(:disabled):hover {
    background: #a3e4eb;
    transform: translateY(-1px);
}

.ht-wl-submit:not(:disabled):active {
    transform: translateY(0) scale(0.985);
}

.ht-wl-submit:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ht-wl-submit.loading .ht-wl-submit-label {
    opacity: 0;
}

.ht-wl-submit.loading .ht-wl-submit-spinner {
    opacity: 1;
}

.ht-wl-submit-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ht-wl-submit-spinner svg {
    width: 20px;
    height: 20px;
    animation: wlSpin 0.8s linear infinite;
}

@keyframes wlSpin {
    to { transform: rotate(360deg); }
}

/* ── Success State ─────────────────────────────────────────────── */
.ht-waitlist-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--nu-surface);
    border: 1px solid rgba(143, 218, 226, 0.2);
    border-radius: 1rem;
    max-width: 440px;
    margin: 0 auto;
    animation: heroSlideUp 0.5s var(--ease-out) both;
}

.ht-waitlist-success.visible {
    display: flex;
}

.ht-waitlist-success-icon {
    font-size: 2rem;
}

.ht-waitlist-success-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--nu-white);
}

.ht-waitlist-success-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--nu-text-muted);
    text-align: center;
}

/* ── Footer ────────────────────────────────────────────────────── */
.ht-legal-footer {
    padding: 2.5rem 2.5rem;
    border-top: 1px solid var(--nu-border);
    background: var(--nu-charcoal);
}

.ht-footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}

.ht-legal-tldr {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--nu-text-muted);
    opacity: 0.85;
}

.ht-legal-tldr strong {
    color: var(--nu-text);
    font-weight: 500;
}

.ht-legal-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ht-legal-copy {
    font-size: 0.775rem;
    font-weight: 300;
    color: var(--nu-text-muted);
    opacity: 0.7;
}

.ht-cookie-pref-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font);
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--nu-teal);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.ht-cookie-pref-btn:hover {
    opacity: 1;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ht-hero {
        min-height: 60svh;
        padding: 5rem 1.25rem 2rem;
    }

    .ht-nav {
        padding: 0.75rem 1rem;
    }

    .ht-nav-links {
        display: none;
    }

    .ht-story {
        padding: 0 1.25rem 3rem;
    }

    .ht-story-line,
    .ht-story-line--small {
        opacity: 1 !important;
        transform: none !important;
    }

    .ht-pricing {
        padding: 3rem 1.25rem;
    }

    .ht-scenario {
        padding: 1.5rem;
    }

    .ht-founders {
        padding: 3rem 1.25rem;
    }

    .ht-founder-row,
    .ht-founder-row--reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ht-founder-row--reverse .ht-founder-copy {
        order: 1;
    }

    .ht-founder-video {
        height: auto;
        max-height: 400px;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .ht-scenario-compare,
    .ht-tco-total {
        grid-template-columns: 1fr;
    }

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

    .ht-hero-meta {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .sgs-block {
        height: 200vh;
    }

    .ht-waitlist-footer {
        padding: 3rem 1.25rem;
    }

    .ht-legal-footer {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ht-hero {
        min-height: 50svh;
        padding: 4rem 1rem 2rem;
    }

    .ht-story {
        padding: 0 1rem 2rem;
    }

    .ht-story-line {
        font-size: 1.25rem;
    }

    .ht-pricing {
        padding: 2.5rem 1rem;
    }

    .ht-scenario {
        padding: 1.25rem;
    }

    .ht-founders {
        padding: 2.5rem 1rem;
    }

    .ht-waitlist-footer {
        padding: 2.5rem 1rem;
    }

    .ht-biz-selector {
        flex-direction: column;
    }

    .ht-pack-grid {
        grid-template-columns: 1fr;
    }

    .ht-tco-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Selection / Scrollbar ─────────────────────────────────────── */
::selection {
    background: rgba(143, 218, 226, 0.2);
    color: var(--nu-white);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--nu-border);
    border-radius: 3px;
}