:root {
    --bg: #f7f6f2;
    --surface: #ffffff;
    --surface-soft: #f2f5f7;
    --ink: #1f2933;
    --muted: #66727f;
    --line: #dfe5ea;
    --primary: #28146e;
    --primary-strong: #1f0f5a;
    --secondary: #285096;
    --accent: #d2463c;
    --success: #24715d;
    --danger: #b93a32;
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

body.login-page {
    background: #ffffff;
}

body.one-dashboard-skill-shell {
    background: #eef2f7;
}

.account-app-page {
    max-width: 1540px;
    padding: 14px 18px 38px;
}

.account-app-layout {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.account-app-main {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.account-route-section {
    display: none !important;
}

body.account-route-overview .account-route-section.account-route-overview,
body.account-route-access .account-route-section.account-route-access,
body.account-route-products .account-route-section.account-route-products,
body.account-route-licenses .account-route-section.account-route-licenses,
body.account-route-support .account-route-section.account-route-support {
    display: block !important;
}

body.account-route-overview .account-dashboard-frame.account-route-section,
body.account-route-overview .one-dashboard-strip.account-route-section,
body.account-route-overview .account-route-grid .account-route-section.account-route-overview,
body.account-route-access .account-route-grid .account-route-section.account-route-access,
body.account-route-products .account-route-grid .account-route-section.account-route-products {
    display: grid !important;
}

body:not(.account-route-overview) .account-route-grid {
    grid-template-columns: 1fr;
}

.account-app-rail {
    position: sticky;
    top: 82px;
    display: grid;
    gap: 16px;
    min-height: calc(100vh - 108px);
    padding: 16px;
    border: 1px solid #162133;
    border-radius: var(--radius);
    background: #101827;
    color: #e6edf6;
}

.account-app-rail__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(219, 228, 238, 0.14);
}

.account-app-rail__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: var(--radius);
    background: #19a66a;
    color: #ffffff;
    font-weight: 900;
}

.account-app-rail__head strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
}

.account-app-rail__head span:not(.account-app-rail__mark) {
    color: #aebdcc;
    font-size: 12px;
}

.account-app-rail__nav {
    display: grid;
    gap: 8px;
}

.account-app-rail__nav a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 2px 10px;
    align-items: center;
    min-height: 58px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: #e6edf6;
}

.account-app-rail__nav b {
    display: grid;
    grid-row: span 2;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #dbe4ee;
    font-size: 12px;
}

.account-app-rail__nav a:hover,
.account-app-rail__nav a:focus-visible,
.account-app-rail__nav a[aria-current="page"] {
    border-color: rgba(66, 133, 244, 0.55);
    background: rgba(255, 255, 255, 0.095);
    text-decoration: none;
}

.account-app-rail__nav a[aria-current="page"] b {
    background: #4285f4;
    color: #ffffff;
}

.account-app-rail__nav span {
    color: #aebdcc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-app-rail__nav strong {
    color: #ffffff;
    font-size: 14px;
}

.account-app-rail__cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    align-self: end;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: #f8fbff;
    color: #101827;
    font-weight: 800;
}

.account-app-rail__cta:hover,
.account-app-rail__cta:focus-visible {
    background: #e8f0fe;
    text-decoration: none;
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    text-decoration: underline;
}

button,
input,
select,
textarea {
    font: inherit;
}

.page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 18px 44px;
}

.login-page .page {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto 18px;
    padding: 12px 14px;
    border: 1px solid rgba(223, 229, 234, 0.84);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.utility-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    min-height: 34px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
}

.utility-bar a {
    color: var(--ink);
    font-weight: 700;
}

.sothik-nav {
    border-color: transparent;
    background: #ffffff;
}

.sothik-nav .nav-links a:last-child {
    width: 36px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--accent);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
}

.brand img {
    display: block;
    width: auto;
    height: 34px;
}

.nav-links,
.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-links a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 7px 10px;
    border-radius: var(--radius);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--surface-soft);
    text-decoration: none;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible {
    background: var(--primary-strong);
    border-color: var(--primary-strong);
    text-decoration: none;
}

