:root {
    --bg: #07080b;
    --bg-soft: #0b0d12;
    --panel: rgba(15, 17, 23, 0.82);
    --panel-solid: #0f1117;
    --panel-light: #151821;
    --line: rgba(255, 255, 255, 0.075);
    --line-strong: rgba(255, 255, 255, 0.13);
    --text: #f6f7fb;
    --muted: #8b93a7;
    --muted-strong: #b2b8c7;
    --violet: #9b87ff;
    --violet-bright: #b8a9ff;
    --violet-soft: rgba(139, 112, 255, 0.13);
    --accent-rgb: 155, 135, 255;
    --green: #43f59b;
    --green-soft: rgba(67, 245, 155, 0.12);
    --blue: #5bc8ff;
    --blue-soft: rgba(91, 200, 255, 0.12);
    --warning: #f4bd55;
    --danger: #ff6b7a;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    --container: 1180px;
    --header-height: 76px;
}

body[data-profile-theme="emerald"] {
    --violet: #43f59b;
    --violet-bright: #82ffc0;
    --violet-soft: rgba(67, 245, 155, 0.13);
    --accent-rgb: 67, 245, 155;
}

body[data-profile-theme="blue"] {
    --violet: #5bc8ff;
    --violet-bright: #9cddff;
    --violet-soft: rgba(91, 200, 255, 0.13);
    --accent-rgb: 91, 200, 255;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 3px;
}

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

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

.hidden {
    display: none !important;
}

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

.section {
    position: relative;
    padding: 112px 0;
}

.site-ambient {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.14;
}

.ambient-one {
    width: 560px;
    height: 560px;
    top: -240px;
    left: 18%;
    background: #714bff;
}

.ambient-two {
    width: 520px;
    height: 520px;
    top: 500px;
    right: -280px;
    background: #3b82f6;
    opacity: 0.07;
}

