@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900;1000&display=swap");

/* =====================
   Reset + Base
===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --page-max: 1150px;
    --pad-x: 20px;

    --text: #111;
    --muted: #333333;

    --wait-bg: #333333;
    --wait-text: #DADADA;
    --wait-input-bg: #2b2b2b;
}

body {
    font-family: Manrope, system-ui, sans-serif;
    background: #fff;
    color: var(--text);
    line-height: 1.5;
}

/* =====================
   HERO (fills viewport)
===================== */
.hero {
    min-height: 100vh;      /* fills first screen */
    display: grid;
    place-items: center;    /* center hero-inner */
    padding: 32px var(--pad-x);
}

.hero-inner {
    width: 100%;
    max-width: var(--page-max);
    position: relative;
}

/* Top bar logo (big, offset, does not affect centering) */
.top-bar {
    position: relative;
    top: 0;
    left: 0;
}

.logo {
    width: auto;
    height: 120px;                 /* fairly big */
    transform: translate(100px, 30px); /* offset slightly up-left */
}

/* Main hero content centered */
.hero-content {
    /* ensures content is vertically centered even with absolute header */
    min-height: calc(100vh - 500px);
    display: grid;
    justify-items: center;
    align-content: center;
}

/* Under construction SVG centered; defines “content width” */
.svg-area {
    width: 100%;
    display: grid;
    justify-items: center;
    margin-top: -100px;
}

.center-svg {
    width: min(1150px, 100%);
    height: auto;
    display: block;
    pointer-events: none;
}

/* Text matches svg width + aligns right */
.text-area {
    width: min(1000px, 100%);
    text-align: left;
    margin-top: 50px;
}

.heading {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.subheading {

    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--muted);
    letter-spacing: -0.01em;
}

/* Small screens: optional readability tweak */
@media (max-width: 520px) {
    .logo {
        height: 72px;
        transform: translate(0, -10px);
    }
    .text-area {
        text-align: left;
    }
}

/* =====================
   WAITLIST (full width)
===================== */
.waitlist-section {
    width: 100%;
    background: var(--wait-bg);
    color: var(--wait-text);
    padding: 46px var(--pad-x) 60px;
}

.waitlist-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* =====================
   Waitlist Title
===================== */
.waitlist-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 1000;
    margin-bottom: 20px;
}

/* =====================
   Signup row
===================== */
.signup-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.email-input {
    padding: 14px 16px;
    font-size: 1rem;
    min-width: min(400px, 100%);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: var(--wait-input-bg);
    color: var(--wait-text);
}

.email-input::placeholder {
    color: rgba(245, 245, 245, 0.55);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.65);
}

/* =====================
   Button
===================== */
.btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

.primary {
    background: #f5f5f5;
    color: #111;
    border-color: #f5f5f5;
}

.primary:hover {
    background: #fff;
}

/* =====================
   Output + Footer
===================== */
.output {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.7);
    white-space: pre-wrap;
}

.footer-note {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.75);
}

/* =====================
   Separator
===================== */
.waitlist-section::after {
    content: "";
    display: block;
    height: 2px;
    max-width: 1200px;
    margin: 28px auto 0;
    background: #f5f5f5;
}