.button.secondary,
button.secondary {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible,
button.secondary:hover,
button.secondary:focus-visible {
    background: var(--surface-soft);
    border-color: #c7d1db;
}

.button.accent,
button.accent {
    background: var(--accent);
    border-color: var(--accent);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 380px);
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.one-hero {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    min-height: 360px;
    align-items: center;
    padding: 42px 34px;
    border-color: transparent;
    background: #ffffff;
}

.one-hero .hero-copy,
.one-hero .panel,
.one-hero .one-status-panel {
    position: relative;
    z-index: 1;
}

.one-hero h1 {
    max-width: 700px;
    color: #202124;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.08;
}

.one-hero .lead {
    max-width: 720px;
    color: #4b5563;
    font-size: 20px;
}

.one-status-panel {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    margin-bottom: 0;
    background: #f8fafd;
}

.one-status-panel h2 {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.account-top-nav .nav-links a[aria-current="page"] {
    background: #eef4ff;
    color: #1457b8;
}

.account-top-nav {
    min-height: 62px;
    border-color: #d8e1eb;
    background: rgba(255, 255, 255, 0.98);
}

.account-top-nav .brand span {
    color: #111827;
    font-weight: 800;
}

.account-top-nav .nav-links a {
    min-height: 34px;
    padding: 6px 10px;
    color: #344054;
    font-size: 13px;
}

.account-top-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.account-icon-button,
.account-avatar-link {
    display: inline-grid;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid #dbe4ee;
    border-radius: var(--radius);
    background: #ffffff;
    color: #253246;
}

.account-icon-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.account-avatar-link {
    background: #253246;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.account-icon-button:hover,
.account-icon-button:focus-visible,
.account-avatar-link:hover,
.account-avatar-link:focus-visible {
    border-color: #c7d1db;
    background: #f4f8fc;
    color: #253246;
    text-decoration: none;
}

.account-dashboard-frame {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 12px;
    align-items: stretch;
    margin-bottom: 4px;
    padding: 12px;
    border: 1px solid #d8e1eb;
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.account-workspace-intro {
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 100%;
    padding: 26px;
    border-radius: var(--radius);
    background: #f9fbff;
}

.account-dashboard-hero h1 {
    max-width: 680px;
    color: #101827;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.06;
}

.account-dashboard-hero .lead {
    max-width: 740px;
    color: #475467;
    font-size: 15px;
    line-height: 1.55;
}

.account-hero-snapshots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.account-hero-snapshots article {
    display: grid;
    gap: 3px;
    min-height: 76px;
    align-content: center;
    padding: 12px;
    border: 1px solid #d8e1eb;
    border-radius: var(--radius);
    background: #ffffff;
}

.account-hero-snapshots article:nth-child(1) {
    border-top: 3px solid #4285f4;
}

.account-hero-snapshots article:nth-child(2) {
    border-top: 3px solid #19a66a;
}

.account-hero-snapshots article:nth-child(3) {
    border-top: 3px solid #f4b400;
}

.account-hero-snapshots article:nth-child(4) {
    border-top: 3px solid #d2463c;
}

.account-hero-snapshots span {
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-hero-snapshots strong {
    color: #182536;
    font-size: 17px;
    line-height: 1.2;
}

.account-status-panel {
    align-self: start;
    height: 100%;
    min-height: 0;
    border: 1px solid #172235;
    border-radius: var(--radius);
    background: #111827;
    color: #dbe7f3;
}

.account-status-panel > span:first-child {
    color: #8bb7ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-status-panel h2 {
    color: #ffffff;
}

.account-status-panel p {
    color: #b9c6d6;
    font-size: 14px;
}

.account-signal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.account-signal-list article {
    display: grid;
    align-content: center;
    gap: 3px;
    min-height: 58px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.075);
}

.account-signal-list span {
    color: #9fb0c4;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-signal-list strong {
    color: #ffffff;
    font-size: 15px;
    text-align: left;
}

.account-command-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 4px;
    padding: 0;
    border: 1px solid #dbe4ee;
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.account-command-bar a {
    display: grid;
    gap: 4px;
    min-height: 78px;
    align-content: center;
    padding: 14px 16px;
    border: 0;
    border-right: 1px solid #dbe4ee;
    border-radius: 0;
    background: #ffffff;
    color: var(--ink);
}

.account-command-bar a:last-child {
    border-right: 0;
}

.account-command-bar a:hover,
.account-command-bar a:focus-visible,
.account-command-bar a[aria-current="page"] {
    border-color: #c7d1db;
    background: var(--surface-soft);
    text-decoration: none;
}

.account-command-bar span,
.account-ops-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-command-bar strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.account-dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 4px;
}

.account-dashboard-metrics a {
    display: grid;
    gap: 6px;
    min-height: 118px;
    align-content: start;
    padding: 16px;
    border: 1px solid #dbe4ee;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
}

.account-dashboard-metrics a:nth-child(2) {
    border-top: 3px solid var(--secondary);
}

.account-dashboard-metrics a:nth-child(3) {
    border-top: 3px solid var(--accent);
}

.account-dashboard-metrics a:nth-child(4) {
    border-top: 3px solid var(--success);
}

.account-dashboard-metrics a:first-child {
    border-top: 3px solid var(--primary);
}

.account-dashboard-metrics a:hover,
.account-dashboard-metrics a:focus-visible {
    background: var(--surface-soft);
    text-decoration: none;
}

.account-dashboard-metrics span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-dashboard-metrics strong {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.08;
}

.account-dashboard-metrics em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.one-dashboard-skill-shell h2,
.one-dashboard-skill-shell h3 {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.account-ops-panel {
    background: #ffffff;
}

.account-ops-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.account-ops-grid article {
    display: grid;
    gap: 7px;
    align-content: start;
    min-height: 142px;
    padding: 15px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: #ffffff;
}

.account-ops-grid strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
}

.account-ops-grid p {
    font-size: 13px;
}

.account-dashboard-details {
    padding: 0;
    background: #ffffff;
}

.account-dashboard-details summary {
    padding: 14px 16px;
    color: var(--ink);
}

.account-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 16px 16px;
}

.account-policy-grid article {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: #f8fafd;
}

.account-policy-grid strong {
    color: var(--ink);
}

.account-policy-grid span {
    color: var(--muted);
    font-size: 13px;
}

.one-dashboard-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.one-dashboard-strip article {
    display: grid;
    gap: 7px;
    padding: 16px;
    border: 1px solid #d8e1eb;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    background: #ffffff;
}

.one-dashboard-strip article:nth-child(2) {
    border-left-color: var(--accent);
}

.one-dashboard-strip article:nth-child(3) {
    border-left-color: var(--secondary);
}

.one-dashboard-strip article:nth-child(4) {
    border-left-color: var(--success);
}

.one-dashboard-strip strong {
    color: var(--ink);
    font-size: 15px;
}

.one-dashboard-strip span {
    color: var(--muted);
    font-size: 14px;
}

.one-meter {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: #ffffff;
}

.one-meter span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.one-meter strong {
    color: #1a73e8;
    font-size: 32px;
    line-height: 1;
}

.mini-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-benefits span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.one-benefit-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.one-benefit-strip article {
    display: grid;
    gap: 7px;
    padding: 16px;
    border: 0;
    border-top: 1px solid #e8eaed;
    border-radius: 0;
    background: #ffffff;
}

.one-benefit-strip strong {
    color: var(--ink);
    font-size: 16px;
}

.one-benefit-strip span {
    color: var(--muted);
    font-size: 14px;
}

.one-feature-showcase {
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: #f8fafd;
}

.one-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.one-feature-grid article {
    display: grid;
    gap: 9px;
    padding: 18px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: #ffffff;
}

.one-feature-grid strong {
    color: #202124;
    font-size: 17px;
}

.one-feature-grid p {
    font-size: 14px;
}

.feature-dot {
    width: 34px;
    height: 6px;
    border-radius: var(--radius);
    background: #1a73e8;
}

.feature-dot.red {
    background: #ea4335;
}

.feature-dot.green {
    background: #34a853;
}

.agency-hero {
    min-height: 520px;
    align-items: center;
    border: 0;
    background: #eef3f7;
}

.agency-hero h1 {
    max-width: 780px;
    color: var(--primary);
    font-size: 64px;
    line-height: 1.05;
}

.hero-art {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.hero-art img {
    width: 170px;
    height: auto;
}

.hero-art strong {
    color: var(--primary);
    font-size: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 4px solid var(--accent);
    background: #ffffff;
}

.experience-badge strong {
    color: var(--primary);
    font-size: 48px;
    line-height: 1;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    background: var(--primary);
    color: #ffffff;
}

.stats-band article {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 14px;
}

.stats-band strong {
    font-size: 42px;
    line-height: 1;
}

.cta-band {
    background: var(--primary);
    color: #ffffff;
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.9fr) minmax(180px, 0.5fr);
    gap: 22px;
    margin-top: 18px;
    padding: 28px;
    border-radius: var(--radius);
    background: #161b22;
    color: #d9e1ea;
}

.site-footer a {
    display: block;
    margin: 6px 0;
    color: #ffffff;
}

.hero.compact {
    grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
    align-items: center;
}

.login-shell {
    display: grid;
    width: min(100%, 448px);
    min-height: 100vh;
    margin: 0 auto;
    align-content: center;
}

.login-shell .panel {
    margin-bottom: 0;
    padding: 38px;
    border-color: #dadce0;
    border-radius: 8px;
}

.login-options {
    gap: 18px;
}

.login-card-brand {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 26px;
}

.login-card-brand img {
    width: auto;
    height: 38px;
}

.login-heading {
    margin-bottom: 28px;
}

.login-heading h1 {
    max-width: none;
    color: #202124;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.login-heading p {
    margin: 8px 0 0;
    color: #202124;
    font-size: 16px;
    line-height: 1.5;
}

.login-shell label {
    gap: 8px;
    color: #3c4043;
    font-size: 13px;
    font-weight: 600;
}

.login-shell input {
    min-height: 52px;
    padding: 13px 15px;
    border-color: #dadce0;
    border-radius: 4px;
    color: #202124;
    font-size: 16px;
}

.login-shell input:focus {
    outline: 1px solid #1a73e8;
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

.login-shell #loginButton {
    min-height: 44px;
    margin-top: 4px;
    border-color: #1a73e8;
    border-radius: 4px;
    background: #1a73e8;
    font-size: 14px;
    font-weight: 700;
}

.login-shell #loginButton:hover,
.login-shell #loginButton:focus-visible {
    border-color: #185abc;
    background: #185abc;
}

.social-icon-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 2px;
}

