:root {
    --ink: #171615;
    --ink-soft: #24211f;
    --paper: #faf8f3;
    --white: #ffffff;
    --line: #ddd6cc;
    --muted: #69635f;
    --orange: #f47b3a;
    --orange-dark: #b94713;
    --mint: #e2eee7;
    --aqua: #2e8e82;
    --soft: #f1ece4;
    --shell: 1180px;
    --header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body,
button,
input {
    letter-spacing: 0;
}

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

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.015em;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 22px;
}

code {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #efefeb;
    color: #292c31;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.6;
}

.site-shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 22, 21, 0.88);
    backdrop-filter: blur(12px);
    color: var(--white);
    transition: background-color 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(23, 22, 21, 0.97);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 132px;
    font-size: 21px;
    font-weight: 700;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    padding: 24px 0 22px;
    color: rgba(255, 255, 255, 0.76);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--white);
}

.site-nav a.is-active::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
}

.site-nav .nav-download {
    min-width: 102px;
    padding: 10px 16px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    color: var(--white);
    text-align: center;
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download.is-active {
    background: var(--orange);
    color: var(--ink);
}

.site-nav .nav-download.is-active::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #ffb37d;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--orange);
    color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #ff914f;
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(11, 13, 16, 0.5);
    color: var(--white);
}

.button--glass:hover,
.button--glass:focus-visible {
    border-color: var(--white);
    background: rgba(11, 13, 16, 0.72);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #272b31;
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.text-link--light {
    color: var(--white);
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: calc(100svh - 84px);
    min-height: 520px;
    max-height: 760px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 145%;
    max-width: none;
    height: 112%;
    object-fit: cover;
    object-position: left bottom;
    transform: translateY(-7%);
}

.hero__veil {
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.68) 48%, rgba(12, 10, 9, 0.36) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 68px;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 8px;
    font-size: 84px;
}

.hero__lead {
    max-width: 670px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 22px;
    line-height: 1.45;
}

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

.hero__release {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.release-bar {
    background: var(--orange);
    color: var(--ink);
}

.release-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
}

.release-bar p {
    margin: 0;
}

.release-bar a {
    flex: 0 0 auto;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.section {
    padding: 104px 0;
}

.section--light {
    background: var(--paper);
}

.section--ink {
    background: var(--ink);
    color: var(--white);
}

.section--soft {
    background: var(--soft);
}

.section--privacy {
    background: var(--mint);
}

.section--orange {
    background: var(--orange);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-heading--wide {
    max-width: 930px;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: 48px;
}

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

.capability {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.capability__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #e7b99f;
    border-radius: 50%;
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 800;
}

.capability h3 {
    margin-bottom: 8px;
    font-size: 28px;
}

.capability p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.product-view__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.65fr);
    align-items: center;
    gap: 68px;
}

.product-view__copy h2 {
    margin-bottom: 22px;
}

.product-view__copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.app-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #343840;
    border-radius: 14px;
    background: #111318;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.app-frame img {
    width: 150%;
    max-width: none;
    height: 112%;
    object-fit: cover;
    object-position: left bottom;
    transform: translateY(-7%);
}

.app-frame--wide {
    aspect-ratio: 2 / 1;
}

.privacy-callout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.privacy-callout h2 {
    max-width: 520px;
    margin: 0;
    font-size: 52px;
}

.privacy-callout > div:last-child > p {
    margin-bottom: 26px;
    font-size: 20px;
}

.download-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.download-cta h2 {
    max-width: 720px;
    margin: 0;
    font-size: 48px;
}

.download-cta .eyebrow {
    color: #512000;
}

.page-hero {
    display: flex;
    align-items: flex-end;
    min-height: 480px;
    padding: 160px 0 76px;
    background: var(--soft);
}

.page-hero .site-shell > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 21px;
}

.page-hero h1 {
    max-width: 960px;
    margin-bottom: 24px;
}

.page-hero--privacy {
    background: var(--mint);
}

.page-hero--support {
    background: #e6edf1;
}

.page-hero--release {
    background: #f4d9c7;
}

.feature-image-band {
    padding: 72px 0;
    background: var(--ink);
}

.feature-details {
    border-top: 1px solid var(--line);
}

.feature-details article {
    display: grid;
    grid-template-columns: 130px minmax(0, 0.8fr) minmax(0, 1fr);
    column-gap: 38px;
    row-gap: 18px;
    padding: 52px 0;
    border-bottom: 1px solid var(--line);
}

