/* ═══════════════════════════════════════════════════════════
   Growth Applied — رشدگاه ACC / شبکه سفیران
   Deep teal + brass · compact hero · local fonts only
   Patterns from Melk/Education Applied (rhythm, not colors)
═══════════════════════════════════════════════════════════ */

:root {
    --ga-ink: #062825;
    --ga-deep: #041C1A;
    --ga-teal: #0C6B6F;
    --ga-teal-bright: #128A94;
    --ga-brass: #B8944A;
    --ga-brass-soft: #EDE4CF;
    --ga-mist: #EEF4F3;
    --ga-paper: #FAFBFB;
    --ga-muted: #5A6F6C;
    --ga-line: #C9D9D6;
    --ga-shadow: 0 28px 70px rgba(6, 40, 37, .12);
    --ga-font: 'Vazirmatn', 'Manrope', system-ui, sans-serif;
    --ga-display: 'Fraunces', 'Vazirmatn', Georgia, serif;
    --ga-ui: 'Manrope', 'Vazirmatn', system-ui, sans-serif;
}

body.growth-body {
    margin: 0;
    background: var(--ga-paper);
    font-family: var(--ga-font);
    color: var(--ga-ink);
}

.growth-app,
.ga-applied {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(18, 138, 148, .06) 0%, transparent 45%),
        radial-gradient(ellipse at 100% 20%, rgba(184, 148, 74, .05) 0%, transparent 40%),
        var(--ga-paper);
    color: var(--ga-ink);
}

/* ── Utility ── */
.ga-util {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    padding: 8px 40px;
    background: var(--ga-deep);
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
}
.ga-util a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    transition: color .2s;
}
.ga-util a:hover { color: var(--ga-brass); }
.ga-util__gold { color: var(--ga-brass) !important; font-weight: 700; }

