/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 24px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* vertical line pattern */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 84px 100%;
    background-position: center top;
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(
        to bottom,

        #000 0%,

        #000 78%,

        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* purple gradient wash on right */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            60% 70% at 100% 35%,

            rgba(93, 46, 222, 0.28) 0%,

            rgba(93, 46, 222, 0.1) 35%,

            transparent 70%
        ),
        radial-gradient(
            40% 50% at 90% 80%,

            rgba(138, 91, 250, 0.18) 0%,

            transparent 60%
        );
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 56px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-content {
    position: relative;
    margin: 24px auto 0;
    max-width: 1040px;
    text-align: center;
}

/* badge */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 14px;
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: -0.005em;
    white-space: nowrap;
    box-shadow: 0 2px 10px -4px rgba(11, 11, 20, 0.08);
}

.badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(93, 46, 222, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(93, 46, 222, 0.18);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(93, 46, 222, 0.06);
    }
}

/* headline */

.headline {
    position: relative;
    margin: 20px auto 0;
    font-size: 70px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 600;
    color: var(--ink);
    max-width: 920px;
    text-wrap: balance;
}

.headline .accent {
    background: linear-gradient(
        105deg,
        var(--brand) 0%,

        #8b5bfa 50%,

        var(--brand) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* floating chip callouts */

.float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
    box-shadow: 0 10px 24px -8px rgba(93, 46, 222, 0.35);
    z-index: 2;
}

.float-chip.solid {
    background: var(--brand);
    color: #fff;
}

.float-chip.outline {
    background: #fff;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    box-shadow: 0 8px 20px -10px rgba(11, 11, 20, 0.18);
}

.float-chip .arrow {
    position: absolute;
    width: 28px;
    height: 28px;
}

/* Left chip — "Automation" — floats left of content block */

.chip-left {
    left: -28%;
    top: 38%;
    transform: rotate(-6deg);
}

.chip-left .arrow {
    right: -22px;
    top: -16px;
    transform: rotate(20deg);
}

/* Right chip — "AI-First" — floats right of content block */

.chip-right {
    right: -28%;
    top: 30%;
    transform: rotate(7deg);
}

.chip-right .arrow {
    left: -22px;
    bottom: -16px;
    transform: rotate(200deg);
}

/* subhead */

.sub {
    margin: 36px auto 0;
    max-width: 580px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--muted);
    letter-spacing: -0.005em;
    font-weight: 400;
}

/* CTAs */

.ctas {
    margin: 24px 0 0;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 26px;
    height: 56px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 200ms ease,
        box-shadow 200ms ease;
    border: none;
    cursor: pointer;
}

.btn .ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:hover .ico-arrow {
    transform: translateX(2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, #8b5bfa 100%);
    color: #fff;
    box-shadow:
        0 12px 28px -10px rgba(93, 46, 222, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary .ico {
    background: #fff;
}

.btn-primary .ico svg {
    color: var(--brand);
}

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--brand);
}

.btn-ghost .ico {
    background: linear-gradient(135deg, var(--brand) 0%, #8b5bfa 100%);
}

.btn-ghost .ico svg {
    color: #fff;
}

/* trust strip below CTAs */

.trust {
    margin: 24px auto 0;
    gap: 22px;
    color: var(--muted-2);
    font-size: 14px;
    font-weight: 500;
}

.trust .avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background-size: cover;
    background-position: center;
    margin-left: -8px;
}

.trust .avatars span:first-child {
    margin-left: 0;
}

.trust .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--brand);
}

.trust b {
    color: var(--ink);
    font-weight: 600;
}

/* SHOWCASE — Auto Marquee */

.showcase {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0,

        #000 4%,

        #000 96%,

        transparent 100%
    );
    mask: linear-gradient(
        90deg,
        transparent 0,

        #000 4%,

        #000 96%,

        transparent 100%
    );
}

.showcase-row {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-left: 56px;
    animation: marquee 38s linear infinite;
}

.showcase:hover .showcase-row {
    animation-play-state: paused;
}

