/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ECB151;
    color: #1F1F1F;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid #1F1F1F;
    outline-offset: 2px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1F1F1F;
    background-color: #F8F6F5;
}

/* Sidebar Layout */
.sidebar-active .header,
.sidebar-active .hero,
.sidebar-active .about,
.sidebar-active .approach,
.sidebar-active .amorfs,
.sidebar-active .vision,
.sidebar-active .footer {
    margin-left: 224px;
}

.top-sentinel { 
    height: 1px; 
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 224px;
    background: #F8F6F5;
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-content {
    width: 152px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 16px;
}

.sidebar-logo-img {
    width: 115px;
    height: auto;
    object-fit: contain;
    margin-left: 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 40px;
}

.sidebar-item {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #737373;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1A1A1A;
}

.sidebar-item.active {
    background: rgba(0, 0, 0, 0.06);
    color: #1A1A1A;
}

/* Hide top nav menu when sidebar is present */
.sidebar-active .nav-menu { 
    display: none; 
}

.sidebar-active .nav-left { 
    gap: 0; 
}

.sidebar-active .logo-text { 
    display: none; 
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-btn:focus {
    outline: 2px solid #ECB151;
    outline-offset: 2px;
    background-color: rgba(236, 177, 81, 0.1);
}

.hamburger-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background-color: #1F1F1F;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hide hamburger button when sidebar is open */
.sidebar-open .hamburger-btn {
    display: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-open .sidebar-overlay {
    display: block;
    opacity: 1;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.04em;
    color: #1D1D20;
}

.section-title {
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.03em;
    color: #1F1F1F;
}

h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #2E2E2E;
}

p {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #525252;
}

.register-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px 30px 19px 30px;
    margin: 28px 0px -5px 00px; 
    background-color: #F0EEED;

   }

   .register-box h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.25em;
    letter-spacing: -0.03em;
    color: #1F1F1F;
    text-align: left;
   }

   .register-comment {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #737373;
    text-align: center;
   }


/* Buttons */
.btn-primary {
    background: #ECB151;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 8px 16px;
    width: 161px;
    height: 40px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #D4A047;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #2E2E2E;
    border: 1px solid #71717A;
    border-radius: 100px;
    padding: 5px 20px 8px 20px;
    height: 40px;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ECB151;
    color: #000000;
    transform: translateY(-1px);
}

/* Header */
.header {
    background: #F8F6F5;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.nav-brand {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #1F1F1F;
}

/* Header Logo */
.header-logo {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.sidebar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sidebar-logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 89.5px;
    height: 68px;
}

.logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #1F1F1F;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #737373;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: rgba(0, 0, 0, 0.06);
    color: #1A1A1A;
    font-weight: 500;
}

.nav-item:hover {
    color: #1A1A1A;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #2E2E2E;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    color: #ECB151;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: #1F1F1F;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hide hamburger menu when sidebar is open */
.hamburger-menu.active {
    display: none;
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 160px 0px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 273px;
    position: relative;
}

.hero-text {
    max-width: 700px;
}

.hero-description {
    margin-top: 24px;
    position: relative;
}

.hero-description p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #525252;
}