/* ── Header ── */
.ga-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 32px;
    background: rgba(250, 251, 251, .94);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s, border-color .3s;
}
.ga-header--scrolled {
    box-shadow: 0 10px 36px rgba(6, 40, 37, .08);
    border-bottom-color: var(--ga-line);
}
.ga-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}
.ga-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--ga-ink) 0%, var(--ga-teal) 100%);
    color: var(--ga-brass);
    display: grid;
    place-items: center;
    font-family: var(--ga-display);
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid rgba(184, 148, 74, .4);
    box-shadow: 0 8px 20px rgba(6, 40, 37, .22);
}
.ga-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.ga-brand__name {
    font-family: var(--ga-display);
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.ga-brand__name em {
    font-style: italic;
    color: var(--ga-teal);
    font-weight: 600;
}
.ga-brand__sub {
    font-family: var(--ga-ui);
    font-size: .56rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ga-muted);
    font-weight: 600;
    margin-top: 2px;
}
.ga-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: auto;
}
.ga-nav a,
.ga-nav button {
    color: var(--ga-ink);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s;
}
.ga-nav a:hover,
.ga-nav button:hover {
    background: var(--ga-mist);
    color: var(--ga-teal);
}
.ga-header__cta {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--ga-ink);
    color: #fff !important;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: transform .2s, background .2s;
}
.ga-header__cta:hover { transform: translateY(-1px); }
.ga-header__cta--gold {
    background: linear-gradient(135deg, #D4B56A, var(--ga-brass));
    color: var(--ga-ink) !important;
    box-shadow: 0 8px 20px rgba(184, 148, 74, .28);
}

/* ── Compact hero — text ON image (shop/melk rhythm) ── */
.ga-hero {
    position: relative;
    min-height: min(42vh, 340px);
    display: grid;
    align-content: end;
    overflow: hidden;
    background: var(--ga-deep);
}
.ga-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(108deg, rgba(4, 28, 26, .92) 0%, rgba(4, 28, 26, .62) 42%, rgba(12, 107, 111, .35) 100%),
        linear-gradient(180deg, transparent 35%, rgba(4, 28, 26, .9) 100%),
        url('/acc-engine/assets/img/portals/growth/hero-collab.jpg') center 28%/cover no-repeat;
    animation: ga-ken 18s ease-in-out infinite alternate;
}
@keyframes ga-ken {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.ga-hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ga-hero__content {
    position: relative;
    z-index: 2;
    padding: 28px 48px 36px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: ga-rise .85s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes ga-rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
.ga-hero__brand {
    font-family: var(--ga-display);
    font-size: clamp(1.45rem, 3.2vw, 2.15rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.03em;
    line-height: 1;
}
.ga-hero__brand span {
    color: var(--ga-brass);
    font-style: italic;
}
.ga-hero h1 {
    margin: 0 0 8px;
    font-family: var(--ga-display);
    font-size: clamp(1.2rem, 2.6vw, 1.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.ga-hero h1 em {
    font-style: italic;
    color: #E8D5A8;
}
.ga-hero__lead {
    margin: 0 auto 16px;
    max-width: 520px;
    font-size: .94rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}
.ga-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.ga-hero__ref {
    margin: 12px 0 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
}
.ga-hero__ref strong { color: var(--ga-brass); }

/* ── Buttons ── */
.ga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .86rem;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    border: none;
    transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.ga-btn:hover { transform: translateY(-1px); }
.ga-btn--gold {
    background: linear-gradient(135deg, #D4B56A, var(--ga-brass));
    color: var(--ga-ink);
    box-shadow: 0 10px 28px rgba(184, 148, 74, .35);
}
.ga-btn--ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(8px);
}
.ga-btn--ghost:hover {
    border-color: var(--ga-brass);
    color: var(--ga-brass);
}
.ga-btn--dark {
    background: var(--ga-ink);
    color: #fff;
}
.ga-btn--teal {
    background: var(--ga-teal);
    color: #fff;
    box-shadow: 0 10px 24px rgba(12, 107, 111, .28);
}
.ga-btn--outline {
    background: transparent;
    color: var(--ga-ink);
    border: 1px solid var(--ga-line);
}
.ga-btn--outline:hover {
    border-color: var(--ga-teal);
    color: var(--ga-teal);
}
.ga-btn--sm { padding: 6px 12px; font-size: .78rem; }
.ga-btn--block { width: 100%; }

/* ── Sections ── */
.ga-section { padding: 64px 48px; }
.ga-section--mist {
    background:
        linear-gradient(180deg, rgba(238, 244, 243, .95), rgba(238, 244, 243, .98)),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 11px,
            rgba(12, 107, 111, .03) 11px,
            rgba(12, 107, 111, .03) 12px
        );
}
.ga-section--ink {
    background: linear-gradient(160deg, #041C1A 0%, #0A3532 55%, #041C1A 100%);
    color: #fff;
}
.ga-section--deep {
    background: var(--ga-deep);
    color: #fff;
}
.ga-section__head {
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
}
.ga-kicker {
    display: inline-block;
    font-family: var(--ga-ui);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ga-teal);
    font-weight: 700;
    margin-bottom: 10px;
}
.ga-section--ink .ga-kicker,
.ga-section--deep .ga-kicker { color: var(--ga-brass); }
.ga-section__head h2 {
    margin: 0 0 10px;
    font-family: var(--ga-display);
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.ga-section__head p {
    margin: 0;
    color: var(--ga-muted);
    line-height: 1.7;
    font-size: .98rem;
}
.ga-section--ink .ga-section__head p,
.ga-section--deep .ga-section__head p {
    color: rgba(255, 255, 255, .68);
}

/* Value pillars — not cards */
.ga-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--ga-line);
    overflow: hidden;
    background: #fff;
    max-width: 1180px;
    margin: 0 auto;
}
.ga-value {
    padding: 32px 26px;
    border-left: 1px solid var(--ga-line);
    position: relative;
    transition: background .3s;
    text-align: center;
}
.ga-value:first-child { border-left: none; }
.ga-value::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--ga-brass);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}
.ga-value:hover { background: var(--ga-brass-soft); }
.ga-value:hover::before { transform: scaleX(1); }
.ga-value__num {
    font-family: var(--ga-display);
    font-size: 1.85rem;
    color: var(--ga-brass);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.ga-value strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.ga-value span {
    font-size: .9rem;
    color: var(--ga-muted);
    line-height: 1.6;
}

/* Proof strip */
.ga-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ga-proof strong {
    display: block;
    font-family: var(--ga-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--ga-brass);
    font-weight: 700;
}
.ga-proof span {
    font-size: .86rem;
    color: rgba(255, 255, 255, .58);
}

/* Services — substance blocks */
.ga-svc-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}
.ga-svc-block {
    display: grid;
    grid-template-columns: 1fr 1.4fr auto;
    gap: 28px;
    align-items: start;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid var(--ga-line);
    border-right: 4px solid var(--ga-teal);
    transition: box-shadow .3s, border-color .25s, transform .25s;
    text-align: center;
}
.ga-svc-block:hover {
    box-shadow: var(--ga-shadow);
    transform: translateY(-2px);
    border-color: rgba(12, 107, 111, .35);
}
.ga-svc-block__meta { min-width: 0; text-align: center; }
.ga-svc-block__tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ga-teal);
    margin-bottom: 8px;
}
.ga-svc-block h3 {
    margin: 0 0 6px;
    font-family: var(--ga-display);
    font-size: 1.35rem;
    font-weight: 700;
}
.ga-svc-block__tagline {
    margin: 0;
    color: var(--ga-muted);
    font-size: .9rem;
    line-height: 1.5;
}
.ga-svc-block__body {
    display: grid;
    gap: 10px;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--ga-ink);
    text-align: center;
}
.ga-svc-block__body dt {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ga-teal);
    margin: 0;
}
.ga-svc-block__body dd {
    margin: 2px 0 0;
    color: var(--ga-muted);
}
.ga-svc-block__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}
.ga-svc-block__price {
    font-family: var(--ga-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ga-ink);
    text-align: center;
    padding: 10px 12px;
    background: var(--ga-mist);
    border-radius: 4px;
}
.ga-svc-block__price small {
    display: block;
    font-family: var(--ga-font);
    font-size: .72rem;
    font-weight: 600;
    color: var(--ga-muted);
    margin-top: 2px;
}

