:root {
    color-scheme: dark;
    --watch-bg: #040713;
    --watch-surface: rgba(15, 23, 42, 0.72);
    --watch-surface-strong: #111a30;
    --watch-surface-soft: rgba(255, 255, 255, 0.045);
    --watch-text: #f7f9ff;
    --watch-muted: #aab5cc;
    --watch-border: rgba(255, 255, 255, 0.11);
    --watch-blue: #6aa9ff;
    --watch-violet: #a78bfa;
    --watch-coral: #ff936f;
    --watch-mint: #5eead4;
    --watch-glow: rgba(106, 169, 255, 0.25);
    --watch-radius: 28px;
    --watch-container: 1180px;
    --watch-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--watch-bg);
}

body.watch-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--watch-text);
    background:
        radial-gradient(circle at 9% 9%, rgba(74, 116, 255, 0.18), transparent 28rem),
        radial-gradient(circle at 90% 18%, rgba(167, 139, 250, 0.14), transparent 26rem),
        radial-gradient(circle at 50% 72%, rgba(255, 147, 111, 0.075), transparent 30rem),
        var(--watch-bg);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.watch-page:lang(he) {
    font-family: "Heebo", system-ui, sans-serif;
}

.watch-page:lang(ar) {
    font-family: "Almarai", system-ui, sans-serif;
}

.watch-page:lang(ru) {
    font-family: "Manrope", system-ui, sans-serif;
}

.watch-page :where(h1, h2, h3, p) {
    margin-top: 0;
}

.watch-page :where(h1, h2, h3) {
    color: var(--watch-text);
    font-family: "Outfit", "Manrope", system-ui, sans-serif;
    line-height: 1.08;
    text-wrap: balance;
}

.watch-page:lang(he) :where(h1, h2, h3) {
    font-family: "Rubik", "Heebo", system-ui, sans-serif;
}

.watch-page:lang(ar) :where(h1, h2, h3) {
    font-family: "Readex Pro", "Almarai", system-ui, sans-serif;
}

.watch-page a {
    color: inherit;
}

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

.watch-page button,
.watch-page summary,
.watch-page a {
    -webkit-tap-highlight-color: transparent;
}

.watch-page :focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    border-radius: 6px;
}

.watch-skip-link {
    position: fixed;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    z-index: 100;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #09101e;
    background: #fff;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.watch-skip-link:focus {
    transform: translateY(0);
}

.watch-container {
    width: min(100% - 40px, var(--watch-container));
    margin-inline: auto;
}

.watch-nav {
    position: sticky;
    inset-block-start: 0;
    z-index: 50;
    border-block-end: 1px solid var(--watch-border);
    background: rgba(4, 7, 19, 0.78);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    backdrop-filter: blur(20px) saturate(150%);
}

.watch-nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.watch-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    color: var(--watch-text);
    font-family: "Outfit", "Manrope", system-ui, sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.watch-brand img {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.watch-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.watch-nav-link,
.watch-locale summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--watch-border);
    border-radius: 999px;
    color: var(--watch-muted);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.watch-nav-link:hover,
.watch-locale summary:hover,
.watch-locale[open] summary {
    border-color: rgba(106, 169, 255, 0.65);
    color: var(--watch-text);
    background: rgba(106, 169, 255, 0.1);
}

.watch-locale {
    position: relative;
}

.watch-locale summary {
    cursor: pointer;
    list-style: none;
}

.watch-locale summary::-webkit-details-marker {
    display: none;
}

.watch-locale summary::after {
    content: "⌄";
    transform: translateY(-1px);
}

.watch-locale[open] summary::after {
    transform: rotate(180deg) translateY(-1px);
}

.watch-locale-menu {
    position: absolute;
    inset-block-start: calc(100% + 0.7rem);
    inset-inline-end: 0;
    width: 210px;
    display: grid;
    gap: 0.25rem;
    padding: 0.55rem;
    border: 1px solid var(--watch-border);
    border-radius: 18px;
    background: #0d1427;
    box-shadow: var(--watch-shadow);
}

.watch-locale-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0.5rem 0.7rem;
    border-radius: 11px;
    color: var(--watch-muted);
    text-decoration: none;
}

