@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;600;700&family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700&display=swap");

:root {
    color-scheme: light;
    --blue: #b9dbf2;
    --blue-strong: #5a8fb9;
    --smoke: #f5f5f5;
    --white: #ffffff;
    --orange: #e6a06a;
    --yellow: #f3c873;
    --ink: #0f1b2d;
    --ink-soft: #2a3b52;
    --line: #d7e2ed;
    --shadow: 0 18px 48px rgba(15, 27, 45, 0.16);
    --radius: 18px;
    --brand-candor: #7b3f22;
    --brand-lead: #4b7fa8;
    --brand-mark-size: 84px;
    --brand-name-size: 36px;
    --brand-lead-size: calc(var(--brand-name-size) * 0.5);
    --font-body: "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
    --font-display: "Comfortaa", "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
    --font-brand: "Comfortaa", "Fredoka", "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
    --logo-image: url("https://candor.you/files/img/logo/candor-mark.png?v=13");
    --logo-zoom: 100% 100%;
    --logo-glyph-opacity: 0;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(185, 219, 242, 0.7), transparent 60%),
        linear-gradient(180deg, #f8fbff 0%, #f5f5f5 55%, #fff6ee 100%);
}

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

.osEm {
    font-weight: 800;
    color: var(--ink);
    background-image: linear-gradient(90deg, rgba(243, 200, 115, 0.85), rgba(185, 219, 242, 0.85));
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 2px;
}

.page {
    --page-gutter: clamp(14px, 2.6vw, 54px);
    --edge-pad: clamp(8px, calc(var(--page-gutter) * 0.35), 22px);
    min-height: 100vh;
    padding: var(--edge-pad) var(--page-gutter);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

body.is-updates .page {
    padding-bottom: clamp(10px, calc(var(--page-gutter) * 0.4), 24px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    --brand-mark-size: 84px;
    --brand-name-size: 36px;
    --brand-lead-size: calc(var(--brand-name-size) * 0.5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 1px;
}

.brandLink {
    text-decoration: none;
    color: inherit;
}

.brandTitle {
    position: relative;
}

.logo {
    width: var(--brand-mark-size);
    height: var(--brand-mark-size);
    aspect-ratio: 1 / 1;
    border-radius: 0;
    display: grid;
    place-items: center;
    background-color: transparent;
    background-image: var(--logo-image);
    background-size: var(--logo-zoom);
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    overflow: visible;
    position: relative;
    flex: 0 0 auto;
}

.logoGlyph {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink);
    line-height: 1;
    opacity: var(--logo-glyph-opacity);
}

.brandText {
    position: relative;
    height: var(--brand-mark-size);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.16s ease;
    transform-origin: center;
}

.brandTitle {
    display: flex;
    align-items: baseline;
    gap: 0;
    justify-content: center;
}

.brandName {
    font-size: var(--brand-name-size);
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--brand-candor);
    font-family: var(--font-brand);
    line-height: 1;
}

.brandName,
.brandLead {
    transition: text-shadow 0.16s ease;
}

.brandLink:hover .brandText {
    transform: scale(1.03);
}

.brandLink:hover .brandName {
    text-shadow: 0 6px 16px rgba(123, 63, 34, 0.24);
}

.brandLink:hover .brandLead {
    text-shadow: 0 6px 16px rgba(75, 127, 168, 0.22);
}

.brand .meta {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--ink-soft);
    text-transform: none;
    font-family: var(--font-body);
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
}

.brand .meta.minimal {
    text-transform: none;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}

.brand .meta.minimal::before,
.brand .meta.minimal::after {
    content: "-";
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.welcome {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--ink-soft);
}

.accountLink {
    color: var(--ink);
    font-weight: 700;
    font-size: 19px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.accountLink:hover {
    border-bottom-color: var(--brand-candor);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 18px rgba(15, 27, 45, 0.16);
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 27, 45, 0.22);
}

.btn:active {
    transform: translateY(0);
}

.btn.primary {
    background: var(--ink);
    color: var(--smoke);
    border-color: var(--ink);
}

.btn.accent {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1a0f;
    border-color: #e1a36d;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.9);
}

.btn.slim {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
}

.hero {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 26px;
    align-items: center;
}

.heroText h1 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(30px, 4.6vw, 52px);
    letter-spacing: -0.3px;
}

.heroText p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.updatesCard {
    display: grid;
    gap: 14px;
}

.miniCaption {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: none;
    color: var(--ink-soft);
    font-weight: 600;
}

.miniCaption::before,
.miniCaption::after {
    content: "-";
}

.updatesFeed {
    display: grid;
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

.updateCard {
    border-radius: 14px;
    border: 1px solid rgba(185, 219, 242, 0.65);
    background: rgba(185, 219, 242, 0.18);
    padding: 14px;
    display: grid;
    gap: 8px;
}

.updateHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.updateVersion {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
}

.updateMeta {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.4px;
}

.updateList {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 13px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}


.timeline h3 {
    margin: 14px 0 10px;
    font-family: var(--font-display);
    font-size: 20px;
}

.timeline p {
    margin: 0 0 16px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.timelineMeta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: var(--ink-soft);
}

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

.grid h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 18px;
}

.grid p {
    margin: 0 0 12px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.link {
    color: var(--brand-candor);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-soft);
    padding-top: 28px;
}

.footLink {
    position: relative;
    color: inherit;
    text-decoration: none;
    padding-bottom: 2px;
    transition: transform 0.12s ease, color 0.12s ease;
}

.footLink::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-strong), var(--yellow));
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.footLink:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.footStrong {
    color: var(--ink);
    font-weight: 600;
}

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

@media (max-width: 680px) {
    .page {
        --page-gutter: 12px;
        padding: var(--edge-pad) var(--page-gutter);
        gap: 24px;
    }
    .nav { flex-direction: column; align-items: flex-start; }
    .actions { width: 100%; align-items: center; }
    .actions .btn { flex: 1 1 140px; }
    .brandText { align-items: flex-start; text-align: left; }
    .meta { position: static; margin-top: 4px; }
    .footer { flex-direction: row; align-items: center; gap: 12px; }
}








