/* Teyo Player public website — premium streaming interface, v0.16.1. */

.teyo-landing-v2 {
    --teyo-bg: #06111f;
    --teyo-bg-deep: #030a13;
    --teyo-surface: #0b1a2b;
    --teyo-surface-2: #10243a;
    --teyo-surface-3: #142e49;
    --teyo-line: rgba(145, 174, 205, 0.17);
    --teyo-line-strong: rgba(145, 174, 205, 0.28);
    --teyo-text: #f4f8fc;
    --teyo-muted: #91a5bb;
    --teyo-accent: #25d7b0;
    --teyo-accent-soft: rgba(37, 215, 176, 0.12);
    --teyo-accent-ink: #031b16;
    --teyo-blue: #65a5ff;
    --teyo-warning: #ffd574;
    --teyo-radius: 24px;
    margin: 0;
    overflow-x: hidden;
    color: var(--teyo-text);
    background:
        radial-gradient(900px 500px at 100% -100px, rgba(30, 104, 144, 0.18), transparent 70%),
        var(--teyo-bg);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.teyo-landing-v2 *,
.teyo-landing-v2 *::before,
.teyo-landing-v2 *::after { box-sizing: border-box; }

.teyo-landing-v2 a { color: inherit; }
.teyo-landing-v2 img { max-width: 100%; }
.teyo-landing-v2 h1,
.teyo-landing-v2 h2,
.teyo-landing-v2 h3,
.teyo-landing-v2 p { overflow-wrap: anywhere; }

.teyo-wrap {
    width: min(1240px, calc(100% - 56px));
    margin-inline: auto;
}

.teyo-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    padding: 10px 14px;
    color: var(--teyo-accent-ink);
    border-radius: 8px;
    background: var(--teyo-accent);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
}

.teyo-skip-link:focus { transform: translateY(0); }
.teyo-visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

/* Header */

.teyo-header {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    min-height: 0;
    margin: 0;
    display: block;
    border-bottom: 1px solid rgba(145, 174, 205, 0.12);
    background: rgba(6, 17, 31, 0.78);
    box-shadow: 0 12px 44px rgba(1, 7, 14, 0.18);
    backdrop-filter: blur(18px) saturate(140%);
}

.teyo-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.teyo-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--teyo-text);
    text-decoration: none;
}

.teyo-brand-mark {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background-color: var(--teyo-accent);
    background-image: url('/favicon-512x512.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 12px 28px rgba(37, 215, 176, 0.2);
}

.teyo-brand-mark span {
    display: none;
}

.teyo-brand-copy { display: grid; gap: 2px; }
.teyo-brand-copy strong { font-size: 14px; letter-spacing: 0.065em; }
.teyo-brand-copy small { color: var(--teyo-accent); font-size: 8px; font-weight: 850; letter-spacing: 0.16em; }

.teyo-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.teyo-nav a {
    position: relative;
    color: var(--teyo-muted);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
}

.teyo-nav a:not(.teyo-nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--teyo-accent);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.teyo-nav a:hover { color: var(--teyo-text); }
.teyo-nav a:hover::after { transform: scaleX(1); }

.teyo-nav .teyo-nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--teyo-accent-ink);
    border: 1px solid var(--teyo-accent);
    border-radius: 12px;
    background: var(--teyo-accent);
    box-shadow: 0 10px 24px rgba(37, 215, 176, 0.15);
}

.teyo-menu-button { display: none; }

/* Shared elements */

.teyo-button {
    width: auto;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.teyo-button b { font-size: 17px; font-weight: 500; }

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

.teyo-button-primary {
    color: var(--teyo-accent-ink);
    border-color: var(--teyo-accent);
    background: var(--teyo-accent);
    box-shadow: 0 14px 36px rgba(37, 215, 176, 0.17);
}

.teyo-button-primary:hover {
    color: var(--teyo-accent-ink);
    background: #45e5c1;
    box-shadow: 0 18px 44px rgba(37, 215, 176, 0.23);
}

.teyo-button-ghost {
    color: var(--teyo-text);
    border-color: var(--teyo-line-strong);
    background: rgba(255, 255, 255, 0.025);
}

.teyo-button-ghost:hover {
    color: var(--teyo-text);
    border-color: rgba(37, 215, 176, 0.5);
    background: rgba(37, 215, 176, 0.06);
}

.teyo-kicker {
    margin: 0 0 18px;
    color: var(--teyo-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.teyo-kicker span {
    margin-right: 9px;
    color: var(--teyo-muted);
}

.teyo-section {
    position: relative;
    padding: 118px 0;
}

.teyo-section-alt {
    border-block: 1px solid rgba(145, 174, 205, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 30%),
        rgba(3, 11, 20, 0.36);
}

.teyo-section-head {
    max-width: 720px;
    margin-bottom: 52px;
}

.teyo-section-head h2 {
    margin: 0;
    color: var(--teyo-text);
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.teyo-section-head > p:last-child:not(.teyo-kicker) {
    margin: 20px 0 0;
    color: var(--teyo-muted);
    font-size: 15px;
    line-height: 1.75;
}

.teyo-section-head-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
    align-items: end;
    gap: 70px;
}

.teyo-section-head-split > p:last-child {
    margin: 0 0 4px;
}

.teyo-section-head-centered {
    margin-inline: auto;
    text-align: center;
}

.teyo-card-icon {
    width: 25px;
    height: 25px;
    display: block;
}

/* Hero */

.teyo-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    padding: clamp(70px, 9vw, 124px) 0 64px;
    isolation: isolate;
}

.teyo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(145, 174, 205, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 174, 205, 0.075) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.teyo-hero::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -360px;
    z-index: -2;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(37, 215, 176, 0.09);
    border-radius: 50%;
    box-shadow: inset 0 0 120px rgba(37, 215, 176, 0.03);
}

.teyo-hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.teyo-hero-glow-one {
    top: -220px;
    left: -280px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(37, 215, 176, 0.13), transparent 69%);
}

.teyo-hero-glow-two {
    top: 4%;
    right: -10%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(66, 135, 218, 0.14), transparent 68%);
}

.teyo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(510px, 1.18fr);
    align-items: center;
    gap: clamp(56px, 7vw, 104px);
}