/* Paths — interaction containers */
.ga-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}
.ga-path {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--ga-line);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ga-path::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ga-teal), var(--ga-brass));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s;
}
.ga-path:hover::after { transform: scaleX(1); }
.ga-path--device {
    background: linear-gradient(180deg, #fff 0%, #F7F1E4 100%);
    border-color: rgba(184, 148, 74, .4);
}
.ga-path__badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ga-teal);
    margin-bottom: 10px;
}
.ga-path--device .ga-path__badge { color: #8A6A20; }
.ga-path h3 {
    margin: 0 0 10px;
    font-family: var(--ga-display);
    font-size: 1.4rem;
}
.ga-path__lead {
    margin: 0 0 16px;
    color: var(--ga-muted);
    font-size: .92rem;
    line-height: 1.6;
}
.ga-path ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-position: inside;
    color: var(--ga-ink);
    font-size: .88rem;
    line-height: 1.7;
}
.ga-path li { margin-bottom: 4px; }

/* How it works */
.ga-how {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.ga-how__col h3 {
    margin: 0 0 18px;
    font-family: var(--ga-display);
    font-size: 1.25rem;
    text-align: center;
}
.ga-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
}
.ga-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    justify-items: center;
}
.ga-step > div {
    text-align: center;
}
.ga-step:last-child { border-bottom: none; }
.ga-step__n {
    font-family: var(--ga-display);
    font-size: 1.5rem;
    color: var(--ga-brass);
    font-weight: 700;
    line-height: 1;
}
.ga-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: .98rem;
}
.ga-step span {
    font-size: .86rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.55;
}

/* Story / ethics split */
.ga-story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--ga-line);
}
.ga-story__media {
    min-height: 380px;
    background:
        linear-gradient(135deg, rgba(6, 40, 37, .4), rgba(12, 107, 111, .25)),
        url('/acc-engine/assets/img/portals/growth/story-network.jpg') center/cover;
}
.ga-story__body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    text-align: center;
}
.ga-ethics-list {
    margin: 8px 0 0;
    padding: 0;
    list-style-position: inside;
    text-align: center;
    font-size: .9rem;
    line-height: 1.7;
    color: var(--ga-ink);
}
.ga-story__body .ga-btn,
.ga-path .ga-btn {
    align-self: center;
}
.ga-story__body h3 {
    margin: 0 0 12px;
    font-family: var(--ga-display);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.25;
}
.ga-story__body p {
    margin: 0 0 14px;
    color: var(--ga-muted);
    line-height: 1.75;
    font-size: .96rem;
}

