/* ═══════════════════════════════════════════
   KYUBS LANDING PAGE — STYLESHEET
   Design: Cultural Category-Defining Network
   Style: Minimalist, Bold Typography, High Contrast
   Colors: Deep Charcoal (Base), Off-White (Text), Subtle Warm/Cool Grays
═══════════════════════════════════════════ */

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

:root {
    --bg-base: #0a0a0a;
    /* Deep charcoal, almost black */
    --bg-surface: #141414;
    /* Slightly lighter for cards */
    --bg-elevated: #1e1e1e;
    /* Hover states */
    --text-primary: #f2f2f2;
    /* Off-white for high legibility */
    --text-secondary: #999999;
    /* Neutral gray for support text */
    --text-tertiary: #666666;
    /* Darker gray for subtle elements */

    --accent: #EDF96C;
    /* Neon accent */

    --font-heading: 'Satoshi', 'Inter', sans-serif;
    --font-accent: 'Vina Sans', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --spacing-section: 160px;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

/* ── Typography & Utility ── */
h1,
h2,
h3,
h4,
.brand-name {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.hero-headline,
.why-title,
.cta-title,
.split-heading,
.experience-h2,
.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container--wide {
    max-width: 1400px;
}

/* ─────────────────────────────────────────
   SECTION WRAPPERS
───────────────────────────────────────── */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* very subtle dividers */
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.section-label::before {
    content: "■";
    font-size: 0.6em;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--text-tertiary);
}

/* ─────────────────────────────────────────
   HERO — Canvas + Sticky Scroll
───────────────────────────────────────── */
.hero-section {
    height: 600vh;
    position: relative;
    border-bottom: none;
}

.canvas-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    z-index: 20;
}

#frameCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    /* Tone down the images slightly */
}

/* ─────────────────────────────────────────
   INTRO GATEWAY (Private Beta Overlay)
───────────────────────────────────────── */
.intro-gateway {
    position: absolute;
    inset: 0;
    z-index: 30;
    /* Above canvas, below brand overlay if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gateway-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0 5%;
    width: 100%;
    transform: translateY(-2%);
}

.gateway-logo {
    margin-bottom: 24px;
}

.gateway-tag {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid rgba(237, 249, 108, 0.2);
    background: rgba(237, 249, 108, 0.05);
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gateway-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
    color: var(--text-primary);
    line-height: 1;
}

.gateway-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 440px;
    margin-bottom: 48px;
}

.gateway-form .gateway-input-wrap {
    background: rgba(255, 255, 255, 0.08);
    /* More visible against bg */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: background 0.2s, border-color 0.2s;
}

.gateway-form .gateway-input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.gateway-form .gateway-input {
    letter-spacing: 6px;
    text-align: center;
    padding: 24px 12px;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 400;
}

.gateway-form .gateway-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

.gateway-error {
    color: #ff4a4a;
    font-size: 0.85rem;
    text-align: center;
    margin: -4px 0 4px 0;
}

.error-border {
    border-color: #ff4a4a !important;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

.shake {
    animation: shake 0.3s ease-in-out;
}

.gateway-btn {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.gateway-btn:hover {
    transform: scale(0.98);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.scroll-prompt {
    color: var(--text-primary);
    font-weight: 600;
}

.bounce-arrow {
    width: 24px;
    height: 24px;
    animation: bounceIndicator 2s infinite ease-in-out;
}

@keyframes bounceIndicator {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.brand-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.0) 0%,
            rgba(10, 10, 10, 0.7) 60%,
            rgba(10, 10, 10, 0.95) 100%);
    opacity: 0;
    pointer-events: none;
}

.brand-overlay.visible {
    pointer-events: auto;
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0;
    margin: 0;
}

.brand-overlay.brand-in .brand-content {
    transform: translateY(0);
    opacity: 1;
}

/* Hero Typography */
.logo-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.kyubs-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: contrast(300%) brightness(1.2) url('#removeBlack');
    background: transparent;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(14px, 3.5vw, 1.4rem);
    color: var(--text-secondary);
    width: 100%;
    max-width: 860px;
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 400;
}



/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

.hero-micro {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

/* ─────────────────────────────────────────
   SECTION 2: THE WHY
───────────────────────────────────────── */
.why-section {
    background: var(--bg-base);
}

.why-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.why-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
}

.why-body p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
}

.why-body .highlight-p {
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 1rem;
}

