/* ==========================================================================
   Omoha Solutions — shared redesign stylesheet
   Indigo / dark theme. Hanken Grotesk + JetBrains Mono.
   Used by index, about, process, portfolio (work), ai-mvp, services.
   ========================================================================== */

:root {
    --accent: #5A54E8;
    --accent-soft: #8A8AFF;
    --bg: #08080C;
    --surface: #0D0D14;
    --border: rgba(255, 255, 255, 0.08);
    --fg: #F3F4F7;
    --muted: #8A8D98;
    --green: #34D399;
    --mono: 'JetBrains Mono', monospace;
    --sans: 'Hanken Grotesk', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(1000px 520px at 72% -8%, rgba(107, 107, 247, 0.13), transparent 62%), var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #565963;
}

select {
    appearance: none;
    -webkit-appearance: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-soft);
    outline-offset: 3px;
}

/* Keyframes (homepage hero) */
@keyframes omoha-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes omoha-pulse { 0%, 100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.45); opacity: 0; } }
@keyframes omoha-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes omoha-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ---------- Layout ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.kicker {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent-soft);
    margin-bottom: 26px;
}

/* Display headings */
.display-1 { font-weight: 800; font-size: clamp(2.6rem, 6vw, 76px); line-height: 0.94; letter-spacing: -0.035em; }
.display-2 { font-weight: 800; font-size: clamp(2rem, 5vw, 58px); line-height: 0.95; letter-spacing: -0.03em; }
.display-3 { font-weight: 800; font-size: clamp(2rem, 4.5vw, 52px); line-height: 0.95; letter-spacing: -0.03em; }
.display-4 { font-weight: 800; font-size: clamp(1.9rem, 4vw, 46px); line-height: 0.97; letter-spacing: -0.03em; }

.lead { font-size: 19px; line-height: 1.6; color: var(--muted); }
.lead-sm { font-size: 18px; line-height: 1.65; color: var(--muted); }
.body-text { font-size: 16px; line-height: 1.65; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 18px 30px;
    transition: filter .25s, background .3s, color .3s;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
}

.btn-primary:hover {
    filter: brightness(1.12);
}

.btn-ghost {
    color: var(--fg);
    background: transparent;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--fg);
    color: var(--bg);
}

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Nav ---------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(8, 8, 12, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-brand svg {
    display: block;
}

/* Logo mark — crop logo.png to just the grid (strip baked-in text + padding) */
.brand-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: url('../img/logo-mark.png') no-repeat center / contain;
}

.nav-brand span {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--fg);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--muted);
    transition: color .25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--fg);
}

.nav-cta {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    background: var(--accent);
    padding: 12px 22px;
    transition: filter .25s;
}

.nav-cta:hover {
    filter: brightness(1.12);
}

.mobile-menu-toggle {
    display: none;
    color: var(--fg);
    padding: 0.5rem;
    z-index: 51;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid var(--border);
    padding: 6rem 2rem 2rem;
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav a {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--fg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 55;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    padding: 172px 0 80px;
}

.hero .kicker {
    margin-bottom: 30px;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 30px;
    text-wrap: balance;
}

.hero .lead {
    max-width: 680px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
}

/* Terminal card */
.term {
    background: #0A0A10;
    border: 1px solid var(--border);
    max-width: 480px;
    margin: 0 0 40px;
}

.term-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2A2A33;
}

.term-name {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    margin-left: 8px;
}

.term-body {
    font-family: var(--mono);
    font-size: 14px;
    padding: 16px;
    color: #C9CBD3;
}

.term-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: -2px;
    animation: omoha-blink 1.1s steps(1) infinite;
}

/* Orbit graphic */
.orbit-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    justify-self: center;
}

.orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.orbit-rings {
    transform-origin: 280px 280px;
    animation: omoha-rotate 60s linear infinite;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-core .ring-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: omoha-pulse 2.6s ease-out infinite;
}

.orbit-core .ring-static {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(107, 107, 247, 0.5);
}

.orbit-core .core-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 40px 6px rgba(107, 107, 247, 0.55);
}

.orbit-card {
    position: absolute;
    background: #0E0E16;
    border: 1px solid var(--border);
    padding: 14px 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: omoha-float 6s ease-in-out infinite;
}

.orbit-card .head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.orbit-card .check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 10px;
    font-weight: 800;
}

.orbit-card .title {
    font-weight: 700;
    font-size: 14px;
}

.orbit-card .sub {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
}

.orbit-card .week {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: #54575E;
    margin-top: 3px;
}