.noise {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        radial-gradient(circle at 25% 35%, rgba(255,255,255,.025) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 65%, rgba(255,255,255,.018) 0 1px, transparent 1.5px);
    background-size: 29px 29px, 37px 37px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    background: rgba(7, 8, 11, 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, #b9a9ff, #7a5cff);
    color: #09090d;
    font: 800 16px/1 "Space Grotesk", sans-serif;
    box-shadow: 0 9px 30px rgba(123, 91, 255, 0.3);
}

.brand-name {
    font: 700 19px/1 "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
}

.brand-name span {
    color: var(--violet);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: auto;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.header-actions,
.header-user {
    display: flex;
    align-items: center;
    gap: 9px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

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

.button:active:not(:disabled):not(.disabled) {
    transform: translateY(0);
}

.button-primary {
    color: #0a0a0e;
    background: linear-gradient(135deg, #b7a7ff, #8f75ff);
    box-shadow: 0 14px 34px rgba(124, 92, 255, 0.22);
}

.button-primary:hover {
    background: linear-gradient(135deg, #c4b8ff, #9c85ff);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--line-strong);
}

.button-light {
    background: #f3f4f7;
    color: #08090c;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.button-light:hover {
    background: white;
}

.button-ghost {
    background: transparent;
    color: var(--muted-strong);
}

.button-ghost:hover {
    color: var(--text);
}

.button-small {
    min-height: 40px;
    padding-inline: 16px;
    border-radius: 10px;
    font-size: 12px;
}

.button-full {
    width: 100%;
}

.button:disabled,
.button.disabled {
    opacity: 0.44;
    pointer-events: none;
}

.header-account,
.header-community {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.header-account:hover,
.header-community:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--line-strong);
}

.header-account {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px 5px 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.header-account > i {
    color: var(--muted);
    font-size: 9px;
    margin-left: 2px;
}

.header-community {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--muted-strong);
}

.header-community > .presence-dot {
    position: absolute;
    top: 5px;
    right: 5px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    display: grid;
    gap: 4px;
    background: rgba(8, 9, 13, 0.97);
    border-bottom: 1px solid var(--line);
}

.mobile-nav a {
    padding: 12px 10px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 600;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 100px 0 92px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 82%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
    align-items: center;
    gap: 72px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.micro-label {
    color: var(--violet-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 7px 11px;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.055);
}

.live-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(67, 245, 155, 0.9);
}

.hero h1,
.section-heading h2,
.community-copy h2,
.cta-panel h2,
.dashboard-heading h1,
.panel-title-row h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(54px, 6.2vw, 84px);
    font-weight: 650;
}

.hero h1 span {
    color: var(--violet);
}

.hero-description {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.proof-avatars {
    display: flex;
    padding-left: 7px;
}

.proof-avatars img,
.proof-avatars span {
    width: 31px;
    height: 31px;
    margin-left: -7px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--panel-light);
}

.proof-avatars span {
    display: grid;
    place-items: center;
    color: var(--muted-strong);
    font-size: 9px;
    font-weight: 700;
}

.hero-proof p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.hero-proof strong {
    color: var(--muted-strong);
}

.hero-product {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
}

.product-glow {
    position: absolute;
    width: 76%;
    height: 76%;
    left: 12%;
    top: 13%;
    border-radius: 50%;
    background: rgba(126, 91, 255, 0.16);
    filter: blur(95px);
}

.desktop-window {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: #0b0d12;
    box-shadow: 0 45px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(123,94,255,.04);
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.window-bar {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 17px;
    background: #12141a;
    border-bottom: 1px solid var(--line);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3a3d46;
}

.window-dots span:first-child { background: #ff6b72; }
.window-dots span:nth-child(2) { background: #f5bd55; }
.window-dots span:nth-child(3) { background: #48d98b; }

.window-title {
    margin-left: auto;
    color: #747b8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.window-version {
    margin-left: auto;
    color: #676e7d;
    font-size: 8px;
}

.window-body {
    min-height: 400px;
    display: grid;
    grid-template-columns: 64px 1fr;
}

.client-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    background: #090a0e;
    border-right: 1px solid var(--line);
    color: #555b6b;
}

.client-sidebar i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 11px;
}

.client-sidebar i.active {
    color: var(--violet-bright);
    background: var(--violet-soft);
}

.client-logo {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
    border-radius: 9px;
    background: var(--violet);
    color: #0c0c10;
    font: 800 12px "Space Grotesk", sans-serif;
}

.client-settings {
    margin-top: auto;
}

.client-content {
    padding: 28px;
}

.client-topline,
.card-header,
.license-detail-top,
.online-roster-header,
.panel-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.client-topline h3 {
    margin: 2px 0 0;
    font: 600 22px "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
}

.verified-chip,
.account-chip,
.count-chip,
.status-badge,
.live-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(67, 245, 155, 0.18);
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    white-space: nowrap;
    font-size: 9px;
    font-weight: 800;
}

.verified-chip {
    padding: 6px 9px;
}

.client-profile-card {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.025);
}

.client-profile-card div {
    display: grid;
}

.client-profile-card strong {
    font-size: 12px;
}

.client-profile-card div span {
    color: var(--muted);
    font-size: 9px;
}

.sync-icon {
    margin-left: auto;
    color: var(--violet);
}

.avatar {
    position: relative;
    flex: 0 0 auto;
    display: inline-block;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    background: #171922;
}

.avatar-small {
    width: 31px;
    height: 31px;
    border-radius: 9px;
}

.avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 13px;
}

.avatar-xlarge {
    width: 66px;
    height: 66px;
    border-radius: 18px;
}

.presence-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 11px;
    height: 11px;
    border: 3px solid #0e1016;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(67,245,155,.6);
}

.presence-dot.static {
    position: static;
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 0;
}

.client-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.client-stats article {
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #0d0f14;
}

.client-stats span,
.client-stats small {
    color: #697082;
    font-size: 8px;
}

.client-stats strong {
    font-size: 12px;
}

.online-text {
    color: var(--green);
}

.sync-track {
    height: 4px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}

.sync-track span {
    display: block;
    width: 73%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--violet), var(--blue));
    box-shadow: 0 0 12px rgba(var(--accent-rgb), .5);
}