/* Help band */
.ga-help {
    background: var(--ga-ink);
    color: #fff;
    padding: 52px 48px;
}
.ga-help__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}
.ga-help h2 {
    margin: 0 0 8px;
    font-family: var(--ga-display);
    font-size: 1.75rem;
    font-weight: 700;
}
.ga-help p {
    margin: 0 auto;
    color: rgba(255, 255, 255, .6);
    max-width: 420px;
}
.ga-help__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.ga-help__actions .ga-btn--ghost {
    border-color: rgba(255, 255, 255, .28);
}

.ga-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 48px;
    background: #021412;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}
.ga-footer a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
}
.ga-footer a:hover { color: var(--ga-brass); }
.ga-footer button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}
.ga-footer button:hover { color: var(--ga-brass); }

/* Forms / panels */
.ga-form-shell {
    padding: 32px 48px 56px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(18, 138, 148, .08) 0%, transparent 50%),
        var(--ga-mist);
    min-height: calc(100vh - 70px);
}
.ga-panel {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--ga-line);
    border-radius: 4px;
    padding: 32px;
    box-shadow: var(--ga-shadow);
}
.ga-panel h2 {
    margin: 0 0 6px;
    font-family: var(--ga-display);
    font-size: 1.55rem;
}
.ga-panel__lead {
    margin: 0 0 22px;
    color: var(--ga-muted);
    font-size: .92rem;
    line-height: 1.6;
}
.ga-field { margin-bottom: 14px; }
.ga-field label {
    display: block;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ga-muted);
    letter-spacing: .02em;
}
.ga-field input,
.ga-field select,
.ga-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 13px;
    border: 1px solid var(--ga-line);
    border-radius: 4px;
    font-family: inherit;
    font-size: .92rem;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.ga-field input:focus,
.ga-field select:focus,
.ga-field textarea:focus {
    outline: none;
    border-color: var(--ga-teal);
    box-shadow: 0 0 0 3px rgba(12, 107, 111, .12);
}
.ga-field textarea { min-height: 90px; resize: vertical; }
.ga-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .85rem;
    line-height: 1.55;
    margin: 14px 0;
}
.ga-check input { margin-top: 3px; }
.ga-msg {
    margin-top: 12px;
    font-size: .88rem;
    min-height: 1.2em;
}
.ga-msg--ok { color: var(--ga-teal); }
.ga-msg--err { color: #b42318; }

.ga-pkgs {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}
.ga-pkg {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--ga-line);
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s;
    position: relative;
}
.ga-pkg input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ga-pkg.is-on {
    border-color: var(--ga-teal);
    background: rgba(12, 107, 111, .06);
}
.ga-pkg__info strong { display: block; font-size: .92rem; }
.ga-pkg__info small { color: var(--ga-muted); font-size: .78rem; }
.ga-pkg__price {
    font-weight: 700;
    color: var(--ga-teal);
    font-size: .88rem;
    white-space: nowrap;
}

