/* ------------ About -------------- */

:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --ink6: #c8c2bc;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --paper3: #e8e3da;
    --accent: #c0341a;
    --gold: #e8a84c;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--fb);
    border: none;
    background: none;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.15s;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
    }
    .hamburger {
        display: block;
    }
}
.page-hero {
    background: var(--paper2);
    border-bottom: 2px solid var(--rule);
    padding: 80px 0 56px;
    margin-top: 52px;
}
.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
.stag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.stag-light {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 16px;
}
.page-hero h1 em {
    color: var(--accent);
    font-style: italic;
}
.page-hero p {
    font-size: 17px;
    color: var(--ink3);
    line-height: 1.75;
    max-width: 560px;
}
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 32px;
}
.content h2 {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}
.content p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.8;
    margin-bottom: 20px;
}
.content p strong {
    color: var(--ink);
    font-weight: 600;
}
.divider {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 48px 0;
}

/* Founder card  –  horizontal layout with real photo */
.founder-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    background: #fff;
    margin-top: 32px;
}
@media (max-width: 640px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.founder-photo {
    width: 180px;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid var(--rule);
}
@media (max-width: 640px) {
    .founder-photo {
        margin-inline: auto;
        width: 100%;
        max-width: 220px;
        height: 240px;
    }
}
.founder-info {
}
.founder-name {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.founder-title {
    font-family: var(--fm);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.founder-bio {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.8;
}
.founder-bio p {
    margin-bottom: 14px;
}
.founder-bio p:last-child {
    margin-bottom: 0;
}

.origin-block {
    background: var(--paper3);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 48px 40px;
    margin: 48px 0;
}
.origin-block blockquote {
    font-family: var(--fd);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 16px;
}
.origin-block p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.75;
}
footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* ------------ Aeo Geo -------------- */
:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --paper3: #e8e3da;
    --accent: #c0341a;
    --teal: #0f6e5a;
    --teal-soft: #e4f2ee;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--fb);
    border: none;
    background: none;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
    }
    .hamburger {
        display: block;
    }
}

/* PAGE HERO */
.page-hero {
    background: var(--paper2);
    border-bottom: 2px solid var(--rule);
    padding: 72px 0 56px;
    margin-top: 52px;
}
.page-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
}
.eyebrow {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 18px;
}
.page-hero h1 em {
    color: var(--accent);
    font-style: italic;
}
.page-hero .lede {
    font-size: 19px;
    color: var(--ink3);
    line-height: 1.75;
    max-width: 640px;
}

/* CONTENT */
.content-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 32px 80px;
}
.section {
    margin-bottom: 56px;
}
.section h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.section p {
    font-size: 17px;
    color: var(--ink3);
    line-height: 1.8;
    margin-bottom: 16px;
}
.section p:last-child {
    margin-bottom: 0;
}
.section strong {
    color: var(--ink2);
    font-weight: 600;
}
.label-tag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* COMPARISON TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    margin: 32px 0;
    font-size: 15px;
}
.compare-table th {
    font-family: var(--fm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 18px;
    background: var(--paper3);
    color: var(--ink3);
    text-align: left;
    border-bottom: 1px solid var(--rule);
}
.compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
    color: var(--ink3);
    line-height: 1.6;
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.compare-table td:first-child {
    font-weight: 600;
    color: var(--ink2);
    white-space: nowrap;
}
.compare-table td.highlight {
    background: rgba(192, 52, 26, 0.04);
    color: var(--ink2);
    font-weight: 500;
}
@media (max-width: 640px) {
    .compare-table {
        font-size: 13px;
    }
    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
    }
}

/* STACK DIAGRAM */
.stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
}
.stack-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid var(--rule);
}
.stack-row:last-child {
    border-bottom: none;
}
.stack-label {
    padding: 20px 18px;
    background: var(--paper3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--rule);
}
.stack-label .sl-tag {
    font-family: var(--fm);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.stack-label .sl-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.stack-body {
    padding: 20px 22px;
    background: #fff;
}
.stack-body p {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 480px) {
    .stack-row {
        grid-template-columns: 1fr;
    }
    .stack-label {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
}

/* CALLOUT */
.callout {
    background: var(--paper2);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 22px 24px;
    margin: 32px 0;
}
.callout p {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.7;
    margin: 0;
}

/* CTA BAND */
.cta-band {
    background: var(--paper3);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 48px 32px;
    text-align: center;
    margin-top: 56px;
}
.cta-band h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}
.cta-band p {
    font-size: 17px;
    color: var(--ink3);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 24px;
}
.btn-primary {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 14px 32px;
    border-radius: 4px;
    margin-right: 10px;
    transition: opacity 0.15s;
}
.btn-primary:hover {
    opacity: 0.85;
}
.btn-secondary {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink3);
    border: 1.5px solid var(--rule);
    padding: 13px 28px;
    border-radius: 4px;
    transition: all 0.15s;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .cta-band .btn-primary,
    .cta-band .btn-secondary {
        display: block;
        margin: 0 auto 10px;
        max-width: 260px;
    }
}

