/* ===================================
   CSS Variables - Figma Design Tokens
   =================================== */
:root {
    /* Colors */
    --color-bg: #fffffa;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-grey-7: #111112;
    --color-grey-13: #231f20;
    --color-grey-81: #d0d1ce;
    --color-grey-89: #e3e3e3;
    --color-grey-95: #f2f2f2;
    --color-grey-99: #fffffa;
    --color-red-9: #1a1615;
    --color-yellow-54: #d6f222;
    --color-yellow-55: #e0ff17;

    /* Text Colors */
    --text-heading-3: #242424;
    --text-heading-4: #636363;
    --text-paragraph: #5a5a5a;
    --text-link: #5a5a5a;

    /* Opacity Values */
    --black-6: rgba(0, 0, 0, 0.06);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-25: rgba(0, 0, 0, 0.25);
    --black-70: rgba(0, 0, 0, 0.7);
    --black-75: rgba(0, 0, 0, 0.75);
    --white-6: rgba(255, 255, 255, 0.06);
    --white-12: rgba(255, 255, 255, 0.12);
    --white-60: rgba(255, 255, 255, 0.6);
    --grey-7-60: rgba(17, 17, 18, 0.6);

    /* Spacing */
    --spacing-6: 6px;
    --spacing-10: 10px;
    --spacing-12: 12px;
    --spacing-24: 24px;
    --spacing-28: 28px;
    --spacing-32: 32px;
    --spacing-36: 36px;
    --spacing-48: 48px;

    /* Widths */
    --width-360: 360px;
    --width-380: 380px;
    --width-480: 480px;
    --width-560: 560px;
    --width-960: 960px;
    --width-1440: 1440px;

    /* Typography */
    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Outfit', sans-serif;
    --font-ui: 'Inter', sans-serif;
}

/* ===================================
   Global Resets & Base Styles
   =================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--text-paragraph);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ===================================
   Accessibility - Screen Reader Only
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   Navigation Bar
   =================================== */
.navigation-bar {
    background-color: transparent;
    width: 100%;
    padding: 8px 44px;
    position: absolute;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: var(--width-1440);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    position: fixed;
    top: 8px;
    left: 44px;
    z-index: 1001;
}

.nav-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-logo-wrapper:hover {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.nav-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.nav-right {
    display: flex;
    align-items: center;
    position: fixed;
    top: 24px;
    right: 44px;
    z-index: 1001;
}

.nav-cta-button {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-black);
    padding: 13px 20px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.294;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta-button:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 799px;
    padding: 240px 44px 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 819px;
    background-image: url('figma-image/conceptual-business-illustration-with-wooden-blocks-icons-marble-background 1.png');
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 836px;
    opacity: 0.04;
    z-index: 2;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="31.2" height="31.2" viewBox="0 0 31.2 31.2" xmlns="http://www.w3.org/2000/svg"><circle cx="15.6" cy="15.6" r="2" fill="%23000000"/></svg>');
    background-repeat: repeat;
    background-size: 31.2px 31.2px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 1190.4px 399.5px at 63.4% 31.9%,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: var(--width-1440);
    width: 100%;
}

.hero-text-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 400;
    line-height: 74.48px;
    letter-spacing: -0.76px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    max-width: 560px;
}

.hero-line-1 {
    color: var(--color-white);
}

.hero-line-2,
.hero-line-3 {
    color: var(--white-60);
}

.hero-email-form {
    max-width: var(--width-380);
}

/* ===================================
   Email Form Styles (Reusable)
   =================================== */
.email-form-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
    width: 380px;
    max-width: 100%;
    height: 50px;
}

.email-input {
    flex: 1;
    padding: 16px;
    font-family: var(--font-ui);
    font-size: 15.1px;
    font-weight: 400;
    line-height: normal;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    outline: none;
    background: transparent;
    width: 216px;
    max-width: calc(100% - 152px);
    position: relative;
    z-index: 2;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-submit-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 136px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-grey-7);
    padding: 14px 0;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 14.6px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease, background 0.2s ease;
    z-index: 3;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.email-submit-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

