/* Font Face Declaration */
@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/Libre_Baskerville/LibreBaskerville-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('fonts/Libre_Baskerville/LibreBaskerville-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0D0D0F;
    color: #FFFFFF;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    height: 75px;
    background-color: #0D0D0F;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

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

.nav-link {
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.chevron {
    font-size: 12px;
    margin-left: 4px;
}

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

.btn-signup-link {
    text-decoration: none;
}

.btn-signup {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.2s;
}

.btn-signup:hover {
    background-color: #FFFFFF;
    color: #0D0D0F;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin-top: 120px;
}

.hero-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: normal;
    max-width: 900px;
    margin-bottom: 25px;
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.5;
    color: #CCCCCC;
    max-width: 550px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-link {
    text-decoration: none;
}

.btn-primary {
    padding: 16px 28px;
    background-color: #FFFFFF;
    color: #0D0D0F;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #F0F0F0;
}

.btn-secondary {
    padding: 16px 28px;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Spreadsheet Mockup */
.spreadsheet-mockup {
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    padding: 0 40px;
    margin-bottom: 60px;
}

.spreadsheet-container {
    overflow: hidden;
}

.spreadsheet-content {
    width: 100%;
}

.spreadsheet-gif {
    width: 100%;
    height: auto;
    display: block;
}

/* Trusted Logos Section */
.trusted-logos-section {
    background-color: #F7F7F7;
    width: 100%;
    padding: 25px 40px;
    text-align: center;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    overflow: hidden;
}

.trusted-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent calc(100% / 12 - 1px),
        #E5E5E5 calc(100% / 12 - 1px),
        #E5E5E5 calc(100% / 12)
    );
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.trusted-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trusted-caption {
    font-size: 14px;
    color: #777777;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 20px;
}

.trusted-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hubspot-logo {
    height: 28px;
}

.trusted-logo:hover {
    opacity: 0.9;
}

/* Workspace Section */
.workspace-section {
    background-color: #F7F7F7;
    width: 100%;
    padding: 80px 40px 40px;
}

.workspace-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Workspace Headline */
.workspace-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workspace-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 5px;
}

/* Step Selector */
.step-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-labels {
    display: flex;
    justify-content: center;
    gap: 300px;
    width: 100%;
    max-width: 900px;
}

.step-label {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    color: #111111;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.step-label.active {
    background-color: #0052FF;
    color: #FFFFFF;
    border-color: #0052FF;
}

.step-label:hover:not(.active) {
    background-color: #F0F0F0;
}

/* Progress Bar */
.progress-bar {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.progress-line {
    width: 70%;
    height: 2px;
    background-color: #DADADA;
    margin: 0 auto;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: -5px auto 0;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #A0A0A0;
    border-radius: 2px;
    transition: all 0.2s;
}

.dot.active {
    background-color: #0052FF;
}

/* Three Core Actions Section */
.core-actions-section {
    background-color: #F7F7F7;
    padding: 96px 40px 120px;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.core-actions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent calc(100% / 12 - 1px),
        #E5E7EB calc(100% / 12 - 1px),
        #E5E7EB calc(100% / 12)
    );
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.core-actions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.action-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    color: #111111;
}

.action-description {
    font-size: 14px;
    line-height: 1.6;
    color: #565A60;
    margin-bottom: 8px;
}

/* Mock Container - Consistent Background Box */
.action-mock-container {
    width: 100%;
    min-height: 260px;
    height: 260px;
    background-color: #F9FAFB;
    border: none;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 120ms ease;
    position: relative;
}

.action-mock-container:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.action-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.action-mock-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.placeholder-content {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Organize & Ask Section */
.organize-ask-section {
    background-color: #F7F7F7;
    padding: 72px 40px 80px;
}

.organize-ask-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.feature-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-card {
    background-color: #FFFFFF;
    border: 1px solid #E6E9EF;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    min-height: 420px;
}

.input-card {
    background: linear-gradient(to bottom, #F3F8FF 0%, #EEF6FF 100%);
    border: 1px solid #DFE8F7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    min-height: 300px;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.placeholder-text {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.text-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.text-column {
    text-align: left;
}

.feature-heading {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: normal;
    color: #111111;
    margin-bottom: 12px;
}

.feature-body {
    font-size: 14px;
    line-height: 1.6;
    color: #565A60;
}

/* Endless Solutions Section */
.endless-solutions-section {
    background-color: #FFFFFF;
    padding: 140px 40px;
}

.endless-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.endless-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.endless-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.solution-tab {
    padding: 12px 24px;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.solution-tab.active {
    background-color: #0052FF;
    color: #FFFFFF;
    border-color: #0052FF;
}

.solution-tab:hover:not(.active) {
    background-color: #F5F5F5;
}

.solution-demo {
    background-color: #FAFAFA;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.demo-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.demo-icon {
    font-size: 18px;
}

.demo-enrich-btn {
    padding: 8px 18px;
    background-color: #F5F5F5;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 13px;
    color: #555555;
    cursor: pointer;
}

.demo-enrich-btn:hover {
    background-color: #EEEEEE;
}

.demo-search {
    padding: 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
}

.search-input::placeholder {
    color: #999999;
}

.recruiting-table {
    padding: 20px;
    background-color: #FFFFFF;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table thead {
    background-color: #F8F8F8;
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #555555;
    border-bottom: 2px solid #E0E0E0;
}

.data-table td {
    padding: 14px 16px;
    color: #333333;
    border-bottom: 1px solid #F0F0F0;
}

.data-table tbody tr:hover {
    background-color: #FAFAFA;
}

.data-table a {
    color: #0052FF;
    text-decoration: none;
}

.data-table a:hover {
    text-decoration: underline;
}

/* Collaborative and Connected Section */
.collaborative-section {
    background-color: #F7F7F7;
    padding: 140px 40px;
}

.collaborative-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.collaborative-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.collaborative-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collaborative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.task-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-text-container {
    min-height: 85px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: normal;
    color: #111111;
}

.task-description {
    font-size: 14px;
    line-height: 1.6;
    color: #565A60;
}

.task-placeholder {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    background-color: #F9FAFB;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 120ms ease;
    overflow: hidden;
    position: relative;
}

.task-placeholder:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.task-placeholder-text {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
}

.task-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #0D0D0F;
    padding: 160px 40px 120px;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.cta-left {
    flex: 1;
}

.cta-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.cta-logo-icon {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border-radius: 3px;
}

.cta-logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.cta-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 54px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: normal;
    max-width: 600px;
}

.cta-right {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 84px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.5;
    color: #CCCCCC;
}

.cta-button {
    padding: 16px 28px;
    background-color: #FFFFFF;
    color: #0D0D0F;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #F0F0F0;
}

/* Footer Section */
.footer-section {
    background-color: #0D0D0F;
    border-top: 1px solid #1A1A1C;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-header {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 14px;
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #DDDDDD;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1A1A1C;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
}

/* Privacy Page */
.privacy-section {
    background-color: #FFFFFF;
    min-height: 100vh;
    padding: 150px 40px 80px;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    margin-bottom: 10px;
}

.privacy-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 24px;
    color: #111111;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 16px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 42px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .nav-center {
        display: none;
    }

    .hero-container {
        margin-top: 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .workspace-headline {
        font-size: 36px;
    }

    .workspace-subtext {
        font-size: 16px;
    }

    .logos-row {
        gap: 30px;
    }

    .step-labels {
        gap: 100px;
    }

    .core-actions-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .action-title {
        font-size: 18px;
    }

    .action-description {
        font-size: 14px;
    }

    .action-mock-container {
        min-height: 240px;
        height: 240px;
        padding: 0;
    }

    .action-video {
        object-fit: cover;
    }

    .cards-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .text-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .table-card {
        min-height: 300px;
    }

    .input-card {
        min-height: 240px;
    }

    .endless-headline {
        font-size: 36px;
    }

    .endless-subtext {
        font-size: 16px;
    }

    .data-table {
        font-size: 11px;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }

    .collaborative-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .task-placeholder {
        min-height: 220px;
    }

    .collaborative-headline {
        font-size: 36px;
    }

    .collaborative-subtext {
        font-size: 16px;
    }

    .card-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .card-submit {
        width: 100%;
    }

    .final-cta-container {
        flex-direction: column;
        gap: 40px;
    }

    .cta-right {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }

    .cta-headline {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}