:root {
    --bg-dark: #05160d;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-glass: rgba(255, 255, 255, 0.05);
    --silk-highlight: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff; /* Brighter for contrast */
    --text-secondary: #d8eadf; /* Brighter, pastel green for high contrast readability */
    --accent-green: #48bb78;
    --accent-gold: #eab308;
    --accent-terra: #e07a5f;
    --font-main: 'Outfit', sans-serif;
}

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

/* Lenis resets */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

body, html {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    /* Lenis takes over scroll behavior */
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hovering {
    width: 60px;
    height: 60px;
    background: rgba(72, 187, 120, 0.2);
    border-color: transparent;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.waving-farmer {
    width: 120px;
    height: auto;
    border-radius: 50%;
    transform-origin: center bottom;
    animation: waveHand 2s infinite ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: 0 0 30px rgba(72, 187, 120, 0.2);
}

@keyframes waveHand {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Fluid Background Shapes */
.fluid-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #082414 0%, var(--bg-dark) 100%);
}

.fluid-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    /* We will use GSAP for continuous swaying instead of basic CSS animation */
}

.shape-1 {
    width: 700px; height: 700px;
    background: var(--accent-green);
    top: -15%; left: -10%;
}

.shape-2 {
    width: 600px; height: 600px;
    background: var(--accent-gold);
    bottom: -15%; right: -10%;
}

.shape-3 {
    width: 500px; height: 500px;
    background: var(--accent-terra);
    top: 35%; left: 45%;
    transform: translateX(-50%);
    opacity: 0.15;
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 10000;
    background: rgba(5, 22, 13, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 22, 13, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-menu a:hover, .lang-menu a.active {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
}

.nav-btn {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-btn.subtle {
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
}

.nav-btn.subtle:hover {
    color: var(--accent-green);
}

.nav-btn.primary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--silk-highlight);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    backdrop-filter: blur(10px);
}

/* Liquid Hover Effect for Buttons */
.liquid-btn span {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.liquid-btn::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120%;
    height: 0;
    background: var(--accent-green);
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.liquid-btn:hover::after {
    height: 150%;
    transform: translateX(-50%) scaleY(1);
    border-radius: 0;
}

.liquid-btn:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.2);
}

.liquid-btn:hover span {
    color: var(--bg-dark); /* Ensure text contrasts with the green liquid */
}

/* Common Section */
.section {
    min-height: 100vh;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Glass Card & Silk Border */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px var(--border-glass);
    position: relative;
}

.silk-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--silk-highlight) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, var(--silk-highlight) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hero Section */
#hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
}

/* Premium Bokeh Orbs */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bokeh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.5;
    animation: floatBokeh 12s infinite ease-in-out alternate;
    will-change: transform, opacity;
}

.orb1 { width: 150px; height: 150px; background: var(--accent-green); top: 20%; left: 15%; animation-duration: 14s; }
.orb2 { width: 100px; height: 100px; background: var(--accent-gold); top: 60%; right: 20%; animation-duration: 10s; animation-delay: 2s; }
.orb3 { width: 200px; height: 200px; background: rgba(224, 122, 95, 0.5); bottom: 10%; left: 25%; animation-duration: 16s; animation-delay: 4s; }
.orb4 { width: 80px; height: 80px; background: rgba(72, 187, 120, 0.8); top: 30%; right: 30%; animation-duration: 12s; animation-delay: 1s; }

@keyframes floatBokeh {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-40px, -40px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(20px, 40px) scale(0.9); opacity: 0.3; }
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
    position: relative;
    z-index: 5;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(72, 187, 120, 0.1);
    color: var(--accent-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(72, 187, 120, 0.2);
    box-shadow: inset 0 0 10px rgba(72, 187, 120, 0.1);
}

