/* ═══════════════════════════════════════════
   DESIGN SYSTEM
   ═══════════════════════════════════════════ */
:root {
    --primary: #006a75;
    --primary-light: #0d9488;
    --primary-dark: #004d54;
    --accent: #16a34a;
    --accent-light: #22c55e;
    --bg: #f8fafb;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: rgba(0, 106, 117, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 106, 117, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 106, 117, 0.12);
    --shadow-xl: 0 20px 48px rgba(0, 106, 117, 0.12);
    --radius: 20px;
    --radius-lg: 40px;
}

.mobile-only-link {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(248, 250, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    box-shadow: 0 2px 8px rgba(0, 106, 117, 0.25);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 106, 117, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 106, 117, 0.08), rgba(22, 163, 74, 0.08));
    border: 1px solid rgba(0, 106, 117, 0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 800px;
    margin: 0 auto 28px;
    animation: fadeUp 0.8s ease;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.2s both;
}

.store-badge {
    height: 56px;
    border-radius: 14px;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.store-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--text);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.store-badge-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.store-badge-link svg {
    width: 28px;
    height: 28px;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-badge-text small {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

.store-badge-text strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Phone Mockup */
.hero-mockup {
    margin-top: 80px;
    perspective: 1200px;
    animation: fadeUp 1s ease 0.4s both;
}

.phone-frame {
    width: 300px;
    height: 620px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-xl),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 60px 120px -20px rgba(0, 106, 117, 0.2);
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateX(0deg) translateY(-8px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    background: linear-gradient(180deg, #f0fdf4 0%, #f8fafb 30%);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.screen-content {
    padding: 20px;
}

.screen-greeting {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.screen-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.screen-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.screen-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.screen-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screen-card-badge {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.badge-normal {
    background: #dcfce7;
    color: #166534;
}

.badge-high {
    background: #fef3c7;
    color: #92400e;
}

.screen-card-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
}

.screen-card-value small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.screen-card-unit {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.screen-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 10px;
}

.screen-mini-chart .bar {
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    opacity: 0.7;
    animation: growBar 1s ease forwards;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
    padding: 120px 24px;
    background: linear-gradient(180deg, white 0%, var(--bg) 100%);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 48px;
}

.step:last-child {
    padding-bottom: 0;
}

.step-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 106, 117, 0.25);
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary), rgba(0, 106, 117, 0.1));
    border-radius: 2px;
    margin-top: 8px;
}

.step:last-child .step-line {
    display: none;
}

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════════ */
.privacy-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.15);
    pointer-events: none;
}

.privacy-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.privacy-card .shield {
    font-size: 56px;
    margin-bottom: 24px;
}

.privacy-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.privacy-card p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.privacy-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.privacy-badge .check {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
    padding: 120px 24px;
    text-align: center;
}

.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .hero-buttons {
    margin-bottom: 24px;
}

.cta .subtle {
    font-size: 14px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
    .nav-inner {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .mobile-only-link {
        display: block !important;
    }

    .mobile-only-link hr {
        border: none;
        border-top: 1px solid var(--border);
        margin: 10px 40px;
        opacity: 0.5;
    }

    .mobile-only-link a {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: var(--text-secondary) !important;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 700;
        color: var(--text);
    }

    .nav-cta {
        padding: 16px 40px;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 100;
        cursor: pointer;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--primary);
        border-radius: 2px;
        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    body.no-scroll {
        overflow: hidden;
    }

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

    .privacy-card {
        padding: 48px 20px;
    }

    .privacy-badges {
        gap: 12px;
    }

    .privacy-badge {
        width: 100%;
        justify-content: center;
    }

    .step {
        gap: 20px;
    }

    .hero {
        padding: 140px 20px 60px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-mockup {
        margin-top: 60px;
    }

    .phone-frame {
        width: 250px;
        height: 520px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .store-badge-link {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════
   LEGAL & CONTACT PAGES
   ═══════════════════════════════════════════ */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content {
    padding: 80px 0;
}

.policy-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 106, 117, 0.04);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.disclaimer-box {
    background: #fefce8;
    border: 1px solid #fde047;
    padding: 24px;
    border-radius: 16px;
    color: #854d0e;
    font-weight: 500;
    margin: 32px 0;
}

/* Contact Page Specific */
.contact-card {
    background: white;
    padding: 60px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 106, 117, 0.04);
    text-align: center;
    margin-top: 48px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 32px;
    color: var(--primary);
}

.btn-contact {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 106, 117, 0.2);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 106, 117, 0.3);
}

/* Legal Page Headers override */
.legal-content h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    color: var(--text);
    text-align: center;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 16px;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .legal-content h1 {
        font-size: 36px;
    }

    .policy-card {
        padding: 24px;
    }
}

/* Legal Nav & Footer adjustments */
.legal-nav {
    background: rgba(248, 250, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ═══════════════════════════════════════════
   BETA LAUNCH PIVOT STYLES
   ═══════════════════════════════════════════ */

/* Hero Additions */
.btn-primary-large {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 106, 117, 0.2);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 106, 117, 0.3);
}

.hero-subtext {
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Our Story Section */
.our-story {
    padding: 100px 24px;
    background: white;
}

.our-story-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-image {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 40px;
    border-radius: 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
}

.story-quote {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
}

/* Registration Section */
.register-section {
    padding: 120px 24px;
    background: var(--bg);
}

.register-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.register-card h2 {
    font-size: 36px;
    margin: 12px 0 16px;
    color: var(--text);
}

.register-card p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.register-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-wrap label,
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 15px;
    background: #fcfdfe;
    transition: all 0.2s;
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 106, 117, 0.1);
    background: white;
}

.register-form textarea {
    min-height: 100px;
    resize: vertical;
}

.register-form small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.btn-submit {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 106, 117, 0.2);
    margin-top: 16px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 106, 117, 0.3);
}

.h-captcha {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

/* Mission Scroll Box & Founder Signature */
.mission-scroll-box {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

.mission-scroll-box::-webkit-scrollbar {
    width: 6px;
}

.mission-scroll-box::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 8px;
}

.mission-scroll-box::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

.mission-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.founder-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: -1px;
}

.founder-title {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 640px) {
    .form-group.row {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-card {
        padding: 40px 24px;
    }

    .register-card h2 {
        font-size: 28px;
    }

    .story-image {
        min-height: 300px;
        padding: 30px;
    }
}