.feature-details article > span {
    grid-column: 1;
    grid-row: 1 / 3;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-details h2 {
    grid-column: 2;
    margin: 0;
    font-size: 34px;
}

.feature-details p {
    grid-column: 3;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.feature-details ul {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 30px;
    margin: 4px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.feature-details li::before {
    margin-right: 9px;
    color: var(--aqua);
    content: "+";
    font-weight: 900;
}

.download-hero__inner {
    display: flex;
    align-items: center;
    gap: 34px;
}

.download-hero__icon {
    flex: 0 0 auto;
    width: 112px;
    height: 112px;
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(31, 36, 41, 0.16);
}

.download-hero__inner h1 {
    margin-bottom: 18px;
}

.download-hero__inner p:last-child {
    margin-bottom: 0;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 72px;
    align-items: start;
}

.download-panel {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 56px rgba(28, 31, 34, 0.08);
}

.download-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.download-panel__top span,
.platform-mark {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.download-panel h2 {
    margin: 6px 0 24px;
}

.platform-mark {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
}

.release-data {
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}

.release-data div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.release-data dt {
    color: var(--muted);
}

.release-data dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 650;
}

.download-notes h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.download-notes h3 {
    margin: 36px 0 8px;
}

.download-notes ul {
    margin: 0;
    padding-left: 20px;
}

.download-notes li {
    margin-bottom: 12px;
}

.download-notes code {
    margin: 8px 0 24px;
}

.compact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 72px;
    align-items: center;
}

.compact-band h2 {
    margin-bottom: 0;
}

.compact-band > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: space-between;
    gap: 90px;
}

.policy-layout aside nav {
    position: sticky;
    top: 104px;
    display: grid;
    border-top: 1px solid var(--line);
}

.policy-layout aside a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.policy-layout aside a:hover,
.policy-layout aside a:focus-visible {
    color: var(--orange-dark);
}

.policy-copy > section {
    scroll-margin-top: 110px;
    padding-bottom: 58px;
    margin-bottom: 58px;
    border-bottom: 1px solid var(--line);
}

.policy-copy h2 {
    margin-bottom: 20px;
}

.policy-copy p,
.policy-copy li {
    color: #464a50;
    font-size: 18px;
}

.policy-copy li {
    margin-bottom: 12px;
}

.policy-updated {
    color: var(--muted);
    font-size: 14px !important;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 80px;
    align-items: start;
}

.support-start {
    position: sticky;
    top: 104px;
}

.support-start ol {
    margin: 0 0 30px;
    padding-left: 22px;
}

.support-start li {
    margin-bottom: 12px;
}

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

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

.faq-list summary {
    position: relative;
    padding: 24px 44px 24px 0;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 24px;
    right: 4px;
    content: "+";
    color: var(--orange-dark);
    font-size: 24px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 680px;
    padding: 0 44px 24px 0;
    margin: 0;
    color: var(--muted);
}

.release-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    justify-content: space-between;
    gap: 90px;
    align-items: start;
}

.release-layout > aside {
    position: sticky;
    top: 104px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
}

.release-layout > aside span,
.release-layout > aside strong,
.release-layout > aside p {
    display: block;
}