.client-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
}

.client-footer span {
    color: var(--muted);
    font-size: 8px;
}

.client-footer span i {
    color: var(--green);
}

.client-footer button {
    padding: 8px 11px;
    border: 0;
    border-radius: 8px;
    background: #eceef4;
    color: #090a0e;
    font-size: 8px;
    font-weight: 800;
}

.floating-status {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 13px;
    background: rgba(19,21,28,.88);
    box-shadow: 0 18px 55px rgba(0,0,0,.4);
    backdrop-filter: blur(18px);
}

.floating-status > span:last-child {
    display: grid;
}

.floating-status small {
    color: var(--muted);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.floating-status strong {
    font-size: 9px;
}

.status-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 11px;
}

.status-online-card {
    top: 25px;
    right: -16px;
}

.status-key-card {
    left: -24px;
    bottom: 30px;
}

.status-key-card .status-icon {
    color: var(--violet);
    background: var(--violet-soft);
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.012);
}

.trust-grid {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 36px;
    border-right: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.trust-grid span:last-child {
    border-right: 0;
}

.trust-grid i {
    color: var(--muted-strong);
}

.section-heading {
    max-width: 600px;
}

.section-heading.centered {
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2,
.community-copy h2,
.cta-panel h2 {
    margin-top: 10px;
    font-size: clamp(38px, 5vw, 58px);
}

.section-heading p,
.community-copy > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.workflow-section {
    background: linear-gradient(to bottom, rgba(255,255,255,.012), transparent);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.workflow-card,
.bento-card,
.dashboard-card,
.info-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.workflow-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.workflow-card.featured {
    border-color: rgba(var(--accent-rgb), .25);
    background: linear-gradient(145deg, rgba(var(--accent-rgb), .10), rgba(255,255,255,.018));
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255,255,255,.06);
    font: 700 52px "Space Grotesk", sans-serif;
}

.feature-icon,
.metric-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 15px;
}

.feature-icon.violet,
.metric-icon.violet {
    color: var(--violet-bright);
    background: var(--violet-soft);
}

.feature-icon.green,
.metric-icon.green {
    color: var(--green);
    background: var(--green-soft);
}

.feature-icon.blue,
.metric-icon.blue {
    color: var(--blue);
    background: var(--blue-soft);
}

.workflow-card h3,
.bento-card h3,
.dashboard-card h3 {
    margin: 64px 0 10px;
    font: 600 21px "Space Grotesk", sans-serif;
    letter-spacing: -0.035em;
}

.workflow-card p,
.bento-card p,
.dashboard-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
}

.bento-card {
    position: relative;
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.bento-card h3 {
    margin: 25px 0 9px;
}

.bento-profile {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 36px;
}

.profile-preview-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(var(--accent-rgb), .16);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), .11), rgba(15,17,23,.92));
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
    transform: rotate(2deg);
}

.profile-preview-card > div {
    display: grid;
    min-width: 0;
}

.profile-preview-card strong {
    font-size: 14px;
}

.profile-preview-card div span {
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.level-chip {
    margin-left: auto;
    padding: 4px 7px;
    border: 1px solid rgba(91,200,255,.14);
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
}

.bento-license {
    background:
        radial-gradient(circle at 90% 80%, rgba(67,245,155,.08), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.license-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 42px;
    padding: 15px 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(4,5,7,.48);
    font: 600 13px "Space Grotesk", monospace;
    letter-spacing: .08em;
}

.license-visual span:nth-child(n+2) {
    color: #555d6f;
}

.license-visual strong {
    margin-left: auto;
    color: var(--green);
}

.mini-roster {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.mini-roster > span {
    position: relative;
    width: 38px;
    height: 38px;
    margin-left: -7px;
    border: 3px solid #101218;
    border-radius: 50%;
    background: var(--panel-light);
}

.mini-roster > span:first-child {
    margin-left: 0;
}

.mini-roster img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.mini-roster i {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    border: 2px solid #101218;
    border-radius: 50%;
    background: var(--green);
}

.mini-roster strong {
    margin-left: 12px;
    color: var(--green);
    font-size: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 35px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--violet-bright);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.community-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 20% 40%, rgba(var(--accent-rgb), .08), transparent 30%),
        rgba(255,255,255,.008);
}

.community-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 110px;
}