.social-icon-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-color: #dadce0;
    border-radius: 50%;
    background: #ffffff;
    color: #3c4043;
}

.social-icon-button svg {
    width: 22px;
    height: 22px;
}

.social-icon-button:hover,
.social-icon-button:focus-visible {
    border-color: #c2c7cf;
    background: #f8fafd;
}

.login-details {
    padding: 0;
    background: transparent;
    border-color: #dadce0;
}

.login-details summary {
    padding: 12px;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.login-extra-options {
    padding: 0 12px 12px;
}

.login-status[hidden] {
    display: none;
}

.login-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
}

.login-links a {
    color: #1a73e8;
}

.hero-copy,
.stack {
    display: grid;
    gap: 14px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Dosis, Inter, sans-serif;
    letter-spacing: 0;
    color: var(--ink);
}

h1 {
    max-width: 780px;
    font-size: 54px;
    line-height: 1.04;
}

h2 {
    font-size: 28px;
    line-height: 1.12;
}

h3 {
    font-size: 20px;
    line-height: 1.18;
}

p {
    margin: 0;
    color: var(--muted);
}

.lead {
    max-width: 720px;
    font-size: 18px;
}

.panel,
.section {
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.one-dashboard-skill-shell .panel {
    margin-bottom: 0;
    border-color: #d8e1eb;
}

.one-dashboard-skill-shell .account-status-panel {
    border-color: #172235;
    background: #111827;
    color: #dbe7f3;
}

.one-dashboard-skill-shell .account-status-panel h2 {
    color: #ffffff;
}

.one-dashboard-skill-shell .account-status-panel p {
    color: #b9c6d6;
}

.one-dashboard-skill-shell .section-head {
    margin-bottom: 14px;
}

.one-dashboard-skill-shell .section-head h2 {
    color: #101827;
    font-size: 23px;
}

.one-dashboard-skill-shell .section-head p {
    color: #667085;
    font-size: 14px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head p {
    max-width: 680px;
    margin-top: 6px;
}

.section-head .button,
.section-head button {
    white-space: nowrap;
}

.grid-2,
.grid-3,
.workspace {
    display: grid;
    gap: 14px;
}

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

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.workspace {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: start;
}

.billing-workspace {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.4fr);
}

.billing-workspace .cart-panel {
    position: sticky;
    top: 88px;
    z-index: 5;
}

.billing-workspace .plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.one-commerce-shell {
    align-items: start;
}

.plans-panel {
    padding: 28px;
    border-color: #e8eaed;
}

.checkout-panel .row {
    grid-template-columns: 1fr;
}

.checkout-panel .actions {
    align-items: stretch;
}

.checkout-panel .actions .button,
.checkout-panel .actions button {
    flex: 1 1 150px;
}

.checkout-panel details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: #ffffff;
}