/* ─────────────────────────────────────────
   SECTION 3: CREATOR & CONSUMER SPLIT
───────────────────────────────────────── */
.split-section {
    background: var(--bg-base);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.split-panel {
    background: #141414;
    padding: 60px 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.panel-icon {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.split-heading {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 90%;
}

.split-grey {
    color: var(--text-tertiary);
}

.manifesto-list {
    list-style: none;
    margin-bottom: 3rem;
}

.manifesto-list li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 8px 0;
}

.panel-quote {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: auto;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.panel-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: auto;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2rem;
}

.action-list span {
    font-size: 1rem;
    color: var(--text-tertiary);
}

/* ─────────────────────────────────────────
   SECTION 4: EXPERIENCE (FLYWHEEL)
───────────────────────────────────────── */
.experience-section {
    background: var(--bg-base);
}

.experience-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.exp-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exp-icon {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.exp-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.exp-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.exp-closing {
    margin-top: 6rem;
}

.exp-closing h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────
   SECTION 5: AI BENTO BOX (FEATURES)
───────────────────────────────────────── */
.ai-section {
    background: var(--bg-base);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.ai-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.bento-box {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.bento-box:hover {
    background: var(--bg-elevated);
}

/* Incorporating subtle visual textures instead of heavy icons */
.bento-box::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    width: 24px;
    height: 24px;
    background-image: radial-gradient(circle, var(--text-tertiary) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.5;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.bento-wide {
    grid-column: span 3;
}

.bento-icon-wrapper {
    margin-bottom: auto;
    /* pushes everything else to bottom */
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.bento-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.bento-large h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.bento-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.bento-large p {
    font-size: 1.2rem;
}

/* ─────────────────────────────────────────
   SECTION 6: FINAL CTA
───────────────────────────────────────── */
.cta-section {
    background: var(--bg-surface);
    color: var(--text-primary);
    text-align: center;
    padding: calc(var(--spacing-section) * 1.5) 0;
    position: relative;
    border-bottom: none;
}

.cta-title {
    font-size: clamp(18px, 3vw, 2.6rem);
    line-height: 1.2;
    margin: 0 auto 3rem;
    max-width: 1100px;
    width: 100%;
}

.cta-title .accent-text {
    color: var(--accent);
}

/* Username form (inverted scheme) */
.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}

.input-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.input-prefix {
    padding: 20px 0 20px 24px;
    font-size: 1.1rem;
    color: var(--text-tertiary);
    user-select: none;
}

.username-input {
    flex: 1;
    padding: 20px 24px 20px 4px;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
}

.reserve-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 32px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s;
}

.reserve-btn:hover {
    transform: scale(0.98);
}

.cta-micro {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Success state (inverted) */
.success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    animation: fadeUp 0.5s ease forwards;
}

.success-state.show {
    display: flex;
}

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

.success-msg {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.success-sub {
    color: var(--text-tertiary);
}

.share-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    margin: 4px;
}

.share-btn:hover {
    background: var(--accent);
    transform: scale(0.98);
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
* {
    cursor: none !important;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    will-change: left, top, width, height;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: left, top, width, height;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover States over buttons/inputs */
.cursor-dot.cursor-hover {
    width: 0px;
    height: 0px;
    background-color: transparent;
}

.cursor-circle.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(237, 249, 108, 0.1);
    /* Slight accent wash */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
    background: var(--bg-base);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-vid {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: contrast(300%) brightness(1.2) url('#removeBlack');
    background: transparent;
    opacity: 0.95;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ─────────────────────────────────────────
   ANIMATIONS & REVEALS
───────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────
   OTP MODAL UI
───────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #141414;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 440px;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.visible .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}


/* ─────────────────────────────────────────
   RESPONSIVE OVERRIDES
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .split-grid {
        gap: 16px;
    }

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

    .exp-grid .exp-card:last-child {
        grid-column: span 2;
    }

    .ai-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .ai-bento .bento-box:nth-child(6) {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 100px;
    }

    .split-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding: 0 24px 24px;
    }

    .split-grid::-webkit-scrollbar {
        display: none;
    }

    .split-panel {
        flex: 0 0 88%;
        scroll-snap-align: center;
        padding: 40px 24px;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .exp-grid .exp-card:last-child {
        grid-column: span 1;
    }

    .ai-bento {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .ai-bento .bento-box:nth-child(6),
    .bento-wide {
        grid-column: span 1;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gateway-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 24px;
    }

    .gateway-form {
        max-width: 90%;
    }

    .gateway-form .gateway-input {
        padding: 20px 12px;
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .hero-headline {
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 1rem;
        padding: 0 16px;
        max-width: 100%;
    }
}