/* ------------ Blog-Aeo-geo -------------- */

:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --paper3: #e8e3da;
    --accent: #c0341a;
    --teal: #0f6e5a;
    --teal-soft: #e4f2ee;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--fb);
    border: none;
    background: none;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
    }
    .hamburger {
        display: block;
    }
}

/* ARTICLE HERO */
.article-hero {
    padding: 80px 0 56px;
    margin-top: 52px;
    border-bottom: 1px solid var(--rule);
}
.article-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
}
.breadcrumb {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--ink5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: var(--accent);
}
.breadcrumb span {
    margin: 0 8px;
    color: var(--rule);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.meta-tag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 5px 10px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.meta-date {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--ink5);
    letter-spacing: 0.04em;
}
.meta-read {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--ink5);
    letter-spacing: 0.04em;
}
.meta-dot {
    color: var(--rule);
}
h1.article-title {
    font-family: var(--fd);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
}
.article-lede {
    font-size: 20px;
    color: var(--ink3);
    line-height: 1.75;
    font-family: var(--fd);
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

/* ARTICLE BODY */
.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}
.article-body h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
    color: var(--ink);
    margin: 48px 0 14px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.article-body h2:first-child {
    margin-top: 0;
}
.article-body p {
    font-size: 18px;
    color: var(--ink3);
    line-height: 1.85;
    margin-bottom: 20px;
}
.article-body p:last-child {
    margin-bottom: 0;
}
.article-body strong {
    color: var(--ink2);
    font-weight: 600;
}
.article-body em {
    font-style: italic;
}
.article-body a {
    color: var(--accent);
    border-bottom: 1px solid rgba(192, 52, 26, 0.3);
    padding-bottom: 1px;
}
.article-body a:hover {
    border-color: var(--accent);
}

/* PULL QUOTE */
.pull-quote {
    background: var(--paper2);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 36px 0;
    font-family: var(--fd);
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: italic;
    color: var(--ink2);
    line-height: 1.5;
}

/* CALLOUT BOX */
.callout {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 36px 0;
}
.callout-label {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.callout p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.75;
    margin-bottom: 10px;
}
.callout p:last-child {
    margin-bottom: 0;
}

/* COMPARISON */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    margin: 32px 0;
}
.compare-col {
    padding: 24px 22px;
    background: #fff;
}
.compare-col:first-child {
    border-right: 1px solid var(--rule);
}
.compare-col h3 {
    font-family: var(--fm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.compare-col.col-a h3 {
    color: var(--ink5);
}
.compare-col.col-b h3 {
    color: var(--teal);
}
.compare-col p {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.65;
    margin-bottom: 8px;
}
.compare-col p:last-child {
    margin-bottom: 0;
}
@media (max-width: 520px) {
    .compare {
        grid-template-columns: 1fr;
    }
    .compare-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
}

/* SECTION DIVIDER */
.section-rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 48px 0;
}

/* AUTHOR / FOOTER OF ARTICLE */
.article-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px 64px;
}
.article-footer-inner {
    border-top: 2px solid var(--rule);
    padding-top: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.author-label {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.author-bio {
    font-size: 14px;
    color: var(--ink4);
    line-height: 1.65;
}

/* CTA BAND */
.cta-band {
    background: var(--paper3);
    border-top: 1px solid var(--rule);
    padding: 48px 32px;
    text-align: center;
}
.cta-band-inner {
    max-width: 560px;
    margin: 0 auto;
}
.cta-tag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cta-band h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
}
.cta-band p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.7;
    margin-bottom: 24px;
}
.btn-primary {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 13px 30px;
    border-radius: 4px;
    margin: 0 6px 10px;
    transition: opacity 0.15s;
    border: none;
}
.btn-primary:hover {
    opacity: 0.85;
}
.btn-secondary {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink3);
    border: 1.5px solid var(--rule);
    padding: 12px 24px;
    border-radius: 4px;
    margin: 0 6px 10px;
    transition: all 0.15s;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* RELATED */
