:root{
    --bg:#0b0f14;
    --surface:#0f1620;
    --surface-2:#121b27;
    --text:#e9eef5;
    --muted:#a8b3c2;
    --line:rgba(255,255,255,.08);
    --accent:#7dd3fc; /* light sky */
    --accent-2:#a78bfa; /* soft purple */
    --shadow: 0 12px 30px rgba(0,0,0,.35);
    --radius: 18px;
    --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background: radial-gradient(1200px 700px at 20% -10%, rgba(125,211,252,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(167,139,250,.14), transparent 55%),
    var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.container{
    width: min(var(--max), 92%);
    margin: 0 auto;
}

.skip-link{
    position:absolute;
    left:-9999px;
    top: 0;
    background: var(--accent);
    color: #061018;
    padding: 10px 14px;
    border-radius: 10px;
    z-index:9999;
}
.skip-link:focus{ left: 14px; top: 14px; }

header{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11,15,20,.7);
    border-bottom: 1px solid var(--line);
}

/* UPDATED: navbar layout (brand | links | buttons) */
.navbar{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 14px 0;
    gap: 14px;
}

.brand{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 650;
    letter-spacing:.2px;
}
.brand-badge{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(125,211,252,.85), rgba(167,139,250,.75));
    box-shadow: var(--shadow);
}
.brand small{
    display:block;
    color: var(--muted);
    font-weight: 520;
    margin-top:2px;
    letter-spacing:.2px;
}

/* UPDATED: prevent wrapping + keep nav centered */
.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* optional: hide horizontal scrollbar (WebKit) */
.nav-links::-webkit-scrollbar{ height: 0; }

/* UPDATED: keep link labels on one line */
.nav-links a{
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--muted);
    border: 1px solid transparent;
    white-space: nowrap;
}
.nav-links a.active{
    color: var(--text);
    border-color: var(--line);
    background: rgba(255,255,255,.03);
}

/* UPDATED: keep CTA aligned right */
.nav-cta{
    justify-self: end;
    display:flex;
    align-items:center;
    gap: 10px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    font-weight: 620;
    cursor:pointer;
    white-space: nowrap; /* UPDATED: prevent "Request a demo" / "Book a call" wrapping */
}
.btn:hover{ background: rgba(255,255,255,.06); }

.btn.primary{
    border-color: rgba(125,211,252,.35);
    background: linear-gradient(135deg, rgba(125,211,252,.22), rgba(167,139,250,.18));
}

.menu-btn{
    display:none;
}

.hero{
    padding: 54px 0 26px;
}
.hero-grid{
    display:grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 26px;
    align-items: start;
}
.kicker{
    color: var(--muted);
    font-weight: 620;
    letter-spacing: .3px;
}
h1{
    margin: 10px 0 10px;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.1;
}
.lead{
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 18px;
    max-width: 62ch;
}

.stage{
    display:flex;
    gap:10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--muted);
    font-weight: 600;
    font-size: .92rem;
}

.card{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    box-shadow: var(--shadow);
}

.hero-card{
    padding: 16px;
}
.hero-card h3{
    margin: 6px 0 8px;
    font-size: 1.05rem;
}
.hero-card p{
    margin: 0;
    color: var(--muted);
}
.hero-card .list{
    margin: 12px 0 0;
    padding: 0;
    list-style:none;
}
.hero-card .list li{
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    margin-bottom: 10px;
    color: var(--muted);
}
.hero-card .list strong{ color: var(--text); }


.section h2{
    margin: 0 0 10px;
    font-size: 1.6rem;
}
.section p{ color: var(--muted); margin: 0 0 14px; }