/* ---------- Stats ---------- */
.stats {
    border-top: 1px solid var(--border);
    padding-top: 48px;
    display: grid;
    gap: 40px;
}

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

.stat-num {
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 54px);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: 12px;
}

/* ---------- Section spacing ---------- */
.section { padding: 40px 0 120px; }
.section-tight { padding: 0 0 120px; }

.section-title {
    margin-bottom: 56px;
}

/* ---------- Feature grid (2-col, bordered) ---------- */
.feature-grid {
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-cell {
    padding: 48px;
    border-bottom: 1px solid var(--border);
}

.feature-cell:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.feature-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.feature-num {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 26px;
}

.feature-cell h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 16px;
}

.feature-cell p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

.feature-tag {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-soft);
    margin-top: 26px;
}

.cap-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-soft);
    margin-bottom: 18px;
}

.mini-list {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-list li {
    position: relative;
    padding-left: 18px;
    font-family: var(--mono);
    font-size: 13px;
    color: #C9CBD3;
}

.mini-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-soft);
}

/* Work card with an image visual (no text overlay) */
.work-visual.is-image {
    padding: 0;
    background-size: cover;
    background-position: center;
}

/* 3-up bordered grid (about values) */
.tri {
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.tri > .feature-cell {
    border-bottom: none;
}

.tri > .feature-cell:not(:last-child) {
    border-right: 1px solid var(--border);
}

/* ---------- Work cards ---------- */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.work-card {
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform .4s, border-color .4s, box-shadow .4s;
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(107, 107, 247, 0.13);
}

.work-card--wide {
    grid-column: 1 / -1;
}

.work-wide {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.work-visual {
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
}

.work-wide .work-visual {
    aspect-ratio: auto;
    min-height: 280px;
    padding: 48px;
}

.work-visual .dots {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.work-title {
    font-weight: 800;
    font-size: 40px;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.work-visual .sub {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
}

.work-pill {
    position: absolute;
    bottom: 30px;
    right: 34px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
}

.work-body {
    padding: 28px;
}

.work-wide .work-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: 2px;
    padding: 5px 9px;
}

.work-body h3 {
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 12px;
}

.work-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 24px;
}

.work-link {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    border: 1px solid var(--border);
    padding: 13px 22px;
    transition: background .3s, color .3s;
}

.work-link:hover {
    background: var(--fg);
    color: var(--bg);
}

/* ---------- Trust band ---------- */
.trust {
    border-top: 1px solid var(--border);
    padding: 96px 0;
}

.trust-title {
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 64px;
}

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

.trust-col {
    padding: 0 40px;
    border-left: 1px solid var(--border);
}

.trust-col:last-child {
    border-right: 1px solid var(--border);
}

.trust-col h3 {
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 18px;
}

.trust-col p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

/* ---------- Process phases ---------- */
.phases {
    border-top: 1px solid var(--border);
}

.phase-row {
    display: grid;
    grid-template-columns: 120px 1fr 1.4fr 160px;
    gap: 32px;
    padding: 44px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.phase-num {
    font-family: var(--mono);
    font-size: 24px;
    color: var(--accent-soft);
}

.phase-row h3 {
    font-weight: 700;
    font-size: 26px;
}

.phase-row p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

.phase-time {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--muted);
    text-align: right;
}

/* ---------- Process list (homepage) ---------- */
.proc-list .proc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.proc-list .proc-item:last-child {
    border-bottom: 1px solid var(--border);
}

.proc-item .left {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.proc-step {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent-soft);
}

.proc-name {
    font-weight: 700;
    font-size: 19px;
}

.proc-time {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
}

/* ---------- Build status card ---------- */
.build-card {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 32px;
}

.build-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.build-repo {
    font-family: var(--mono);
    font-size: 15px;
}

.build-repo .muted { color: var(--muted); }
.build-repo .slash { color: #54575E; }

.build-status {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.build-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.build-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 12px;
}

.build-progress .label { font-size: 15px; color: #C9CBD3; }
.build-progress .pct { font-family: var(--mono); font-weight: 700; font-size: 15px; }

.build-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 26px;
}

.build-bar > span {
    display: block;
    height: 100%;
    background: var(--accent);
}

.build-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.build-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0A0A11;
    border: 1px solid var(--border);
    padding: 15px 18px;
}

.build-item .l {
    display: flex;
    align-items: center;
    gap: 14px;
}

.build-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.18);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.build-item-label { font-weight: 600; font-size: 15px; }
.build-item-stat { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--muted); }

