:root {
    --color-deep-purple: #1A002E;
    --color-dark-purple: #2A0050;
    --color-electric-purple: #5B1EFF;
    --color-violet: #7B4DFF;
    --color-white: #FFFFFF;
    --color-soft-gray: #F5F5F7;
    --color-muted-gray: #999999;
    --color-heading-blue: #262A8F;
    --color-ink: #090011;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-ink);
    color: #18181b;
    font-family: Inter, "Inter Tight", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, p {
    margin: 0;
}

h1:focus, h2:focus, h3:focus {
    outline: none;
}

.sc-site {
    min-height: 100vh;
    overflow-x: clip;
    background: var(--color-soft-gray);
}

.sc-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.sc-section {
    position: relative;
    padding-block: clamp(5rem, 10vw, 9rem);
}

.sc-light {
    background: #f6f6f8;
}

.sc-soft {
    background:
        radial-gradient(circle at 75% 16%, rgba(123, 77, 255, 0.08), transparent 28%),
        #eeeeF2;
}

.sc-header {
    position: fixed;
    inset: 24px 0 auto;
    z-index: 80;
    pointer-events: none;
}

.sc-nav {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    pointer-events: auto;
}

.sc-nav-bar {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(16, 0, 31, 0.52);
    backdrop-filter: blur(26px);
    box-shadow: 0 0 55px rgba(91, 30, 255, 0.28);
}

.sc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.sc-brand-mark {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 950;
    box-shadow: inset 0 0 14px rgba(123, 77, 255, 0.35);
}

.sc-brand-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 760;
    letter-spacing: 0;
}

.sc-desktop-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-inline: auto;
}

.sc-desktop-links a,
.sc-mobile-links a {
    border-radius: 999px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 760;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sc-desktop-links a:hover,
.sc-mobile-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.sc-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.sc-menu-icon,
.sc-menu-icon::before,
.sc-menu-icon::after {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.sc-menu-icon {
    position: relative;
}

.sc-menu-icon::before,
.sc-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.sc-menu-icon::before {
    top: -6px;
}

.sc-menu-icon::after {
    top: 6px;
}

.sc-mobile-menu {
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: rgba(16, 0, 31, 0.86);
    backdrop-filter: blur(24px);
    transform-origin: top;
    transition: transform 180ms ease, opacity 180ms ease;
}

.sc-mobile-menu:not([data-state="open"]) {
    display: none;
}

.sc-mobile-links {
    display: grid;
    gap: 4px;
    padding: 14px;
}

.sc-mobile-cta {
    background: #ffffff !important;
    color: var(--color-heading-blue) !important;
}

.sc-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.sc-button:hover {
    transform: translateY(-2px);
}

.sc-button-ghost {
    min-height: 40px;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.sc-button-ghost:hover,
.sc-button-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 24px rgba(123, 77, 255, 0.38);
}

.sc-button-light {
    background: #ffffff;
    color: var(--color-heading-blue);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.sc-button-primary {
    background: var(--color-electric-purple);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(91, 30, 255, 0.28);
}

.sc-button-outline-light {
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.sc-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.67rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sc-badge-dark {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.sc-badge-light {
    border: 1px solid rgba(38, 42, 143, 0.12);
    background: rgba(38, 42, 143, 0.05);
    color: var(--color-heading-blue);
}

.sc-hero {
    position: relative;
    min-height: 980px;
    overflow: hidden;
    padding-block: 150px 0;
    background:
        radial-gradient(circle at top left, rgba(123, 77, 255, 0.45), transparent 35%),
        radial-gradient(circle at bottom right, rgba(91, 30, 255, 0.35), transparent 40%),
        linear-gradient(135deg, #090011, #1A002E, #2A0050);
}

.sc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}

.sc-hero-grid {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
}

.sc-hero-copy h1 {
    max-width: 970px;
    margin-top: 28px;
    color: #ffffff;
    font-size: clamp(4.4rem, 8.3vw, 9.6rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 0.86;
}

.sc-hero-text {
    max-width: 610px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

.sc-hero-panel {
    margin-top: 190px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 28px;
}

.sc-metric-chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.sc-metric-chip strong,
.sc-metric-chip span {
    display: block;
}

.sc-metric-chip strong {
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1;
}

.sc-metric-chip span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.74rem;
}

.sc-hero-car-wrap {
    position: relative;
    z-index: 3;
    margin-top: -70px;
}

.sc-hero-car {
    width: min(1120px, 96vw);
    margin-inline: auto;
    border-radius: 40px 40px 0 0;
    filter: drop-shadow(0 45px 70px rgba(0, 0, 0, 0.45));
    transform: translateY(90px);
}

.sc-orbit {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border: 2px solid rgba(147, 97, 255, 0.52);
    border-radius: 50%;
    filter: blur(0.2px) drop-shadow(0 0 18px rgba(123, 77, 255, 0.7));
    animation: sc-float 8s ease-in-out infinite alternate;
}

.sc-orbit-one {
    right: -120px;
    bottom: 260px;
    width: 420px;
    height: 180px;
    transform: rotate(-24deg);
}

.sc-orbit-two {
    left: -180px;
    top: 120px;
    width: 520px;
    height: 210px;
    transform: rotate(34deg);
    opacity: 0.5;
}

.sc-particle-field span {
    position: absolute;
    z-index: 2;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.62);
}

.sc-particle-field span:nth-child(1) { top: 20%; left: 22%; }
.sc-particle-field span:nth-child(2) { top: 33%; right: 20%; }
.sc-particle-field span:nth-child(3) { top: 46%; left: 57%; }
.sc-particle-field span:nth-child(4) { bottom: 21%; right: 30%; }
.sc-particle-field span:nth-child(5) { bottom: 32%; left: 14%; }
.sc-particle-field span:nth-child(6) { top: 63%; right: 9%; }

.sc-about {
    padding-top: clamp(9rem, 14vw, 13rem);
}

.sc-about-grid,
.sc-benefits-grid,
.sc-testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 6.8rem);
    align-items: center;
}

.sc-about-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: end;
}

.sc-about-visual img {
    width: min(680px, 100%);
    margin-left: -8%;
    border-radius: 0 44px 44px 0;
    mix-blend-mode: multiply;
}

.sc-scroll-cue {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(38, 42, 143, 0.25);
    border-radius: 999px;
    color: var(--color-heading-blue);
    font-size: 1.05rem;
}

.sc-about-visual .sc-scroll-cue {
    position: absolute;
    left: 0;
    bottom: 10px;
}

.sc-about-copy h2,
.sc-section-heading h2,
.sc-benefits h2 {
    color: var(--color-heading-blue);
    font-size: clamp(3rem, 6vw, 6.8rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 0.88;
}

.sc-section-text {
    max-width: 610px;
    color: #68656d;
    font-size: 0.95rem;
    line-height: 1.85;
}

.sc-about-copy .sc-section-text {
    margin-top: 42px;
}

.sc-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 76px;
}

.sc-stats strong,
.sc-stats span {
    display: block;
}

.sc-stats strong {
    color: #090011;
    font-size: clamp(2.35rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1;
}

.sc-stats span {
    margin-top: 12px;
    color: #5d5963;
    font-size: 0.82rem;
}

.sc-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 72px;
}

.sc-section-heading h2 {
    margin-top: 24px;
    max-width: 720px;
}

.sc-feature-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.9fr;
    grid-auto-rows: minmax(210px, auto);
    gap: 22px;
    align-items: stretch;
}

.sc-feature-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(24, 24, 27, 0.08);
    box-shadow: 0 26px 70px rgba(42, 0, 80, 0.1);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sc-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 30, 255, 0.24);
    box-shadow: 0 34px 90px rgba(42, 0, 80, 0.18);
}