.hero-content .btn-outline {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* About Section */
.about {
    padding: 24px 0;
    margin: 0 auto;

}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.about-text {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.about-heading {
    margin-top: 28px;
    margin-left: 120px;
    margin-bottom: 8px;
}

.about-description {
    margin-left: 240px;
}

.about-text h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.03em;
    color: #1F1F1F;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #525252;
    margin-bottom: 16px;
}

/* Accent color for highlighted word in About title */
.about-text .accent {
    color: #ECB151;
}

.about-image {
    flex: 1;
    position: relative;
    width: 100%;
    height: 600px;
    min-width: 270px;  
    padding-bottom: 24px;  

}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.main-image {
    width: 109%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    object-position: center 66%;
    top: 0;
    left: -7%;
}

.image-overlay {
    position: absolute;
    right: 320px;
    top: 160px;
    width: 260px;
    height: 190px;
    background: rgba(255, 255, 255, 0.17);
    border-radius: 28px;
    padding: 8px;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.overlay-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #525252;
    text-align: left;
}

/* Typing effect */
.typing {
    position: relative;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: visible;
    min-height: 2.5em;
    line-height: 1.43;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}


/* Alternative caret for HTML content */
.typing-caret {
    display: inline-block;
    width: 1px;
    height: 1em;
    background: #525252;
    margin-left: 2px;
    vertical-align: -0.1em;
    animation: caret-blink 1s step-end infinite;
}

@keyframes caret-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Approach Section */
.approach {
    padding: 36px 0 60px;
}

.section-title {
    margin-bottom: 24px;
}

.approach-cards {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.approach-card {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.approach-card:nth-child(2) {
    margin-top: 40px;
}

.approach-card:nth-child(3) {
    margin-top: 80px;
}

.card-icon {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 35px 35px 0 0;
}

.card-icon-image-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#step-2 .card-image {
    transform: scale(1.5)
    translateY(-16px);
}

.card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#step-2 .card-image:hover {
    transform: scale(1.575) translateY(-16px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #2E2E2E;
    margin-bottom: 0;
    width: 260px;
}

.approach-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #737373;
    width: 260px;
}

/* Amorfs Section */
.amorfs {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.amorfs-content {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

@media (max-width: 1200px) {
    .amorfs-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.amorfs-text {
    flex: 0.75;
}

.amorfs-text h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.03em;
    color: #1F1F1F;
    margin-bottom: 16px;
}

.amorfs-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #525252;
    margin-bottom: 20px;
    align-items: flex-end;
}

.register-comment {
    margin-bottom: 0;
    color: #737373;
}

.beta-signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 15px 0 10px 0;
}

.amorfs-mockup {
    flex: 1.5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.mockup-container {
    border-radius: 16px;
    height: auto;
    width: 100%;
    position: relative;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.17);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-symbols {
    display: flex;
    gap: 4px;
}

.mockup-brand {
    font-family: 'Michroma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.mockup-content {
    height: 100%;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #e2dddd;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.02em;
    margin-top: -26px
}

section#who-we-are {
    margin-top: 30px;
    margin-bottom: 24px;
}

/* Vision Section */
.vision {
    height: 100vh; /* own scroll area height */
    padding: 60px 24px 24px; /* vertical paddings handled in inner container */
    border-radius: 24px; /* rounded background */
    overflow: hidden;
}

.vision .container {
    background: url('images/Image-4.jpg') center / cover no-repeat fixed;
    height: 100%;
    overflow-y: hidden;
    padding: 80px 0 80px;
    border-radius: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vision .container.is-active {
    overflow-y: auto;
}

.vision .container::-webkit-scrollbar { /* Chrome/Safari */
    display: none;
}

.vision-cards {
    display: flex;
    flex-direction: column;
    gap: 140px;
    max-width: 880px;
    margin: 350px auto 0;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.vision-card {
    background: rgba(255, 255, 255, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 28px;
    padding: 8px;
    position: relative;
}

/* Reset absolute placements from previous layout so cards flow naturally */
.vision .vision-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 80% !important;
    height: auto !important;
}

.vision .testimonial-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 589px !important;
    height: 589px !important;
}

/* keep card styles; spacing handled by flex gap */

.vision-card .card-header {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
}

.vision-card:nth-child(2) .card-header {
    background: #FFFFFF;
}

.card-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.33;
    color: #525252;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.vision-card h3 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #2E2E2E;
    margin-top: 40px;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #525252;
    margin-bottom: 16px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    padding: 8px;
    width: 400px !important;
    height: 400px !important;
    min-width: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
}

.testimonial-content {
    background: #FFFFFF;
    border-radius: 50%;
    padding: 40px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-mark {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.11;
    letter-spacing: -0.04em;
    color: #1D1D20;
    opacity: 0.4;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content blockquote {
    margin: 16px 0;
    max-width: 340px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.testimonial-content blockquote::before {
    content: open-quote;
    font-family:'Georgia', serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    color: #9f9f9f;
    position: absolute;
    top: -18px;
    left: -39px;
    opacity: 0.9;
    z-index: 10;
}


.testimonial-content blockquote p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #1D1D20;
    width: 100%;
    text-align: left;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
    max-width: 340px;
}

.author-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1F1F1F; /* black */
    color: #FFFFFF; /* white icon */
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.social-btn i {
    font-size: 14px;
    line-height: 1;
}

.author-info h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #1D1D20;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #1D1D20;
    opacity: 0.8;
    text-align: left;
}

/* Testimonial Container */
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-top: 80px;
    max-width: 880px;
}

/* Remove auto margins so the circle and card sit closer */
.testimonial-container .testimonial-card {
    margin: 0;
}

/* Pete Circle */
.pete-circle {
    background: rgba(255, 255, 255, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    margin-top: -300px;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.pete-circle-content {
    border-radius: 50%;
    padding: 6px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pete-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer */
.footer {
    background: #F8F6F5;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.footer-content {
    padding: 110px 0 0;
    text-align: center;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo-img {
    width: 100px;
    height: 97px;
    border-radius: 16px;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #1F1F1F;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);   
    gap: 16px; /* keep small visual spacing between left and right blocks */
    flex-wrap: nowrap; /* force items to stay on one line */
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #1F1F1F;
}

.footer-links {
    display: flex;
    gap: 16px;
    white-space: nowrap; /* keep links on a single line */
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -0.02em;
    color: #1F1F1F;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #ECB151;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Responsive Design */
@media (min-width: 769px) {
    /* Move entire overlay element to the right for larger screens */
    .image-overlay {
        left: 50%;
        right: 0;
        justify-content: center;
    }
}

@media (max-width: 1490px) {
    /* Fix Pete circle positioning for smaller widths */
    .pete-circle {
        margin-top: 0;
        position: relative;
        margin-left: 0;
        margin-right: 0;
        left: -30%;
    }
    
    .testimonial-container {
        transform: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1250px) {
    /* Stack approach cards vertically */
    .approach-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .approach-card {
        height: auto;
        padding-top: 32px;
        margin-top: 0 !important;
        width: 100%;
    }
    
    /* Adjust card images for stacked layout */
    .card-image {
        margin: 0;
        object-fit: cover;
    }

    #step-2 .card-image {
        transform: scale(1);
    }
    
    #step-2 .card-image:hover {
        transform: scale(1.05);
    }
    
    .card-icon {
        position: relative;
        width: 100%;
        height: 200px;
        margin: 0;
    }
    
    .approach-card h3,
    .approach-card p {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-heading {
        margin-left: 60px;
    }
    
    .about-description {
        margin-left: 120px;
    }
    
    .amorfs-content {
        gap: 40px;
        height: auto;
        padding: 8px 0;
    }
    
}

@media (max-width: 1100px) {
    /* Fix button positioning for medium screens */
    .hero-content .btn-outline {
        position: relative;
        right: auto;
        bottom: auto;
        align-self: flex-start;
        margin-top: 0;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }


}

@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: flex;
    }
    
    /* Hide nav-right on mobile */
    .nav-right {
        display: none;
    }
    
    /* Show header logo on mobile */
    .header-logo {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    /* Adjust hero button positioning for mobile */
    .hero-content .btn-outline {
        position: relative;
        right: auto;
        bottom: auto;
        align-self: flex-start;
    }

    section#who-we-are {
        padding-left: 40px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        width: 100%;
    }
    
    /* Remove fixed margins on mobile */
    .about-heading {
        margin-left: 0;
        margin-top: 0;
    }
    
    .about-description {
        margin-left: 0;
    }
    
    /* Adjust image for mobile - fit within container */
    .about-image {
        height: 400px;
        width: 100%;
    }
    
    .image-container {
        height: 400px;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .main-image {
        width: 135% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 16px;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
    }
    
    /* Center the overlay content */
    .image-overlay {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .overlay-content {
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .overlay-content .typing {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .approach-cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .approach-card {
        height: auto;
        padding-top: 32px;
        margin-top: 0 !important;
        width: 100%;
    }
    
    /* Adjust card images for mobile */
    .card-image {
        margin: 0;
        object-fit: cover;
    }
    
    .card-icon {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .approach-card h3,
    .approach-card p {
        width: 100%;
    }
    
    .amorfs-content {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Adjust mockup for mobile */ 
    .beta-signup-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Mobile sidebar behavior */
    .sidebar {
        position: fixed;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .sidebar-open .sidebar {
        transform: translateX(0);
    }
    
    /* Remove left margin from all sections on mobile */
    .sidebar-active .header,
    .sidebar-active .hero,
    .sidebar-active .about,
    .sidebar-active .approach,
    .sidebar-active .amorfs,
    .sidebar-active .vision,
    .sidebar-active .footer {
        margin-left: 30px;
        margin-right: 30px;
    }
    
    /* Reset vision section for mobile */
    .vision {
        border-radius: 0;
        height: auto;
        background-attachment: scroll;
        overflow: visible;
    }
    
    .vision .container {
        height: auto;
        overflow: visible;
        padding: 0 24px;
        max-width: 100%;
    }
    
    .vision-cards {
        gap: 40px;
        max-width: 880px;
        margin: 0 auto;
    }
    
    .vision-card {
        width: 70% !important;
    }
    
    .vision-card .card-header {
        padding: 24px;
    }
    
    .vision-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Remove testimonial container offset */
    .testimonial-container {
        transform: none;
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    /* Make testimonial card responsive on mobile */
    .testimonial-card {
        width: 300px !important;
        height: 300px !important;
        min-width: 300px;
        min-height: 300px;
    }
    
    .testimonial-content {
        padding: 24px;
    }

    
    .testimonial-content blockquote p {
        font-size: 19px;
    }
    
    /* Adjust Pete circle for mobile */
    .pete-circle {
        width: 150px;
        height: 150px;
        margin-top: 0;
    }
    
}

@media (max-width: 480px) {
    /* Header adjustments */
    .nav-left {
        flex-direction: column;
        gap: 16px;
    }
    
    .approach-card {
        height: auto;
        min-height: 360px;
        margin-top: 0 !important;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: 32px;
    }
    
    .amorfs {
        padding: 32px 0;
    }
    
    .amorfs-content {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 32px;
    }
    
    .amorfs-mockup {
        width: 100%;
        height: auto;
    }
    
    .mockup-image {
        width: 100%;
        height: 100%;
    }
    
    .vision {
        height: auto;
        min-height: 100vh;
        padding: 40px 16px 24px;
        margin-left: 0 !important;
        border-radius: 16px;
    }
    
    .vision .container {
        padding: 40px 0;
    }
    
    .vision-cards {
        margin-top: 100px;
        gap: 60px;
    }
    
    .vision .vision-card {
        width: 95% !important;
    }
    
    .vision-card .card-header {
        padding: 24px;
    }
    
    .vision-card h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .testimonial-container {
        flex-direction: column;
        gap: 0;
        margin-top: 60px;
    }
    
    .pete-circle {
        width: 180px;
        height: 180px;
        margin-top: 0;
        margin-bottom: -20px;
    }
    
    .testimonial-card {
        width: 360px !important;
        height: 360px !important;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-content blockquote {
        max-width: 240px;
    }
    
    .testimonial-content blockquote p {
        font-size: 16px;
    }
    
    .footer-content {
        padding: 40px 0 0;
    }
    
    .footer-cta {
        margin-bottom: 60px;
        gap: 32px;
    }
    
    .contact-form .form-group {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .contact-link {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 0 24px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .image-overlay {
        right: 60px;
        top: 60px;
    }
    
    .overlay-content {
        padding: 16px;
    }
    
    .overlay-content p {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .approach-card {
        padding: 24px;
        min-height: 320px;
    }

    
    .testimonial-card {
        width: 320px !important;
        height: 320px !important;
    }
    
    
    .pete-circle {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 80px 0 24px;
    }
    
    .about-image {
        height: 320px;
    }
    
    .image-container {
        height: 320px;
    }
    
    .main-image {
        left: -40px;
    }
    
    .image-overlay {
        right: 40px;
        top: 40px;
    }
    
    .overlay-content {
        padding: 12px;
    }
    
    .overlay-content p {
        font-size: 16px;
        line-height: 1.2;
    }

    .approach-card {
        padding: 20px;
        min-height: 280px;
    }
    
    .vision {
        padding: 32px 12px 24px;
    }
    
    .vision-cards {
        margin-top: 60px;
        gap: 40px;
    }
    
    .testimonial-card {
        width: 280px !important;
        height: 280px !important;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content blockquote {
        max-width: 200px;
    }
    
    .testimonial-content blockquote p {
        font-size: 13px;
    }
    
    .pete-circle {
        width: 140px;
        height: 140px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    
    /* Touch-friendly social buttons */
    .social-btn {
        width: 44px;
        height: 44px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .about-content {
        gap: 32px;
    }
    
    .approach-cards {
        gap: 24px;
    }
    
    .amorfs-content {
        gap: 32px;
    }
    
    /* Adjust testimonial for very small screens */
    .testimonial-card {
        width: 280px !important;
        height: 280px !important;
        min-width: 280px;
        min-height: 280px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content blockquote {
        max-width: 200px;
    }
    
    .testimonial-content blockquote p {
        font-size: 16px;
    }

    .testimonial-author {
        max-width: 200px;
    }
    
    .pete-circle {
        width: 120px;
        height: 120px;
        left: 0;
        top: -30px;
    }
    
    /* Legal content mobile styles */
    .legal-content {
        margin: 60px auto 40px;
        padding: 0 16px;
    }
    
    .legal-content h1 {
        font-size: 36px;
    }
    
    .legal-content h2 {
        font-size: 24px;
        margin-top: 36px;
    }
    
    .legal-content h3 {
        font-size: 18px;
        margin-top: 24px;
    }
}

/* Legal Pages (Terms, Privacy) */
.legal-content {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 24px;
}

/* Responsive padding for legal content */
@media (min-width: 769px) {
    .legal-content {
        padding-left: 240px;
    }
}

@media (min-width: 1000px) {
    .legal-content {
        padding-left: 220px;
    }
}

@media (min-width: 1200px) {
    .legal-content {
        padding-left: 200px;
    }
}

.legal-content h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #1D1D20;
    margin-bottom: 8px;
}

.legal-content .last-updated {
    font-size: 14px;
    font-weight: 500;
    color: #737373;
    margin-bottom: 40px;
    display: block;
}

.legal-content h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #1F1F1F;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #2E2E2E;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 8px;
}

.legal-content a {
    color: #ECB151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: #D4A047;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 600;
    color: #1F1F1F;
}

/* Improve flodesk styling for footer form */

.footer [class*="_form"] {
    padding: 45px !important;
}

.footer [class*="_title"] {
    font-size: 25px !important;
    color: #1F1F1F !important;
}

.footer [class*="_subtitle"] {
    font-size: 15px !important;
}

.footer .fd-form-control {
    vertical-align: top !important;
}

/* Register for beta testing message box */
.register-box [data-ff-el="form"] {
    padding: 0 !important;
}

.register-box [data-ff-el="form"] [class*="title"] {
    display: none !important;
}

.register-box [data-ff-el="form"][class*="subtitle"] {
    display: none !important;
}

.register-box [class*="__field"] {
    margin: 1 !important;
}

.register-box .fd-form-control {
    background: #E2E0DF !important;
}