:root {
    --bg-color: #f5f5f5;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --accent-color: #8e8e8e;
    --primary-brown: #6d4c41;
    /* Elegant deep brown */
    --hover-brown: #4e342e;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: #f9f1e7 url('bg.png') center top / 100% auto repeat-y scroll;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}


h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}


/* Base reveal state */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    /* Added scale pop */
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    will-change: transform, opacity;
}

/* Directional Reveals */
.reveal-left {
    transform: translateX(-50px) translateY(0) scale(0.98);
}

.reveal-right {
    transform: translateX(50px) translateY(0) scale(0.98);
}

/* State when element enters viewport */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    /* Reset both translations and scale */
    visibility: visible;
}

/* Stagger delay for sequence */
.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    padding: 0 5%;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /* Center the links */
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.nav-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: #000;
}

.nav-cta .btn-primary {
    background: transparent;
    border: 1px solid var(--primary-brown);
    color: var(--primary-brown);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
    background: var(--primary-brown);
    color: #fff;
}

/* Menu Toggle Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 5%;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary-brown);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content Sections */
.section {
    padding: 60px 2%;
    /* Reduced from 5% to 2% to further minimize empty side space */
    display: flex;
    align-items: center;
    position: relative;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper.centered {
    text-align: center;
}

.content-wrapper.align-right {
    display: flex;
    justify-content: flex-end;
}

.glass-section {
    margin: 30px 5%;
    padding: 60px 10%;
    background: rgba(225, 240, 255, 0.35);
    /* Translucent blue */
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 50, 100, 0.04);
}

.text-block {
    max-width: 600px;
    flex: 1;
}

.content-wrapper.side-by-side {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-wrapper.side-by-side.reverse {
    flex-direction: row-reverse;
}

.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-image {
    max-width: 240px;
    /* Increased by 20% from 200px */
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.parallax-img {
    transition: transform 0.1s linear;
}

.section-image.img-gap {
    max-width: 180px;
    /* Decreased */
}

.section-image.img-modern {
    max-width: 270px;
    /* Reduced by 10% from 300px */
}

.section-image:hover {
    transform: scale(1.02);
}

/* Hero V2 */
.hero-v2 {
    min-height: calc(100vh - var(--nav-height));
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    max-width: 220px;
    /* Reduced from 300px */
    height: auto;
    margin: 0 auto 0.5rem;
    /* Reduced from 1.5rem to move text up */
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.title-large {
    font-size: clamp(2.5rem, 8vw, 3.2rem);
    /* Responsive fluid typography */
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.title-large .highlight {
    font-weight: 500;
    color: #222;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    min-width: 2px;
    border-right: 2px solid var(--primary-brown);
    animation: blink 0.75s step-end infinite;
}

.title-large .highlight::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* Changed from right: 0 to expand from left */
    width: 0;
    height: 100%;
    background: linear-gradient(120deg, rgba(109, 76, 65, 0.2) 0%, rgba(109, 76, 65, 0.1) 100%);
    z-index: -1;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.title-large .highlight.show-highlight::before {
    width: 100%;
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-brown);
    }
}

.title-large .highlight.finished {
    border-right: none;
    animation: none;
}

.subtitle {
    font-size: 1.1rem;
    /* Slightly reduced */
    font-weight: 300;
    color: var(--text-secondary);
    margin: 0 auto 2rem;
    /* Reduced from 3rem */
    max-width: 700px;
}

.usp-list {
    margin-top: 2rem;
    /* Reduced from 3rem */
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.85rem;
    /* Slightly reduced */
    color: var(--text-secondary);
    opacity: 0.7;
}

.usp-item::before {
    content: "•";
    margin-right: 8px;
    color: #55acee;
}

/* Section Typography */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 400;
    /* Slightly heavier for readability at smaller sizes */
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    margin: 60px 5%;
    /* Reduced from 100px to 60px */
    padding: 80px 5%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(109, 76, 65, 0.1);
}

.final-cta .section-title {
    margin-bottom: 1rem;
}

.final-cta p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.btn-premium {
    background: var(--primary-brown);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    background: var(--hover-brown);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #222;
    background: rgba(0, 0, 0, 0.02);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    /* Animate Hamburger to X */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section {
        padding: 60px 20px;
    }

    .hero-v2 {
        padding-top: 100px;
        min-height: auto;
    }

    .title-large {
        font-size: 2.2rem;
    }

    .hero-image {
        max-width: 160px;
    }

    .usp-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .content-wrapper.align-right {
        justify-content: center;
        text-align: center;
    }

    .content-wrapper.side-by-side,
    .content-wrapper.side-by-side.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .image-block {
        order: -1;
        /* Image always on top in mobile */
    }

    .section-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .glass-section {
        margin: 15px 15px;
        padding: 40px 20px;
        border-radius: 20px;
    }

    .final-cta {
        margin: 40px 20px;
        padding: 40px 20px;
    }
}

/* Teams Page Specifics */
.teams-hero {
    padding: 100px 5% 20px;
    text-align: center;
}

.branding-large {
    max-width: 450px;
    margin: 0 auto 40px;
}

.teams-title-block {
    margin-bottom: 20px;
}

.founder-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.founder-section.reverse {
    grid-template-columns: 1fr 320px;
}

.founder-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bio-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bio-content strong {
    color: var(--text-primary);
}

.section-label {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 40px auto 10px;
    position: relative;
    padding: 0 20px;
    max-width: 800px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: rgba(109, 76, 65, 0.2);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.founding-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.support-person h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-brown);
    display: inline-block;
    padding-bottom: 5px;
}