.watch-locale-menu a:hover,
.watch-locale-menu a[aria-current="page"] {
    color: var(--watch-text);
    background: rgba(106, 169, 255, 0.12);
}

.watch-locale-menu a[aria-current="page"]::after {
    content: "•";
    color: var(--watch-blue);
}

.watch-hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding-block: 7rem 5.2rem;
}

.watch-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 4.5rem 8% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 169, 255, 0.35), transparent);
}

.watch-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
}

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

.watch-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-block-end: 1.35rem;
    padding: 0.55rem 0.82rem;
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 999px;
    color: #bffbf2;
    background: rgba(94, 234, 212, 0.07);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.watch-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--watch-mint);
    box-shadow: 0 0 16px rgba(94, 234, 212, 0.9);
}

.watch-hero h1 {
    max-width: 720px;
    margin-block-end: 1.35rem;
    font-size: clamp(3.15rem, 6.4vw, 6.3rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

:where([dir="rtl"], :lang(zh)) .watch-hero h1,
:where([dir="rtl"], :lang(zh)) .watch-section h2 {
    letter-spacing: 0;
}

.watch-gradient-text {
    color: transparent;
    background: linear-gradient(115deg, #ffffff 10%, #a9cfff 44%, #c5afff 70%, #ffb198);
    -webkit-background-clip: text;
    background-clip: text;
}

.watch-lede {
    max-width: 660px;
    margin-block-end: 1.45rem;
    color: var(--watch-muted);
    font-size: clamp(1.06rem, 1.5vw, 1.24rem);
    line-height: 1.75;
}

.watch-release {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-block: 0 1.7rem;
    padding: 0.72rem 0.9rem;
    border-inline-start: 3px solid var(--watch-coral);
    border-radius: 4px 12px 12px 4px;
    color: #ffd8ca;
    background: rgba(255, 147, 111, 0.08);
    font-size: 0.88rem;
    font-weight: 700;
}

[dir="rtl"] .watch-release {
    border-radius: 12px 4px 4px 12px;
}

.watch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.watch-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1.2rem;
    border: 1px solid var(--watch-border);
    border-radius: 999px;
    color: var(--watch-text);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.watch-button-primary {
    border-color: transparent;
    color: #07101f;
    background: linear-gradient(135deg, #94c5ff, #bdadff);
    box-shadow: 0 14px 34px rgba(106, 169, 255, 0.24);
}

.watch-button:hover {
    transform: translateY(-2px);
    border-color: rgba(106, 169, 255, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.watch-hero-art {
    position: relative;
    min-height: 535px;
    display: grid;
    place-items: center;
}

.watch-hero-art::before,
.watch-hero-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.watch-hero-art::before {
    width: min(92%, 500px);
    aspect-ratio: 1;
    border: 1px solid rgba(106, 169, 255, 0.14);
    box-shadow:
        inset 0 0 90px rgba(106, 169, 255, 0.07),
        0 0 100px rgba(106, 169, 255, 0.08);
}

.watch-hero-art::after {
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(106, 169, 255, 0.19), rgba(167, 139, 250, 0.06) 52%, transparent 70%);
    filter: blur(6px);
}

.watch-device {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.48));
}

.watch-device::before,
.watch-device::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset-inline-start: 50%;
    width: 74px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 45%, rgba(255, 255, 255, 0.04)),
        #11182a;
    transform: translateX(-50%);
}

[dir="rtl"] .watch-device::before,
[dir="rtl"] .watch-device::after {
    transform: translateX(50%);
}

.watch-device::before {
    inset-block-end: 54%;
    border-radius: 28px 28px 10px 10px;
}

.watch-device::after {
    inset-block-start: 54%;
    border-radius: 10px 10px 28px 28px;
}

.watch-device-apple {
    inset-inline-start: 6%;
    inset-block-start: 22%;
    transform: rotate(-7deg);
}

.watch-device-wear {
    inset-inline-end: 0;
    inset-block-end: 13%;
    transform: rotate(7deg);
}

.watch-case {
    position: relative;
    z-index: 2;
    padding: 9px;
    background: linear-gradient(145deg, #9099a9, #283043 42%, #737d90 76%, #20283a);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 0 0 15px rgba(255, 255, 255, 0.06);
}

.watch-device-apple .watch-case {
    width: 224px;
    height: 262px;
    border-radius: 61px;
}

.watch-device-apple .watch-case::after {
    content: "";
    position: absolute;
    inset-inline-end: -13px;
    inset-block-start: 74px;
    width: 12px;
    height: 42px;
    border-radius: 0 9px 9px 0;
    background: linear-gradient(90deg, #475164, #8b95a6);
}

[dir="rtl"] .watch-device-apple .watch-case::after {
    border-radius: 9px 0 0 9px;
}

.watch-device-wear .watch-case {
    width: 225px;
    height: 225px;
    border-radius: 50%;
}

.watch-device-wear .watch-case::after {
    content: "";
    position: absolute;
    inset-inline-end: -10px;
    inset-block-start: 81px;
    width: 14px;
    height: 47px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(90deg, #344052, #707c90);
}

[dir="rtl"] .watch-device-wear .watch-case::after {
    border-radius: 8px 0 0 8px;
}

.watch-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 50% 28%, rgba(92, 141, 255, 0.2), transparent 48%),
        #060a13;
}

.watch-device-apple .watch-screen {
    border-radius: 52px;
}

.watch-device-wear .watch-screen {
    border-radius: 50%;
    padding-inline: 1.2rem;
}

.watch-screen-mark {
    width: 38px;
    height: 38px;
    margin-block-end: 0.8rem;
    border-radius: 11px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.36);
}

.watch-screen-label {
    margin-block-end: 0.3rem;
    color: #dbeafe;
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.watch-waveform {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-block: 0.55rem 0.85rem;
}

.watch-waveform span {
    width: 4px;
    height: var(--wave-height);
    border-radius: 99px;
    background: linear-gradient(180deg, var(--watch-mint), var(--watch-blue));
    box-shadow: 0 0 11px rgba(94, 234, 212, 0.35);
    transform-origin: center;
    animation: watch-wave 2.2s ease-in-out infinite;
    animation-delay: var(--wave-delay);
}

.watch-timer {
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.watch-transcript-preview {
    width: 76%;
    display: grid;
    gap: 7px;
}

.watch-transcript-preview span {
    display: block;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.19);
}

.watch-transcript-preview span:nth-child(2) {
    width: 78%;
    background: linear-gradient(90deg, var(--watch-violet), var(--watch-blue));
}

.watch-transcript-preview span:nth-child(3) {
    width: 57%;
}

.watch-time-chip {
    margin-block-start: 1rem;
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 999px;
    color: #d9ccff;
    background: rgba(167, 139, 250, 0.1);
    font-size: 0.63rem;
    font-weight: 800;
}

.watch-float-card {
    position: absolute;
    z-index: 6;
    max-width: 180px;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    color: #dce7ff;
    background: rgba(12, 18, 35, 0.84);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 0.7rem;
    font-weight: 800;
}

.watch-float-card::before {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--watch-mint);
    box-shadow: 0 0 14px rgba(94, 234, 212, 0.7);
}

.watch-float-sync {
    inset-inline-start: 0;
    inset-block-end: 9%;
}

.watch-float-cloud {
    inset-inline-end: 1%;
    inset-block-start: 13%;
}

.watch-float-cloud::before {
    background: var(--watch-violet);
    box-shadow: 0 0 14px rgba(167, 139, 250, 0.72);
}

.watch-platform-band {
    position: relative;
    z-index: 8;
    margin-block-start: -1.2rem;
}

.watch-platform-band-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--watch-border);
    border-radius: 24px;
    background: rgba(10, 15, 29, 0.8);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.watch-platform-intro {
    max-width: 220px;
    display: flex;
    align-items: center;
    padding-inline: 0.65rem 1.2rem;
    color: var(--watch-muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.watch-platform-card {
    min-height: 86px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.watch-platform-symbol {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(106, 169, 255, 0.25);
    border-radius: 17px;
    color: #ddebff;
    background: linear-gradient(145deg, rgba(106, 169, 255, 0.18), rgba(167, 139, 250, 0.08));
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.watch-platform-card strong,
.watch-platform-card span {
    display: block;
}

.watch-platform-card strong {
    color: var(--watch-text);
    font-size: 0.98rem;
}

.watch-platform-card span {
    color: var(--watch-muted);
    font-size: 0.78rem;
}

.watch-section {
    padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.watch-section-compact {
    padding-block: clamp(4rem, 7vw, 6.5rem);
}

.watch-section-kicker {
    margin-block-end: 0.75rem;
    color: #9cc9ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.watch-section-header {
    max-width: 770px;
    margin-block-end: 3.2rem;
}

.watch-section-header-center {
    margin-inline: auto;
    text-align: center;
}

.watch-section h2 {
    margin-block-end: 1rem;
    font-size: clamp(2.3rem, 4.6vw, 4.4rem);
    letter-spacing: -0.045em;
}

.watch-section-header p {
    margin-block-end: 0;
    color: var(--watch-muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.watch-workflow {
    counter-reset: watch-step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.watch-step {
    position: relative;
    min-height: 265px;
    padding: 1.4rem;
    overflow: hidden;
    border: 1px solid var(--watch-border);
    border-radius: var(--watch-radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(106, 169, 255, 0.12), transparent 13rem),
        var(--watch-surface-soft);
}

.watch-step::before {
    counter-increment: watch-step;
    content: "0" counter(watch-step);
    display: block;
    margin-block-end: 2.8rem;
    color: #92bfff;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.watch-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 3;
    inset-inline-end: -0.74rem;
    inset-block-start: 2.15rem;
    width: 1.45rem;
    height: 1.45rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--watch-border);
    border-radius: 50%;
    color: var(--watch-blue);
    background: #0c1325;
    font-size: 0.72rem;
}

[dir="rtl"] .watch-step:not(:last-child)::after {
    content: "←";
}

.watch-step h3 {
    margin-block-end: 0.7rem;
    font-size: 1.28rem;
}

.watch-step p {
    margin-block-end: 0;
    color: var(--watch-muted);
    font-size: 0.92rem;
}

.watch-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.watch-feature {
    min-height: 255px;
    padding: 1.45rem;
    border: 1px solid var(--watch-border);
    border-radius: var(--watch-radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.watch-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(106, 169, 255, 0.42);
    background: linear-gradient(145deg, rgba(106, 169, 255, 0.095), rgba(167, 139, 250, 0.035));
}

.watch-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-block-end: 2.2rem;
    border: 1px solid rgba(106, 169, 255, 0.25);
    border-radius: 15px;
    color: #cfe4ff;
    background: rgba(106, 169, 255, 0.09);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
}

.watch-feature h3 {
    margin-block-end: 0.65rem;
    font-size: 1.25rem;
}

.watch-feature p {
    margin-block-end: 0;
    color: var(--watch-muted);
    font-size: 0.92rem;
}

.watch-cloud-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(1.5rem, 5vw, 4rem);
    overflow: hidden;
    border: 1px solid var(--watch-border);
    border-radius: clamp(26px, 4vw, 44px);
    background:
        radial-gradient(circle at 12% 22%, rgba(106, 169, 255, 0.16), transparent 22rem),
        radial-gradient(circle at 94% 80%, rgba(167, 139, 250, 0.12), transparent 20rem),
        rgba(12, 18, 34, 0.78);
    box-shadow: var(--watch-shadow);
}

.watch-cloud-copy h2 {
    margin-block-end: 1rem;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.watch-cloud-copy p {
    color: var(--watch-muted);
}

.watch-plain-list {
    display: grid;
    gap: 0.72rem;
    padding: 0;
    margin: 1.4rem 0 0;
    list-style: none;
}

.watch-plain-list li {
    position: relative;
    padding-inline-start: 1.45rem;
    color: #dfe7f8;
    font-size: 0.92rem;
}

.watch-plain-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--watch-mint);
    box-shadow: 0 0 12px rgba(94, 234, 212, 0.65);
}

.watch-ecosystem {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
}

.watch-cloud-core {
    position: relative;
    z-index: 3;
    width: 145px;
    height: 145px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(106, 169, 255, 0.35);
    border-radius: 42px;
    color: var(--watch-text);
    background:
        radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.15), transparent 30%),
        linear-gradient(145deg, rgba(106, 169, 255, 0.24), rgba(167, 139, 250, 0.16)),
        #111a2e;
    box-shadow:
        0 0 0 16px rgba(106, 169, 255, 0.035),
        0 25px 60px rgba(0, 0, 0, 0.32);
    font-family: "Outfit", system-ui, sans-serif;
    font-weight: 900;
    text-align: center;
}

.watch-cloud-core::before,
.watch-cloud-core::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(106, 169, 255, 0.16);
    border-radius: 50%;
}

.watch-cloud-core::before {
    width: 255px;
    height: 255px;
}

.watch-cloud-core::after {
    width: 355px;
    height: 355px;
}

.watch-device-chip {
    position: absolute;
    z-index: 5;
    min-width: 105px;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--watch-border);
    border-radius: 999px;
    color: #dfe9ff;
    background: #121b31;
    box-shadow: 0 13px 32px rgba(0, 0, 0, 0.24);
    font-size: 0.76rem;
    font-weight: 800;
    text-align: center;
}

.watch-chip-1 {
    inset-block-start: 6%;
    inset-inline-start: 5%;
}

.watch-chip-2 {
    inset-block-start: 8%;
    inset-inline-end: 4%;
}

.watch-chip-3 {
    inset-block-start: 44%;
    inset-inline-end: 0;
}

.watch-chip-4 {
    inset-block-end: 7%;
    inset-inline-end: 11%;
}

.watch-chip-5 {
    inset-block-end: 5%;
    inset-inline-start: 8%;
}

.watch-chip-6 {
    inset-block-start: 45%;
    inset-inline-start: 0;
}

.watch-faq-list {
    max-width: 880px;
    display: grid;
    gap: 0.85rem;
    margin-inline: auto;
}

.watch-faq {
    border: 1px solid var(--watch-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.watch-faq summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--watch-text);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.watch-faq summary::-webkit-details-marker {
    display: none;
}

.watch-faq summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--watch-border);
    border-radius: 50%;
    color: var(--watch-blue);
    font-size: 1.1rem;
    transition: transform 180ms ease;
}