@keyframes marquee {
    to {
        transform: translateX(calc(-1 * (360px * 4 + 18px * 4)));
    }
}

.show-card {
    flex: 0 0 360px;
    position: relative;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line-2);
    box-shadow: 0 24px 40px -28px rgba(11, 11, 20, 0.3);
    transition:
        transform 280ms ease,
        box-shadow 280ms ease;
    background: #fff;
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -28px rgba(11, 11, 20, 0.4);
}

.show-card .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(11, 11, 20, 0.05);
    border: 1px solid rgba(11, 11, 20, 0.08);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.show-card.is-dark .tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(10px);
}

.show-card .meta {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 4;
    padding: 7px 12px 7px 7px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.show-card.is-dark .meta {
    background: rgba(11, 11, 20, 0.45);
    border-color: rgba(255, 255, 255, 0.1);
}

.show-card .meta .mlogo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--brand) 0%, #8b5bfa 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex: 0 0 auto;
}

.show-card.is-dark .meta .mlogo {
    background: linear-gradient(135deg, #fff 0%, #b89bfb 100%);
    color: var(--brand);
}

.show-card .meta b {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.show-card.is-dark .meta b {
    color: #fff;
}

.show-card .meta em {
    font-style: normal;
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    margin-left: 2px;
}

.show-card.is-dark .meta em {
    color: rgba(255, 255, 255, 0.6);
}

/* ── CARD 1: NIDUSHIRE (AI Job Search) ── */

.sc-hire {
    background: linear-gradient(135deg, #f8f7fb 0%, #efe7ff 100%);
}

.sc-hire .browser {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 44px;
    bottom: 60px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 36px -22px rgba(11, 11, 20, 0.25);
}

.sc-hire .urlbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-bottom: 1px solid var(--line);
    background: #fafafb;
}

.sc-hire .urlbar .dots {
    display: flex;
    gap: 4px;
}

.sc-hire .urlbar .dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e4e1e9;
}

.sc-hire .urlbar .url {
    flex: 1;
    text-align: center;
    font-family: "SF Mono", Menlo, monospace;
    font-size: 9px;
    color: var(--muted);
}

.sc-hire .urlbar .url i {
    color: var(--brand);
    font-style: normal;
    margin-right: 2px;
}

.sc-hire .search {
    margin: 8px 8px 0;
    padding: 7px 10px;
    background: var(--brand-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9.5px;
    color: var(--ink);
    font-weight: 500;
}

.sc-hire .search::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    flex: 0 0 auto;
}

.sc-hire .search b {
    color: var(--brand);
    font-weight: 600;
    margin-left: auto;
    font-size: 8.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sc-hire .jobs {
    padding: 7px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-hire .job {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-hire .job.active {
    border-color: var(--brand);
    box-shadow: 0 4px 10px -6px rgba(93, 46, 222, 0.4);
}

.sc-hire .job .logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex: 0 0 auto;
}

.sc-hire .job:nth-child(1) .logo {
    background: linear-gradient(135deg, var(--brand) 0%, #8b5bfa 100%);
}

.sc-hire .job:nth-child(2) .logo {
    background: var(--ink);
}

.sc-hire .job .info {
    flex: 1;
    min-width: 0;
}

.sc-hire .job .info b {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.sc-hire .job .info span {
    display: block;
    font-size: 9px;
    color: var(--muted);
    margin-top: 1px;
}

.sc-hire .match {
    flex: 0 0 auto;
    text-align: right;
}

.sc-hire .match b {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.01em;
    line-height: 1;
}

.sc-hire .match span {
    display: block;
    font-size: 7.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* ── CARD 2: NIDUSHR (Employee Management) ── */

.sc-hr {
    background: linear-gradient(160deg, #1a1340 0%, #14102a 60%, #0b0918 100%);
}

.sc-hr::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        50% 40% at 80% 10%,

        rgba(123, 75, 240, 0.3) 0%,

        transparent 60%
    );
    pointer-events: none;
}

.sc-hr .app {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 44px;
    bottom: 60px;
    background: #16122c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 18px 36px -22px rgba(11, 11, 20, 0.4);
}

.sc-hr .nav {
    width: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sc-hr .nav .logo {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--brand) 0%, #8b5bfa 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}

.sc-hr .nav i {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.45);
    display: grid;
    place-items: center;
}

.sc-hr .nav i.on {
    background: rgba(123, 75, 240, 0.18);
    color: var(--brand-3);
}

.sc-hr .body {
    flex: 1;
    padding: 8px 10px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-hr .body .greet {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.55);
}

.sc-hr .body .greet b {
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    display: block;
    letter-spacing: -0.01em;
}

.sc-hr .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.sc-hr .stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 5px 7px;
}

.sc-hr .stat b {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1;
}

.sc-hr .stat span {
    display: block;
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.sc-hr .stat b em {
    font-style: normal;
    color: #93e68a;
    font-size: 8px;
    margin-left: 2px;
    font-weight: 500;
}

.sc-hr .roster {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 1px;
}

.sc-hr .row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
}

.sc-hr .row .av {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.sc-hr .row .info {
    flex: 1;
    min-width: 0;
}

.sc-hr .row .info b {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
}

.sc-hr .row .info span {
    display: block;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

.sc-hr .row .pill {
    font-size: 7.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sc-hr .row .pill.green {
    background: rgba(52, 211, 153, 0.18);
    color: #6ee7b7;
}

.sc-hr .row .pill.purple {
    background: rgba(123, 75, 240, 0.18);
    color: var(--brand-3);
}

.sc-hr .row .pill.gray {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
}

/* ── CARD 3: NIDUSCART (AI Ecommerce) ── */

.sc-shop {
    background: linear-gradient(160deg, #f5f0ff 0%, #dcc7ff 100%);
}

.sc-shop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        50% 50% at 50% 100%,

        rgba(93, 46, 222, 0.25) 0%,

        transparent 70%
    );
    pointer-events: none;
}

.sc-shop .phone {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: 148px;
    height: 230px;
    background: #0b0b14;
    border-radius: 22px;
    border: 5px solid #1a1a26;
    box-shadow:
        0 28px 50px -16px rgba(11, 11, 20, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sc-shop .phone .notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    height: 12px;
    background: #000;
    border-radius: 999px;
    z-index: 2;
}

.sc-shop .phone .screen {
    position: absolute;
    inset: 22px 6px 6px;
    background: #fbfafc;
    border-radius: 14px;
    padding: 6px 6px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sc-shop .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
}

.sc-shop .topbar b {
    font-size: 9px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.02em;
}

.sc-shop .topbar .cart {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 7px;
    font-weight: 700;
}

.sc-shop .topbar .cart::after {
    content: "3";
    position: absolute;
    top: -3px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    font-size: 7px;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.sc-shop .pgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    flex: 1;
}

.sc-shop .prod {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid #f0edf6;
}

.sc-shop .prod .ph {
    aspect-ratio: 1;
    border-radius: 4px;
}

.sc-shop .prod:nth-child(1) .ph {
    background: linear-gradient(135deg, #5d2ede 0%, #2e1a6b 100%);
}

.sc-shop .prod:nth-child(2) .ph {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
}

.sc-shop .prod:nth-child(3) .ph {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.sc-shop .prod:nth-child(4) .ph {
    background: linear-gradient(135deg, #f472b6 0%, #be185d 100%);
}

.sc-shop .prod b {
    font-size: 7px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.sc-shop .prod span {
    font-size: 7px;
    color: var(--brand);
    font-weight: 700;
}

.sc-shop .prod .ai-rec {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    border-radius: 3px;
    color: #fff;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 2px;
}

.sc-shop .ai-rec::before {
    content: "✦";
    color: var(--brand-3);
}

.sc-shop .ai-float {
    position: absolute;
    right: 20px;
    top: 60%;
    transform: rotate(8deg);
    padding: 6px 10px 6px 8px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    box-shadow: 0 10px 24px -10px rgba(11, 11, 20, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 600;
    color: var(--ink);
    z-index: 3;
}

.sc-shop .ai-float .pop {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--brand) 0%, #b89bfb 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.sc-shop .ai-float em {
    font-style: normal;
    color: var(--brand);
    font-size: 7.5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* ── CARD 4: NIDUSLEARN (Career College) ── */

.sc-learn {
    background: linear-gradient(160deg, #5d2ede 0%, #4d24bd 60%, #2e1a6b 100%);
}

.sc-learn::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            40% 50% at 0% 0%,

            rgba(184, 155, 251, 0.3) 0%,

            transparent 60%
        ),
        radial-gradient(
            50% 60% at 100% 100%,

            rgba(11, 11, 20, 0.3) 0%,

            transparent 60%
        );
    pointer-events: none;
}

.sc-learn .app {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 44px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sc-learn .greet {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-learn .greet b {
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    display: block;
    letter-spacing: -0.01em;
}

.sc-learn .streak {
    padding: 3px 7px 3px 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 8.5px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sc-learn .streak::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 6px #fbbf24;
}

.sc-learn .hero-course {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-learn .hero-course .head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 6px;
}

.sc-learn .hero-course .head b {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.sc-learn .hero-course .head .pct {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.sc-learn .hero-course .head .pct em {
    color: var(--brand-3);
    font-style: normal;
    font-size: 8px;
    font-weight: 600;
    margin-left: 1px;
}

.sc-learn .hero-course .sub {
    font-size: 8.5px;
    color: rgba(255, 255, 255, 0.7);
}

.sc-learn .hero-course .bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.sc-learn .hero-course .bar::after {
    content: "";
    position: absolute;
    inset: 0 33% 0 0;
    background: linear-gradient(90deg, var(--brand-3), #fff);
    border-radius: 999px;
    box-shadow: 0 0 6px rgba(184, 155, 251, 0.6);
}

.sc-learn .lessons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.sc-learn .lesson {
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sc-learn .lesson .ico {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    color: var(--brand-3);
}

.sc-learn .lesson b {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.005em;
}

.sc-learn .lesson span {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* scroll hint */

.scroll-hint {
    display: none !important;
    position: absolute;
    bottom: 28px;
    left: 56px;
    z-index: 2;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.scroll-hint .dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* small "marquee" of clients/tech on the right of scroll hint */

.clients {
    display: none !important;
    position: absolute;
    bottom: 28px;
    right: 56px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted-2);
    font-size: 13px;
    font-weight: 500;
}

.clients .sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--line-2);
}

.clients b {
    color: var(--ink-2);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* responsive */

/* Large desktop — slightly narrower viewport, bring chips in */

@media (max-width: 1280px) {
    .chip-left {
        left: -16%;
        top: 38%;
    }

    .chip-right {
        right: -16%;
        top: 30%;
    }
}

@media (max-width: 1100px) {
    .headline {
        font-size: 64px;
    }

    .chip-left {
        left: -6%;
        top: 35%;
        font-size: 15px;
        padding: 7px 14px;
    }

    .chip-right {
        right: -6%;
        top: 28%;
        font-size: 15px;
        padding: 7px 14px;
    }

    .showcase-row {
        padding-left: 20px;
    }
}

/* Tablet — hide chips, no room */

@media (max-width: 900px) {
    .float-chip {
        display: none;
    }

    .ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 360px;
        justify-content: space-between;
    }

    .trust {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .nav {
        padding: 18px 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .headline {
        font-size: 40px;
        letter-spacing: -0.03em;
    }

    .sub {
        font-size: 15px;
        padding: 0;
    }

    .ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }

    .trust {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 13px;
        justify-content: center;
    }

    .trust .avatars {
        display: none;
    }

    .showcase-row {
        padding-left: 16px;
    }

    .scroll-hint,
    .clients {
        display: none;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 30px;
    }

    .btn {
        font-size: 14px;
        height: 52px;
        padding: 5px 5px 5px 20px;
    }

    .btn .ico {
        width: 40px;
        height: 40px;
    }
}