.teyo-hero-copy { position: relative; z-index: 2; }

.teyo-live-pill {
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 12px;
    color: var(--teyo-accent);
    border: 1px solid rgba(37, 215, 176, 0.24);
    border-radius: 999px;
    background: rgba(37, 215, 176, 0.055);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.teyo-live-pill span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--teyo-accent);
    box-shadow: 0 0 0 5px rgba(37, 215, 176, 0.08);
    animation: teyo-pulse 2.2s ease-in-out infinite;
}

.teyo-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--teyo-text);
    font-size: clamp(52px, 5.65vw, 82px);
    font-weight: 760;
    line-height: 0.94;
    letter-spacing: -0.067em;
}

.teyo-hero-lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--teyo-muted);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
}

.teyo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin: 34px 0 32px;
}

.teyo-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    color: var(--teyo-muted);
    font-size: 10px;
}

.teyo-hero-facts span {
    padding: 0 15px;
    border-left: 1px solid var(--teyo-line);
}

.teyo-hero-facts span:first-child { padding-left: 0; border-left: 0; }
.teyo-hero-facts b { display: block; margin-bottom: 3px; color: var(--teyo-text); font-size: 12px; }

.teyo-platform-line {
    margin: 25px 0 0;
    color: #698097;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.teyo-hero-visual {
    position: relative;
    min-width: 0;
    perspective: 1300px;
}

