:root {
    --black: #000000;
    --iron: #181818;
    --charcoal: #202020;
    --white: #ffffff;
    --ash: #7d7d7d;
    --gold: #ffc000;
    --gold-text: #ffce3e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/static/images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    z-index: -1;
    pointer-events: none;
}

/* ─── Scroll reveal ────────────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--charcoal);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav__logo-mark {
    width: 28px;
    height: 28px;
    color: var(--white);
    display: block;
}

.nav__logo-text {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav__link:hover {
    color: var(--white);
}

.nav__cta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: #917300;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: all 0.2s ease;
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 64px;
    background: transparent;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 8px;
}

.hero__eyebrow {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    padding: 6px 10px;
    border: 1px solid var(--gold);
    margin-bottom: 32px;
}

.hero__brand {
    font-family: 'Signika', sans-serif;
    font-size: 160px;
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 24px;
}

.hero__tagline {
    font-family: 'Signika', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 20px;
    max-width: 720px;
}

.hero__lede {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.56;
    color: var(--ash);
    max-width: 520px;
    margin: 0;
    opacity: 0.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero__cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--black);
    border: 0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16px;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.hero__cta:hover:not(:disabled) {
    background: #917300;
}

.hero__cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero__ghost {
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.15s ease;
}

.hero__ghost:hover {
    color: var(--white);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) 25%, rgba(255, 192, 0, 0.1) 25%, rgba(255, 192, 0, 0.1) 100%);
}

/* ─── Stats strip ──────────────────────────────────────────────────────────── */

.stats-strip {
    background: rgba(18, 18, 18, 0.90);
    border-bottom: 1px solid var(--charcoal);
}

.stats-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
}

.stat__num {
    font-family: 'Signika', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    color: var(--gold-text);
}

.stat__label {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ash);
    max-width: 160px;
    line-height: 1.4;
}

.stat__divider {
    width: 1px;
    background: var(--charcoal);
    margin: 16px 40px;
    flex-shrink: 0;
}

/* ─── Section base ─────────────────────────────────────────────────────────── */

.section {
    padding: 72px 40px;
    background: rgba(0, 0, 0, 0.86);
}

.section--iron {
    background: rgba(18, 18, 18, 0.90);
}

.section--visual-bg {
    position: relative;
    background-image: url('/static/images/constellation-problem.png');
    background-size: cover;
    background-position: center 15%;
    background-color: #000;
}

.section--visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
    z-index: 0;
}

.section--visual-bg .section__inner {
    position: relative;
    z-index: 1;
}

.section--lumen-bg {
    position: relative;
    background-image: url('/static/images/lumen-problem.png');
    background-size: cover;
    background-position: center 20%;
    background-color: #000;
}

.section--lumen-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
    z-index: 0;
}

.section--lumen-bg .section__inner {
    position: relative;
    z-index: 1;
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__inner--narrow {
    max-width: 760px;
}

.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section__header .section__lede {
    text-align: right;
    max-width: 240px;
}

.section__eyebrow {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    padding: 5px 10px;
    border: 1px solid var(--gold);
    margin-bottom: 20px;
}

.section__title {
    font-family: 'Signika', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.section__lede {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.56;
    color: var(--ash);
    margin: 0;
}

.section__body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ash);
    max-width: 620px;
    margin: 16px 0 0;
}

/* ─── Grid ─────────────────────────────────────────────────────────────────── */

.grid {
    display: grid;
    gap: 1px;
    background: var(--charcoal);
}

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

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

.grid--mt {
    margin-top: 40px;
}

.grid--gap {
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
}

/* ─── Split layout ─────────────────────────────────────────────────────────── */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--charcoal);
}

.split--reverse {
    grid-template-columns: 1fr 1fr;
}

.split__image {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.split__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.split__content {
    padding: 48px 40px;
    background: var(--iron);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split__stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    background: var(--charcoal);
    height: 100%;
}

/* ─── Problem list ─────────────────────────────────────────────────────────── */

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 28px;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--charcoal);
}

.problem-item__num {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    flex-shrink: 0;
    padding-top: 2px;
    width: 24px;
}

.problem-item__title {
    font-family: 'Signika', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 6px;
    line-height: 1.2;
}