.email-submit-button:active {
    transform: translateY(0);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===================================
   Insights Section
   =================================== */
.insights-section {
    background-color: var(--color-bg);
    padding: 0 44px;
    width: 100%;
}

.insights-container {
    background-color: var(--color-white);
    padding: 140px 0;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-48);
    align-items: center;
}

.insights-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.insights-badge {
    background-color: var(--color-grey-7);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 120px;
    font-family: var(--font-ui);
    font-size: 12.7px;
    font-weight: 400;
    letter-spacing: -0.14px;
    line-height: 19.6px;
    border: 1px solid rgba(17, 17, 18, 0.6);
    box-shadow:
        0px 0.557px 0.557px -0.938px rgba(0, 0, 0, 0.18),
        0px 1.69px 1.69px -1.875px rgba(0, 0, 0, 0.17),
        0px 4.468px 4.468px -2.813px rgba(0, 0, 0, 0.15),
        0px 14px 14px -3.75px rgba(0, 0, 0, 0.06);
}

.insights-text {
    max-width: 560px;
    text-align: center;
}

.insights-heading {
    font-family: var(--font-ui);
    font-size: 45px;
    font-weight: 400;
    line-height: 52.8px;
    letter-spacing: -1.92px;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insights-h2-line1,
.insights-h2-line2 {
    display: block;
}

.insights-h2-line3 {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-style: italic;
    line-height: 54.6px;
}

.text-grey {
    color: var(--grey-7-60);
}

.insights-panel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-48);
    align-items: center;
    max-width: var(--width-1440);
    width: 100%;
}

.insights-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dashboard-screenshot {
    width: 1168px;
    height: 594px;
    object-fit: cover;
    border-radius: 18px;
}

.dashboard-gradient-overlay {
    position: absolute;
    bottom: -14.63px;
    left: 18px;
    right: 14px;
    height: 335px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
}

.insights-content {
    max-width: var(--width-960);
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-container {
    max-width: 360px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-24);
    align-items: flex-start;
}

.testimonial-quote {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 360px;
    width: 360px;
}

.testimonial-quote p {
    font-family: var(--font-ui);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.2px;
    color: var(--color-black);
}

.testimonial-credentials {
    display: flex;
    gap: var(--spacing-12);
    align-items: center;
    justify-content: center;
    width: 356px;
}

.credentials-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex: 1 1 0%;
    min-width: 0;
    min-height: 1px;
}

.credentials-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.credentials-text p {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: var(--color-grey-7);
    font-style: normal;
}

/* ===================================
   Main Section
   =================================== */
.main-section {
    position: relative;
    width: 100%;
}

/* ===================================
   Side Navigation Indicator
   =================================== */
/* .indicator-scroll-container {
    position: relative;
    width: 100%;
}

.side-indicator {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    animation: fadeInIndicator 0.6s ease-out 0.5s forwards;
}

.indicator-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    pointer-events: auto;
}

@keyframes fadeInIndicator {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.indicator-container {
    width: 32px;
    background-color: var(--color-grey-95);
    border-radius: 80px;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-6);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.indicator-container:hover {
    background-color: var(--color-white);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-grey-81);
    border-radius: 67px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.indicator-dot:hover {
    background-color: var(--color-grey-13);
    transform: scale(1.3);
}

.indicator-dot.active {
    height: 24px;
    background-color: var(--color-grey-7);
}

.indicator-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-grey-7);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
} */

/* ===================================
   Scroll-Triggered Animations
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease-out,
                transform 0.7s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for multiple elements */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===================================
   Features Section
   =================================== */
.features-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 120px 193px;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 451px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.feature-image-left {
    flex-direction: row;
}

.feature-image-right {
    flex-direction: row;
}

.feature-image-container {
    flex-shrink: 0;
}

/* Feature 1: Prompt Protection - 460px × 630px */
.feature-item:nth-child(1) .feature-image-container img {
    width: 460px;
    height: 630px;
    object-fit: cover;
    border-radius: 30px;
}