.teyo-orbit {
    position: absolute;
    border: 1px solid rgba(37, 215, 176, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.teyo-orbit-one { width: 540px; height: 540px; top: -100px; right: -100px; }
.teyo-orbit-two { width: 390px; height: 390px; top: -25px; right: -25px; border-color: rgba(101, 165, 255, 0.1); }

.teyo-player-shell {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(159, 193, 226, 0.24);
    border-radius: 22px;
    background: #071321;
    box-shadow:
        0 55px 110px rgba(0, 0, 0, 0.46),
        -20px 20px 70px rgba(37, 215, 176, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: rotateY(-7deg) rotateX(2deg);
    transform-origin: left center;
}

.teyo-player-topbar {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid var(--teyo-line);
    background: #091827;
}

.teyo-mini-brand { display: flex; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 0.1em; }
.teyo-mini-logo {
    width: 23px;
    height: 23px;
    display: block;
    overflow: hidden;
    color: transparent;
    border-radius: 7px;
    background: var(--teyo-accent) url('/favicon-512x512.png') center / cover no-repeat;
    font-size: 0;
    text-indent: -9999px;
}
.teyo-window-dots { display: flex; gap: 5px; }
.teyo-window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #29435c; }

.teyo-player-body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 68px 1fr;
}

.teyo-demo-rail {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 23px 13px;
    border-right: 1px solid var(--teyo-line);
    background: #081522;
}

.teyo-demo-rail span { height: 34px; border-radius: 9px; background: #10243a; }
.teyo-demo-rail span.is-active { background: linear-gradient(135deg, rgba(37, 215, 176, 0.28), rgba(37, 215, 176, 0.09)); box-shadow: inset 2px 0 var(--teyo-accent); }

.teyo-demo-content { padding: 25px 23px; }
.teyo-demo-heading { display: flex; align-items: center; justify-content: space-between; }
.teyo-demo-heading > div { display: grid; gap: 4px; }
.teyo-demo-heading small { color: var(--teyo-accent); font-size: 7px; font-weight: 900; letter-spacing: 0.14em; }
.teyo-demo-heading strong { font-size: 24px; letter-spacing: -0.04em; }
.teyo-demo-heading > span { width: 120px; height: 28px; border: 1px solid #1d3852; border-radius: 8px; background: #0a1b2c; }

.teyo-demo-chips { display: flex; gap: 7px; margin: 18px 0; }
.teyo-demo-chips span { width: 72px; height: 19px; border-radius: 999px; background: #102840; }
.teyo-demo-chips span:first-child { background: rgba(37, 215, 176, 0.25); }

.teyo-demo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.teyo-demo-grid article { position: relative; aspect-ratio: 1.32; overflow: hidden; padding: 10px; border: 1px solid #17324c; border-radius: 12px; background: linear-gradient(145deg, #143250, #0b1d30); }
.teyo-demo-grid article::before { content: ""; position: absolute; inset: 0; opacity: 0.35; background: radial-gradient(circle at 75% 20%, #2f6b91, transparent 60%); }
.teyo-demo-grid article.is-featured { background: linear-gradient(145deg, #174a4a, #0b2531); }
.teyo-demo-grid i { position: relative; z-index: 1; display: inline-flex; padding: 4px 6px; color: var(--teyo-accent); border-radius: 5px; background: rgba(4, 18, 28, 0.5); font-size: 6px; font-style: normal; font-weight: 900; }
.teyo-demo-grid b { position: absolute; right: 11px; bottom: 17px; left: 11px; height: 5px; border-radius: 999px; background: rgba(226, 239, 251, 0.15); }
.teyo-demo-grid span { position: absolute; right: 11px; bottom: 8px; left: 11px; height: 3px; border-radius: 999px; background: rgba(145, 174, 205, 0.11); }

.teyo-float-card {
    position: absolute;
    z-index: 5;
    display: grid;
    padding: 14px 16px;
    border: 1px solid rgba(159, 193, 226, 0.25);
    border-radius: 14px;
    background: rgba(12, 29, 47, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.teyo-float-trial { top: -30px; right: -20px; }
.teyo-float-trial span { color: var(--teyo-muted); font-size: 7px; font-weight: 900; letter-spacing: 0.14em; }
.teyo-float-trial strong { margin-top: 3px; color: var(--teyo-warning); font-size: 18px; }
.teyo-float-sync { right: -4px; bottom: -28px; grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
.teyo-float-sync i { width: 28px; height: 28px; display: grid; place-items: center; color: var(--teyo-accent-ink); border-radius: 9px; background: var(--teyo-accent); font-size: 12px; font-style: normal; font-weight: 900; }
.teyo-float-sync span { display: grid; gap: 2px; }
.teyo-float-sync strong { font-size: 9px; }
.teyo-float-sync small { color: var(--teyo-muted); font-size: 7px; }

.teyo-stat-ribbon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0;
    margin-top: 105px;
    border-block: 1px solid var(--teyo-line);
}

.teyo-stat-ribbon > div { padding: 22px 28px; border-left: 1px solid var(--teyo-line); }
.teyo-stat-ribbon > div:first-child { border-left: 0; }
.teyo-stat-ribbon strong { display: block; color: var(--teyo-text); font-size: 25px; letter-spacing: -0.04em; }
.teyo-stat-ribbon span { color: var(--teyo-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.05em; }

/* Platforms */

.teyo-platform-section { background: linear-gradient(180deg, transparent, rgba(7, 22, 35, 0.5)); }
.teyo-platform-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }

.teyo-platform-card {
    position: relative;
    min-height: 250px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    color: var(--teyo-text);
    border: 1px solid var(--teyo-line);
    border-radius: 20px;
    background:
        radial-gradient(220px 160px at 100% 0%, rgba(37, 215, 176, 0.1), transparent 70%),
        var(--teyo-surface);
    text-decoration: none;
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.teyo-platform-card:hover { transform: translateY(-5px); border-color: rgba(37, 215, 176, 0.46); }
.teyo-platform-card.is-soon { opacity: 0.64; }
.teyo-platform-icon { width: 49px; height: 49px; display: grid; place-items: center; color: var(--teyo-accent); border: 1px solid rgba(37, 215, 176, 0.2); border-radius: 14px; background: var(--teyo-accent-soft); }
.teyo-platform-copy { margin-top: auto; }
.teyo-platform-copy > span { color: var(--teyo-accent); font-size: 7px; font-weight: 900; letter-spacing: 0.15em; }
.teyo-platform-copy h3 { margin: 9px 0 5px; font-size: 20px; letter-spacing: -0.025em; }
.teyo-platform-copy p { margin: 0; color: var(--teyo-muted); font-size: 11px; line-height: 1.55; }
.teyo-card-arrow { position: absolute; top: 24px; right: 24px; color: var(--teyo-muted); font-size: 18px; font-weight: 400; }

/* Steps */

.teyo-step-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--teyo-line);
    border-left: 1px solid var(--teyo-line);
    list-style: none;
}

.teyo-step-grid li {
    min-height: 218px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: start;
    gap: 22px;
    padding: 30px;
    border-right: 1px solid var(--teyo-line);
    border-bottom: 1px solid var(--teyo-line);
    background: rgba(255, 255, 255, 0.012);
    transition: background 180ms ease;
}

.teyo-step-grid li:hover { background: rgba(37, 215, 176, 0.035); }
.teyo-step-number { color: var(--teyo-accent); font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.teyo-step-grid h3 { margin: 0 0 10px; font-size: 18px; }
.teyo-step-grid p { margin: 0; color: var(--teyo-muted); font-size: 12px; line-height: 1.7; }

/* Complete product information */

.teyo-details-section {
    background:
        radial-gradient(700px 420px at 0% 45%, rgba(37, 215, 176, 0.08), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}
.teyo-capability-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.teyo-capability-card {
    position: relative;
    min-height: 255px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--teyo-line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(20, 46, 73, 0.7), rgba(8, 25, 42, 0.92));
    transition: transform 180ms ease, border-color 180ms ease;
}
.teyo-capability-card:hover { transform: translateY(-4px); border-color: rgba(37, 215, 176, 0.4); }
.teyo-capability-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; top: -70px; border: 1px solid rgba(37, 215, 176, 0.11); border-radius: 50%; }
.teyo-capability-icon { width: 47px; height: 47px; display: grid; place-items: center; color: var(--teyo-accent); border: 1px solid rgba(37, 215, 176, 0.2); border-radius: 14px; background: var(--teyo-accent-soft); }
.teyo-capability-card > span { margin-top: auto; padding-top: 34px; color: var(--teyo-accent); font-size: 8px; font-weight: 900; letter-spacing: 0.14em; }
.teyo-capability-card h3 { margin: 9px 0 8px; font-size: 18px; letter-spacing: -0.025em; }
.teyo-capability-card p { margin: 0; color: var(--teyo-muted); font-size: 11px; line-height: 1.65; }
.teyo-product-note { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 14px; padding: 20px 24px; border: 1px solid rgba(37, 215, 176, 0.24); border-radius: 18px; background: rgba(37, 215, 176, 0.06); }
.teyo-product-note > .teyo-card-icon { color: var(--teyo-accent); }
.teyo-product-note strong { font-size: 13px; }
.teyo-product-note p { margin: 4px 0 0; color: var(--teyo-muted); font-size: 10px; line-height: 1.5; }
.teyo-product-note a { color: var(--teyo-accent); font-size: 10px; font-weight: 850; text-decoration: none; white-space: nowrap; }

/* Feature bento */

.teyo-feature-bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.teyo-feature-card {
    position: relative;
    min-height: 260px;
    grid-column: span 4;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--teyo-line);
    border-radius: var(--teyo-radius);
    background: var(--teyo-surface);
}

.teyo-feature-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -100px; bottom: -120px; border: 1px solid rgba(37, 215, 176, 0.12); border-radius: 50%; box-shadow: 0 0 70px rgba(37, 215, 176, 0.04); }
.teyo-feature-card:nth-child(6n + 1), .teyo-feature-card:nth-child(6n + 5) { grid-column: span 7; min-height: 340px; background: radial-gradient(420px 270px at 100% 0%, rgba(37, 215, 176, 0.13), transparent 72%), var(--teyo-surface); }
.teyo-feature-card:nth-child(6n + 2), .teyo-feature-card:nth-child(6n + 6) { grid-column: span 5; min-height: 340px; background: radial-gradient(400px 260px at 100% 0%, rgba(101, 165, 255, 0.13), transparent 72%), var(--teyo-surface); }
.teyo-feature-icon { width: 51px; height: 51px; display: grid; place-items: center; margin-bottom: auto; color: var(--teyo-accent); border: 1px solid rgba(37, 215, 176, 0.22); border-radius: 15px; background: var(--teyo-accent-soft); }
.teyo-feature-card > span { margin-top: 42px; color: var(--teyo-accent); font-size: 8px; font-weight: 900; letter-spacing: 0.16em; }
.teyo-feature-card h3 { margin: 10px 0 8px; font-size: clamp(20px, 2.2vw, 29px); letter-spacing: -0.035em; }
.teyo-feature-card p { max-width: 48ch; margin: 0; color: var(--teyo-muted); font-size: 12px; line-height: 1.7; }

/* Screenshots */

.teyo-preview-section { background: radial-gradient(700px 360px at 50% 100%, rgba(37, 215, 176, 0.08), transparent 72%); }
.teyo-shot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: start; }
.teyo-shot { margin: 0; }
.teyo-shot-frame { padding: 10px; border: 1px solid var(--teyo-line-strong); border-radius: 23px; background: #02070d; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28); }
.teyo-shot img { width: 100%; height: auto; display: block; border-radius: 15px; }
.teyo-shot-mobile { max-width: 340px; justify-self: center; }
.teyo-shot figcaption { margin-top: 13px; color: var(--teyo-muted); font-size: 10px; text-align: center; }

/* Activation */

.teyo-activation-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.62fr);
    align-items: center;
    gap: clamp(60px, 10vw, 135px);
    padding: clamp(45px, 6vw, 82px);
    overflow: hidden;
    border: 1px solid rgba(37, 215, 176, 0.24);
    border-radius: 32px;
    background:
        radial-gradient(700px 430px at 0% 0%, rgba(37, 215, 176, 0.12), transparent 68%),
        linear-gradient(140deg, #102740, #091725 68%);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.teyo-activation-panel::after { content: ""; position: absolute; width: 460px; height: 460px; right: -260px; top: -260px; border: 1px solid rgba(37, 215, 176, 0.18); border-radius: 50%; }
.teyo-activation-copy h2 { max-width: 680px; margin: 0; font-size: clamp(40px, 5.5vw, 70px); line-height: 0.98; letter-spacing: -0.055em; }
.teyo-large-copy { max-width: 650px; margin: 22px 0 0; color: var(--teyo-muted); font-size: 15px; line-height: 1.75; }
.teyo-check-list { margin: 34px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.teyo-check-list li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; }
.teyo-check-list i { width: 30px; height: 30px; display: grid; place-items: center; color: var(--teyo-accent-ink); border-radius: 10px; background: var(--teyo-accent); font-size: 10px; font-style: normal; font-weight: 900; }
.teyo-check-list li > span { display: grid; gap: 3px; }
.teyo-check-list strong { font-size: 12px; }
.teyo-check-list small { color: var(--teyo-muted); font-size: 10px; }

.teyo-price-card { position: relative; z-index: 2; padding: 31px; border: 1px solid var(--teyo-line-strong); border-radius: 23px; background: rgba(4, 14, 24, 0.78); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28); backdrop-filter: blur(10px); }
.teyo-price-label { color: var(--teyo-accent); font-size: 8px; font-weight: 900; letter-spacing: 0.17em; }
.teyo-price { display: flex; align-items: flex-start; gap: 8px; margin: 21px 0 7px; }
.teyo-price sup { margin-top: 12px; color: var(--teyo-muted); font-size: 11px; font-weight: 900; }
.teyo-price strong { font-size: clamp(50px, 5vw, 67px); line-height: 0.9; letter-spacing: -0.06em; }
.teyo-price-pending strong { font-size: 34px; }
.teyo-price-card > p { margin: 0 0 26px; color: var(--teyo-muted); font-size: 10px; line-height: 1.6; }
.teyo-price-card .teyo-button { width: 100%; }
.teyo-payment-note { display: flex; align-items: center; gap: 8px; margin: 18px 0; color: var(--teyo-text); font-size: 10px; font-weight: 700; }
.teyo-payment-note span { color: var(--teyo-accent); font-size: 17px; }
.teyo-price-card > small { display: block; color: #698097; font-size: 8px; line-height: 1.6; }

/* Releases */

.teyo-release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.teyo-release-card { padding: 27px; border: 1px solid var(--teyo-line); border-radius: 22px; background: var(--teyo-surface); }
.teyo-release-top { display: flex; align-items: center; justify-content: space-between; }
.teyo-release-icon { width: 47px; height: 47px; display: grid; place-items: center; color: var(--teyo-accent); border-radius: 14px; background: var(--teyo-accent-soft); }
.teyo-release-top > span { padding: 6px 9px; color: var(--teyo-accent); border: 1px solid rgba(37, 215, 176, 0.2); border-radius: 999px; background: rgba(37, 215, 176, 0.05); font-size: 8px; font-weight: 900; }
.teyo-release-card h3 { margin: 28px 0 18px; font-size: 23px; letter-spacing: -0.035em; }
.teyo-release-card dl { margin: 0 0 23px; display: grid; }
.teyo-release-card dl > div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--teyo-line); font-size: 10px; }
.teyo-release-card dt { color: var(--teyo-muted); }
.teyo-release-card dd { margin: 0; font-weight: 750; text-align: right; }
.teyo-release-card .teyo-button { width: 100%; }
.teyo-empty-release { min-height: 280px; display: grid; place-items: center; padding: 45px; border: 1px dashed var(--teyo-line-strong); border-radius: 24px; background: rgba(255, 255, 255, 0.012); text-align: center; }
.teyo-empty-release > span { color: var(--teyo-accent); font-size: 8px; font-weight: 900; letter-spacing: 0.16em; }
.teyo-empty-release h3 { margin: 12px 0 0; font-size: 25px; }
.teyo-empty-release p { margin: 8px 0 22px; color: var(--teyo-muted); font-size: 12px; }

/* Reseller */

.teyo-reseller-panel { position: relative; min-height: 500px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr); align-items: center; gap: 80px; padding: clamp(50px, 7vw, 90px); overflow: hidden; border: 1px solid rgba(101, 165, 255, 0.26); border-radius: 34px; background: linear-gradient(135deg, #10253e, #0a1727 70%); }
.teyo-reseller-orb { position: absolute; left: -150px; bottom: -230px; width: 520px; height: 520px; border: 1px solid rgba(37, 215, 176, 0.16); border-radius: 50%; box-shadow: inset 0 0 110px rgba(37, 215, 176, 0.05); }
.teyo-reseller-copy { position: relative; z-index: 2; }
.teyo-reseller-copy h2 { max-width: 680px; margin: 0; font-size: clamp(40px, 5vw, 67px); line-height: 1; letter-spacing: -0.055em; }
.teyo-reseller-copy > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--teyo-muted); font-size: 14px; line-height: 1.75; }
.teyo-reseller-side { position: relative; z-index: 2; }
.teyo-reseller-side ul { margin: 0 0 30px; padding: 0; display: grid; list-style: none; }
.teyo-reseller-side li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--teyo-line); font-size: 12px; font-weight: 750; }
.teyo-reseller-side li span { color: var(--teyo-accent); font-size: 8px; font-weight: 900; }
.teyo-reseller-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Trust */

.teyo-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--teyo-line); border-left: 1px solid var(--teyo-line); }
.teyo-trust-grid article { min-height: 310px; display: flex; align-items: flex-start; flex-direction: column; padding: 28px; border-right: 1px solid var(--teyo-line); border-bottom: 1px solid var(--teyo-line); background: rgba(255, 255, 255, 0.012); }
.teyo-trust-grid article > span { color: var(--teyo-muted); font-size: 8px; font-weight: 900; }
.teyo-trust-grid .teyo-card-icon { margin-top: auto; color: var(--teyo-accent); }
.teyo-trust-grid h3 { margin: 22px 0 9px; font-size: 17px; }
.teyo-trust-grid p { margin: 0; color: var(--teyo-muted); font-size: 11px; line-height: 1.7; }

/* FAQ */

.teyo-faq-layout { display: grid; grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr); align-items: start; gap: clamp(60px, 9vw, 130px); }
.teyo-faq-layout .teyo-section-head { position: sticky; top: 115px; margin: 0; }
.teyo-faq-list { display: grid; border-top: 1px solid var(--teyo-line); }
.teyo-faq-item { border-bottom: 1px solid var(--teyo-line); }
.teyo-faq-item summary { min-height: 82px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 15px; padding: 20px 3px; color: var(--teyo-text); cursor: pointer; list-style: none; font-size: 14px; font-weight: 750; }
.teyo-faq-item summary::-webkit-details-marker { display: none; }
.teyo-faq-item summary > span { color: var(--teyo-accent); font-size: 8px; font-weight: 900; }
.teyo-faq-item summary i { position: relative; width: 24px; height: 24px; border: 1px solid var(--teyo-line-strong); border-radius: 50%; }
.teyo-faq-item summary i::before, .teyo-faq-item summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--teyo-muted); transform: translate(-50%, -50%); transition: transform 180ms ease; }
.teyo-faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.teyo-faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.teyo-faq-item > div { padding: 0 44px 25px 52px; }
.teyo-faq-item p { margin: 0; color: var(--teyo-muted); font-size: 12px; line-height: 1.8; }