.community-copy h2 {
    max-width: 540px;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 600;
}

.check-list i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 8px;
}

.community-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #0b0e12;
    box-shadow: var(--shadow);
}

.roster-header {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,107,122,.18);
    background: #171920;
}

.roster-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.count-chip {
    padding: 5px 9px;
}

.roster-list {
    padding: 12px 18px;
}

.roster-row {
    min-height: 72px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.045);
}

.roster-row:last-child {
    border-bottom: 0;
}

.roster-row .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.roster-row > div {
    display: grid;
}

.roster-row strong {
    color: var(--blue);
    font-size: 12px;
}

.roster-row small {
    color: var(--green);
    font-size: 9px;
    font-weight: 600;
}

.row-device {
    color: #4f596d;
    font-size: 10px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: start;
    gap: 110px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

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

.faq-list summary i {
    color: var(--muted);
    font-size: 11px;
    transition: transform .2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 650px;
    margin: -4px 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.final-cta {
    padding-top: 20px;
}

.cta-panel {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 64px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), .2);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 75% 30%, rgba(var(--accent-rgb), .2), transparent 32%),
        linear-gradient(145deg, rgba(var(--accent-rgb), .11), rgba(255,255,255,.02));
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 75px 0 28px;
    border-top: 1px solid var(--line);
    background: #06070a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand {
    pointer-events: none;
}

.footer-grid > div:first-child p {
    max-width: 300px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.footer-grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-grid strong {
    margin-bottom: 5px;
    font-size: 11px;
}

.footer-grid a,
.footer-grid button {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    cursor: pointer;
}

.footer-grid a:hover,
.footer-grid button:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #5d6473;
    font-size: 10px;
}

/* Dashboard */
.dashboard-view {
    min-height: calc(100vh - var(--header-height));
    padding: 54px 0 100px;
}

.dashboard-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    margin-bottom: 28px;
}

.dashboard-heading > div:nth-child(2) {
    text-align: center;
}

.dashboard-heading h1 {
    margin-top: 4px;
    font-size: 38px;
}

.back-link {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.back-link i {
    margin-right: 8px;
}

.platform-state {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.platform-state span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--warning);
    box-shadow: 0 0 10px rgba(244,189,85,.45);
}

.platform-state.connected {
    color: var(--green);
}

.platform-state.connected span {
    background: var(--green);
    box-shadow: 0 0 10px rgba(67,245,155,.55);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
}

.dashboard-sidebar,
.dashboard-content {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12,14,19,.82);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
}