.problem-item__body {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

/* ─── Solution ─────────────────────────────────────────────────────────────── */

.solution {
    padding: 32px;
    background: var(--charcoal);
}

.solution__title {
    font-family: 'Signika', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 0 0 10px;
}

.solution__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

/* ─── Product Cards ────────────────────────────────────────────────────────── */

.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    background: var(--iron);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 20%, rgba(0,0,0,0.0) 55%);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    border-bottom-color: var(--gold);
}

.product-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__bg {
    transform: scale(1.04);
}

.product-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 36px 32px;
    justify-content: flex-end;
}

.product-card--muted {
    cursor: default;
}

.product-card--muted:hover {
    border-bottom-color: transparent;
    background: var(--iron);
}

.product-card__num {
    display: block;
    font-family: 'Signika', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 12px;
}

.product-card__title {
    font-family: 'Signika', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 6px;
}

.product-card__sub {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 16px;
}

.product-card__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0 0 24px;
    flex: 1;
}

.product-card__cta {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.15s ease;
}

.product-card:hover .product-card__cta {
    color: var(--gold-text);
}

.product-card__expand {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.96);
    border-top: 2px solid var(--gold);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.product-card:hover .product-card__expand {
    transform: translateY(0);
}

.product-card__expand-title {
    font-family: 'Signika', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.product-card__expand-sub {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--gold-text);
    margin: 0;
}

.product-card__expand-body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

.product-card__expand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card__expand-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: var(--ash);
    padding-left: 22px;
    position: relative;
}

.product-card__expand-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-text);
}

/* ─── App preview ──────────────────────────────────────────────────────────── */

.app-preview {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.app-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.45);
    transition: transform 0.8s ease;
}

.app-preview:hover .app-preview__img {
    transform: scale(1.02);
}

.app-preview__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.5) 100%);
}

.app-preview__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.app-preview__label {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    padding: 5px 10px;
    border: 1px solid var(--gold);
}

.app-preview__text {
    font-family: 'Signika', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

/* ─── Bespoke strip ────────────────────────────────────────────────────────── */

.bespoke-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--charcoal);
    margin-top: 48px;
    overflow-x: auto;
}

.bespoke-item {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: rgba(0, 0, 0, 0.86);
    border-top: 2px solid var(--gold);
    min-width: 120px;
}

.bespoke-item__label {
    font-family: 'Signika', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.bespoke-item__detail {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--ash);
}

/* ─── Stack ────────────────────────────────────────────────────────────────── */

.stack {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--charcoal);
    margin-top: 40px;
    overflow-x: auto;
}

.stack__item {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    background: var(--iron);
    min-width: 110px;
}

.stack__item--tenshu {
    background: var(--charcoal);
    border-top: 2px solid var(--gold);
}

.stack__badge {
    font-family: 'Signika', sans-serif;
    font-size: 10px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 8px;
}

.stack__label {
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.stack__detail {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--ash);
    line-height: 1.4;
}

/* ─── Insight ──────────────────────────────────────────────────────────────── */

.insight {
    padding: 32px;
    background: var(--charcoal);
}

.insight__num {
    display: block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 12px;
}

.insight__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

/* ─── Equation / Partner ───────────────────────────────────────────────────── */

.equation {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.equation__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.equation__num {
    font-family: 'Signika', sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.92;
    color: var(--white);
}

.equation__label {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    max-width: 100px;
    line-height: 1.4;
}

.equation__op {
    font-family: 'Signika', sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.92;
    color: var(--gold-text);
    padding-top: 0;
}

.model {
    flex: 1;
    padding: 40px 36px;
    background: rgba(18, 18, 18, 0.90);
}

.model__title {
    font-family: 'Signika', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 16px;
}

.model__body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ash);
    margin: 0;
}

.model__num {
    display: block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 0 0 12px;
}

.split__stack--or {
    grid-template-rows: 1fr auto 1fr;
}

.model__or {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 36px;
    background: var(--black);
}

.model__or-line {
    flex: 1;
    height: 1px;
    background: var(--charcoal);
}

.model__or-text {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-text);
}

/* ─── Shelf banner ─────────────────────────────────────────────────────────── */

.shelf-banner {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.shelf-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.35);
}

.shelf-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shelf-banner__text {
    font-family: 'Signika', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

/* ─── Contact form ─────────────────────────────────────────────────────────── */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    resize: vertical;
    transition: border-color 0.15s ease;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--ash);
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form__actions {
    margin-top: 8px;
}

