@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&display=swap');

* { box-sizing: border-box; min-width: 0; }
:root {
    color-scheme: dark;
    --bg: #08090c;
    --panel: #14161d;
    --panel-2: #1a1d26;
    --text: #f8fafc;
    --muted: #a1a1aa;
    --line: rgba(255,255,255,.1);
    --orange: #f59e0b;
    --green: #22c55e;
    --blue: #3b82f6;
}
body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(245,158,11,.16), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(59,130,246,.11), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}
a { color: inherit; }
.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(5,5,6,.88);
    backdrop-filter: blur(18px);
}
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; min-width: fit-content; }
.brand img:first-child {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: 3px solid transparent;
    border-radius: 8px;
    padding: 5px;
    background:
        linear-gradient(#09090c, #09090c) padding-box,
        linear-gradient(135deg, #ff2f7d 0%, #ff9f0a 42%, #6b4cff 100%) border-box;
}
.brand img:last-child { height: 31px; width: auto; max-width: 190px; object-fit: contain; opacity: .84; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.nav-links a:hover { color: var(--orange); }
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 92px 0 54px;
}
.hero::after {
    content: "";
    position: absolute;
    right: -6%;
    bottom: -8%;
    width: min(52vw, 620px);
    height: min(52vw, 620px);
    background-image: var(--hero-watermark, none);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .08;
    filter: grayscale(1) brightness(1.55) contrast(.9);
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: 34px; align-items: center; }
.kicker { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; margin-bottom: 16px; }
h1 { margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .92; letter-spacing: 0; text-transform: uppercase; }
.lead { color: #cbd5e1; font-size: clamp(17px, 2vw, 21px); line-height: 1.65; margin: 24px 0 0; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.btn.primary { background: var(--orange); color: #050505; box-shadow: 0 18px 40px rgba(245,158,11,.18); }
.btn.secondary { border: 1px solid var(--line); color: #f4f4f5; background: rgba(255,255,255,.04); }
.visual {
    border: 1px solid rgba(245,158,11,.22);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(24,24,27,.86), rgba(8,9,12,.98));
    box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.visual img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.visual.logo-visual {
    display: grid;
    place-items: center;
    padding: 46px;
    min-height: 360px;
}
.visual.logo-visual img {
    width: min(78%, 390px);
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 28px 45px rgba(0,0,0,.35));
}
.visual.logo-visual .visual-caption {
    width: calc(100% + 92px);
    margin: 28px -46px -46px;
}
.visual-caption {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}
.visual-caption span { padding: 16px; color: var(--muted); font-size: 12px; font-weight: 800; border-right: 1px solid var(--line); }
.visual-caption span:last-child { border-right: 0; }
.section { padding: 56px 0; }
.section-title { max-width: 760px; margin-bottom: 28px; }
h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1; text-transform: uppercase; }
.section-title p { color: var(--muted); line-height: 1.7; font-size: 17px; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(20,22,29,.92), rgba(9,10,13,.96));
}
.card strong { display: block; font-size: 17px; line-height: 1.25; margin-bottom: 10px; text-transform: uppercase; }
.card p, .card li { color: var(--muted); line-height: 1.65; font-size: 15px; }
.card p { margin: 0; }
.card ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.screenshot-frame {
    border: 1px solid rgba(34,197,94,.2);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15,23,42,.94), rgba(8,9,12,.98));
    box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.screenshot-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top left;
}
.screenshot-note {
    border-top: 1px solid var(--line);
    padding: 16px 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.video-panel {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 22px;
    align-items: center;
    border: 1px solid rgba(245,158,11,.24);
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(20,22,29,.92), rgba(9,10,13,.98));
    box-shadow: 0 30px 90px rgba(0,0,0,.26);
}
.video-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
.video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 10px solid #050506;
    border-radius: 22px;
    background: #050506;
    box-shadow: 0 24px 68px rgba(0,0,0,.34);
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-play-card {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #050506;
}
.video-play-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .86;
    filter: saturate(1.05) contrast(1.08);
    transition: transform .22s ease, opacity .22s ease;
}
.video-play-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,6,9,.76), rgba(5,6,9,.18) 52%, rgba(5,6,9,.44)),
        linear-gradient(180deg, transparent, rgba(5,6,9,.42));
}
.video-play-card:hover img {
    opacity: 1;
    transform: scale(1.025);
}
.play-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #050506;
    background: var(--orange);
    box-shadow: 0 18px 54px rgba(245,158,11,.42);
    font-size: 28px;
}
.process { counter-reset: step; display: grid; gap: 14px; }
.process .card { position: relative; padding-left: 74px; }
.process .card:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 24px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.35);
    color: var(--orange);
    font-weight: 900;
}
.cta-band {
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(34,197,94,.06), rgba(8,9,12,.96));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.cta-band p { color: #d4d4d8; line-height: 1.6; margin: 8px 0 0; max-width: 680px; }
.faq { display: grid; gap: 12px; }
details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; text-transform: uppercase; font-size: 14px; }
details p { color: var(--muted); line-height: 1.65; margin: 14px 0 0; }
.site-footer { border-top: 1px solid var(--line); background: #050506; padding: 34px 0; color: #71717a; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 14px; }
.footer-links a { color: #a1a1aa; font-size: 12px; font-weight: 900; text-transform: uppercase; text-decoration: none; letter-spacing: .08em; }
.footer-links a:hover { color: var(--orange); }
.copyright { text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 880px) {
    .nav-inner, .cta-band { flex-direction: column; text-align: center; }
    .hero { padding-top: 58px; }
    .hero-grid, .grid-3, .grid-2, .video-panel { grid-template-columns: 1fr; }
    .hero-actions { justify-content: center; }
    .visual-caption { grid-template-columns: 1fr; }
    .visual-caption span { border-right: 0; border-bottom: 1px solid var(--line); }
    .visual-caption span:last-child { border-bottom: 0; }
    .hero::after {
        width: 340px;
        height: 340px;
        right: -84px;
        bottom: -84px;
        opacity: .05;
    }
}
@media (max-width: 520px) {
    .wrap { width: min(100% - 28px, 1140px); }
    .brand img:last-child { max-width: 150px; }
    .nav-links { gap: 12px; }
    .nav-links a { font-size: 11px; letter-spacing: .08em; }
    .card, .cta-band { padding: 20px; }
    .process .card { padding-left: 20px; padding-top: 72px; }
}