.related {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px 64px;
}
.related h3 {
    font-family: var(--fm);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.related-card {
    padding: 20px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s;
}
.related-card:hover {
    border-color: var(--accent);
}
.related-card .rc-tag {
    font-family: var(--fm);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}
.related-card .rc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}
@media (max-width: 520px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ------------ Contact -------------- */

:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --accent: #c0341a;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--fb);
    border: none;
    background: none;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
    }
    .hamburger {
        display: block;
    }
}
.page-hero {
    background: var(--paper2);
    border-bottom: 2px solid var(--rule);
    padding: 64px 0 48px;
    margin-top: 52px;
}
.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
.stag-light {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.75;
}
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 32px 80px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}
@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-card {
    padding: 28px 24px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: #fff;
}
.contact-card-icon {
    font-size: 20px;
    margin-bottom: 12px;
}
.contact-card-label {
    font-family: var(--fm);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}
.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.contact-card-desc {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.65;
    margin-bottom: 14px;
}
.contact-card-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
}
.form-section {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 40px;
}
@media (max-width: 640px) {
    .form-section {
        padding: 24px;
    }
}
.form-section h2 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.form-section p {
    font-size: 16px;
    color: var(--ink3);
    margin-bottom: 28px;
    line-height: 1.65;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--fb);
    font-size: 14px;
    padding: 11px 14px;
    border: 1.5px solid var(--rule);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ink);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    cursor: pointer;
}
.btn-submit {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    font-family: var(--fb);
}
.btn-submit:hover {
    background: var(--accent);
}
.form-note {
    font-size: 12px;
    color: var(--ink5);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.divider {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 40px 0;
}
.location-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
@media (max-width: 480px) {
    .location-block {
        flex-direction: column;
        gap: 16px;
    }
}
.location-label {
    font-family: var(--fm);
    font-size: 10px;
    color: var(--ink5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.location-value {
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
}
footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ------------ Index -------------- */

:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --ink6: #c8c2bc;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --paper3: #e8e3da;
    --accent: #c0341a;
    --accent-soft: #f9ede9;
    --teal: #0f6e5a;
    --teal-soft: #e4f2ee;
    --amber: #a06010;
    --amber-soft: #fbf2e0;
    --plum: #5a2e8c;
    --plum-soft: #f0eafa;
    --blue: #1a5fa0;
    --blue-soft: #e6f0fa;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
::selection {
    background: var(--ink);
    color: var(--paper);
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: var(--fb);
    border: none;
    background: none;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.15s;
}
.btn-nav:hover {
    background: var(--accent);
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}

.cta-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  text-align: center;
}

.cta-btn.primary {
  background: var(--teal);
  color: #fff;
}

.cta-btn.secondary {
  background: var(--accent);
  color: #fff;
}

.cta-btn:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
    }
    .hamburger {
        display: block;
    }
}