/* Support */

.teyo-support-section { padding-bottom: 130px; background: radial-gradient(600px 350px at 50% 100%, rgba(37, 215, 176, 0.09), transparent 72%); }
.teyo-support-head { max-width: 720px; margin-bottom: 50px; }
.teyo-support-head h2 { margin: 0; font-size: clamp(42px, 6vw, 75px); line-height: 0.96; letter-spacing: -0.06em; }
.teyo-support-head > p:last-child { margin: 20px 0 0; color: var(--teyo-muted); font-size: 15px; line-height: 1.7; }
.teyo-support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.teyo-support-grid > a { position: relative; min-height: 230px; display: flex; align-items: flex-start; flex-direction: column; padding: 25px; color: var(--teyo-text); border: 1px solid var(--teyo-line); border-radius: 20px; background: var(--teyo-surface); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease; }
.teyo-support-grid > a:hover { transform: translateY(-4px); border-color: rgba(37, 215, 176, 0.44); }
.teyo-support-grid .teyo-card-icon { color: var(--teyo-accent); }
.teyo-support-grid a > span { margin-top: auto; color: var(--teyo-accent); font-size: 8px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.teyo-support-grid strong { margin-top: 8px; font-size: 18px; }
.teyo-support-grid small { margin-top: 6px; color: var(--teyo-muted); font-size: 10px; line-height: 1.55; }
.teyo-support-grid a > b { position: absolute; top: 24px; right: 24px; color: var(--teyo-muted); font-size: 17px; font-weight: 400; }

/* Final call to action */

.teyo-final-cta { padding: 105px 0; border-top: 1px solid var(--teyo-line); background: var(--teyo-accent); color: var(--teyo-accent-ink); }
.teyo-final-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr); align-items: end; gap: 70px; }
.teyo-final-cta span { font-size: 9px; font-weight: 900; letter-spacing: 0.18em; }
.teyo-final-cta h2 { margin: 15px 0 0; color: var(--teyo-accent-ink); font-size: clamp(50px, 7vw, 90px); line-height: 0.88; letter-spacing: -0.07em; }
.teyo-final-cta p { margin: 0 0 23px; color: rgba(3, 27, 22, 0.7); font-size: 14px; line-height: 1.65; }
.teyo-final-cta .teyo-button-primary { color: var(--teyo-text); border-color: var(--teyo-bg); background: var(--teyo-bg); box-shadow: none; }
.teyo-final-cta .teyo-button-primary:hover { color: var(--teyo-text); background: #0a1b2e; }

/* Footer */

.teyo-footer {
    width: 100%;
    min-height: 0;
    margin: 0;
    display: block;
    padding: 76px 0 28px;
    border: 0;
    background: var(--teyo-bg-deep);
}

.teyo-footer-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(120px, 0.5fr)); gap: 55px; }
.teyo-footer-brand > p { max-width: 430px; margin: 24px 0 0; color: var(--teyo-muted); font-size: 11px; line-height: 1.75; }
.teyo-socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.teyo-socials a { color: var(--teyo-muted); font-size: 10px; font-weight: 750; text-decoration: none; }
.teyo-footer nav { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.teyo-footer nav strong { margin-bottom: 7px; color: var(--teyo-text); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.teyo-footer nav a { color: var(--teyo-muted); font-size: 11px; text-decoration: none; }
.teyo-footer nav a:hover, .teyo-socials a:hover { color: var(--teyo-accent); }
.teyo-footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 65px; padding-top: 23px; border-top: 1px solid var(--teyo-line); }
.teyo-footer-bottom p { margin: 0; color: #60758b; font-size: 8px; line-height: 1.5; }

/* Browser-local support bot */

.teyo-bot-launch {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    min-width: 252px;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 15px 10px 10px;
    color: var(--teyo-text);
    border: 1px solid rgba(37, 215, 176, 0.36);
    border-radius: 18px;
    background: rgba(9, 27, 46, 0.96);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    cursor: pointer;
}
.teyo-bot-launch-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--teyo-accent-ink); border-radius: 13px; background: var(--teyo-accent); }
.teyo-bot-launch > span:nth-child(2) { display: grid; gap: 3px; text-align: left; }
.teyo-bot-launch strong { font-size: 12px; }
.teyo-bot-launch small { color: var(--teyo-muted); font-size: 8px; }
.teyo-bot-launch > i { width: 7px; height: 7px; border-radius: 50%; background: var(--teyo-accent); box-shadow: 0 0 0 5px rgba(37, 215, 176, 0.09); }