.project-name {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a2bba9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

/* Fix for SplitType stacking bug */
.word, .char {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400; /* Increased for outdoor legibility */
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.cta-btn.primary::after {
    background: var(--bg-dark); /* Reverse liquid color */
}

.cta-btn.secondary {
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: var(--text-primary);
}

.cta-btn.secondary:hover {
    background: rgba(72, 187, 120, 0.25);
    box-shadow: 0 5px 20px rgba(72, 187, 120, 0.2);
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.main-glass {
    width: 100%;
    max-width: 420px;
    padding: 0;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: box-shadow 0.5s ease;
}

/* Subtly sway the card via JS, so we remove CSS transform transition that conflicts with GSAP */

.glass-header {
    background: rgba(0,0,0,0.25);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.glass-dots { display: flex; gap: 8px; margin-right: 1.2rem; }
.glass-dots span { width: 12px; height: 12px; border-radius: 50%; background: #ff5f56; }
.glass-dots span:nth-child(2) { background: #ffbd2e; }
.glass-dots span:nth-child(3) { background: #27c93f; }

.glass-title { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }

.glass-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
}

.chat-row { display: flex; width: 100%; }
.chat-row.user { justify-content: flex-end; }
.chat-bubble { max-width: 85%; padding: 1rem 1.4rem; border-radius: 20px; font-size: 1rem; line-height: 1.5; }
.chat-row.bot .chat-bubble { background: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 6px; }
.chat-row.user .chat-bubble { background: var(--accent-green); color: white; border-bottom-right-radius: 6px; box-shadow: 0 8px 20px rgba(72,187,120,0.2); }


/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    margin-top: -5rem;
    margin-bottom: 2rem;
    z-index: 5;
}
.wave-divider svg { display: block; width: 100%; height: auto; }


/* Narrative Section */
.narrative-section {
    padding-top: 2rem;
    gap: 8rem;
}

.narrative-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.narrative-row.reverse {
    flex-direction: row-reverse;
}

.narrative-text {
    flex: 1;
    max-width: 550px;
}

.narrative-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400; /* Increased for readability */
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pill {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-primary);
    backdrop-filter: blur(5px);
}

/* Organic Image Masks & Internal Parallax */
.image-card {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    padding: 0;
    overflow: hidden;
}

.internal-parallax {
    width: 100%;
    height: 120%; /* Extra height for scrolling margin */
    position: absolute;
    top: -10%;
    left: 0;
    /* Soft organic mask applied directly to the container */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.6,90,-16.3,89.1,-0.5C88.1,15.3,83.5,30.6,74.2,43.2C64.9,55.8,50.8,65.6,35.8,72.7C20.8,79.8,4.8,84.1,-11,82.8C-26.8,81.4,-42.4,74.5,-55.8,64.2C-69.2,53.8,-80.4,40.1,-86.3,24.1C-92.2,8.1,-92.9,-10.1,-86.6,-25.9C-80.4,-41.7,-67.2,-55.1,-52.3,-62.1C-37.4,-69,-20.9,-69.5,-3.6,-63.3C13.6,-57.1,27.2,-44.3,44.7,-76.4Z' transform='translate(100 100) scale(1.1)' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-45.8C87.4,-32.6,90,-16.3,89.1,-0.5C88.1,15.3,83.5,30.6,74.2,43.2C64.9,55.8,50.8,65.6,35.8,72.7C20.8,79.8,4.8,84.1,-11,82.8C-26.8,81.4,-42.4,74.5,-55.8,64.2C-69.2,53.8,-80.4,40.1,-86.3,24.1C-92.2,8.1,-92.9,-10.1,-86.6,-25.9C-80.4,-41.7,-67.2,-55.1,-52.3,-62.1C-37.4,-69,-20.9,-69.5,-3.6,-63.3C13.6,-57.1,27.2,-44.3,44.7,-76.4Z' transform='translate(100 100) scale(1.1)' /%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.internal-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.organic-hover:hover .internal-parallax {
    transform: scale(1.05);
}

/* CTA Section */
#cta {
    align-items: center;
}

.cta-wrapper {
    width: 100%;
    max-width: 850px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.warm-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold) 0%, rgba(234, 179, 8, 0) 70%);
    opacity: 0.08;
    z-index: -1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-inline: auto;
    line-height: 1.6;
}

.google-login-large {
    
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    margin: 0 auto 3rem auto;
}

.developed-by {
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.6;
}

/* Glassmorphic Footer */
.glass-footer {
    background: rgba(5, 22, 13, 0.7);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 4rem 2rem 4rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-inline: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    max-width: 1200px;
    margin-inline: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .narrative-row, .narrative-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    .feature-pills { justify-content: center; }
    #hero { flex-direction: column; text-align: center; padding-top: 7rem; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 2rem; }
    .section { padding: 4rem 2rem; }
    .project-name { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .cta-wrapper { padding: 3rem 1.5rem; }
}

/* Auth Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.auth-card {
    background: #0f2518;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.hidden .auth-card {
    transform: translateY(50px);
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover { color: white; }

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 12px;
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.auth-tab.active {
    background: var(--accent-green);
    color: white;
}

.auth-panel {
    display: block;
}

.auth-panel.hidden {
    display: none;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.country-code {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: bold;
}

.phone-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
}

.otp-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 10px;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    outline: none;
}

.w-100 { width: 100%; }

.error-msg {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 10px;
    text-align: center;
}

.otp-instruction {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.text-btn {
    background: none; border: none;
    color: var(--accent-green);
    margin-top: 15px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.text-btn:hover { text-decoration: underline; }

.google-instruction {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}