/* HERO */
.hero {
    background: var(--paper2);
    padding: 80px 0 0;
    margin-top: 52px;
    border-bottom: 1px solid var(--rule);
}
.hero-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.h-tag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 600;
    color: var(--ink4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.h-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8a84c;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-family: var(--fd);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
}
.hero h1 em {
    color: var(--accent);
    font-style: italic;
}
.hero-sub {
    font-size: 17px;
    color: var(--ink3);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 12px;
}
.hero-team {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.hero-team-avatars {
    display: flex;
    margin-right: 4px;
}
.hero-team-avatars .ht-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--paper);
    margin-left: -8px;
    overflow: hidden;
}
.hero-team-avatars .ht-av:first-child {
    margin-left: 0;
}
.hero-team-avatars .ht-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-team-text {
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.45;
}
.hero-team-text strong {
    color: var(--ink2);
    font-weight: 600;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    width: 100%;
}
.btn-hero {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: #e8a84c;
    padding: 13px 28px;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-block;
}
.btn-hero:hover {
    background: #fff;
    transform: translateY(-2px);
}
.btn-ghost {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink3);
    border: 1px solid var(--rule);
    padding: 13px 28px;
    border-radius: 4px;
    transition: all 0.2s;
}
.btn-ghost:hover {
    color: var(--ink);
    border-color: var(--ink3);
}
.hero-stats {
    display: flex;
    gap: 36px;
    padding: 20px 0;
}
.hero-stats .n {
    font-family: var(--fm);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.hero-stats .l {
    font-size: 12px;
    color: var(--ink4);
    margin-top: 2px;
}
@media (max-width: 960px) {
    .hero-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    .btn-ghost {
        width: 100%;
    }
}

/* TESTIMONIAL */
.testimonial {
    background: var(--paper);
    padding: 0 0 48px;
}
.testi-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.testi-quote {
    font-family: var(--fd);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    font-style: italic;
    color: var(--ink3);
    line-height: 1.55;
    margin-bottom: 16px;
}

/* NEWSLETTER EMAIL MOCK */
.nl-section {
    background: var(--paper2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 64px 0;
}
.nl-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 32px;
}
.nl-email {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 24, 20, 0.06);
}
.nl-email-bar {
    background: var(--paper3);
    border-bottom: 1px solid var(--rule);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nl-email-from {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nl-email-from-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    font-family: var(--fm);
}
.nl-email-from-text {
    font-size: 12px;
    color: var(--ink4);
}
.nl-email-from-text strong {
    color: var(--ink2);
    font-weight: 600;
}
.nl-email-date {
    font-family: var(--fm);
    font-size: 10px;
    color: var(--ink5);
}
.nl-email-subj {
    padding: 18px 24px;
    border-bottom: 1px solid var(--rule);
}
.nl-email-subj h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 4px;
}
.nl-email-subj p {
    font-size: 15px;
    color: var(--ink3);
}
.nl-email-body {
    padding: 24px;
}
.nl-story {
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}
.nl-story:last-child {
    border-bottom: none;
}
.nl-story-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.nl-story-av {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
}
.nl-story-analyst {
    font-family: var(--fm);
    font-size: 12px;
    color: var(--ink4);
    letter-spacing: 0.04em;
}
.nl-story-dim {
    font-family: var(--fm);
    font-size: 12px;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nl-story h4 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
}
.nl-story p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.7;
}
.nl-email-footer {
    padding: 16px 24px;
    background: var(--paper2);
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nl-email-footer p {
    font-size: 14px;
    color: var(--ink4);
}
.nl-email-footer p em {
    font-style: normal;
    color: var(--ink3);
}
.nl-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.nl-sub-row p {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.6;
}
@media (max-width: 600px) {
    .nl-sub-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .nl-form-row {
        grid-template-columns: 1fr !important;
    }
}

/* SECTIONS */
.problem {
    background: var(--paper);
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
}
.prob-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.prob-label {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.prob-inner h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 16px;
}
.prob-inner > div:first-child p {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.75;
}
.prob-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prob-card {
    padding: 16px 18px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: #fff;
}
.prob-card .q {
    font-family: var(--fd);
    font-size: 18px;
    color: var(--ink2);
    font-style: italic;
    margin-bottom: 8px;
}
.prob-card .a {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.65;
}
@media (max-width: 800px) {
    .prob-inner {
        grid-template-columns: 1fr;
    }
}

/* DRI */
.dri-section {
    background: var(--paper2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 64px 0;
}
.dri-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dri-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.dri-tier {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid var(--rule);
    background: #fff;
}
.dri-tier-score {
    font-family: var(--fm);
    font-size: 14px;
    font-weight: 700;
    min-width: 60px;
}
.dri-tier-label {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.5;
}
.dri-dial-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (max-width: 800px) {
    .dri-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .shift-stats {
        grid-template-columns: 1fr !important;
    }
}

/* ANALYSTS */
.analysts-section {
    background: var(--paper2);
    border-bottom: 1px solid var(--rule);
    padding: 64px 0;
}
.analysts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.a-card {
    padding: 0;
    border: 1px solid var(--rule);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.a-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.a-card-visual {
    padding: 28px 20px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}
.a-face {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 14px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--paper2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.a-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.a-face-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
}
.a-name {
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.a-role {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.a-personality {
    font-family: var(--fd);
    font-size: 14px;
    font-style: italic;
    color: var(--ink2);
    line-height: 1.5;
    padding: 0 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.a-card-body {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--rule);
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.a-desc {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.65;
    flex: 1;
}
.a-trait {
    display: inline-block;
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 3px;
    margin-top: auto;
}
@media (max-width: 700px) {
    .analysts-grid {
        grid-template-columns: 1fr;
    }
}

/* REPORT + WYG + BA + PRICING + TRIGGERS + FAQ + FINAL */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
}
.stag {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.stitle {
    font-family: var(--fd);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    max-width: 640px;
}
.report-mock {
    background: var(--paper2);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 32px 28px;
    margin-top: 40px;
}
.rm-header {
    text-align: center;
    margin-bottom: 32px;
}
.rm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.rm-card {
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.rm-card-head {
    padding: 10px 16px;
    border-bottom: 1px solid var(--rule);
    font-family: var(--fm);
    font-size: 11px;
    color: var(--ink4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.rm-card-body {
    padding: 14px 16px;
}
@media (max-width: 700px) {
    .rm-grid {
        grid-template-columns: 1fr;
    }
    .rm-grid .rm-card:nth-child(3) {
        display: none;
    }
}
.wyg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
@media (max-width: 700px) {
    .wyg-grid {
        grid-template-columns: 1fr;
    }
}
.wyg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wyg-list li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--ink2);
    border-bottom: 1px solid var(--rule);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}
.wyg-list li:last-child {
    border-bottom: none;
}
.wyg-marker {
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 600;
}
.wyg-outcome li {
    color: var(--teal);
}
.wyg-outcome .wyg-marker {
    color: var(--teal);
}
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 700px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}
.ba-col {
    padding: 28px 24px;
    background: #fff;
}
.ba-col.ba-after {
    background: var(--teal-soft);
    border-left: 1px solid var(--rule);
}
@media (max-width: 700px) {
    .ba-col.ba-after {
        border-left: none;
        border-top: 1px solid var(--rule);
    }
}
.ba-col h3 {
    font-family: var(--fm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ba-before h3 {
    color: var(--ink5);
}
.ba-after h3 {
    color: var(--teal);
}
.ba-score {
    font-family: var(--fm);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}
.ba-before .ba-score {
    color: var(--amber);
}
.ba-after .ba-score {
    color: var(--teal);
}
.ba-status {
    font-size: 15px;
    color: var(--ink4);
    margin-bottom: 14px;
}
.ba-quote {
    font-size: 16px;
    color: var(--ink3);
    font-style: italic;
    padding: 14px 18px;
    background: var(--paper2);
    border-radius: 6px;
    line-height: 1.6;
    border-left: 3px solid var(--rule);
}
.ba-after .ba-quote {
    background: rgba(15, 110, 90, 0.06);
    border-left-color: var(--teal);
}
.ba-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--ink4);
    font-style: italic;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 32px;
}
@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
    grid-template-columns: 1fr;
    }
}
.pricing-card {
    padding: 32px 28px;
    background: #fff;
}
.pricing-card.featured {
    background: var(--paper2);
    border-left: 1px solid var(--rule);
}
@media (max-width: 700px) {
    .pricing-card.featured {
        border-left: none;
        border-top: 1px solid var(--rule);
    }
}
.pricing-amount {
    font-family: var(--fd);
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
}
.pricing-amount-note {
    font-family: var(--fm);
    font-size: 13px;
    color: var(--ink4);
    margin-top: 2px;
}
.pricing-type {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink2);
    margin-top: 8px;
    margin-bottom: 18px;
}
.pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pricing-includes li {
    font-size: 15px;
    color: var(--ink3);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.6;
}
.pricing-check {
    color: var(--ink6);
    flex-shrink: 0;
}
.pricing-icp {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.icp-item {
    font-size: 15px;
    color: var(--ink4);
    display: flex;
    gap: 8px;
    align-items: center;
}
.icp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rule);
    flex-shrink: 0;
}
.trigger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .trigger-grid {
        grid-template-columns: 1fr;
    }
}
.faq-item {
    border-bottom: 1px solid var(--rule);
    padding: 18px 0;
}
.faq-q {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q:hover {
    color: var(--accent);
}
.faq-q .toggle {
    font-size: 18px;
    color: var(--ink5);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-a {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}
.faq-a.open {
    max-height: 400px;
    padding-top: 12px;
}
.origin {
    padding: 56px 0;
    border-top: 1px solid var(--rule);
    text-align: center;
}
.origin blockquote {
    font-family: var(--fd);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.45;
    color: var(--ink);
    max-width: 620px;
    margin: 0 auto 14px;
    font-style: italic;
}
.origin .body {
    font-size: 16px;
    color: var(--ink4);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}
.final {
    text-align: center;
    padding: 56px 0 72px;
}
.final h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--ink);
}
.final h2 em {
    font-style: italic;
    color: var(--accent);
}
.final p {
    font-size: 17px;
    color: var(--ink4);
    max-width: 460px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-final {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.15s;
}
.btn-final:hover {
    opacity: 0.85;
}
.btn-final-o {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink3);
    border: 1.5px solid var(--rule);
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.15s;
}
.btn-final-o:hover {
    border-color: var(--accent);
    color: var(--accent);
}
footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-bg.show {
    display: flex;
}
.modal {
    background: var(--paper);
    border-radius: 8px;
    padding: 32px;
    max-width: 380px;
    width: 94%;
    box-shadow: 0 24px 64px rgba(26, 24, 20, 0.2);
    animation: fadeUp 0.3s ease;
    position: relative;
}
.modal-x {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    color: var(--ink5);
    padding: 6px;
    line-height: 1;
}
.ff {
    margin-bottom: 12px;
}
.ff label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink3);
    margin-bottom: 4px;
}
.ff input {
    width: 100%;
    font-family: var(--fb);
    font-size: 13px;
    padding: 10px 13px;
    border: 1.5px solid var(--rule);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
.btn-sub {
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 13px;
    border-radius: 4px;
    margin-top: 4px;
    transition: background 0.15s;
}
.btn-sub:hover {
    opacity: 0.85;
}

/* ------------ Privacy -------------- */

:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --accent: #c0341a;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: var(--accent);
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-decoration: none;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
    }
    .hamburger {
        display: block;
    }
}
.page-hero {
    background: var(--paper2);
    border-bottom: 2px solid var(--rule);
    padding: 64px 0 48px;
    margin-top: 52px;
}
.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
.stag-light {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 14px;
    color: var(--ink4);
    font-family: var(--fm);
}
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}
.content h2 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 36px 0 10px;
}
.content h2:first-child {
    margin-top: 0;
}
.content p {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.8;
    margin-bottom: 16px;
}
.content ul {
    margin: 0 0 16px 20px;
}
.content ul li {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.8;
    margin-bottom: 6px;
}
.content strong {
    color: var(--ink);
    font-weight: 600;
}
.info-box {
    background: var(--paper2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}
.info-box p {
    margin-bottom: 0;
    font-size: 14px;
}
footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .nav-actions .desktop-btn {
        display: none !important;
    }
    .nav-links .mobile-btn {
        display: block !important;
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }
}
@media (min-width: 701px) {
    .nav-links .mobile-btn {
        display: none !important;
    }
}