.teyo-bot {
    position: fixed;
    right: 22px;
    bottom: 104px;
    z-index: 125;
    width: min(390px, calc(100vw - 28px));
    max-height: min(680px, calc(100vh - 126px));
    overflow: hidden;
    color: var(--teyo-text);
    border: 1px solid rgba(145, 174, 205, 0.28);
    border-radius: 23px;
    background: #091827;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
}
.teyo-bot[hidden] { display: none !important; }
.teyo-bot-head { min-height: 74px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--teyo-line); background: #0d2136; }
.teyo-bot-avatar .teyo-brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
.teyo-bot-head > div { display: grid; gap: 4px; }
.teyo-bot-head strong { font-size: 13px; }
.teyo-bot-head small { color: var(--teyo-muted); font-size: 9px; }
.teyo-bot-head small i { width: 6px; height: 6px; display: inline-block; margin-right: 5px; border-radius: 50%; background: var(--teyo-accent); }
.teyo-bot-close { width: 36px; height: 36px; color: var(--teyo-muted); border: 1px solid var(--teyo-line); border-radius: 10px; background: transparent; font-size: 23px; line-height: 1; cursor: pointer; }
.teyo-bot-close:hover { color: var(--teyo-text); border-color: var(--teyo-line-strong); }
.teyo-bot-languages { display: flex; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--teyo-line); }
.teyo-bot-languages button { min-width: 42px; padding: 7px 10px; color: var(--teyo-muted); border: 1px solid var(--teyo-line); border-radius: 9px; background: transparent; font-size: 9px; font-weight: 900; cursor: pointer; }
.teyo-bot-languages button[aria-pressed="true"] { color: var(--teyo-accent-ink); border-color: var(--teyo-accent); background: var(--teyo-accent); }
.teyo-bot-messages { height: 245px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; padding: 15px 14px; scrollbar-color: var(--teyo-surface-3) transparent; }
.teyo-bot-message { max-width: 88%; }
.teyo-bot-message p { margin: 0; padding: 11px 13px; border-radius: 14px; font-size: 11px; line-height: 1.6; overflow-wrap: anywhere; }
.teyo-bot-message.is-bot { align-self: flex-start; }
.teyo-bot-message.is-bot p { color: #c7d5e3; border: 1px solid var(--teyo-line); border-bottom-left-radius: 4px; background: var(--teyo-surface); }
.teyo-bot-message.is-user { align-self: flex-end; }
.teyo-bot-message.is-user p { color: var(--teyo-accent-ink); border-bottom-right-radius: 4px; background: var(--teyo-accent); font-weight: 650; }
.teyo-bot-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.teyo-bot-actions a { padding: 7px 9px; color: var(--teyo-accent); border: 1px solid rgba(37, 215, 176, 0.28); border-radius: 8px; background: rgba(37, 215, 176, 0.07); font-size: 8px; font-weight: 850; text-decoration: none; }
.teyo-bot-suggestions { display: flex; gap: 7px; overflow-x: auto; padding: 0 14px 11px; scrollbar-width: none; }
.teyo-bot-suggestions::-webkit-scrollbar { display: none; }
.teyo-bot-suggestions button { flex: 0 0 auto; max-width: 220px; padding: 8px 10px; overflow: hidden; color: var(--teyo-muted); border: 1px solid var(--teyo-line); border-radius: 999px; background: rgba(255, 255, 255, 0.02); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; }
.teyo-bot-suggestions button:hover { color: var(--teyo-accent); border-color: rgba(37, 215, 176, 0.35); }
.teyo-bot-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 11px 14px; border-top: 1px solid var(--teyo-line); }
.teyo-bot-form input { min-width: 0; height: 45px; padding: 0 13px; color: var(--teyo-text); caret-color: var(--teyo-accent); border: 1px solid var(--teyo-line-strong); border-radius: 12px; outline: 0; background: #061321; font: inherit; font-size: 11px; }
.teyo-bot-form input:focus { border-color: var(--teyo-accent); box-shadow: 0 0 0 3px rgba(37, 215, 176, 0.08); }
.teyo-bot-form button { width: 45px; height: 45px; color: var(--teyo-accent-ink); border: 0; border-radius: 12px; background: var(--teyo-accent); font-size: 18px; font-weight: 900; cursor: pointer; }
.teyo-bot-privacy { margin: 0; padding: 0 14px 12px; color: #60758b; font-size: 7px; line-height: 1.45; text-align: center; }
.teyo-bot[dir="rtl"] .teyo-bot-head,
.teyo-bot[dir="rtl"] .teyo-bot-form { direction: rtl; }
.teyo-bot[dir="rtl"] .teyo-bot-message.is-bot { align-self: flex-start; }
.teyo-bot[dir="rtl"] .teyo-bot-message.is-user { align-self: flex-end; }

@keyframes teyo-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 5px rgba(37, 215, 176, 0.08); }
    50% { opacity: 0.65; box-shadow: 0 0 0 9px rgba(37, 215, 176, 0.02); }
}