.contact-form__error {
    margin: 0;
    color: var(--gold-text);
    font-size: 13px;
    letter-spacing: -0.42px;
    text-transform: uppercase;
}

.contact-form__thanks {
    margin-top: 32px;
    font-family: 'Signika', sans-serif;
    font-size: 14px;
    letter-spacing: 0.14px;
    text-transform: uppercase;
    color: var(--gold-text);
}

/* ─── Two column ───────────────────────────────────────────────────────────── */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--charcoal);
}

.two-col__item {
    padding: 48px 40px;
    background: var(--black);
}

.two-col__title {
    font-family: 'Signika', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.two-col__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ash);
    margin: 0 0 12px;
}

.two-col__body:last-child {
    margin-bottom: 0;
}

/* ─── Feature ──────────────────────────────────────────────────────────────── */

.feature {
    padding: 32px;
    background: var(--iron);
}

.feature__title {
    font-family: 'Signika', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 10px;
}

.feature__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

/* ─── Product hero (detail pages) ─────────────────────────────────────────── */

.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 64px;
    background: transparent;
    overflow: hidden;
}

.product-hero--textured::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.product-hero--textured .product-hero__inner {
    position: relative;
    z-index: 1;
}

.product-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 8px;
}

.product-hero__back {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.15s ease;
}

.product-hero__back:hover {
    color: var(--white);
}

.product-hero__eyebrow {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    padding: 5px 10px;
    border: 1px solid var(--gold);
    margin-bottom: 24px;
}

.product-hero__title {
    font-family: 'Signika', sans-serif;
    font-size: 120px;
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 16px;
}

.product-hero__sub {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 24px;
}

.product-hero__lede {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.56;
    color: var(--ash);
    max-width: 540px;
    margin: 0 0 36px;
}

.product-hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}


/* ─── Policy page ─────────────────────────────────────────────────────────── */

.policy {
    min-height: 100vh;
    padding: 100px 40px 56px;
    background: rgba(0, 0, 0, 0.86);
}

.policy__inner {
    max-width: 760px;
    margin: 0 auto;
}

.policy__back {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.15s ease;
}

.policy__back:hover {
    color: var(--white);
}

.policy__eyebrow {
    display: inline-block;
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    padding: 5px 10px;
    border: 1px solid var(--gold);
    margin-bottom: 20px;
}

.policy__title {
    font-family: 'Signika', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 12px;
}

.policy__meta {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 48px;
}

.policy__body {
    border-top: 1px solid var(--charcoal);
    padding-top: 32px;
}

.policy__body p,
.policy__body ul,
.policy__body address {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ash);
    margin: 0 0 16px;
}

.policy__body strong {
    color: var(--white);
    font-weight: 400;
}

.policy__body em {
    font-style: italic;
}

.policy__body h2 {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 32px 0 10px;
}

.policy__body ul {
    padding-left: 20px;
}

.policy__body li {
    margin-bottom: 6px;
}

.policy__body a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.policy__body a:hover {
    color: var(--gold-text);
}

.policy__address {
    font-style: normal;
    background: var(--iron);
    padding: 20px;
    line-height: 1.9;
}

.policy__complaint {
    border-top: 1px solid var(--charcoal);
    padding-top: 16px;
    font-size: 13px;
}

/* ─── Market strip ─────────────────────────────────────────────────────────── */

.market-strip {
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid var(--charcoal);
    padding: 20px 40px;
}

.market-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.market-strip__label {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
    white-space: nowrap;
}

.market-strip__retailers {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.market-strip__retailer {
    font-family: 'Signika', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.market-strip__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ─── Team ──────────────────────────────────────────────────────────────────── */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--charcoal);
    margin-top: 40px;
}

.team-card {
    background: rgba(18, 18, 18, 0.90);
    display: flex;
    flex-direction: column;
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--charcoal);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.team-card__photo--placeholder {
    background: var(--charcoal);
}

.team-card__initials {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--ash);
}

.team-card__info {
    padding: 24px 28px 32px;
    flex: 1;
}

.team-card__name {
    font-family: 'Signika', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 4px;
}

.team-card__role {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 0 0 14px;
}