.checkout-panel summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.mini-card,
.offer-card,
.summary-card,
.payment-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.one-dashboard-skill-shell .summary-card,
.one-dashboard-skill-shell .mini-card {
    border-color: #d8e1eb;
    background: #ffffff;
}

.one-dashboard-skill-shell .summary-card strong,
.one-dashboard-skill-shell .mini-card strong {
    color: #111827;
}

.one-dashboard-skill-shell .product-card {
    min-height: 260px;
    align-content: start;
    background: #ffffff;
}

.one-dashboard-skill-shell .product-card:hover {
    border-color: #b8c7d9;
}

.membership-panel {
    border-top: 4px solid #4285f4;
}

.membership-benefits .summary-card,
#membership-summary .summary-card {
    min-height: 122px;
}

.license-code-card {
    border-top: 3px solid #19a66a;
}

.support-request-card {
    border-top: 3px solid #d2463c;
}

.mini-card strong,
.offer-card strong,
.summary-card strong,
.payment-card strong {
    color: var(--ink);
}

.mini-card span,
.offer-card span,
.summary-card span,
.payment-card span {
    color: var(--muted);
    font-size: 14px;
}

.summary-card.selected,
.payment-card.selected {
    border-color: #1a73e8;
    background: #e8f0fe;
}