.watch-faq[open] summary::after {
    transform: rotate(45deg);
}

.watch-faq p {
    max-width: 760px;
    margin: 0;
    padding: 0 1.25rem 1.25rem;
    color: var(--watch-muted);
}

.watch-cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 7vw, 5.5rem);
    border: 1px solid rgba(106, 169, 255, 0.22);
    border-radius: clamp(28px, 5vw, 50px);
    background:
        radial-gradient(circle at 12% 20%, rgba(106, 169, 255, 0.22), transparent 22rem),
        radial-gradient(circle at 86% 80%, rgba(255, 147, 111, 0.15), transparent 20rem),
        #10182c;
    text-align: center;
}

.watch-cta-panel::before {
    content: "";
    position: absolute;
    inset: 1rem;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: inherit;
}

.watch-cta-panel h2 {
    max-width: 760px;
    margin-inline: auto;
}

.watch-cta-panel p {
    max-width: 670px;
    margin: 0 auto 1.7rem;
    color: var(--watch-muted);
}

.watch-cta-panel .watch-actions {
    justify-content: center;
}

.watch-footer {
    padding-block: 2.5rem;
    border-block-start: 1px solid var(--watch-border);
    color: var(--watch-muted);
    font-size: 0.82rem;
}

.watch-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.watch-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.watch-footer a {
    color: var(--watch-muted);
    text-decoration: none;
}