/* Responsive */

@media (max-width: 1120px) {
    .teyo-nav { gap: 17px; }
    .teyo-nav a { font-size: 11px; }
    .teyo-hero-grid { grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr); gap: 45px; }
    .teyo-player-body { min-height: 340px; }
    .teyo-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teyo-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teyo-capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .teyo-wrap { width: min(100% - 38px, 760px); }
    .teyo-header-inner { min-height: 70px; }
    .teyo-menu-button { width: 42px; height: 42px; margin-left: auto; display: grid; place-content: center; gap: 4px; border: 1px solid var(--teyo-line-strong); border-radius: 11px; background: var(--teyo-surface); cursor: pointer; }
    .teyo-menu-button span { width: 17px; height: 1px; display: block; background: var(--teyo-text); }
    .teyo-nav { position: fixed; inset: 70px 0 auto; max-height: calc(100vh - 70px); display: none; align-items: stretch; flex-direction: column; gap: 0; overflow-y: auto; margin: 0; padding: 10px 19px 21px; border-bottom: 1px solid var(--teyo-line); background: rgba(6, 17, 31, 0.98); }
    .teyo-menu-check:checked ~ .teyo-nav { display: flex; }
    .teyo-nav a { padding: 14px 5px; border-bottom: 1px solid var(--teyo-line); font-size: 13px; }
    .teyo-nav .teyo-nav-cta { margin-top: 12px; border-bottom: 0; }
    .teyo-hero { min-height: 0; padding-top: 76px; }
    .teyo-hero-grid { grid-template-columns: 1fr; gap: 88px; }
    .teyo-hero-copy { max-width: 680px; }
    .teyo-hero h1 { font-size: clamp(55px, 10vw, 80px); }
    .teyo-hero-visual { width: min(680px, 92%); margin-inline: auto; }
    .teyo-player-shell { transform: none; }
    .teyo-float-trial { right: -18px; }
    .teyo-section { padding: 88px 0; }
    .teyo-section-head-split { grid-template-columns: 1fr; gap: 22px; }
    .teyo-section-head-split > p:last-child { margin: 0; }
    .teyo-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teyo-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teyo-feature-card, .teyo-feature-card:nth-child(n) { grid-column: span 6; min-height: 300px; }
    .teyo-activation-panel, .teyo-reseller-panel { grid-template-columns: 1fr; gap: 55px; }
    .teyo-price-card { max-width: 490px; }
    .teyo-release-grid, .teyo-support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teyo-faq-layout { grid-template-columns: 1fr; gap: 45px; }
    .teyo-faq-layout .teyo-section-head { position: static; }
    .teyo-final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .teyo-final-cta-inner > div:last-child { max-width: 530px; }
    .teyo-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .teyo-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .teyo-wrap { width: min(100% - 28px, 560px); }
    .teyo-brand-copy strong { font-size: 12px; }
    .teyo-hero { padding-top: 58px; }
    .teyo-live-pill { white-space: normal; line-height: 1.45; }
    .teyo-hero h1 { font-size: clamp(47px, 15vw, 68px); }
    .teyo-hero-lead { margin-top: 23px; font-size: 14px; }
    .teyo-hero-actions { display: grid; grid-template-columns: 1fr; }
    .teyo-hero-actions .teyo-button { width: 100%; }
    .teyo-hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .teyo-hero-facts span, .teyo-hero-facts span:first-child { padding: 0 0 0 12px; border-left: 1px solid var(--teyo-line); }
    .teyo-hero-visual { width: 100%; }
    .teyo-player-body { min-height: 260px; grid-template-columns: 48px 1fr; }
    .teyo-demo-rail { padding: 15px 8px; }
    .teyo-demo-rail span { height: 26px; }
    .teyo-demo-content { padding: 17px 12px; }
    .teyo-demo-heading strong { font-size: 18px; }
    .teyo-demo-heading > span { width: 78px; height: 23px; }
    .teyo-demo-chips span { width: 48px; height: 15px; }
    .teyo-demo-grid { gap: 6px; }
    .teyo-demo-grid article { padding: 7px; border-radius: 8px; }
    .teyo-float-card { transform: scale(0.86); }
    .teyo-float-trial { top: -34px; right: -15px; transform-origin: right bottom; }
    .teyo-float-sync { right: -13px; bottom: -36px; transform-origin: right top; }
    .teyo-stat-ribbon { grid-template-columns: 1fr; }
    .teyo-stat-ribbon > div { border-top: 1px solid var(--teyo-line); border-left: 0; }
    .teyo-stat-ribbon > div:first-child { border-top: 0; }
    .teyo-section { padding: 72px 0; }
    .teyo-section-head { margin-bottom: 38px; }
    .teyo-section-head h2 { font-size: clamp(36px, 12vw, 52px); }
    .teyo-platform-grid, .teyo-step-grid, .teyo-release-grid, .teyo-support-grid, .teyo-shot-grid { grid-template-columns: 1fr; }
    .teyo-capability-grid { grid-template-columns: 1fr; }
    .teyo-capability-card { min-height: 215px; }
    .teyo-product-note { grid-template-columns: auto 1fr; }
    .teyo-product-note a { grid-column: 2; white-space: normal; }
    .teyo-platform-card { min-height: 220px; }
    .teyo-step-grid li { min-height: 185px; padding: 24px; }
    .teyo-feature-bento { grid-template-columns: 1fr; }
    .teyo-feature-card, .teyo-feature-card:nth-child(n) { grid-column: auto; min-height: 270px; padding: 24px; }
    .teyo-activation-panel, .teyo-reseller-panel { width: min(100% - 20px, 560px); padding: 34px 23px; border-radius: 25px; }
    .teyo-activation-copy h2, .teyo-reseller-copy h2 { font-size: clamp(39px, 12vw, 55px); }
    .teyo-trust-grid { grid-template-columns: 1fr; }
    .teyo-trust-grid article { min-height: 250px; }
    .teyo-faq-item summary { grid-template-columns: 27px 1fr auto; font-size: 13px; }
    .teyo-faq-item > div { padding-left: 42px; }
    .teyo-final-cta { padding: 78px 0; }
    .teyo-final-cta h2 { font-size: clamp(51px, 16vw, 72px); }
    .teyo-footer { padding-top: 60px; }
    .teyo-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
    .teyo-footer-brand { grid-column: 1 / -1; }
    .teyo-footer nav:last-child { grid-column: 1 / -1; }
    .teyo-footer-bottom { align-items: flex-start; flex-direction: column; }
    .teyo-bot-launch { right: 14px; bottom: 14px; min-width: 0; width: 54px; min-height: 54px; grid-template-columns: 1fr; padding: 6px; border-radius: 16px; }
    .teyo-bot-launch-icon { width: 40px; height: 40px; margin: auto; }
    .teyo-bot-launch > span:nth-child(2), .teyo-bot-launch > i { display: none; }
    .teyo-bot { right: 14px; bottom: 78px; width: calc(100vw - 28px); max-height: calc(100vh - 94px); }
    .teyo-bot-messages { height: min(290px, 35vh); }
}