/* Feature 2: Live Alerts - 630px × 535px */
.feature-item:nth-child(2) .feature-image-container img {
    width: 630px;
    height: 535px;
    object-fit: cover;
    border-radius: 30px;
}

/* Feature 3: AI Tool Registry - 630px × 426px */
.feature-item:nth-child(3) .feature-image-container img {
    width: 630px;
    height: 426px;
    object-fit: cover;
    border-radius: 30px;
}

.feature-text-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-left .feature-text-container {
    padding-left: 125px;
}

.feature-image-right .feature-text-container {
    padding-right: 125px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 675px;
}

.feature-heading {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: var(--text-heading-4);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: var(--text-heading-3);
}

.feature-description {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.57px;
    color: var(--text-paragraph);
}

/* ===================================
   Manifesto Section
   =================================== */
.manifesto-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 3px 200px;
    display: flex;
    justify-content: center;
}

.manifesto-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    text-align: center;
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: var(--text-heading-3);
}

.manifesto-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.manifesto-intro {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.32px;
    color: var(--text-heading-4);
}

.manifesto-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-10);
    list-style: none;
}

.manifesto-list li {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.32px;
    color: var(--text-heading-4);
}

.manifesto-button {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 13px 20px;
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.294;
    letter-spacing: -0.2px;
    color: var(--color-black);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.manifesto-button:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
    background-color: var(--color-grey-7);
    width: 100%;
    padding: 64px 48px 0;
    border-top: 1px solid var(--white-12);
    overflow: visible;
}

.footer-container {
    max-width: var(--width-1440);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-32);
    overflow: visible;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
    max-width: var(--width-480);
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 21.9px;
    font-weight: 400;
    line-height: 33.6px;
    letter-spacing: -0.48px;
    color: var(--color-white);
}

.social-links {
    display: flex;
    gap: var(--spacing-12);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--color-red-9);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 50px 0px rgba(97, 74, 68, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 60px 0px rgba(97, 74, 68, 0.2);
}

.footer-right {
    max-width: var(--width-380);
}

.footer-email-form {
    width: 100%;
}

.footer-bottom {
    padding-top: 160px;
    padding-bottom: 160px;
    overflow: visible;
}

.footer-large-text {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 100%;
    overflow: hidden;
}