/* ---------- Founder slab (about) ---------- */
.founder {
    border: 1px solid var(--border);
    background: var(--surface);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
}

.founder-visual {
    background: linear-gradient(150deg, #13132A 0%, #1B1B3A 50%, #0E0E15 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    min-height: 360px;
    overflow: hidden;
}

.founder-visual .dot {
    position: absolute;
    top: 36px;
    left: 40px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 50px 8px rgba(107, 107, 247, 0.4);
}

.founder-name { font-weight: 800; font-size: 30px; letter-spacing: -0.02em; }
.founder-role { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--accent-soft); margin-top: 8px; }

.founder-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-quote { font-size: 19px; line-height: 1.6; color: #C9CBD3; margin-bottom: 20px; }

/* ---------- Location (about) ---------- */
.loc {
    border-top: 1px solid var(--border);
    padding: 96px 0;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.loc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
}

.loc-cell {
    padding: 36px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.loc-cell:nth-child(2n) { border-right: none; }
.loc-cell:nth-last-child(-n+2) { border-bottom: none; }

.loc-cell .k { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; }
.loc-cell .v { font-weight: 700; font-size: 18px; }

/* ---------- FAQ ---------- */
.faq {
    border-top: 1px solid var(--border);
}

.faq-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.faq-num {
    font-family: var(--mono);
    font-size: 18px;
    color: var(--accent-soft);
}

.faq-item h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

@media (max-width: 1040px) {
    .faq-item { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- CTA band ---------- */
.cta {
    border-top: 1px solid var(--border);
    padding: 104px 0;
    text-align: center;
}

.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 48px;
}

.cta h2 { margin-bottom: 36px; }

/* ---------- Contact (homepage) ---------- */
.contact {
    border-top: 1px solid var(--border);
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: start;
}

.contact h2 { margin-bottom: 26px; }

.contact-info { margin-bottom: 32px; }
.contact-info:last-of-type { margin-bottom: 0; }
.contact-info .k { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; }
.contact-info .v { font-weight: 600; font-size: 18px; }

.contact-form {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 40px;
}

.field { margin-bottom: 24px; }

.field label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 12px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #0A0A11;
    border: 1px solid var(--border);
    color: var(--fg);
    font-size: 15px;
    padding: 15px 16px;
    transition: border-color .25s;
}

.field select { cursor: pointer; }

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }

.form-submit {
    width: 100%;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
    background: var(--accent);
    padding: 18px;
    transition: filter .25s;
}

.form-submit:hover { filter: brightness(1.12); }
.form-submit:disabled { cursor: not-allowed; opacity: .82; filter: none; }
.form-status {
    margin-top: 14px;
    min-height: 22px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}
.form-status.success { color: var(--green); }
.form-status.error { color: #FFB4B4; }
.form-status a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.footer-about {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 380px;
}

.footer-col-title {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-soft);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--muted);
    transition: color .2s;
}

.footer-links a:hover { color: var(--fg); }

.footer-bottom {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: #54575E;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }

    .site-nav { padding: 0 24px; }
    .nav-links,
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-nav,
    .mobile-overlay { display: block; }

    .hero { padding: 130px 0 60px; }

    .home-hero-grid,
    .hero-split,
    .contact-grid,
    .loc-grid,
    .founder,
    .work-wide { grid-template-columns: 1fr; }

    .orbit-wrap { display: none; }

    .founder-visual { min-height: 240px; }

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

    .tri { grid-template-columns: 1fr; }
    .tri > .feature-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
    .tri > .feature-cell:last-child { border-bottom: none; }

    .feature-grid { grid-template-columns: 1fr; }
    .feature-cell { padding: 36px 28px; border-right: none !important; }
    .feature-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .feature-cell:last-child { border-bottom: none; }

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

    .loc-cards { grid-template-columns: 1fr; }
    .loc-cell { border-right: none !important; }
    .loc-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .loc-cell:last-child { border-bottom: none; }

    .trust-grid { grid-template-columns: 1fr; }
    .trust-col { padding: 28px 0; border-left: none; border-right: none !important; border-top: 1px solid var(--border); }

    .phase-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 32px 0;
    }
    .phase-time { text-align: left; }

    .cta { padding: 72px 0; }
    .cta-inner { padding: 0 24px; }

    .section { padding: 30px 0 80px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    .stats-3,
    .stats-4 { grid-template-columns: 1fr; }

    .work-title { font-size: 32px; }
    .work-visual { padding: 28px; }
    .work-pill { position: static; display: inline-block; margin-top: 16px; }

    .contact-form { padding: 28px 22px; }
}