.support-person p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .founder-section {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .founding-support {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-label::before,
    .section-label::after {
        width: 15%;
    }
}

/* Contact Page Specifics */
.contact-hero {
    padding: 80px 5% 0px;
    text-align: center;
}

.contact-hero .subtitle {
    margin-bottom: 1rem;
}

.contact-container {
    padding-top: 0px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin: 40px auto;
    padding: 0 5%;
}

.contact-form-side {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 50px;
}

.contact-social-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-horizontal {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-brown);
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(109, 76, 65, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-btn:hover {
    transform: scale(1.15);
    background: var(--primary-brown);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(109, 76, 65, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-brown);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}/ *   S i g n u p / A u t h   P a g e   S t y l e s   * /  
 . a u t h - p a g e   {  
         b a c k g r o u n d :   v a r ( - - b g - c o l o r ) ;  
         m i n - h e i g h t :   1 0 0 v h ;  
         o v e r f l o w - x :   h i d d e n ;  
 }  
  
 . a u t h - c o n t a i n e r   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         m i n - h e i g h t :   1 0 0 v h ;  
 }  
  
 . a u t h - i n f o   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 1 0 9 ,   7 6 ,   6 5 ,   0 . 0 5 )   0 % ,   r g b a ( 1 0 9 ,   7 6 ,   6 5 ,   0 . 1 5 )   1 0 0 % ) ,   u r l ( ' b g . p n g ' ) ;  
         b a c k g r o u n d - s i z e :   c o v e r ;  
         b a c k g r o u n d - p o s i t i o n :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         p a d d i n g :   6 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . a u t h - i n f o : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         b o t t o m :   0 ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 4 8 ,   0 . 2 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ;  
 }  
  
 . a u t h - i n f o - c o n t e n t   {  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
         m a x - w i d t h :   5 0 0 p x ;  
         w i d t h :   1 0 0 % ;  
 }  
  
 . a u t h - l o g o   i m g   {  
         h e i g h t :   6 0 p x ;  
         m a r g i n - b o t t o m :   4 0 p x ;  
 }  
  
 . a u t h - t e x t - r e v e a l   h 1   {  
         f o n t - s i z e :   3 . 5 r e m ;  
         f o n t - f a m i l y :   ' O u t f i t ' ,   s a n s - s e r i f ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         l i n e - h e i g h t :   1 . 1 ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . a u t h - t e x t - r e v e a l   h 1   s p a n   {  
         c o l o r :   v a r ( - - p r i m a r y - b r o w n ) ;  
 }  
  
 . a u t h - t e x t - r e v e a l   p   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         m a r g i n - b o t t o m :   4 0 p x ;  
         l i n e - h e i g h t :   1 . 6 ;  
 }  
  
 . a u t h - b e n e f i t s   {  
         l i s t - s t y l e :   n o n e ;  
         m a r g i n - b o t t o m :   6 0 p x ;  
 }  
  
 . a u t h - b e n e f i t s   l i   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 5 p x ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . a u t h - b e n e f i t s   i   {  
         c o l o r :   v a r ( - - p r i m a r y - b r o w n ) ;  
         f o n t - s i z e :   1 . 2 r e m ;  
 }  
  
 . a u t h - f o o t e r   {  
         d i s p l a y :   f l e x ;  
         g a p :   3 0 p x ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . a u t h - f o o t e r   i   {  
         m a r g i n - r i g h t :   8 p x ;  
         c o l o r :   v a r ( - - p r i m a r y - b r o w n ) ;  
 }  
  
 . a u t h - f o r m - s i d e   {  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   6 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . a u t h - f o r m - w r a p p e r   {  
         m a x - w i d t h :   5 0 0 p x ;  
         w i d t h :   1 0 0 % ;  
 }  
  
 . a u t h - h e a d e r   h 2   {  
         f o n t - s i z e :   2 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . a u t h - h e a d e r   p   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         m a r g i n - b o t t o m :   4 0 p x ;  
 }  
  
 . a u t h - t a b s   {  
         d i s p l a y :   f l e x ;  
         b a c k g r o u n d :   r g b a ( 1 0 9 ,   7 6 ,   6 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   6 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
 }  
  
 . a u t h - t a b   {  
         f l e x :   1 ;  
         p a d d i n g :   1 2 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         f o n t - f a m i l y :   ' O u t f i t ' ,   s a n s - s e r i f ;  
         f o n t - w e i g h t :   5 0 0 ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         c u r s o r :   p o i n t e r ;  
         b o r d e r - r a d i u s :   8 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . a u t h - t a b . a c t i v e   {  
         b a c k g r o u n d :   w h i t e ;  
         c o l o r :   v a r ( - - p r i m a r y - b r o w n ) ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . f o r m - t i t l e   {  
         f o n t - s i z e :   1 . 3 r e m ;  
         m a r g i n - b o t t o m :   2 5 p x ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . a u t h - f o r m   . s u b m i t - b t n   {  
         w i d t h :   1 0 0 % ;  
         m a r g i n - t o p :   1 0 p x ;  
         p a d d i n g :   1 5 p x ;  
 }  
  
 . a u t h - e x t r a   {  
         m a r g i n - t o p :   3 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . b a c k - h o m e   {  
         t e x t - d e c o r a t i o n :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ;  
 }  
  
 . b a c k - h o m e : h o v e r   {  
         c o l o r :   v a r ( - - p r i m a r y - b r o w n ) ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   {  
         . a u t h - c o n t a i n e r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . a u t h - i n f o   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . a u t h - f o r m - s i d e   {  
                 p a d d i n g :   4 0 p x   2 0 p x ;  
         }  
 }  
 