.footer-large-text p {
    font-family: var(--font-ui);
    font-size: 147px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -8.5px;
    color: transparent;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 30%, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    display: block;
    max-width: 100%;
    white-space: nowrap;
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Tablet/Small Desktop - 1024px to 1280px */
@media (max-width: 1280px) {
    .nav-content {
        padding: 0 20px;
    }

    .nav-logo-wrapper {
        padding: 6px 10px;
        border-radius: 10px;
    }

    .nav-logo {
        width: 85px;
        height: auto;
    }

    .hero-section {
        height: 600px;
        padding: 180px 24px 150px;
    }

    .hero-heading {
        font-size: 60px;
        line-height: 60px;
    }

    .dashboard-screenshot {
        width: 100%;
        max-width: 900px;
        height: auto;
    }

    .features-section {
        padding: 60px 60px 140px;
    }

    .features-content {
        gap: 300px;
    }

    .feature-image-left .feature-text-container {
        padding-left: 60px;
    }

    .feature-image-right .feature-text-container {
        padding-right: 60px;
    }

    .feature-item:nth-child(1) .feature-image-container img,
    .feature-item:nth-child(2) .feature-image-container img,
    .feature-item:nth-child(3) .feature-image-container img {
        width: 100%;
        height: auto;
        max-width: 500px;
    }

    /* .side-indicator {
        left: 12px;
    } */

    .footer-section {
        min-width: auto;
    }

    .footer-large-text p {
        font-size: 135px;
        letter-spacing: -9px;
        line-height: 1;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .footer-bottom {
        padding-top: 130px;
        padding-bottom: 120px;
    }
}

/* Tablet Portrait - 768px to 1023px */
@media (max-width: 1023px) {
    .features-section {
        padding: 50px 40px 120px;
    }

    .features-content {
        gap: 250px;
    }

    .feature-image-left .feature-text-container {
        padding-left: 40px;
    }

    .feature-image-right .feature-text-container {
        padding-right: 40px;
    }

    .footer-large-text p {
        font-size: 120px;
        letter-spacing: -7px;
    }
}

/* Mobile - 320px to 768px */
@media (max-width: 768px) {
    .navigation-bar {
        padding: 8px 20px;
    }

    .nav-left {
        left: 20px;
    }

    .nav-right {
        top: 20px;
        right: 20px;
    }

    .nav-logo-wrapper {
        padding: 5px 8px;
        border-radius: 8px;
    }

    .nav-logo {
        width: 75px;
        height: auto;
    }

    .nav-cta-button {
        font-size: 14px;
        padding: 12px 16px;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 130px 20px 120px;
    }

    .hero-heading {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-email-form,
    .email-form-wrapper {
        width: 100%;
    }

    .email-submit-button {
        width: 120px;
        font-size: 13px;
        padding: 13px 0;
    }

    .email-input {
        font-size: 14px;
        padding: 14px;
    }

    .insights-section {
        padding: 0 20px;
    }

    .insights-container {
        padding: 80px 0;
    }

    .insights-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .insights-h2-line3 {
        font-size: 36px;
        line-height: 40px;
    }

    .dashboard-screenshot {
        width: 100%;
        height: auto;
    }

    .testimonial-quote {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-quote p {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-credentials {
        width: 100%;
        max-width: 100%;
    }

    .features-section {
        padding: 40px 24px 80px;
    }

    .features-content {
        gap: 100px;
    }

    .feature-item {
        flex-direction: column !important;
        gap: 30px;
    }

    .feature-image-left .feature-text-container,
    .feature-image-right .feature-text-container {
        padding: 0;
    }

    .feature-item:nth-child(1) .feature-image-container img,
    .feature-item:nth-child(2) .feature-image-container img,
    .feature-item:nth-child(3) .feature-image-container img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .feature-number,
    .feature-title {
        font-size: 36px;
    }

    .feature-description {
        font-size: 17px;
    }

    /* .side-indicator {
        left: 8px;
    }

    .indicator-container {
        width: 28px;
        padding: 10px 0;
    }

    .indicator-dot {
        width: 5px;
        height: 5px;
    }

    .indicator-dot.active {
        height: 20px;
    } */

    .manifesto-section {
        padding: 60px 20px 100px;
    }

    .manifesto-title {
        font-size: 36px;
    }

    .manifesto-intro {
        font-size: 24px;
    }

    .manifesto-list li {
        font-size: 22px;
        line-height: 1.3;
    }

    .manifesto-button {
        font-size: 17px;
        padding: 14px 32px 16px;
    }

    /* Reduce animation transforms to prevent overflow */
    .animate-slide-right {
        transform: translateX(20px);
    }

    .animate-slide-left {
        transform: translateX(-20px);
    }

    .footer-section {
        padding: 65px 20px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        width: 100%;
    }

    .footer-large-text p {
        font-size: 72px;
        letter-spacing: -4px;
        line-height: 1;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .footer-bottom {
        padding-top: 110px;
        padding-bottom: 80px;
    }
}

/* Very small mobile - 320px to 480px */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
        line-height: 36px;
    }

    .insights-heading {
        font-size: 28px;
        line-height: 34px;
    }

    .insights-h2-line3 {
        font-size: 30px;
        line-height: 36px;
    }

    .feature-number,
    .feature-title {
        font-size: 32px;
    }

    .manifesto-title {
        font-size: 32px;
    }

    .manifesto-intro {
        font-size: 20px;
    }

    .manifesto-list li {
        font-size: 18px;
    }

    /* Eliminate animation transforms completely on smallest screens */
    .animate-slide-right,
    .animate-slide-left {
        transform: translateX(0);
    }

    .animate-on-scroll {
        transform: translateY(15px);
    }

    .footer-large-text p {
        font-size: 48px;
        letter-spacing: -3px;
        line-height: 1.1;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .footer-bottom {
        padding-top: 100px;
        padding-bottom: 90px;
    }
}
