* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #f8f9fa;
    /* slightly warm off-white, matching image */
    color: #111;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #111;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: #555;
}

.nav-button {
    background-color: #6ef1d2;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #5ce3c4;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    flex: 1;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding: 0 16px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.version-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #c9cad0;
    border-radius: 999px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    width: max-content;
}

.hero-title {
    font-size: 88px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -2.5px;
    color: #111;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Starts hidden before the animation */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.line1, .line2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.orb-container {
    width: 112px;
    height: 112px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.orb-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.line3 {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 480px;
    padding-bottom: 10px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #555;
    letter-spacing: -0.2px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0; /* Starts hidden before the animation */
}

.features-list {
    display: flex;
    gap: 24px;
    margin-top: -8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #151515;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255, 255, 255, 0.02) 4px, rgba(255, 255, 255, 0.02) 8px);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 24px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #000;
}

.hero-bottom-card {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 380px;
    border-radius: 36px 36px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.bottom-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bottom-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02); /* Slight scale to hide edges if any */
}

.card-content-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* allowing layout to place things */
}

.users-badge-container {
    position: absolute;
    bottom: 0;
    left: 48px;
    pointer-events: auto;
}

.users-badge {
    position: relative;
    background-color: #f8f9fa;
    padding: 12px 32px 12px 16px;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.users-badge::before {
    content: "";
    position: absolute;
    left: -36px;
    bottom: 0;
    width: 36px;
    height: 36px;
    background-color: transparent;
    background-image: radial-gradient(circle at 0 0, transparent 35.5px, #f8f9fa 36px);
}

.users-badge::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: 0;
    width: 36px;
    height: 36px;
    background-color: transparent;
    background-image: radial-gradient(circle at 100% 0, transparent 35.5px, #f8f9fa 36px);
}

.avatars {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #f8f9fa;
    margin-left: -16px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.z3 {
    z-index: 3;
}

.z2 {
    z-index: 2;
}

.z1 {
    z-index: 1;
}

.users-text {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    letter-spacing: -0.2px;
}

/* Glass Info Card (Right side) */
.glass-info-card {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 84px;
    pointer-events: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.glass-top {
    display: flex;
    flex-direction: column;
}

.glass-title {
    font-size: 28px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.2;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
}

.glass-dot {
    font-size: 24px;
    line-height: 1;
    margin-right: 6px;
}

.glass-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 4px;
}

.glass-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    letter-spacing: -0.1px;
}

/* World ID Section */
.world-id-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 150px;
    padding-bottom: 150px;
}

.world-id-sidebar {
    width: 25%;
    font-size: 20px;
    color: #555;
    font-weight: 400;
}

.world-id-content {
    width: 40%;
    max-width: 480px;
}

.world-id-visual {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}

.world-id-title {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #2a2a2a;
    margin-bottom: 24px;
    line-height: 1.15;
    margin-top: -6px;
    opacity: 0; /* Starts hidden before the animation */
}

.world-id-title.is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.world-id-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 32px;
    opacity: 0; /* Starts hidden before the animation */
}

.world-id-desc.is-visible {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.world-id-link-wrapper {
    display: inline-block;
}

.world-id-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 1px solid #777;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.world-id-link:hover {
    color: #111;
    border-bottom-color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 -2px rgba(17, 17, 17, 0.35);
}

.world-id-link:active {
    animation: governance-link-pulse 0.32s ease-out;
}

@keyframes governance-link-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: #ffffff;
    border-radius: 44px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
    /* very subtle shadow and border */
    position: relative;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 8px solid #fdfdfd;
    /* Subtle outer bezel */
    outline: 1px solid #ebebeb;
    /* Slight phone rim */
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.status-time {
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.app-header-title {
    font-size: 15px;
    font-weight: 600;
}

.app-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.app-orb {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, #45b3ff 0%, #0d6efd 35%, #8b5cf6 85%);
    box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.2), 0 10px 24px rgba(13, 110, 253, 0.15);
    margin-bottom: 16px;
}