@media (max-width: 390px) {
    .teyo-brand-copy small { display: none; }
    .teyo-hero h1 { font-size: 45px; }
    .teyo-player-body { grid-template-columns: 40px 1fr; }
    .teyo-demo-grid { grid-template-columns: repeat(2, 1fr); }
    .teyo-demo-grid article:nth-child(n + 5) { display: none; }
    .teyo-price-card { padding: 24px 20px; }
    .teyo-footer-grid { grid-template-columns: 1fr; }
    .teyo-footer nav:last-child { grid-column: auto; }
}

@media (min-width: 1650px) {
    .teyo-wrap { width: min(1380px, calc(100% - 80px)); }
    .teyo-hero-grid { grid-template-columns: minmax(0, 0.83fr) minmax(590px, 1.17fr); }
    .teyo-player-body { min-height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
    .teyo-landing-v2 *,
    .teyo-landing-v2 *::before,
    .teyo-landing-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* v0.17.4 — compact, safe mobile footer ------------------------------- */

@media (max-width: 640px) {
    .teyo-footer {
        padding: 42px 0 calc(98px + env(safe-area-inset-bottom));
    }

    .teyo-footer-grid,
    .teyo-footer-grid.teyo-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 14px;
    }

    .teyo-footer-brand {
        grid-column: 1 / -1;
    }

    .teyo-footer-brand .teyo-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 11px;
    }

    .teyo-footer-brand > p {
        max-width: none;
        margin-top: 16px;
        font-size: 10px;
        line-height: 1.65;
    }

    .teyo-footer nav,
    .teyo-footer nav:last-child {
        grid-column: auto;
        min-width: 0;
        gap: 9px;
    }

    .teyo-footer nav strong {
        margin-bottom: 3px;
        font-size: 8px;
    }

    .teyo-footer nav a {
        font-size: 10px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .teyo-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 34px;
        padding-top: 18px;
        padding-right: 70px;
    }

    .teyo-footer-bottom p {
        font-size: 7px;
    }
}