.product-card {
    align-content: start;
}

.product-card .actions {
    margin-top: 4px;
}

.product-price {
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.catalog-toolbar,
.compare-tray {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.segment-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.segment-button {
    min-height: 36px;
    padding: 7px 11px;
    border-color: var(--line);
    background: var(--surface);
    color: var(--ink);
}

.segment-button.selected {
    border-color: var(--primary);
    background: #f3f1fb;
    color: var(--primary);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.plan-card {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
    border: 1px solid #e8eaed;
    border-radius: var(--radius);
    background: var(--surface);
}

.plans-panel .plan-card {
    min-height: 100%;
}

.plan-card.selected,
.plan-card.recommended {
    border-color: #1a73e8;
}

.plan-card.recommended {
    background: #f8fafd;
}

.plan-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
}

.plan-card-title {
    display: grid;
    gap: 4px;
}

.plan-platform,
.plan-badge {
    display: inline-flex;
    width: fit-content;
    min-height: 24px;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--radius);
    background: #e8f0fe;
    color: #1967d2;
    font-size: 12px;
    font-weight: 800;
}

.plan-badge {
    background: #fef7e0;
    color: #8f6500;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.price-line strong {
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
}

.price-line span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.feature-list,
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 7px;
}

.feature-list li {
    color: var(--ink);
    font-size: 14px;
}

.feature-list li::before {
    content: "✓";
    margin-right: 7px;
    color: var(--success);
    font-weight: 800;
}

.feature-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 7px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.compare-panel {
    display: none;
    margin-top: 16px;
}

.compare-panel.visible {
    display: block;
}

.compare-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--surface);
}

.compare-table th,
.compare-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.compare-table th {
    background: var(--surface-soft);
    color: var(--ink);
    font-size: 13px;
}

.compare-table td {
    color: var(--muted);
    font-size: 14px;
}