.app-username {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.app-joined {
    font-size: 11px;
    color: #999;
}

.app-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.app-card {
    flex: 1;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.app-card-icon {
    margin-bottom: 12px;
}

.app-card-title {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 500;
}

.app-card-value {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.app-section-title {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    margin-bottom: 16px;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
}

.app-list-text {
    flex: 1;
}

.app-list-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}

.app-list-subtitle {
    font-size: 11px;
    color: #888;
}

.app-list-btn {
    padding: 6px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    color: #111;
    cursor: pointer;
    transition: all 0.2s;
}

.app-list-btn:hover {
    background: #f5f5f5;
}

.app-tab-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 84px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 12px;
}

.app-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #A0A0A0;
    /* Not active */
    cursor: pointer;
}

.app-tab.active {
    color: #111;
    /* Active */
}

.app-tab svg {
    stroke: currentColor;
}

.app-tab-text {
    font-size: 10px;
    font-weight: 500;
    color: inherit;
}

.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 4px;
    background: #111;
    border-radius: 4px;
}

/* Dashboard Mockup - Governance Firewall */
.dashboard-mockup {
    width: 440px;
    height: 520px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 8px solid #fdfdfd;
    outline: 1px solid #ebebeb;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: #fdfdfd;
}

.dash-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 24px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dot.dot-1 {
    background: #45b3ff;
}

.dash-dot.dot-2 {
    background: #0d6efd;
}

.dash-dot.dot-3 {
    background: #8b5cf6;
}

.dash-title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dash-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.dash-profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-orb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, #45b3ff 0%, #0d6efd 35%, #8b5cf6 85%);
    box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(13, 110, 253, 0.15);
}

