/* ================= ROOT ================= */
:root{
    --primary:#4f46e5;
    --secondary:#06b6d4;
    --dark:#0f172a;
    --muted:#64748b;
    --bg:#f9fafb;
    --border:#e5e7eb;
}

*{ box-sizing:border-box; }

body{
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:var(--bg);
    color:var(--dark);
}

a{ text-decoration:none; }

/* ================= HEADER ================= */
header.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(148,163,184,.15);
}

.nav-inner{
    max-width:1200px;
    margin:0 auto;
    padding:12px 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

/* LEFT */
.nav-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-logo{
    width:40px;
    height:40px;
    border-radius:14px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:20px;
    color:#fff;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-text span:first-child{
    font-size:18px;
    font-weight:700;
}

.brand-text span:last-child{
    font-size:11px;
    color:#9ca3af;
}

/* CENTER */
.nav-center{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-link{
    font-size:14px;
    font-weight:500;
    color:#475569;
    position:relative;
}

.nav-link:hover{ color:var(--primary); }

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    border-radius:999px;
    transition:width .25s ease;
}

.nav-link:hover::after{ width:100%; }

/* RIGHT */
.nav-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-nav{
    padding:7px 16px;
    font-size:13px;
    border-radius:999px;
    border:1px solid var(--border);
    background:#fff;
    color:#0f172a;
    font-weight:500;
}

.btn-nav-primary{
    border:none;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
}

/* MOBILE */
.nav-toggle{
    display:none;
    border:none;
    background:transparent;
    font-size:22px;
    cursor:pointer;
}

/* ================= VIDEO HERO ================= */
.nav-video-hero {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: #000;
}

.nav-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.nav-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

.nav-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Centered badge */
.center-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.nav-video-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.nav-video-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.nav-video-content h1 span {
    color: #facc15;
}

.nav-video-content p {
    font-size: 17px;
    color: #e5e7eb;
    max-width: 720px;
    margin: 0 auto 28px;
}

.nav-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* 3D Buttons */
.btn-3d {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 0 rgba(0,0,0,0.25);
}

.btn-3d.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.btn-3d.secondary {
    background: #ffffff;
    color: #111827;
}

.btn-3d:hover {
    transform: translateY(2px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}

.nav-trust-line {
    margin-top: 24px;
    font-size: 13px;
    color: #d1d5db;
}

/* ================= FLIP TEXT ANIMATION ================= */
/* Highlight box behind headline */
.headline-box {
    display: inline-block;
    padding: 35px 28px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35)
    );
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
    max-width: 100%;
}

/* Headline */
.flip-text {
    position: relative;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

/* Highlight numbers / words */
.flip-text b {
    color: #facc15;
}

/* Flip lines */
.flip-text span {
    display: block;
}

/* Animation setup */
.flip-line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: rotateX(90deg);
    animation: flipText 9s infinite;
}

.flip-line:nth-child(2) { animation-delay: 3s; }
.flip-line:nth-child(3) { animation-delay: 6s; }

.static-line {
    animation: fadeOut 9s infinite;
}

/* Animations */
@keyframes flipText {
    0%   { opacity: 0; transform: rotateX(90deg); }
    10%  { opacity: 1; transform: rotateX(0deg); }
    30%  { opacity: 1; transform: rotateX(0deg); }
    40%  { opacity: 0; transform: rotateX(-90deg); }
    100% { opacity: 0; }
}

@keyframes fadeOut {
    0%   { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ================= MAIN LAYOUT ================= */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

/* ================= SECTIONS ================= */
section {
    margin-bottom: 42px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--muted);
    max-width: 520px;
}

/* ================= HERO SECTION ================= */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 26px;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: #4338ca;
    font-size: 12px;
    font-weight: 600;
}

.eyebrow span.badge {
    padding: 2px 8px;
    border-radius: 999px;
    background: #4f46e5;
    color: #fff;
    font-size: 11px;
}

.hero-title {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title span.gradient {
    background: linear-gradient(120deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--muted);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-primary-lg {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(79, 70, 229, 0.5);
}

.btn-outline-lg {
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    border: 1px dashed rgba(148, 163, 184, 0.9);
    background: #ffffff;
    color: #4b5563;
}

.hero-meta {
    margin-top: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    min-height: 260px;
    background: radial-gradient(circle at top left, #e0f2fe, #eef2ff);
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    animation: sliderFade 12s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hero-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
    font-size: 11px;
    font-weight: 600;
}

.hero-number {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.hero-slide-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.hero-slide-text {
    font-size: 13px;
    color: #4b5563;
}

.hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 8px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    min-width: 90px;
}

.hero-stat strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-image img {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
}

@keyframes sliderFade {
    0% { opacity: 0; transform: translateY(10px); }
    8% { opacity: 1; transform: translateY(0); }
    42% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 0; transform: translateY(-6px); }
}

/* ================= BUYERS / INFLUENCERS ================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 14px;
}

.benefit-image {
    border-radius: 16px;
    overflow: hidden;
    background: #e5e7eb;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 6px;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-text {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.benefit-list {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    color: #4b5563;
}

/* ================= MAIN HOOK SECTION ================= */
.hook-card {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 24px;
    padding: 22px 20px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.hook-title {
    font-size: 20px;
    font-weight: 800;
    width: 100%;
}

.hook-title span {
    color: #f97316;
}


.hook-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hook-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.18);
    font-size: 11px;
}

.btn-hook {
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    color: #111827;
}

/* ================= PROCESS SECTION ================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.process-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 16px 14px 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.process-image {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 4px;
}

.process-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.process-text {
    font-size: 12px;
    color: var(--muted);
}

.process-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.tag-buyers {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
}

.tag-influencers {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

/* ================= BUSINESS GROWTH ================= */
.growth-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 20px 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.growth-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    font-size: 12px;
}