.release-layout > aside span {
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.release-layout > aside strong {
    margin: 8px 0;
    font-size: 40px;
}

.release-layout > aside p {
    color: var(--muted);
}

.release-layout article > h2 {
    margin-bottom: 36px;
}

.release-layout article > h3 {
    margin-top: 46px;
}

.release-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.release-list li {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.release-list span {
    color: var(--muted);
}

.not-found {
    display: flex;
    align-items: center;
    min-height: 76svh;
    padding: 160px 0 90px;
}

.not-found h1 {
    max-width: 760px;
    margin-bottom: 20px;
}

.not-found p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 19px;
}

.site-footer {
    padding: 64px 0 28px;
    background: var(--ink);
    color: var(--white);
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 46px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__brand img {
    border-radius: 7px;
}

.site-footer__brand strong,
.site-footer__brand span {
    display: block;
}

.site-footer__brand span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

@media (max-width: 920px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .section {
        padding: 82px 0;
    }

    .product-view__grid,
    .privacy-callout,
    .download-layout,
    .support-layout {
        grid-template-columns: 1fr;
    }

    .product-view__grid,
    .privacy-callout,
    .download-layout,
    .support-layout {
        gap: 48px;
    }

    .product-view__copy {
        max-width: 680px;
    }

    .feature-details article {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .feature-details article > span {
        grid-column: 1;
    }

    .feature-details h2,
    .feature-details p,
    .feature-details ul {
        grid-column: 2;
    }

    .feature-details p {
        grid-row: auto;
    }

    .feature-details ul {
        grid-template-columns: 1fr;
    }

    .policy-layout,
    .release-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .policy-layout aside,
    .release-layout > aside {
        display: none;
    }

    .support-start {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
    }

    .site-shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    h1 {
        font-size: 42px;
    }

    h2,
    .section-heading h2,
    .privacy-callout h2,
    .download-cta h2 {
        font-size: 32px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 10px 16px 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(11, 13, 16, 0.99);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a,
    .site-nav .nav-download {
        min-width: 0;
        padding: 13px 10px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        text-align: left;
    }

    .site-nav a.is-active::after {
        display: none;
    }

    .site-nav .nav-download {
        margin-top: 8px;
        border: 1px solid var(--orange);
        border-radius: 5px;
        text-align: center;
    }

    .hero {
        height: calc(100svh - 72px);
        min-height: 540px;
        max-height: 680px;
    }

    .hero__media img {
        width: 185%;
        object-position: 18% center;
    }

    .hero__veil {
        background: rgba(4, 6, 8, 0.69);
    }

    .hero__content {
        padding-bottom: 46px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero__lead {
        font-size: 18px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .release-bar__inner,
    .download-cta__inner,
    .site-footer__top,
    .download-hero__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .release-bar__inner {
        justify-content: center;
        min-height: 112px;
        gap: 8px;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .capability {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        padding: 28px 0;
    }

    .capability h3 {
        font-size: 23px;
    }

    .capability p {
        font-size: 16px;
    }

    .product-view__grid,
    .privacy-callout,
    .download-layout,
    .support-layout {
        gap: 38px;
    }

    .app-frame,
    .app-frame--wide {
        aspect-ratio: 4 / 3;
    }

    .app-frame img {
        width: 170%;
    }

    .download-cta__inner {
        gap: 28px;
    }

    .download-cta .button {
        width: 100%;
    }

    .page-hero {
        min-height: 430px;
        padding: 130px 0 58px;
    }

    .page-hero .site-shell > p:last-child {
        font-size: 18px;
    }

    .feature-image-band {
        padding: 40px 0;
    }

    .feature-details article {
        display: block;
        padding: 38px 0;
    }

    .feature-details article > span,
    .feature-details h2,
    .feature-details p,
    .feature-details ul {
        display: block;
    }

    .feature-details h2 {
        margin: 10px 0 16px;
        font-size: 29px;
    }

    .feature-details ul {
        padding-top: 18px;
    }

    .download-hero__icon {
        width: 82px;
        height: 82px;
    }

    .download-panel {
        padding: 26px;
    }

    .download-panel__top {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .compact-band {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .policy-copy > section {
        padding-bottom: 42px;
        margin-bottom: 42px;
    }

    .policy-copy p,
    .policy-copy li {
        font-size: 16px;
    }

    .release-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .site-footer nav {
        justify-content: flex-start;
    }

    .site-footer__bottom {
        gap: 14px;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .brand {
        min-width: 0;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .button {
        padding-inline: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Galpho product-site refinement pass */
:root {
    --ink: #11151b;
    --ink-soft: #1c2530;
    --paper: #f6f8fb;
    --line: #d9e0ea;
    --muted: #5f6b7a;
    --orange: #ff8a3d;
    --orange-dark: #b6531e;
    --mint: #e7f3ee;
    --aqua: #237c8a;
    --soft: #edf2f7;
}

body {
    background: var(--paper);
    color: var(--ink);
}

h1,
h2 {
    font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
    font-weight: 760;
    letter-spacing: 0;
}

h3 {
    letter-spacing: 0;
}

.site-header {
    background: rgba(12, 17, 24, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled {
    background: rgba(12, 17, 24, 0.98);
}

.hero {
    min-height: 660px;
    max-height: 820px;
    background: #0c1118;
}

.hero__media img {
    width: 132%;
    height: 108%;
    object-position: 22% bottom;
    filter: saturate(1.04) contrast(1.03);
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(8, 12, 18, 0.94) 0%, rgba(8, 12, 18, 0.78) 46%, rgba(8, 12, 18, 0.38) 100%),
        linear-gradient(0deg, rgba(8, 12, 18, 0.88) 0%, rgba(8, 12, 18, 0) 45%);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: 76px;
}

.hero__lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.hero__facts span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.hero__release {
    display: none;
}

.button,
.site-nav .nav-download {
    border-radius: 7px;
}

.button--primary {
    background: #ff8a3d;
    color: #10151c;
    box-shadow: 0 12px 28px rgba(255, 138, 61, 0.24);
}

.release-bar {
    background: #17202b;
    color: #ffffff;
}

.release-bar a {
    color: #ffb37d;
}

.section--surface {
    padding: 34px 0 96px;
    background: var(--paper);
}

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

.workflow-grid article {
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(22, 32, 44, 0.06);
}

.workflow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: #17202b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.workflow-grid h3 {
    margin-bottom: 10px;
}

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

.capability-list {
    border-top-color: #cfd8e5;
}

.capability {
    border-bottom-color: #cfd8e5;
}

.capability__number {
    border-radius: 8px;
    border-color: #ffc69d;
    background: #fff6ef;
}

.product-view__grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.7fr);
}

.app-frame {
    border-radius: 8px;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.privacy-callout {
    align-items: center;
}

.download-panel,
.release-layout > aside {
    border-radius: 8px;
}

.site-footer {
    background: #0c1118;
}

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

    .workflow-grid article {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero__facts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section--surface {
        padding: 20px 0 68px;
    }
}

/* LocalSend-inspired Galpho product site */
:root {
    --ink: #101824;
    --ink-soft: #182536;
    --paper: #f7fafc;
    --white: #ffffff;
    --line: #d8e1ea;
    --muted: #596879;
    --orange: #ff8a3d;
    --orange-dark: #b94f17;
    --mint: #e5f4ef;
    --aqua: #167d86;
    --soft: #edf3f8;
    --shell: 1160px;
    --header-height: 72px;
}

html {
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
}

h1,
h2,
h3 {
    letter-spacing: 0 !important;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(16, 24, 36, 0.1);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(16, 24, 36, 0.06);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(16, 24, 36, 0.14);
}

.brand {
    min-width: 126px;
    color: var(--ink);
}

.brand img {
    border-radius: 8px;
}

.site-nav {
    gap: 26px;
}

.site-nav a {
    color: rgba(16, 24, 36, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a.is-active::after {
    background: var(--orange);
}

.site-nav .nav-download {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(255, 138, 61, 0.22);
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download.is-active {
    background: #ff9b59;
    color: var(--ink);
}

.nav-toggle {
    color: var(--ink);
}

.hero {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 148px 0 0;
    overflow: hidden;
    background: #0d1622;
    color: var(--white);
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
}

.hero::before {
    background: url('/assets/galpho-app-gallery.jpg') center 34% / cover no-repeat;
    opacity: 0.28;
}

.hero::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(13, 22, 34, 0.82) 0%, rgba(13, 22, 34, 0.94) 72%, #0d1622 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    text-align: center;
}

.hero h1 {
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: 78px;
    line-height: 0.98;
}

.hero__lead {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 21px;
}

.hero__actions {
    justify-content: center;
}

.hero__facts {
    justify-content: center;
    margin-top: 22px;
}

.hero__facts span {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.hero__showcase {
    position: relative;
    max-width: 980px;
    margin: 54px auto -78px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #121923;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero__showcase img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}

.hero__showcase figcaption {
    margin: 0;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-align: left;
}

.stats-strip {
    padding: 120px 0 38px;
    background: var(--paper);
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.stats-strip__grid div {
    min-height: 118px;
    padding: 24px;
    background: var(--white);
}

.stats-strip__grid strong,
.stats-strip__grid span {
    display: block;
}

.stats-strip__grid strong {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.15;
}

.stats-strip__grid span {
    color: var(--muted);
    font-size: 14px;
}

.section-heading--center {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading > p:not(.eyebrow) {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 18px;
}

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

.feature-card,
.community-card,
.trust-grid article {
    border-radius: 8px;
}

.feature-card {
    min-height: 255px;
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 48px rgba(16, 24, 36, 0.06);
}

.feature-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 48px;
    border: 1px solid #ffc69d;
    border-radius: 8px;
    background: #fff6ef;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-card p,
.workflow-list p,
.community-card p,
.trust-grid span,
.trust-copy p:not(.eyebrow),
.download-cta__inner p:not(.eyebrow) {
    color: var(--muted);
}

.section--surface {
    background: var(--soft);
}

.how-it-works {
    display: grid;
    gap: 36px;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 46px;
    align-items: center;
}

.app-frame--compact {
    aspect-ratio: 16 / 10;
    border-color: rgba(16, 24, 36, 0.12);
    background: #111923;
}

.app-frame--compact img {
    width: 138%;
    max-width: none;
    height: 110%;
    object-fit: cover;
    object-position: left bottom;
    transform: translateY(-5%);
}

.workflow-list {
    display: grid;
    gap: 18px;
}

.workflow-list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.workflow-list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.workflow-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.workflow-list h3 {
    margin-bottom: 6px;
}

.workflow-list p,
.feature-card p,
.community-card p {
    margin: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.trust-copy {
    padding-right: 28px;
}

.trust-copy h2 {
    margin-bottom: 18px;
    font-size: 44px;
}

.trust-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.trust-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 21px;
}

.trust-grid span {
    color: rgba(255, 255, 255, 0.68);
}

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

.community-card {
    display: grid;
    min-height: 220px;
    align-content: start;
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 48px rgba(16, 24, 36, 0.06);
}

.community-card:hover,
.community-card:focus-visible {
    border-color: #ffbc91;
    transform: translateY(-2px);
}

.community-card span {
    margin-bottom: 42px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.community-card strong {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.15;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 72px;
    align-items: start;
}

.faq-section .section-heading {
    margin-bottom: 0;
}

.download-cta__inner > div > p:last-child {
    margin: 16px 0 0;
    color: rgba(16, 24, 36, 0.72);
    font-size: 18px;
}

.site-footer__top,
.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
    gap: 42px;
    align-items: start;
}

.site-footer nav {
    justify-content: flex-end;
}

@media (max-width: 1040px) {
    .feature-card-grid,
    .stats-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .trust-copy {
        grid-column: 1 / -1;
        max-width: 780px;
        padding-right: 0;
    }
}

@media (max-width: 920px) {
    .how-it-works__grid,
    .faq-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
    }

    .site-nav {
        background: rgba(255, 255, 255, 0.99);
        border-top: 1px solid rgba(16, 24, 36, 0.1);
        box-shadow: 0 18px 40px rgba(16, 24, 36, 0.12);
    }

    .site-nav a,
    .site-nav .nav-download {
        color: var(--ink);
        border-bottom-color: rgba(16, 24, 36, 0.1);
    }

    .site-nav .nav-download {
        border: 1px solid var(--orange);
        background: var(--orange);
    }

    .hero {
        padding-top: 118px;
    }

    .hero__content {
        text-align: left;
    }

    .hero h1,
    .hero__lead {
        margin-right: 0;
        margin-left: 0;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__facts {
        justify-content: flex-start;
    }

    .hero__showcase {
        margin-top: 38px;
        margin-bottom: -50px;
    }

    .stats-strip {
        padding-top: 86px;
    }

    .feature-card-grid,
    .stats-strip__grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .community-card,
    .trust-grid article {
        min-height: 0;
    }

    .feature-card__mark,
    .community-card span {
        margin-bottom: 28px;
    }

    .site-footer__top,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 440px) {
    .hero h1 {
        font-size: 42px;
    }

    .stats-strip__grid strong {
        font-size: 20px;
    }
}
/* Logo contrast variants */
.brand--header {
    min-width: 138px;
}

.brand__logo {
    display: block;
    width: 138px;
    max-width: none;
    height: auto;
    border-radius: 0 !important;
}

.brand--footer .brand__logo {
    width: 144px;
}

.site-footer__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.site-footer__brand > span {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.site-footer__brand .brand {
    min-width: 0;
}

@media (max-width: 760px) {
    .brand--header {
        min-width: 122px;
    }

    .brand__logo {
        width: 122px;
    }

    .brand--footer .brand__logo {
        width: 136px;
    }
}
/* Larger logo sizing */
:root {
    --header-height: 84px;
}

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }
}
/* Larger visible logo overrides */
.brand--header {
    min-width: 184px;
}

.brand__logo {
    width: 184px;
}

.brand--footer .brand__logo {
    width: 198px;
}

@media (max-width: 760px) {
    .brand--header {
        min-width: 154px;
    }

    .brand__logo {
        width: 154px;
    }

    .brand--footer .brand__logo {
        width: 172px;
    }
}
/* Force readable logo size over legacy icon rules */
.site-header .brand--header {
    min-width: 260px !important;
}

.site-header .brand__logo--header {
    width: 260px !important;
    height: auto !important;
    max-width: none !important;
}

.site-footer .brand__logo--footer {
    width: 280px !important;
    height: auto !important;
    max-width: none !important;
}

@media (max-width: 760px) {
    .site-header .brand--header {
        min-width: 190px !important;
    }

    .site-header .brand__logo--header {
        width: 190px !important;
    }

    .site-footer .brand__logo--footer {
        width: 220px !important;
    }
}
/* Icon-only brand mark */
.brand--icon-only {
    min-width: 52px !important;
    width: 52px;
    gap: 0;
}

.brand--icon-only .brand__icon {
    display: block;
    width: 52px !important;
    height: 52px !important;
    max-width: none !important;
    border-radius: 10px !important;
}

.site-footer .brand--icon-only {
    min-width: 56px !important;
    width: 56px;
}

.site-footer .brand--icon-only .brand__icon {
    width: 56px !important;
    height: 56px !important;
}

@media (max-width: 760px) {
    .brand--icon-only {
        min-width: 46px !important;
        width: 46px;
    }

    .brand--icon-only .brand__icon {
        width: 46px !important;
        height: 46px !important;
    }
}
/* LocalSend-style teal/slate palette */
:root {
    --ink: #111827;
    --ink-soft: #1f2937;
    --paper: #f9fafb;
    --white: #ffffff;
    --line: #d1d5db;
    --muted: #4b5563;
    --orange: #82d5c8;
    --orange-dark: #006a60;
    --mint: #e7f3f0;
    --aqua: #0f766e;
    --soft: #f3f4f6;
}

body {
    background: #f9fafb;
    color: #111827;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(17, 24, 39, 0.1);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(17, 24, 39, 0.14);
}

.site-nav a,
.page-hero .site-shell > p:last-child,
.capability p,
.feature-card p,
.workflow-list p,
.community-card p,
.compact-band > p,
.policy-copy p,
.policy-copy li,
.release-list span,
.download-cta__inner p:not(.eyebrow) {
    color: #4b5563;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.brand {
    color: #111827;
}

.site-nav a.is-active::after,
.faq-list summary::after {
    background: #14b8a6;
    color: #006a60;
}

.site-nav a.is-active::after {
    background: #14b8a6;
}

.button--primary,
.site-nav .nav-download,
.section--orange {
    background: #82d5c8;
    color: #05201c;
}

.button--primary,
.site-nav .nav-download {
    border-color: #82d5c8;
    box-shadow: 0 12px 28px rgba(0, 106, 96, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible,
.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download.is-active {
    background: #99f6e4;
    border-color: #99f6e4;
    color: #05201c;
}

.button--glass {
    border-color: rgba(153, 246, 228, 0.46);
    background: rgba(17, 24, 39, 0.5);
    color: #ffffff;
}

.button--glass:hover,
.button--glass:focus-visible {
    border-color: #99f6e4;
    background: rgba(17, 24, 39, 0.72);
}

.button--dark {
    background: #111827;
    color: #ffffff;
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #1f2937;
}

.eyebrow,
.feature-details article > span,
.download-panel__top span,
.platform-mark,
.release-layout > aside span,
.community-card span {
    color: #006a60;
}

.eyebrow--light {
    color: #82d5c8;
}

.hero,
.section--ink,
.site-footer {
    background: #050807;
}

.hero::before {
    opacity: 0.22;
}

.hero::after {
    background: linear-gradient(180deg, rgba(5, 8, 7, 0.84) 0%, rgba(14, 21, 19, 0.94) 72%, #050807 100%);
}

.hero__facts span,
.trust-grid article {
    border-color: rgba(130, 213, 200, 0.24);
    background: rgba(130, 213, 200, 0.1);
}

.hero__showcase {
    border-color: rgba(130, 213, 200, 0.26);
    background: #0e1513;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(130, 213, 200, 0.08);
}

.hero__showcase figcaption,
.trust-grid span,
.trust-copy p:not(.eyebrow),
.site-footer nav,
.site-footer__bottom,
.site-footer__brand > span {
    color: rgba(255, 255, 255, 0.68);
}

.stats-strip,
.section--light {
    background: #f9fafb;
}

.section--surface,
.section--soft {
    background: #f3f4f6;
}

.section--privacy {
    background: #e7f3f0;
}

.release-bar {
    background: #111827;
    color: #ffffff;
}

.release-bar a,
.release-bar strong,
.text-link,
.text-link--light {
    color: #0f766e;
}

.text-link--light {
    color: #82d5c8;
}

.stats-strip__grid,
.capability-list,
.capability,
.feature-details,
.feature-details article,
.feature-details ul,
.release-list,
.release-list li,
.faq-list,
.faq-list details,
.release-data,
.release-data div,
.policy-copy > section,
.policy-layout aside nav,
.policy-layout aside a {
    border-color: #d1d5db;
}

.stats-strip__grid {
    background: #d1d5db;
}

.stats-strip__grid div,
.feature-card,
.community-card,
.workflow-grid article,
.download-panel,
.release-layout > aside {
    background: #ffffff;
    border-color: #d1d5db;
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
}

.feature-card__mark,
.capability__number {
    border-color: #cce8e2;
    background: #f4fbf8;
    color: #006a60;
}

.workflow-list span,
.workflow-grid span {
    background: #111827;
    color: #ffffff;
}

.community-card:hover,
.community-card:focus-visible {
    border-color: #82d5c8;
    box-shadow: 0 20px 54px rgba(0, 106, 96, 0.12);
}

.feature-details li::before {
    color: #14b8a6;
}

.download-cta .eyebrow {
    color: #05201c;
}

.download-cta h2,
.download-cta__inner p:not(.eyebrow) {
    color: #05201c;
}

code {
    border-color: #cce8e2;
    background: #f4fbf8;
    color: #111827;
}

@media (max-width: 760px) {
    .site-nav {
        background: rgba(255, 255, 255, 0.99);
        border-top-color: rgba(17, 24, 39, 0.1);
    }

    .site-nav a,
    .site-nav .nav-download {
        color: #111827;
        border-bottom-color: rgba(17, 24, 39, 0.1);
    }
}
/* Keep FAQ controls text-like in teal */
.faq-list summary::after {
    background: transparent;
    color: #006a60;
}
/* Galpho accent restore on LocalSend-style neutrals */
:root {
    --ink: #111827;
    --ink-soft: #1f2937;
    --paper: #f9fafb;
    --white: #ffffff;
    --line: #d1d5db;
    --muted: #4b5563;
    --orange: #ff8a3d;
    --orange-dark: #b6531e;
    --mint: #e7f3f0;
    --aqua: #237c8a;
    --soft: #f3f4f6;
}

.site-nav a.is-active::after {
    background: #ff8a3d;
}

.button--primary,
.site-nav .nav-download,
.section--orange {
    background: #ff8a3d;
    color: #10151c;
}

.button--primary,
.site-nav .nav-download {
    border-color: #ff8a3d;
    box-shadow: 0 12px 28px rgba(255, 138, 61, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download.is-active {
    background: #ff9b59;
    border-color: #ff9b59;
    color: #10151c;
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(17, 24, 39, 0.5);
    color: #ffffff;
}

.button--glass:hover,
.button--glass:focus-visible {
    border-color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
}

.eyebrow,
.feature-details article > span,
.download-panel__top span,
.platform-mark,
.release-layout > aside span,
.community-card span,
.release-bar a,
.release-bar strong,
.text-link {
    color: #b6531e;
}

.eyebrow--light,
.text-link--light {
    color: #ffb37d;
}

.hero__facts span,
.trust-grid article {
    border-color: rgba(255, 138, 61, 0.24);
    background: rgba(255, 138, 61, 0.1);
}

.hero__showcase {
    border-color: rgba(255, 138, 61, 0.26);
    background: #0e1513;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 138, 61, 0.08);
}

.feature-card__mark,
.capability__number {
    border-color: #ffc69d;
    background: #fff6ef;
    color: #b6531e;
}

.feature-details li::before {
    color: #ff8a3d;
}

.community-card:hover,
.community-card:focus-visible {
    border-color: #ffbc91;
    box-shadow: 0 20px 54px rgba(255, 138, 61, 0.14);
}

.download-cta .eyebrow {
    color: #512000;
}

.download-cta h2,
.download-cta__inner p:not(.eyebrow) {
    color: #10151c;
}

.faq-list summary::after {
    background: transparent;
    color: #b6531e;
}

code {
    border-color: #ffd6b8;
    background: #fff6ef;
    color: #111827;
}

@media (max-width: 760px) {
    .site-nav .nav-download {
        border-color: #ff8a3d;
        background: #ff8a3d;
    }
}
/* Final dark LocalSend-style surface pass with Galpho accents */
:root {
    --ink: #f9fafb;
    --ink-soft: #e5e7eb;
    --paper: #050807;
    --white: #0e1b18;
    --line: rgba(255, 255, 255, 0.08);
    --muted: #a0b0ad;
    --orange: #ff8a3d;
    --orange-dark: #ffb37d;
    --mint: #0d1b18;
    --aqua: #ff8a3d;
    --soft: #071210;
    --header-height: 72px;
}

html,
body {
    background: #050807 !important;
    color: #f9fafb !important;
}

.site-header,
.site-header.is-scrolled {
    background: rgba(8, 19, 17, 0.94) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    color: #f9fafb !important;
}

.brand,
.nav-toggle,
.site-nav a,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: #f9fafb !important;
}

.site-nav a {
    color: #a0b0ad !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: #ffffff !important;
}

.site-nav a.is-active::after {
    background: #ff8a3d !important;
}

.site-nav .nav-download,
.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download.is-active,
.button--primary,
.button--primary:hover,
.button--primary:focus-visible,
.section--orange {
    background: #ff8a3d !important;
    border-color: #ff8a3d !important;
    color: #10151c !important;
}

.site-nav .nav-download,
.button--primary {
    box-shadow: 0 14px 34px rgba(255, 138, 61, 0.24) !important;
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: #10201d !important;
    color: #ffffff !important;
}

.button--glass:hover,
.button--glass:focus-visible,
.button--dark:hover,
.button--dark:focus-visible {
    background: #162823 !important;
    color: #ffffff !important;
}

.button--dark {
    background: #071210 !important;
    color: #ffffff !important;
}

.hero,
.section,
.section--light,
.section--surface,
.section--soft,
.section--privacy,
.feature-image-band,
.stats-strip,
.content-band,
.not-found {
    background: #050807 !important;
    color: #f9fafb !important;
}

.hero {
    padding-top: 132px !important;
}

.hero::before {
    opacity: 0.2 !important;
}

.hero::after {
    background: linear-gradient(180deg, rgba(5, 8, 7, 0.9) 0%, rgba(5, 8, 7, 0.96) 72%, #050807 100%) !important;
}

.hero__lead,
.hero__facts span,
.hero__showcase figcaption,
.section-heading > p:not(.eyebrow),
.page-hero .site-shell > p:last-child,
.capability p,
.feature-card p,
.workflow-list p,
.community-card p,
.trust-grid span,
.trust-copy p:not(.eyebrow),
.compact-band > p,
.policy-copy p,
.policy-copy li,
.release-list span,
.download-cta__inner p:not(.eyebrow),
.download-notes,
.download-notes li,
.release-data dt,
.release-data dd,
.faq-list details p,
.not-found p:not(.eyebrow),
.site-footer nav,
.site-footer__bottom,
.site-footer__brand > span {
    color: #a0b0ad !important;
}

h1,
h2,
h3,
.stats-strip__grid strong,
.feature-card h3,
.community-card strong,
.workflow-list h3,
.download-panel h2,
.download-notes h2,
.download-notes h3,
.policy-copy h2,
.support-start h2,
.faq-list summary,
.release-layout article > h2,
.release-layout article > h3,
.release-layout > aside strong,
.trust-grid strong {
    color: #f9fafb !important;
}

.stats-strip__grid,
.feature-card-grid,
.community-grid,
.workflow-grid,
.workflow-list,
.faq-list,
.capability-list,
.feature-details,
.release-list,
.release-data,
.policy-layout aside nav {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.stats-strip__grid,
.feature-card,
.community-card,
.workflow-grid article,
.download-panel,
.release-layout > aside,
.app-frame,
.hero__showcase,
.trust-grid article,
.support-start,
.faq-list details,
.policy-layout aside a,
.release-list li,
.release-data div,
.capability,
.feature-details article,
.feature-details ul,
.policy-copy > section {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.stats-strip__grid {
    background: rgba(255, 255, 255, 0.08) !important;
}

.stats-strip__grid div,
.feature-card,
.community-card,
.workflow-grid article,
.download-panel,
.release-layout > aside {
    background: #0e1b18 !important;
    box-shadow: none !important;
}

.hero__showcase,
.app-frame,
.app-frame--compact {
    background: #0a1513 !important;
    border-color: rgba(255, 138, 61, 0.24) !important;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42) !important;
}

.feature-card__mark,
.capability__number,
.workflow-list span,
.workflow-grid span,
.platform-mark {
    background: #10201d !important;
    border-color: rgba(255, 138, 61, 0.32) !important;
    color: #ffb37d !important;
}

.eyebrow,
.eyebrow--light,
.feature-details article > span,
.download-panel__top span,
.release-layout > aside span,
.community-card span,
.text-link,
.text-link--light,
.release-bar a,
.release-bar strong,
.feature-details li::before,
.faq-list summary::after {
    color: #ffb37d !important;
}

.faq-list summary::after {
    background: transparent !important;
}

.community-card:hover,
.community-card:focus-visible {
    border-color: rgba(255, 138, 61, 0.5) !important;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2) !important;
}

.page-hero,
.page-hero--features,
.page-hero--download,
.page-hero--privacy,
.page-hero--support,
.page-hero--release,
.release-bar,
.site-footer {
    background: #071210 !important;
    color: #f9fafb !important;
}

.download-cta h2,
.download-cta .eyebrow,
.download-cta__inner p:not(.eyebrow) {
    color: #10151c !important;
}

code {
    background: #0e1b18 !important;
    border-color: rgba(255, 138, 61, 0.22) !important;
    color: #f9fafb !important;
}

.policy-layout aside a:hover,
.policy-layout aside a:focus-visible,
.news-item h2 a:hover,
.news-item__link:hover {
    color: #ffb37d !important;
}

@media (max-width: 760px) {
    .site-nav {
        background: rgba(8, 19, 17, 0.98) !important;
        border-top-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
    }

    .site-nav a,
    .site-nav .nav-download {
        border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    }
}