.dashboard-sidebar {
    height: fit-content;
    overflow: hidden;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.sidebar-profile > div {
    min-width: 0;
    display: grid;
}

.sidebar-profile strong,
.sidebar-profile span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-profile strong {
    font-size: 12px;
}

.sidebar-profile div span {
    color: var(--muted);
    font-size: 9px;
}

.dashboard-nav {
    display: grid;
    gap: 3px;
    padding: 12px;
}

.dashboard-nav button,
.sidebar-bottom button {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.dashboard-nav button i {
    width: 16px;
    text-align: center;
}

.dashboard-nav button:hover,
.dashboard-nav button.active {
    color: var(--text);
    background: rgba(255,255,255,.045);
}

.dashboard-nav button.active i {
    color: var(--violet-bright);
}

.nav-count {
    min-width: 20px;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 8px;
    text-align: center;
}

.sidebar-bottom {
    padding: 12px;
    border-top: 1px solid var(--line);
}

.sidebar-bottom button:hover {
    color: var(--danger);
}

.dashboard-content {
    min-height: 720px;
    padding: 34px;
}

.panel-title-row {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.panel-title-row h2 {
    margin-top: 4px;
    font-size: 28px;
}

.panel-title-row p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.account-chip,
.live-label {
    padding: 6px 10px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.metric-card {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}

.metric-card > div {
    min-width: 0;
    display: grid;
}

.metric-card small {
    color: var(--muted);
    font-size: 9px;
}

.metric-card strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    margin-top: 12px;
}

.dashboard-card {
    padding: 24px;
    border-radius: var(--radius);
}

.dashboard-card h3 {
    margin: 3px 0 0;
    font-size: 17px;
}

.card-header {
    align-items: center;
}

.status-badge {
    padding: 5px 9px;
    border-color: var(--line);
    background: rgba(255,255,255,.04);
    color: var(--muted-strong);
}

.status-badge.success {
    border-color: rgba(67,245,155,.18);
    background: var(--green-soft);
    color: var(--green);
}

.status-badge.warning {
    border-color: rgba(244,189,85,.17);
    background: rgba(244,189,85,.08);
    color: var(--warning);
}

.key-display {
    margin: 25px 0 13px;
    color: var(--violet-bright);
    font: 600 18px "Space Grotesk", monospace;
    letter-spacing: .08em;
}

.license-summary .button {
    margin-top: 22px;
}

.download-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
}

.download-platform {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 17px;
}

.download-summary h3 {
    margin: 2px 0;
}

.icon-button {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255,255,255,.03);
    color: var(--muted-strong);
    cursor: pointer;
}

.icon-button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.profile-editor-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    margin-top: 24px;
}

.profile-form {
    display: grid;
    gap: 17px;
}

.profile-form > label,
.auth-form > label {
    display: grid;
    gap: 7px;
    color: var(--muted-strong);
    font-size: 10px;
    font-weight: 700;
}

.profile-form input,
.profile-form textarea,
.input-wrap {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255,255,255,.025);
    color: var(--text);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.profile-form input,
.profile-form textarea {
    padding: 12px 13px;
    resize: vertical;
}

.profile-form input:focus,
.profile-form textarea:focus,
.input-wrap:focus-within {
    border-color: rgba(var(--accent-rgb), .45);
    background: rgba(var(--accent-rgb), .035);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .08);
}

.profile-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.profile-form legend {
    margin-bottom: 9px;
    color: var(--muted-strong);
    font-size: 10px;
    font-weight: 700;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.theme-options label {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.theme-options input {
    position: absolute;
    opacity: 0;
}

.theme-options label:has(input:checked) {
    border-color: rgba(var(--accent-rgb), .38);
    background: var(--violet-soft);
    color: var(--text);
}

.theme-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.theme-dot.violet { background: #9b87ff; }
.theme-dot.emerald { background: #43f59b; }
.theme-dot.blue { background: #5bc8ff; }

.profile-live-preview {
    align-self: start;
}

.large-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 32px 20px 20px;
    border: 1px solid rgba(var(--accent-rgb), .18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), .16), transparent 42%),
        #0d0f14;
    text-align: center;
}

.large-profile-card h3 {
    margin: 15px 0 3px;
}

.large-profile-card > p {
    min-height: 42px;
    color: var(--muted-strong);
    font-style: italic;
}

.profile-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
}

.profile-meta b {
    color: var(--violet-bright);
}

.license-detail-card {
    margin-top: 24px;
}

.license-detail-top {
    align-items: center;
}

.license-detail-top > div:nth-child(2) {
    flex: 1;
}

.license-key-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid rgba(var(--accent-rgb), .18);
    border-radius: 14px;
    background: rgba(5,6,9,.5);
}

.license-key-box code {
    overflow: hidden;
    flex: 1;
    color: var(--violet-bright);
    font: 600 20px "Space Grotesk", monospace;
    letter-spacing: .08em;
    text-overflow: ellipsis;
}