.discount-note {
    padding: 12px 14px;
    border: 1px solid #d7e7df;
    border-radius: var(--radius);
    background: #f0faf5;
    color: var(--success);
    font-weight: 700;
}

.cart-box {
    display: grid;
    gap: 12px;
}

.cart-lines {
    display: grid;
    gap: 8px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.cart-line span {
    min-width: 0;
}

.cart-line strong {
    color: var(--ink);
    max-width: 56%;
    text-align: right;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.payment-card {
    cursor: pointer;
    min-height: 92px;
    background: #ffffff;
    color: var(--ink);
    text-align: left;
    border-color: var(--line);
    font-weight: 600;
    justify-content: start;
}

button.summary-card,
button.offer-card {
    background: var(--surface-soft);
    color: var(--ink);
    border-color: var(--line);
    cursor: pointer;
    text-align: left;
    justify-content: start;
}

button.summary-card:hover,
button.summary-card:focus-visible,
.payment-card:hover,
.payment-card:focus-visible {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.step-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.step-list b {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
}

.form-grid {
    display: grid;
    gap: 12px;
}

.compact-form {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.6fr);
}

.support-request-card .compact-form {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.65fr) minmax(120px, 0.45fr);
}

.full-field {
    margin-top: 12px;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.check-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    font-size: 13px;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
}

textarea {
    min-height: 88px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(40, 80, 150, 0.16);
    border-color: var(--secondary);
}

.status {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--ink);
    font-weight: 700;
}

.status.success {
    border-color: #b8d9cc;
    background: #edf7f2;
    color: var(--success);
}

.status.danger {
    border-color: #e7b8b3;
    background: #fff0ef;
    color: var(--danger);
}

.status.warning {
    border-color: #dacaa8;
    background: #fff8e8;
    color: #7a5615;
}

.status.subtle {
    padding: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 12px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

pre {
    max-height: 360px;
    margin: 0;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 14px;
    border: 1px solid #2d3748;
    border-radius: var(--radius);
    background: #1f2933;
    color: #edf2f7;
}

.muted {
    color: var(--muted);
}

.fine-print {
    color: var(--muted);
    font-size: 13px;
}

.legal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hidden-until-debug {
    display: none;
}

@media (max-width: 920px) {
    .top-nav,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .hero,
    .hero.compact,
    .account-app-layout,
    .account-dashboard-frame,
    .one-benefit-strip,
    .one-feature-grid,
    .one-dashboard-strip,
    .account-command-bar,
    .account-dashboard-metrics,
    .account-ops-grid,
    .account-policy-grid,
    .account-signal-list,
    .split-section,
    .site-footer,
    .grid-2,
    .grid-3,
    .product-grid,
    .plan-grid,
    .workspace,
    .compact-form,
    .support-request-card .compact-form,
    .row {
        grid-template-columns: 1fr;
    }

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

    .billing-workspace > .panel,
    .billing-workspace > .stack {
        order: initial;
    }

    .billing-workspace .cart-panel {
        position: static;
    }

    .account-app-rail {
        position: static;
        min-height: 0;
    }

    .account-app-rail__nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 620px) {
    .page {
        padding: 12px 12px 34px;
    }

    .hero,
    .panel,
    .section {
        padding: 16px;
    }

    .button,
    button {
        width: 100%;
    }

    .account-top-nav .nav-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .account-top-nav .nav-links a {
        width: auto;
        min-height: 34px;
        justify-content: center;
        padding: 7px 8px;
        font-size: 12px;
        text-align: center;
    }

    .account-app-rail {
        display: none;
    }

    body:not(.account-route-overview) .account-command-bar,
    body:not(.account-route-overview) .account-dashboard-metrics {
        display: none;
    }

    .account-workspace-intro {
        padding: 26px;
    }

    .account-hero-snapshots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-hero-snapshots article {
        min-height: 64px;
    }

    .account-app-rail__nav {
        grid-template-columns: 1fr;
    }

    .actions,
    .nav-links {
        width: 100%;
    }

    .agency-hero h1 {
        font-size: 40px;
    }

    .one-hero h1,
    h1 {
        font-size: 38px;
    }

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