.grid-3{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.grid-2{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.tile{
    padding: 16px;
}
.tile h3{
    margin: 0 0 6px;
    font-size: 1.05rem;
}
.tile p{ margin: 0; color: var(--muted); }

.cta-band{
    margin: 18px 0 34px;
    padding: 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
}
.cta-band p{
    margin:0;
    color: var(--muted);
}
.cta-band .btns{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
}

footer{
    border-top: 1px solid var(--line);
    padding: 22px 0;
    color: var(--muted);
}
.footer-grid{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-links{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-links a{
    color: var(--muted);
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid transparent;
}
.footer-links a:hover{
    border-color: var(--line);
    background: rgba(255,255,255,.03);
}

.page-hero{
    padding: 34px 0 10px;
}
.page-hero h1{ margin-top: 6px; }
.bullets{
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
}
.bullets li{ margin: 6px 0; }

.form{
    display:grid;
    gap: 12px;
    padding: 16px;
}
.input{
    display:grid;
    gap: 6px;
}
label{ color: var(--muted); font-weight: 600; font-size: .95rem; }
input, textarea{
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    outline: none;
}
textarea{ min-height: 130px; resize: vertical; }

.notice{
    color: var(--muted);
    font-size: .95rem;
}

@media (max-width: 920px){
    .hero-grid{ grid-template-columns: 1fr; }
    .grid-3{ grid-template-columns: 1fr; }
    .grid-2{ grid-template-columns: 1fr; }
    .nav-links{ display:none; }
    .menu-btn{ display:inline-flex; }
    .nav-links.open{
        display:flex;
        flex-direction: column;
        align-items:flex-start;
        width: 100%;
        padding: 12px 0 10px;
    }
    .navbar{ flex-wrap: wrap; }
    .nav-cta{ margin-left:auto; }
}
/* Add this EXACT block at the very bottom of style.css (no other changes) */

/* Hover lift + brighten for cards/tiles */
.card{
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, filter 160ms ease;
}

.card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow: 0 18px 44px rgba(0,0,0,.45);
    filter: brightness(1.06);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
    .card{ transition: none; }
    .card:hover{ transform: none; }
}
/* ============================================================
   PATCH (minimal): Fix mobile menu label cutting + short screens
   - Ensures the opened mobile nav spans full width (not cramped in grid column)
   - Allows "Security & privacy" to wrap instead of being visually cut
   - Makes the open menu scroll-safe on short viewports
   ============================================================ */
@media (max-width: 920px){
    /* Put brand + CTA on first row, menu links on second row */
    .navbar{
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .brand{ grid-column: 1 / 2; grid-row: 1; }
    .nav-cta{ grid-column: 2 / 3; grid-row: 1; }

    /* When open, nav links should span across BOTH columns */
    .nav-links.open{
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-height: calc(100dvh - 88px); /* prevents clipping on short screens */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Allow long labels (e.g., "Security & privacy") to wrap */
    .nav-links.open a{
        white-space: normal;
    }
}
/* Founder block layout */
.founder-row{
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

/* Bigger + cleaner photo */
.founder-photo{
    width: 360px;
    height: 360px;
    border-radius: 16px;
    object-fit: cover;
    flex: 0 0 auto;

    /* polish */
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
    background: rgba(255,255,255,.03);
}

/* Make it responsive on smaller screens */
@media (max-width: 680px){
    .founder-row{
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-photo{
        width: 140px;
        height: 140px;
    }
}

.founder-copy{
    padding-top: 6px;
}

.founder-head{
    margin: 2px 0 12px 0;
}

.founder-name{
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .2px;
}

.founder-role{
    margin-top: 4px;
    font-size: .95rem;
    opacity: .78;
}

/* keep the paragraphs readable and not cramped */
.founder-copy .notice{
    margin: 0 0 10px 0;
    line-height: 1.6;
}

/* if your photo is 360, this keeps it from feeling too tall beside short text */
@media (max-width: 860px){
    .founder-row{
        flex-direction: column;
    }
    .founder-photo{
        width: 240px;
        height: 240px;
    }
}
.founder-card{
 
    padding-right: 16px; /* keep right consistent */
}
/* Keep card padding consistent; just align founder content nicely */
.founder-title{
    padding-left: 5px;   /* tweak 10–18px until perfect */
    margin-bottom: 10px;
}
.brand-logo{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    display: inline-block;
}