/* Workspace */
.ga-ws-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    background: linear-gradient(90deg, var(--ga-deep), #0A3532);
    color: #fff;
}
.ga-ws-header .ga-brand__name { color: #fff; }
.ga-ws-header .ga-brand__name em { color: var(--ga-brass); }
.ga-ws-header .ga-brand__sub { color: rgba(255, 255, 255, .5); }
.ga-ws-user {
    margin-right: auto;
    font-size: .85rem;
    opacity: .85;
}
.ga-ws-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.ga-ws-nav button,
.ga-ws-nav a {
    background: rgba(255, 255, 255, .08);
    border: none;
    color: #fff;
    padding: 7px 13px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: .8rem;
    text-decoration: none;
    transition: background .2s;
}
.ga-ws-nav button:hover { background: rgba(255, 255, 255, .14); }
.ga-ws-nav button.is-on,
.ga-ws-nav a.is-on {
    background: var(--ga-brass);
    color: var(--ga-ink);
    font-weight: 700;
}
.ga-ws-main {
    padding: 28px 32px 48px;
    max-width: 1100px;
    margin: 0 auto;
}
.ga-ws-title {
    font-family: var(--ga-display);
    margin: 0 0 8px;
    font-size: 1.55rem;
}
.ga-ws-lead {
    color: var(--ga-muted);
    margin: 0 0 20px;
    font-size: .9rem;
}
.ga-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.ga-stat {
    background: var(--ga-mist);
    border: 1px solid var(--ga-line);
    border-radius: 4px;
    padding: 16px;
}
.ga-stat strong {
    display: block;
    font-family: var(--ga-display);
    font-size: 1.35rem;
    color: var(--ga-teal);
}
.ga-stat span {
    font-size: .76rem;
    color: var(--ga-muted);
}

.ga-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
    border: 1px solid var(--ga-line);
    border-radius: 4px;
    background: #fff;
}
.ga-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
}
.ga-table th,
.ga-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--ga-line);
    text-align: right;
}
.ga-table tr:last-child td { border-bottom: none; }
.ga-table th {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ga-muted);
    font-weight: 700;
    background: var(--ga-mist);
}
.ga-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 700;
    background: var(--ga-mist);
    color: var(--ga-teal);
}
.ga-badge--ok { background: rgba(12, 107, 111, .14); }
.ga-badge--wait {
    background: var(--ga-brass-soft);
    color: #8a6a20;
}

.ga-login {
    min-height: 78vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(12, 107, 111, .12) 0%, transparent 55%),
        var(--ga-mist);
}
.ga-login__card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 4px;
    padding: 32px;
    border: 1px solid var(--ga-line);
    box-shadow: var(--ga-shadow);
}
.ga-login__brand {
    font-family: var(--ga-display);
    font-size: 1.4rem;
    margin: 0 0 4px;
}
.ga-login__brand em {
    color: var(--ga-teal);
    font-style: italic;
}
.ga-login h3 {
    margin: 14px 0 6px;
    font-size: 1.08rem;
}
.ga-login__hint {
    color: var(--ga-muted);
    font-size: .85rem;
    margin: 0 0 18px;
    line-height: 1.55;
}
.ga-demo-note {
    margin-top: 16px;
    padding: 12px;
    background: var(--ga-mist);
    border-radius: 4px;
    font-size: .78rem;
    color: var(--ga-muted);
}
.ga-demo-note code {
    background: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    color: var(--ga-ink);
}
.ga-demo-btns {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ga-boot {
    padding: 48px;
    text-align: center;
    color: var(--ga-muted);
}

.ga-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.ga-reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (max-width: 1000px) {
    .ga-values { grid-template-columns: 1fr 1fr; }
    .ga-value:nth-child(2) { border-left: none; }
    .ga-value:nth-child(3) { border-top: 1px solid var(--ga-line); }
    .ga-value:nth-child(4) { border-top: 1px solid var(--ga-line); }
    .ga-svc-block { grid-template-columns: 1fr; }
    .ga-svc-block__aside { flex-direction: row; align-items: center; }
    .ga-proof { grid-template-columns: 1fr 1fr; gap: 20px; }
    .ga-how { grid-template-columns: 1fr; }
    .ga-story { grid-template-columns: 1fr; }
    .ga-story__media { min-height: 240px; }
}

@media (max-width: 900px) {
    .ga-stats { grid-template-columns: 1fr 1fr; }
    .ga-paths { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .ga-header,
    .ga-section,
    .ga-hero__content,
    .ga-footer,
    .ga-ws-main,
    .ga-help,
    .ga-form-shell {
        padding-left: 18px;
        padding-right: 18px;
    }
    .ga-hero { min-height: min(34vh, 260px); }
    .ga-values { grid-template-columns: 1fr; }
    .ga-value { border-left: none; border-top: 1px solid var(--ga-line); }
    .ga-value:first-child { border-top: none; }
    .ga-nav { display: none; }
    .ga-util { display: none; }
    .ga-svc-block__aside { flex-direction: column; align-items: stretch; }
    .ga-proof { grid-template-columns: 1fr 1fr; }
}