.team-card__bio {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: var(--ash);
    margin: 0;
}

/* ─── Pull quote ────────────────────────────────────────────────────────────── */

.pullquote {
    margin: 56px 0 0;
    padding: 40px 48px;
    border-left: 2px solid var(--gold);
    background: rgba(0, 0, 0, 0.5);
}

.pullquote__text {
    font-family: 'Signika', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

/* ─── Footer (full) ─────────────────────────────────────────────────────────── */

.footer {
    background: rgba(0, 0, 0, 0.96);
    border-top: 1px solid var(--charcoal);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer__logo-mark {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.footer__logo-text {
    font-family: 'Signika', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
}

.footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ash);
    margin: 0;
}

.footer__entity {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin: 0;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col-title {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin: 0 0 4px;
}

.footer__col-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.15s ease;
    line-height: 1;
}

.footer__col-link:hover {
    color: var(--white);
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__bottom > span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--ash);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer__legal-link {
    font-family: 'Signika', sans-serif;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer__legal-link:hover {
    color: var(--white);
}

.footer__sep {
    color: var(--charcoal);
    margin: 0 12px;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1280px) {
    .hero__brand { font-size: 120px; }
    .product-hero__title { font-size: 96px; }
}

@media (max-width: 1024px) {
    .hero__brand { font-size: 96px; }
    .hero__tagline { font-size: 26px; }
    .product-hero__title { font-size: 80px; }
    .stack { grid-template-columns: repeat(4, 1fr); }
    .bespoke-strip { grid-template-columns: repeat(3, 1fr); }
    .section__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .section__header .section__lede { text-align: left; max-width: 100%; }
}

@media (max-width: 768px) {
    .section--visual-bg {
        background-image: url('/static/images/constellation-problem-portrait.png');
        background-position: center 10%;
    }

    .nav { padding: 0 24px; }

    .nav__links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--black);
        border-bottom: 1px solid var(--charcoal);
        padding: 24px;
        gap: 24px;
    }

    .nav__links.is-open { display: flex; }

    .nav__cta {
        padding: 10px 0;
        background: transparent;
        color: var(--gold-text);
    }

    .nav__cta:hover { background: transparent; color: var(--white); }

    .nav__burger { display: flex; }

    .hero { padding: 96px 24px 48px; }
    .hero__brand { font-size: 72px; letter-spacing: -1px; }
    .hero__tagline { font-size: 22px; }

    .stats-strip__inner { padding: 0 24px; flex-wrap: wrap; }
    .stat { min-width: 40%; padding: 16px 0; }
    .stat__divider { display: none; }

    .section { padding: 56px 24px; }
    .section__title { font-size: 36px; }

    .split { grid-template-columns: 1fr; }
    .split__image { min-height: 280px; }
    .split__content { padding: 36px 24px; }

    .grid--2, .grid--3 { grid-template-columns: 1fr; }

    .two-col { grid-template-columns: 1fr; }
    .two-col__item { padding: 36px 24px; }

    .equation { gap: 12px; }
    .equation__num, .equation__op { font-size: 54px; }

    .contact-form__row { grid-template-columns: 1fr; }

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

    .app-preview { height: 300px; }
    .app-preview__text { font-size: 20px; }

    .shelf-banner { height: 180px; }
    .shelf-banner__text { font-size: 24px; }

    .product-hero { padding: 96px 24px 48px; }
    .product-hero__title { font-size: 54px; }

    .policy { padding: 96px 24px 40px; }
    .policy__title { font-size: 36px; }

    .market-strip { padding: 16px 24px; }
    .market-strip__inner { gap: 16px; }
    .market-strip__label { display: none; }

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

    .pullquote { padding: 28px 24px; }
    .pullquote__text { font-size: 18px; }

    .footer__inner { grid-template-columns: 1fr 1fr; padding: 40px 24px 24px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

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

@media (max-width: 425px) {
    .hero__brand { font-size: 56px; }
    .hero__tagline { font-size: 18px; }
    .hero__lede { font-size: 15px; }
    .section__title { font-size: 28px; }
    .stack { grid-template-columns: repeat(2, 1fr); }
    .bespoke-strip { grid-template-columns: repeat(2, 1fr); }
    .product-hero__title { font-size: 40px; }
    .policy__title { font-size: 28px; }
}