.license-notice,
.download-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 13px 15px;
    border: 1px solid rgba(91,200,255,.12);
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
}

.license-notice p,
.download-note p {
    color: inherit;
    font-size: 10px;
}

.license-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.info-card {
    display: flex;
    gap: 12px;
    padding: 17px;
    border-radius: 13px;
}

.info-card > i {
    color: var(--violet-bright);
    margin-top: 3px;
}

.info-card > div {
    display: grid;
}

.info-card strong {
    font-size: 10px;
}

.info-card span {
    color: var(--muted);
    font-size: 8px;
}

.online-roster {
    margin-top: 24px;
    padding: 0;
    overflow: hidden;
}

.online-roster-header {
    min-height: 60px;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.022);
}

.online-roster-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 9px;
}

.online-roster-header > span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

#communityRoster {
    padding: 6px 18px;
}

.community-member {
    min-height: 68px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.045);
}

.community-member:last-child {
    border-bottom: 0;
}

.community-member .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.community-member > div {
    min-width: 0;
    display: grid;
}

.community-member strong {
    overflow: hidden;
    color: var(--blue);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.community-member small {
    color: var(--green);
    font-size: 8px;
    font-weight: 600;
}

.community-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.empty-state {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-state > i {
    margin-bottom: 14px;
    color: rgba(255,255,255,.1);
    font-size: 28px;
}

.empty-state strong {
    font-size: 12px;
}

.empty-state span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.download-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.download-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 28px;
}

.download-copy h3 {
    font-size: 22px;
}

.download-copy h3 span {
    color: var(--muted);
    font-size: 10px;
}

.requirement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.requirement-grid article {
    display: grid;
    gap: 4px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.018);
}

.requirement-grid span {
    color: var(--muted);
    font-size: 8px;
}

.requirement-grid strong {
    font-size: 10px;
}

/* Authentication */
.auth-dialog {
    width: min(460px, calc(100% - 28px));
    max-height: calc(100vh - 28px);
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    background: #0e1016;
    color: var(--text);
    box-shadow: 0 40px 140px rgba(0,0,0,.72);
}

.auth-dialog::backdrop {
    background: rgba(2,3,5,.76);
    backdrop-filter: blur(14px);
}

.auth-shell {
    position: relative;
    padding: 28px;
}

.dialog-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    color: var(--muted);
    cursor: pointer;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-brand > div {
    display: grid;
}

.auth-brand strong {
    font: 600 14px "Space Grotesk", sans-serif;
}

.auth-brand div span {
    color: var(--muted);
    font-size: 9px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 26px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.02);
}

.auth-tabs button {
    min-height: 37px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.auth-tabs button.active {
    background: rgba(255,255,255,.065);
    color: var(--text);
}

.auth-form {
    display: grid;
    gap: 16px;
    margin-top: 25px;
}

.auth-heading {
    margin-bottom: 4px;
}

.auth-heading h2 {
    margin: 0;
    font: 600 25px "Space Grotesk", sans-serif;
    letter-spacing: -.04em;
}

.auth-heading p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
}

.input-wrap > i {
    width: 14px;
    color: #5c6373;
    font-size: 11px;
}

.input-wrap input {
    width: 100%;
    min-height: 45px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    outline: none;
    font-size: 12px;
}

.input-wrap input::placeholder,
.profile-form input::placeholder {
    color: #505666;
}

.auth-helper {
    display: flex;
    justify-content: flex-end;
}

.auth-helper button,
.auth-back {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--violet-bright);
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.terms-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 9px !important;
    color: var(--muted) !important;
    font-size: 9px !important;
    font-weight: 500 !important;
}

.terms-check input {
    accent-color: var(--violet);
}

.auth-back {
    width: fit-content;
    margin-bottom: 2px;
    color: var(--muted-strong);
}

.auth-back i {
    margin-right: 6px;
}