.growth-pill {
    border-radius: 20px;
    padding: 10px 10px;
    background: var(--primary-soft);
}

.growth-pill strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.growth-compare {
    border-radius: 20px;
    padding: 10px 10px;
    background: radial-gradient(circle at top left, #fef3c7, #fee2e2);
    font-size: 12px;
}

.growth-compare ul {
    padding-left: 16px;
    margin: 4px 0 0;
}

.growth-compare li {
    margin-bottom: 2px;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #e5e7eb;
}

.about-text {
    font-size: 13px;
    color: var(--muted);
    max-width: 520px;
}

.about-metrics {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-metric {
    padding: 8px 10px;
    border-radius: 14px;
    background: #ffffff;
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.about-metric strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

/* ===== FINAL ABOUT IMAGE HEIGHT FIX ===== */
#about .about-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

/* IMAGE COLUMN */
#about .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 520px;
    overflow: hidden;
    border-radius: 22px;
}

/* IMAGE ITSELF */
#about .about-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

/* CONTENT COLUMN */
#about .about-section > div:last-child {
    align-self: stretch;
}

/* ================= AUTH PAGE ================= */
.auth-page {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 22px 20px 20px;
}

.auth-header-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.auth-header-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.auth-field {
    margin-bottom: 12px;
}

.auth-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #4b5563;
}

.auth-input,
.auth-select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 13px;
    outline: none;
    background: #f9fafb;
}

.auth-input:focus,
.auth-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.35);
    background: #ffffff;
}

.auth-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
}

.auth-inline a {
    color: var(--primary);
}

.auth-submit {
    width: 100%;
    padding: 9px 14px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(79, 70, 229, 0.45);
}

.auth-help {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.auth-help a {
    color: var(--primary);
    font-weight: 500;
}

.auth-note {
    margin-top: 10px;
    font-size: 11px;
    color: #9ca3af;
}

/* ================= FOOTER ================= */
footer.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding: 28px 16px 16px;
    margin-top: 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;

}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
    gap: 18px;
    margin-bottom: 18px;
            
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at top left, #4f46e5, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    
}

.footer-text {
    font-size: 12px;
    color: #9ca3af;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #e5e7eb;
    
}

.footer-links a:hover {
    color: #a5b4fc;
}

.footer-subscribe input[type="email"] {
    width: 100%;
    padding: 7px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: #020617;
    color: #e5e7eb;
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-subscribe button {
    width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(120deg, #4f46e5, #06b6d4);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding-top: 8px;
    font-size: 11px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
    .nav-center{ display:none; }
    .nav-toggle{ display:inline-flex; }
}

@media (max-width: 992px) {
    .nav-center {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-slider {
        order: -1;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .growth-section {
        grid-template-columns: 1fr;
    }
    .growth-points {
        grid-template-columns: 1fr;
    }
    .about-section {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        text-align: center;
    }
}

/* TABLET */
@media (max-width: 1024px) {
    #about .about-section {
        grid-template-columns: 1fr;
    }

    #about .about-image {
        max-height: 420px;
    }
}

@media (max-width: 640px) {
    main {
        padding-inline: 12px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hook-card {
        align-items: flex-start;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    /* Stack cards vertically */
    #buyers-influencers .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* Each card vertical */
    #buyers-influencers .benefit-card {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* Video full width on top */
    #buyers-influencers .benefit-image {
        width: 100%;
        order: -1;
    }

    #buyers-influencers .benefit-image video {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
        border-radius: 14px;
    }

    /* Text spacing */
    #buyers-influencers .benefit-title {
        font-size: 20px;
        line-height: 1.3;
    }

    #buyers-influencers .benefit-text {
        font-size: 15px;
    }

    #buyers-influencers .benefit-list li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-video-hero {
        height: 700px;
    }

    .nav-video-content h1 {
        font-size: 30px;
    }

    .nav-video-content {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .flip-text {
        font-size: 26px;
    }

    .headline-box {
        padding: 18px 18px;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    #about .about-image {
        max-height: 260px;
    }
}





/* ---------------About Page ----------*/