.sc-feature-app {
    grid-row: span 2;
    min-height: 470px;
    background:
        radial-gradient(circle at 60% 20%, rgba(123, 77, 255, 0.38), transparent 38%),
        linear-gradient(145deg, #180027, #32105a);
}

.sc-feature-dark {
    background:
        radial-gradient(circle at top right, rgba(123, 77, 255, 0.3), transparent 38%),
        #170022;
    color: #ffffff;
}

.sc-feature-light {
    background: #ffffff;
}

.sc-feature-tall {
    grid-row: span 2;
}

.sc-feature-wide {
    grid-column: span 2;
}

.sc-feature-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 34px;
}

.sc-feature-content span {
    color: currentColor;
    opacity: 0.55;
    font-size: 0.77rem;
    font-weight: 900;
}

.sc-feature-content h3 {
    margin-top: auto;
    color: currentColor;
    font-size: clamp(1.55rem, 2vw, 2.45rem);
    font-weight: 1000;
    line-height: 0.96;
}

.sc-feature-content p {
    margin-top: 16px;
    color: currentColor;
    opacity: 0.62;
    font-size: 0.9rem;
    line-height: 1.7;
}

.sc-feature-content a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    align-self: flex-end;
    margin-top: 24px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.sc-phone-stack {
    position: relative;
    min-height: 470px;
}

.sc-phone {
    position: absolute;
    width: 190px;
    height: 360px;
    border: 7px solid rgba(255, 255, 255, 0.92);
    border-radius: 34px;
    background:
        radial-gradient(circle at 55% 30%, rgba(123, 77, 255, 0.55), transparent 32%),
        linear-gradient(160deg, #080010, #280046);
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.28);
}

.sc-phone-front {
    left: 34%;
    bottom: -34px;
    z-index: 2;
}

.sc-phone-back {
    left: 12%;
    bottom: 20px;
    transform: rotate(-7deg);
    opacity: 0.88;
}

.sc-phone span,
.sc-phone strong {
    position: absolute;
    left: 22px;
    color: #ffffff;
}

.sc-phone span {
    top: 28px;
    font-size: 0.74rem;
    opacity: 0.62;
}

.sc-phone strong {
    top: 64px;
    font-size: 1.42rem;
}