.dash-agent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-agent-id {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.dash-agent-role {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.dash-status-badge {
    background: #eaf8ff;
    color: #0b80d6;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-feed-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

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

.dash-log-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.dash-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dash-log-action {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.dash-log-time {
    font-size: 11px;
    color: #999;
}

.dash-log-path {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.log-arrow {
    width: 12px;
    height: 12px;
    color: #ccc;
}

.log-step.result {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f5f5f5;
}

.log-step.result.safe-result {
    color: #0d6efd;
    background: #eaf2ff;
}

.log-step.result.blocked {
    color: #8b5cf6;
    background: #f4f0ff;
}

.log-step.error {
    color: #8b5cf6;
}

/* How It Works Section */
.how-it-works-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 150px;
}

/* API CTA Section */
.api-cta-section {
    display: flex;
    justify-content: flex-start;
    padding: 120px 0 140px;
}

.api-cta-inner {
    max-width: 980px;
    padding-left: 16px;
    margin-top: -20px;
}

.api-cta-kicker {
    display: inline-block;
    font-size: 14px;
    color: #6f6f6f;
    margin-bottom: 22px;
    letter-spacing: -0.1px;
}

.api-cta-title {
    font-size: 88px;
    line-height: 1.05;
    font-weight: 500;
    color: #f07ea1;
    letter-spacing: -1.8px;
    margin-bottom: 48px;
    max-width: 900px;
}

.nowrap {
    white-space: nowrap;
}

.api-cta-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    max-width: 620px;
    margin-bottom: 22px;
}

.api-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #bdbdbd;
    color: #111;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.api-cta-button:hover {
    border-color: #8c8c8c;
    color: #000;
    transform: translateY(-1px);
}

.api-cta-arrow {
    font-size: 16px;
    line-height: 1;
}

.how-it-works-content {
    width: 75%;
    margin-left: 25px;
}

.how-it-works-section .how-it-works-content {
    margin-left: 85px;
    transform: scale(1.12);
    transform-origin: left top;
}

.how-it-works-title {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #2a2a2a;
    margin-bottom: 64px;
    line-height: 1.15;
    margin-top: -6px;
}

.info-item {
    margin-bottom: 64px;
}

.info-item-title {
    font-size: 24px;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.info-item-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.faq-link-wrapper {
    margin-top: 10px;
}

.faq-link {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.faq-link:hover {
    color: #111;
    border-bottom-color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 -2px rgba(17, 17, 17, 0.35);
}

.faq-link:active {
    animation: governance-link-pulse 0.32s ease-out;
}

/* Credentials Section */
.credentials-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 150px;
}

.credentials-title {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #2a2a2a;
    margin-bottom: 24px;
    line-height: 1.15;
    margin-top: -6px;
}

.credentials-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.credentials-items {
    display: flex;
    gap: 120px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.credential-card-container {
    height: 170px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 24px;
}

.credentials-phone {
    width: 96px;
    height: 170px;
    border: 1px solid #d1d1d1;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.credentials-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #e0e0e0;
    border-radius: 2px;
}

.credentials-phone::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.phone-btn-left-1,
.phone-btn-left-2,
.phone-btn-right {
    position: absolute;
    background: #d1d1d1;
    width: 2px;
    border-radius: 1px;
}

.phone-btn-left-1 {
    top: 32px;
    left: -2px;
    height: 10px;
}

.phone-btn-left-2 {
    top: 48px;
    left: -2px;
    height: 10px;
}

.phone-btn-right {
    top: 42px;
    right: -2px;
    height: 16px;
}

.phone-inner-orb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 20%, #effaff 0%, #45b3ff 30%, #0d6efd 70%, #8b5cf6 100%);
}

.credentials-passport {
    width: 178px;
    height: 112px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    position: relative;
    background: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.passport-top {
    display: flex;
}

.passport-globe svg {
    width: 20px;
    height: 20px;
    stroke: #b0b0b0;
    stroke-width: 1.2;
}

.passport-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.passport-text {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 500;
}

.passport-chip svg {
    width: 24px;
    height: 16px;
    stroke: #b0b0b0;
    stroke-width: 1.2;
}

.credential-caption {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.learn-more-link-wrapper {
    margin-top: 60px;
}

/* Why Choose Section */
.deepfakes-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 120px 0 150px;
    gap: 72px;
}

.why-choose-left {
    flex: 1 1 520px;
    min-width: 360px;
    padding-left: 8px;
}

.why-choose-kicker {
    font-size: 15px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: -0.2px;
    display: inline-block;
    margin-bottom: 22px;
}

.why-choose-title {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #111;
    line-height: 1.15;
    max-width: 520px;
}

.why-choose-right {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-right: 8px;
    margin-left: auto;
    padding-top: 18px;
    transform: translateX(-56px);
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 360px;
}

.why-choose-icon {
    width: 38px;
    height: 38px;
    color: #111;
}

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

.why-choose-item-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.3px;
}

.why-choose-item-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    max-width: 380px;
}

/* Partners Section */
.partners-section {
    padding: 110px 0 140px;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 32px;
}

.partners-title {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #111;
    margin-bottom: 56px;
}

.partners-indicator {
    font-size: 16px;
    letter-spacing: 0.4px;
    color: #a0a0a0;
}

.partners-indicator .active {
    color: #111;
}

.partners-nav {
    display: flex;
    gap: 24px;
}

.partners-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.partners-cards {
    display: flex;
    gap: 24px;
    padding: 0 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: max(144px, calc(50vw - 720px + 144px));
    padding-right: max(40px, calc(50vw - 720px + 40px));
}

.partners-cards::-webkit-scrollbar {
    display: none;
}

.partners-card {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 40px 32px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    flex: 0 0 420px;
}

.partners-card-title {
    font-size: 24px;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.partners-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    max-width: 320px;
}

.partners-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1d1d1;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
    width: fit-content;
    transition: all 0.2s;
}

.partners-card-btn:hover {
    background: #fafafa;
    border-color: #bbb;
}

.partners-card-arrow {
    font-size: 16px;
    line-height: 1;
}

/* Distinguish Section */
.distinguish-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 20px;
}

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

.distinguish-title {
    font-size: 28px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.distinguish-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.distinguish-btn:hover {
    background-color: #111;
}

/* Get World ID Section */
.get-world-id-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 150px;
}

.get-world-id-sidebar {
    width: 25%;
    font-size: 16px;
    color: #444;
    font-weight: 400;
    margin-top: 4px;
}

.get-world-id-content {
    width: 75%;
    margin-left: 25px;
}

.get-world-id-cards {
    display: flex;
    gap: 24px;
}

.get-world-id-card {
    flex: 1;
    aspect-ratio: 1 / 1;
    border: 1px solid #e8e8e8;
    background-color: #fdfdfd;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.get-world-id-card:hover {
    border-color: #000;
}