.auth-setup-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    padding: 11px 12px;
    border: 1px solid rgba(244,189,85,.16);
    border-radius: 10px;
    background: rgba(244,189,85,.07);
    color: var(--warning);
    font-size: 9px;
}

/* Toast */
.toast-root {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    width: min(360px, calc(100% - 44px));
    display: grid;
    gap: 8px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(18,20,27,.95);
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
    color: var(--muted-strong);
    font-size: 10px;
    pointer-events: auto;
    animation: toast-in .24s ease both;
}

.toast i {
    margin-top: 2px;
    color: var(--violet-bright);
}

.toast.success i { color: var(--green); }
.toast.error i { color: var(--danger); }

@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

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

    .eyebrow,
    .hero-actions {
        margin-inline: auto;
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-product {
        width: min(720px, 100%);
        margin-inline: auto;
    }

    .bento-profile {
        grid-template-columns: 1fr;
    }

    .community-layout {
        gap: 60px;
    }

    .dashboard-layout {
        grid-template-columns: 210px 1fr;
    }
}

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

    .mobile-menu-button {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .header-actions,
    .header-user {
        margin-left: auto;
    }

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

    .workflow-card {
        min-height: 250px;
    }

    .split-heading,
    .community-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2;
    }

    .dashboard-heading {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-heading > div:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: left;
        margin-bottom: 20px;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .sidebar-profile {
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .dashboard-nav {
        grid-template-columns: repeat(5, minmax(110px, 1fr));
        overflow-x: auto;
    }

    .dashboard-nav button {
        justify-content: center;
        white-space: nowrap;
    }

    .sidebar-bottom {
        display: none;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .header-actions .button-ghost {
        display: none;
    }

    .header-account {
        max-width: 150px;
    }

    .header-account span:not(.avatar):not(.presence-dot) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        padding-top: 72px;
    }

    .hero h1 {
        font-size: clamp(47px, 14vw, 68px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-product {
        min-height: 440px;
    }

    .desktop-window {
        transform: none;
    }

    .client-content {
        padding: 19px;
    }

    .verified-chip,
    .floating-status {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        padding: 12px 0;
    }

    .trust-grid span {
        border-right: 0;
    }

    .section-heading h2,
    .community-copy h2,
    .cta-panel h2 {
        font-size: 38px;
    }

    .bento-card,
    .workflow-card {
        padding: 25px;
    }

    .profile-preview-card {
        transform: none;
    }

    .cta-panel {
        min-height: 300px;
        padding: 38px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .dashboard-view {
        padding-top: 32px;
    }

    .dashboard-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .dashboard-heading > div:nth-child(2) {
        order: -1;
        width: 100%;
        margin-bottom: 8px;
    }

    .dashboard-sidebar {
        display: block;
    }

    .sidebar-profile {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .dashboard-content {
        min-height: 600px;
        padding: 22px 16px;
    }

    .panel-title-row {
        flex-direction: column;
    }

    .metric-grid,
    .overview-grid,
    .profile-editor-grid,
    .requirement-grid {
        grid-template-columns: 1fr;
    }

    .download-hero {
        grid-template-columns: auto 1fr;
    }

    .download-hero .button {
        grid-column: 1 / -1;
    }

    .license-key-box code {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        display: none;
    }

    .header-actions .button {
        padding-inline: 12px;
    }

    .header-account {
        width: 44px;
        padding: 5px;
    }

    .header-account > span:not(.avatar),
    .header-account > i {
        display: none;
    }

    .window-body {
        grid-template-columns: 50px 1fr;
    }

    .client-sidebar {
        gap: 15px;
    }

    .client-topline h3 {
        font-size: 17px;
    }

    .client-stats {
        grid-template-columns: 1fr;
    }

    .client-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .bento-profile {
        display: block;
    }

    .profile-preview-card {
        margin-top: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .theme-options {
        grid-template-columns: 1fr;
    }

    .auth-shell {
        padding: 24px 20px;
    }
}