.sc-phone em {
    position: absolute;
    inset: 130px 22px 28px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, transparent 45%, rgba(255,255,255,0.2) 45% 47%, transparent 47%),
        radial-gradient(circle at 60% 38%, rgba(255,255,255,0.85) 0 5px, transparent 6px),
        rgba(255,255,255,0.1);
}

.sc-testimonials,
.sc-footer {
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(123, 77, 255, 0.45), transparent 35%),
        radial-gradient(circle at bottom right, rgba(91, 30, 255, 0.35), transparent 40%),
        linear-gradient(135deg, #090011, #1A002E, #2A0050);
}

.sc-testimonial-grid {
    grid-template-columns: 0.62fr 1.38fr;
}

.sc-testimonials h2 {
    max-width: 720px;
    margin-top: 28px;
    color: #ffffff;
    font-size: clamp(3.25rem, 6.3vw, 7.6rem);
    font-weight: 1000;
    line-height: 0.88;
}

.sc-testimonial-board {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 0.78fr) minmax(250px, 0.8fr);
    align-items: center;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0 0 46px 46px;
    border-top: 0;
    padding: 0 30px 30px;
}

.sc-client-list {
    display: grid;
}

.sc-client-list a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    transition: color 180ms ease, padding-left 180ms ease;
}

.sc-client-list a:first-child {
    color: #ffffff;
}

.sc-client-list a:hover {
    color: #ffffff;
    padding-left: 12px;
}

.sc-portrait-frame {
    overflow: hidden;
    align-self: stretch;
    border-radius: 0 0 28px 28px;
}

.sc-portrait-frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.sc-response-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(20px);
}

.sc-benefits-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.sc-benefits h2 {
    margin-top: 62px;
    max-width: 760px;
}

.sc-benefits-copy {
    display: grid;
    gap: 20px;
}

.sc-footer {
    padding-block: 76px 28px;
    color: #ffffff;
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.45fr));
    gap: clamp(2rem, 7vw, 7rem);
    padding-bottom: 58px;
}

.sc-footer-brand-block p {
    max-width: 320px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
    line-height: 1.8;
}

.sc-socials {
    display: flex;
    gap: 12px;
    margin-top: 46px;
}

.sc-socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.sc-socials a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: var(--color-heading-blue);
}

.sc-footer-column {
    display: grid;
    align-content: start;
    gap: 14px;
}

.sc-footer-column p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 950;
}

.sc-footer-column a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
    transition: color 180ms ease;
}

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

.sc-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
}

@keyframes sc-float {
    from {
        translate: 0 0;
    }
    to {
        translate: 0 -18px;
    }
}

@media (max-width: 1100px) {
    .sc-desktop-links,
    .sc-nav-bar > a.hidden {
        display: none !important;
    }

    .sc-menu-button {
        display: inline-flex;
    }

    .sc-hero {
        min-height: 900px;
    }

    .sc-hero-grid,
    .sc-about-grid,
    .sc-benefits-grid,
    .sc-testimonial-grid,
    .sc-section-heading {
        grid-template-columns: 1fr;
    }

    .sc-hero-panel {
        max-width: 560px;
        margin-top: 20px;
    }

    .sc-feature-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sc-feature-wide {
        grid-column: span 1;
    }

    .sc-testimonial-board {
        grid-template-columns: 1fr;
        gap: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: 34px;
        padding: 24px;
    }

    .sc-portrait-frame img {
        max-height: 460px;
    }
}

@media (max-width: 760px) {
    .sc-container {
        width: min(100% - 24px, 1440px);
    }

    .sc-header {
        inset: 12px 0 auto;
    }

    .sc-nav {
        width: min(100% - 24px, 1180px);
    }

    .sc-nav-bar {
        min-height: 62px;
        padding-inline: 14px;
    }

    .sc-hero {
        min-height: 780px;
        padding-top: 110px;
    }

    .sc-hero-copy h1 {
        font-size: clamp(3.45rem, 17vw, 5.4rem);
    }

    .sc-hero-car-wrap {
        margin-top: 14px;
    }

    .sc-hero-car {
        width: 150vw;
        max-width: none;
        margin-left: -26vw;
        transform: translateY(70px);
    }

    .sc-about {
        padding-top: 8rem;
    }

    .sc-about-copy h2,
    .sc-section-heading h2,
    .sc-benefits h2,
    .sc-testimonials h2 {
        font-size: clamp(2.7rem, 14vw, 4.4rem);
    }

    .sc-about-visual {
        min-height: auto;
    }

    .sc-about-visual img {
        margin-left: 0;
        border-radius: 30px;
    }

    .sc-stats,
    .sc-feature-layout,
    .sc-footer-grid {
        grid-template-columns: 1fr;
    }

    .sc-feature-app,
    .sc-feature-tall {
        grid-row: span 1;
    }

    .sc-phone-stack {
        min-height: 390px;
    }

    .sc-phone {
        width: 150px;
        height: 300px;
    }

    .sc-phone-front {
        left: 42%;
    }

    .sc-footer-bottom {
        flex-direction: column;
    }
}