.get-world-id-card .card-number {
    font-size: 20px;
    font-weight: 400;
    color: #111;
}

.get-world-id-card .card-text {
    font-size: 22px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Financial Section */
.financial-section {
    display: flex;
    justify-content: flex-start;
    margin-top: 150px;
    padding-bottom: 150px;
}

.financial-content {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
    letter-spacing: -1.2px;
}

.financial-content .text-gray {
    color: #a0a0a0;
}

/* Bottom Grey Bar */
.bottom-grey-bar {
    width: 100vw;
    height: 32px;
    background-color: #e0e0e0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Products Showcase Section */
.products-showcase-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 150px;
    padding-bottom: 150px;
    gap: 80px;
    min-height: 300vh;
    position: relative;
}

.showcase-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: var(--showcase-sticky-top, 180px);
}

.showcase-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
}

.showcase-indicator {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.showcase-indicator .active-num {
    color: #111;
}

.showcase-indicator .line {
    color: #d1d1d1;
}

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

.showcase-item {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #c0c0c0;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-item.active {
    color: #111;
}

.showcase-item .arrow-icon {
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.showcase-right {
    width: 60%;
    position: sticky;
    top: var(--showcase-sticky-top, 180px);
}

.showcase-card {
    background: #DFDFDF;
    border-radius: 28px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.showcase-image {
    width: 100%;
    max-width: 380px;
    height: 380px;
    margin-bottom: 32px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #DFDFDF;
}

.showcase-image img {
    width: 155%;
    height: 155%;
    object-fit: contain;
    mix-blend-mode: normal;
    max-width: none;
    max-height: none;
    background-color: #DFDFDF;
    display: block;
}

.showcase-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 32px;
    text-align: left;
    width: 100%;
    max-width: 480px;
}

.showcase-btn {
    align-self: flex-start;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.showcase-btn:hover {
    background-color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-container {
        padding: 16px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .orb-container {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .hero-right {
        max-width: 100%;
        margin-top: 24px;
        padding-bottom: 0;
    }

    .hero-bottom-card {
        height: 380px;
        border-radius: 24px;
    }

    .bottom-card-bg img {
        object-position: center center;
        transform: scale(1.02) translateY(8%);
    }

    .users-badge-container {
        left: 16px;
        bottom: 0;
    }

    .users-badge {
        padding: 8px 16px 8px 12px;
        border-radius: 24px 24px 0 0;
    }

    .users-badge::before,
    .users-badge::after {
        display: none;
    }

    .users-text {
        font-size: 13px;
    }

    .avatars {
        margin-right: -8px;
    }

    .glass-info-card {
        right: auto;
        left: 16px;
        top: 16px;
        transform: none;
        width: calc(100% - 32px);
        padding: 24px;
        gap: 20px;
        border-radius: 20px;
    }

    .glass-title,
    .glass-subtitle {
        font-size: 28px;
        line-height: 1.2;
    }

    .glass-desc {
        font-size: 13px;
    }

    .products-showcase-section,
    .how-it-works-section,
    .credentials-section,
    .deepfakes-section,
    .partners-section,
    .get-world-id-section,
    .financial-section,
    .api-cta-section {
        flex-direction: column;
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .deepfakes-section {
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 40px;
    }

    .how-it-works-section {
        padding-bottom: 20px;
    }

    .get-world-id-sidebar {
        width: 100%;
        margin-bottom: 24px;
    }

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

    .products-showcase-section {
        min-height: 200vh;
        gap: 24px;
        padding-bottom: 120px;
    }

    .showcase-left {
        display: none;
    }

    .showcase-right {
        position: sticky;
        top: var(--showcase-sticky-top, 180px);
        align-self: flex-start;
    }

    .showcase-subtitle,
    .showcase-indicator {
        margin-bottom: 24px;
    }

    .showcase-item {
        font-size: 32px;
    }

    .showcase-card {
        padding: 32px 24px;
    }

    .showcase-image {
        width: 160px;
        height: 160px;
        margin-bottom: 32px;
    }

    .how-it-works-content,
    .credentials-content,
    .get-world-id-content,
    .financial-content,
    .why-choose-left,
    .why-choose-right {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .why-choose-left {
        min-width: 0;
        padding-left: 0;
    }

    .why-choose-right {
        flex: 1 1 auto;
        padding-right: 0;
        padding-top: 0;
        transform: none;
    }

    .why-choose-right {
        max-width: 320px;
        margin-left: 0;
        padding-left: 12px;
        margin-top: -28px;
        align-self: flex-start;
    }

    .why-choose-item {
        max-width: 320px;
    }

    .how-it-works-section .how-it-works-content {
        margin-left: 0;
        transform: none;
    }

    .world-id-visual {
        justify-content: flex-start;
        margin-top: 32px;
    }

    .world-id-title,
    .how-it-works-title,
    .credentials-title,
    .why-choose-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .world-id-title br,
    .world-id-desc br,
    .how-it-works-title br,
    .info-item-desc br,
    .distinguish-title br,
    .financial-content br,
    .api-cta-title br,
    .api-cta-desc br {
        display: none;
    }

    .financial-content {
        font-size: 32px;
    }

    .credentials-items,
    .get-world-id-cards {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }

    .get-world-id-card {
        aspect-ratio: auto;
        min-height: 200px;
    }

    .dashboard-mockup,
    .phone-mockup {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .dash-profile {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dash-profile-left {
        width: 100%;
    }

    .dash-agent-status {
        align-self: flex-start;
    }

    .distinguish-section {
        padding: 60px 20px;
    }

    .distinguish-title {
        font-size: 24px;
    }

    .info-item {
        margin-bottom: 32px;
    }

    .why-choose-item {
        gap: 10px;
    }

    .why-choose-item-desc {
        max-width: 100%;
        font-size: 14px;
    }

    .partners-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

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

    .info-item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .how-it-works-section .world-id-sidebar {
        font-size: 16px;
        width: 100%;
        margin-bottom: 16px;
    }

    .info-item-desc {
        font-size: 15px;
    }

    .how-it-works-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .faq-link-wrapper {
        margin-top: 0;
    }

    .api-cta-section {
        padding: 60px 0 80px;
    }

    .api-cta-inner {
        padding-left: 0;
    }

    .api-cta-title {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -0.6px;
        margin-bottom: 20px;
    }

    .api-cta-title .nowrap {
        white-space: normal;
    }

    .api-cta-desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
}

/* Footer Section */
.site-footer {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1fr;
    padding: 120px 0 40px;
    width: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 24px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 28px;
    font-family: 'Codan Light Regular', Georgia, serif;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background-color: #31302b;
    color: #fff;
    padding: 8px 6px 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    width: fit-content;
    gap: 12px;
    transition: background-color 0.2s;
}

.footer-btn:hover {
    background-color: #1a1916;
}

.footer-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #31302b;
    border-radius: 50%;
    width: 22px;
    height: 22px;
}

.footer-btn-icon svg {
    width: 12px;
    height: 12px;
}

.footer-copyright {
    margin-top: 80px;
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.footer-center {
    display: flex;
    gap: 90px;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-column a:hover {
    color: #111;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.footer-social a {
    color: #111;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ========== Mobile Hamburger Menu ========== */

/* Burger button — hidden on desktop */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #111;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav overlay — hidden by default */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 40px;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.mobile-nav-close:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
    padding: 16px 8px;
    border-radius: 12px;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.mobile-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6ef1d2 !important;
    color: #111 !important;
    border-radius: 999px !important;
    padding: 18px 32px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-top: 16px;
    text-align: center;
    transition: background-color 0.2s !important;
}

.mobile-nav-button:hover {
    background-color: #5ce3c4 !important;
}

/* Staggered fade-in for mobile nav links when overlay opens */
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(1) { animation: mobileLinkFade 0.35s ease forwards 0.05s; opacity: 0; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(2) { animation: mobileLinkFade 0.35s ease forwards 0.1s; opacity: 0; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(3) { animation: mobileLinkFade 0.35s ease forwards 0.15s; opacity: 0; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(4) { animation: mobileLinkFade 0.35s ease forwards 0.2s; opacity: 0; }

@keyframes mobileLinkFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive: show burger, hide desktop nav ========== */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-right-container {
        display: none;
    }

    .page-container {
        padding: 16px 20px;
    }
}