/* ----------- Terms -------------- */
:root {
    --ink: #1a1814;
    --ink2: #2e2b26;
    --ink3: #4a4640;
    --ink4: #6b6560;
    --ink5: #9a9490;
    --rule: #d8d2cc;
    --paper: #faf8f4;
    --paper2: #f2efe8;
    --accent: #c0341a;
    --fd: "Playfair Display", Georgia, serif;
    --fb: "DM Sans", sans-serif;
    --fm: "IBM Plex Mono", monospace;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--fb);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: var(--accent);
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 65px;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.nav-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: var(--fb);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-decoration: none;
}
.nav-logo em {
    color: var(--accent);
    font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-nav {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}
.hamburger {
    display: none;
    padding: 8px;
    color: var(--ink4);
}
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        padding: 16px 32px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
    }
    .hamburger {
        display: block;
    }
}
.page-hero {
    background: var(--paper2);
    border-bottom: 2px solid var(--rule);
    padding: 64px 0 48px;
    margin-top: 52px;
}
.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
.stag-light {
    font-family: var(--fm);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 14px;
    color: var(--ink4);
    font-family: var(--fm);
}
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}
.content h2 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 36px 0 10px;
}
.content h2:first-child {
    margin-top: 0;
}
.content p {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.8;
    margin-bottom: 16px;
}
.content ul {
    margin: 0 0 16px 20px;
}
.content ul li {
    font-size: 16px;
    color: var(--ink4);
    line-height: 1.8;
    margin-bottom: 6px;
}
.content strong {
    color: var(--ink);
    font-weight: 600;
}
.info-box {
    background: var(--paper2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}
.info-box p {
    margin-bottom: 0;
    font-size: 14px;
}
footer {
    border-top: 1px solid var(--rule);
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink4);
}
@media (max-width: 600px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.nav-links a:hover,
.partner-link:hover {
  text-decoration: underline;
  color: var(--accent);
}