.watch-footer a:hover {
    color: var(--watch-text);
}

.watch-ltr {
    direction: ltr;
    unicode-bidi: isolate;
}

@keyframes watch-wave {
    0%,
    100% {
        transform: scaleY(0.72);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.14);
        opacity: 1;
    }
}

@media (max-width: 1020px) {
    .watch-hero {
        min-height: auto;
        padding-block-start: 5.2rem;
    }

    .watch-hero-grid,
    .watch-cloud-panel {
        grid-template-columns: 1fr;
    }

    .watch-hero-copy {
        max-width: 760px;
        text-align: center;
        margin-inline: auto;
    }

    .watch-eyebrow,
    .watch-release {
        margin-inline: auto;
    }

    .watch-actions {
        justify-content: center;
    }

    .watch-hero-art {
        width: min(100%, 610px);
        min-height: 560px;
        margin-inline: auto;
    }

    .watch-platform-band {
        margin-block-start: 0;
    }

    .watch-workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-step:nth-child(2)::after {
        display: none;
    }

    .watch-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-cloud-copy {
        max-width: 720px;
    }

    .watch-ecosystem {
        width: min(100%, 650px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .watch-container {
        width: min(100% - 28px, var(--watch-container));
    }

    .watch-nav-inner {
        min-height: 66px;
    }

    .watch-brand span {
        display: none;
    }

    .watch-brand img {
        width: 38px;
        height: 38px;
    }

    .watch-nav-link {
        display: none;
    }

    .watch-hero {
        padding-block: 4rem 3.6rem;
    }

    .watch-hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.6rem);
    }

    .watch-hero-art {
        min-height: 490px;
        transform: scale(0.88);
        margin-block: -1.5rem;
    }

    .watch-platform-band-inner {
        grid-template-columns: 1fr;
    }

    .watch-platform-intro {
        max-width: none;
        justify-content: center;
        padding: 0.35rem 0.5rem 0.15rem;
        text-align: center;
    }

    .watch-platform-card {
        min-height: 76px;
    }

    .watch-workflow,
    .watch-features {
        grid-template-columns: 1fr;
    }

    .watch-step {
        min-height: auto;
    }

    .watch-step::before {
        margin-block-end: 2rem;
    }

    .watch-step:not(:last-child)::after {
        display: grid;
        inset-inline-start: 50%;
        inset-inline-end: auto;
        inset-block-start: auto;
        inset-block-end: -0.76rem;
        transform: translateX(-50%) rotate(90deg);
    }

    [dir="rtl"] .watch-step:not(:last-child)::after {
        transform: translateX(50%) rotate(-90deg);
    }

    .watch-feature {
        min-height: 220px;
    }

    .watch-ecosystem {
        transform: scale(0.9);
        margin-block: -1rem;
    }

    .watch-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .watch-locale-menu {
        position: fixed;
        inset-block-start: 72px;
        inset-inline: 14px;
        width: auto;
    }

    .watch-hero {
        padding-block-start: 3.2rem;
    }

    .watch-eyebrow {
        font-size: 0.7rem;
    }

    .watch-release {
        text-align: start;
    }

    .watch-button {
        width: 100%;
    }

    .watch-hero-art {
        width: 540px;
        inset-inline-start: 50%;
        transform: translateX(-50%) scale(0.71);
        margin-block: -4.2rem;
    }

    [dir="rtl"] .watch-hero-art {
        transform: translateX(50%) scale(0.71);
    }

    .watch-platform-card {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .watch-platform-symbol {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .watch-section {
        padding-block: 4.8rem;
    }

    .watch-section h2 {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
    }

    .watch-cloud-panel {
        padding: 1.2rem;
    }

    .watch-cloud-copy {
        padding: 0.5rem;
    }

    .watch-ecosystem {
        width: 500px;
        inset-inline-start: 50%;
        transform: translateX(-50%) scale(0.72);
        margin-block: -3.6rem;
    }

    [dir="rtl"] .watch-ecosystem {
        transform: translateX(50%) scale(0.72);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .watch-page *,
    .watch-page *::before,
    .watch-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: more) {
    :root {
        --watch-muted: #d7deed;
        --watch-border: rgba(255, 255, 255, 0.35);
    }
}

@media print {
    .watch-nav,
    .watch-hero-art,
    .watch-platform-band,
    .watch-ecosystem {
        display: none;
    }

    body.watch-page {
        color: #111;
        background: #fff;
    }

    .watch-page :where(h1, h2, h3, p, li) {
        color: #111;
    }

    .watch-section {
        padding-block: 2rem;
    }
}