@media (max-width: 330px) {
    .teyo-footer-grid,
    .teyo-footer-grid.teyo-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .teyo-footer nav:last-child {
        grid-column: 1 / -1;
    }
}

/* v0.18.3 — prominent public reseller recruitment CTA ---------------- */

.teyo-nav a:not(.teyo-nav-cta):not(.teyo-nav-reseller)::after {
    content: "";
}

.teyo-nav .teyo-nav-reseller {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--teyo-text);
    border: 1px solid rgba(37, 215, 176, 0.42);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 215, 176, 0.13), rgba(101, 165, 255, 0.08));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.teyo-nav .teyo-nav-reseller::after { display: none; }
.teyo-nav .teyo-nav-reseller b { color: var(--teyo-accent); font-size: 15px; font-weight: 700; }
.teyo-nav .teyo-nav-reseller:hover {
    color: var(--teyo-text);
    border-color: var(--teyo-accent);
    background: rgba(37, 215, 176, 0.15);
    box-shadow: 0 10px 28px rgba(37, 215, 176, 0.12);
}

.teyo-hero-reseller-cta {
    width: min(100%, 650px);
    min-height: 86px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 14px 16px;
    color: var(--teyo-text);
    border: 1px solid rgba(37, 215, 176, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(260px 100px at 0 50%, rgba(37, 215, 176, 0.12), transparent 72%),
        rgba(8, 27, 43, 0.78);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.teyo-hero-reseller-cta:hover {
    color: var(--teyo-text);
    border-color: rgba(37, 215, 176, 0.7);
    background:
        radial-gradient(300px 120px at 0 50%, rgba(37, 215, 176, 0.17), transparent 72%),
        rgba(10, 31, 49, 0.94);
    transform: translateY(-2px);
}

.teyo-hero-reseller-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--teyo-accent-ink);
    border-radius: 13px;
    background: var(--teyo-accent);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(37, 215, 176, 0.18);
}

.teyo-hero-reseller-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.teyo-hero-reseller-copy small {
    color: var(--teyo-accent);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.teyo-hero-reseller-copy strong {
    color: var(--teyo-text);
    font-size: 15px;
    line-height: 1.25;
}

.teyo-hero-reseller-copy em {
    color: var(--teyo-muted);
    font-size: 10px;
    font-style: normal;
    line-height: 1.45;
}

.teyo-hero-reseller-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--teyo-text);
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}

.teyo-hero-reseller-link b { color: var(--teyo-accent); font-size: 14px; }

@media (max-width: 1120px) and (min-width: 901px) {
    .teyo-nav .teyo-nav-reseller {
        padding-inline: 12px;
    }

    .teyo-nav .teyo-nav-reseller span {
        max-width: 84px;
        line-height: 1.15;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .teyo-nav .teyo-nav-reseller {
        width: 100%;
        min-height: 48px;
        margin-top: 12px;
        padding: 13px 15px;
        border-bottom: 1px solid rgba(37, 215, 176, 0.42);
    }

    .teyo-nav .teyo-nav-reseller span {
        max-width: none;
    }

    .teyo-nav .teyo-nav-cta {
        margin-top: 8px;
    }
}

@media (max-width: 640px) {
    .teyo-hero-reseller-cta {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        margin-top: 17px;
        padding: 14px;
    }

    .teyo-hero-reseller-icon {
        width: 42px;
        height: 42px;
    }

    .teyo-hero-reseller-link {
        grid-column: 2;
        justify-self: start;
        margin-top: 4px;
    }
}
