:root {
    --page-bg: #f5f2ea;
    --paper: rgba(255, 255, 255, 0.78);
    --paper-strong: #ffffff;
    --ink: #0e1b2a;
    --muted: #5a6778;
    --line: rgba(14, 27, 42, 0.1);
    --brand: #0f7584;
    --brand-deep: #0d2238;
    --brand-soft: #d9f0ee;
    --accent: #efb24e;
    --accent-soft: #f9edd3;
    --mint-soft: #dff5e7;
    --sky-soft: #dfeefe;
    --shadow-xl: 0 28px 60px rgba(6, 20, 34, 0.16);
    --shadow-lg: 0 16px 34px rgba(9, 26, 44, 0.1);
    --shadow-md: 0 10px 20px rgba(9, 26, 44, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 117, 132, 0.18), transparent 28%),
        radial-gradient(circle at 100% 14%, rgba(239, 178, 78, 0.16), transparent 26%),
        linear-gradient(180deg, #f8f5ee 0%, var(--page-bg) 40%, #f3efe6 100%);
    line-height: 1.6;
}

a {
    color: inherit;
}

.page-aura {
    display: none;
}

.page-aura-one {
    top: -10rem;
    right: -8rem;
    background: rgba(15, 117, 132, 0.18);
}

.page-aura-two {
    bottom: -10rem;
    left: -8rem;
    background: rgba(239, 178, 78, 0.16);
}

.page-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 2.25rem;
}

.site-header {
    position: sticky;
    top: 0.85rem;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(16, 28, 44, 0.06);
    transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 18px 36px rgba(11, 25, 43, 0.12);
    background: rgba(251, 249, 244, 0.9);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(11, 34, 58, 0.16);
}

.brand-mark-dot {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg, var(--brand), rgba(15, 117, 132, 0.18)),
        linear-gradient(135deg, var(--accent), rgba(239, 178, 78, 0.18));
    box-shadow:
        0 0 0 5px rgba(15, 117, 132, 0.12),
        0 0 18px rgba(15, 117, 132, 0.24);
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.site-nav a {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--muted);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ink);
    background: rgba(15, 117, 132, 0.12);
}

.header-cta {
    white-space: nowrap;
}

.page-main {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-xl);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(239, 178, 78, 0.14), transparent 20%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%);
    pointer-events: none;
}

.hero-home,
.hero-interior {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 1.1rem;
    color: #f7fbff;
    background:
        linear-gradient(140deg, rgba(11, 28, 46, 0.98), rgba(13, 34, 56, 0.96) 60%, rgba(15, 117, 132, 0.82)),
        var(--brand-deep);
}

.hero-copy-block,
.hero-canvas,
.metric-stack,
.insight-column,
.trust-ladder,
.company-note {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 249, 252, 0.72);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1,
h2 {
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -0.03em;
}

h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h2 {
    font-size: clamp(1.85rem, 4.2vw, 3.25rem);
}

.lead {
    max-width: 62ch;
    margin: 1.1rem 0 0;
    color: rgba(242, 247, 251, 0.82);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.55rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, #18a2ac, var(--brand));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(24, 162, 172, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 16px 28px rgba(24, 162, 172, 0.3);
}

.button-secondary,
.button-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.66);
}

.inline-pills,
.logo-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.inline-pills {
    margin-top: 1.4rem;
}

.inline-pills span,
.logo-rail span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.62rem 0.92rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.inline-pills span {
    color: rgba(244, 249, 252, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.hero-clarity-card {
    align-self: stretch;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(7, 16, 29, 0.18);
}

.hero-clarity-card h2 {
    margin-top: 0.2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-clarity-card p:last-of-type {
    margin: 0.8rem 0 0;
    color: rgba(242, 247, 251, 0.82);
}

.hero-clarity-card-light {
    background: rgba(255, 255, 255, 0.1);
}

.clarity-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.clarity-list div {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.clarity-list strong {
    font-size: 0.92rem;
}

.clarity-list span {
    color: rgba(242, 247, 251, 0.75);
    font-size: 0.9rem;
}

.statement-band {
    padding: 1.1rem 1.3rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.statement-band p {
    margin: 0;
    max-width: 74ch;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.statement-band-warning {
    border-color: rgba(239, 178, 78, 0.3);
    background: rgba(255, 251, 241, 0.94);
}

.device-link-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: end;
    margin-top: 1.15rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ink);
}

.form-field input {
    min-height: 3.15rem;
    padding: 0 1rem;
    border: 1px solid rgba(14, 27, 42, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-field input:focus {
    outline: 2px solid rgba(15, 117, 132, 0.2);
    outline-offset: 2px;
}

.form-field input.code-input {
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.form-field input.email-input {
    letter-spacing: 0;
    text-transform: none;
}

.utility-note {
    margin: 0.95rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.utility-note-error {
    color: #a13a1f;
    font-weight: 600;
}

.utility-note code,
.clarity-list code,
.simple-card code {
    padding: 0.12rem 0.35rem;
    border-radius: 8px;
    background: rgba(13, 34, 56, 0.08);
    color: var(--brand-deep);
    font-size: 0.86em;
}

.hero-clarity-card code {
    background: rgba(255, 255, 255, 0.12);
    color: #f7fbff;
}

.lead-copy {
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.link-code-panel {
    display: grid;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
}

.link-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 117, 132, 0.12);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.link-principal-label {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.link-principal-value {
    color: var(--ink);
    font-size: 1.05rem;
    word-break: break-word;
}

.link-code-display {
    font-family: "Sora", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    letter-spacing: 0.24em;
    color: var(--brand-deep);
}

.link-expiry {
    color: var(--muted);
    font-size: 0.9rem;
}

.qr-shell {
    display: grid;
    place-items: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.qr-shell img {
    display: block;
    width: min(100%, 260px);
    height: auto;
}

.link-dark-note {
    margin: 1rem 0 0;
    color: rgba(245, 249, 252, 0.78);
}

.simple-section {
    padding: 1.35rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-lg);
}

.simple-intro {
    max-width: 46rem;
}

.simple-intro h2 {
    max-width: 16ch;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

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

.simple-card {
    padding: 1.2rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.simple-card h3 {
    font-size: 1.02rem;
}

.simple-card p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.hero-canvas {
    min-height: 26rem;
}

.illustration-shell {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.illustration-shell-home {
    position: absolute;
    inset: 1rem 1.5rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.illustration-shell-interior {
    padding: 0.9rem;
}

.hero-illustration,
.interior-illustration {
    display: block;
    width: 100%;
    height: auto;
}

.hero-illustration {
    max-height: 100%;
    object-fit: contain;
    opacity: 0.94;
}

.visual-stack > .illustration-shell {
    margin-bottom: 0.15rem;
}

.canvas-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.orbit-one {
    top: 8%;
    right: 6%;
    width: 19rem;
    height: 19rem;
}

.orbit-two {
    left: 10%;
    bottom: 6%;
    width: 13rem;
    height: 13rem;
}

.signal-card {
    position: absolute;
    width: min(18rem, 82%);
    padding: 1.1rem 1.1rem 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(7, 16, 29, 0.22);
}

.signal-card strong {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.05rem;
}

.signal-card p {
    margin: 0.55rem 0 0;
    color: rgba(239, 246, 250, 0.78);
    font-size: 0.9rem;
}

.signal-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(239, 178, 78, 0.9);
}

.signal-card-primary {
    top: 2rem;
    left: 0;
}

.signal-card-secondary {
    top: 9rem;
    right: 0;
}

.signal-card-tertiary {
    bottom: 1.1rem;
    left: 3rem;
}

.float-gentle {
    animation: float-gentle 8s ease-in-out infinite;
}

.float-delayed {
    animation: float-delayed 9s ease-in-out infinite;
}

.logo-rail {
    display: none;
}

.logo-rail span {
    border: 1px solid rgba(14, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.68);
    color: var(--muted);
    box-shadow: var(--shadow-md);
}

.section-grid,
.story-panel,
.page-link-grid,
.process-board,
.dual-panel,
.deliverables-grid,
.comparison-band,
.trust-grid,
.cta-band {
    position: relative;
}

.section-grid,
.process-board {
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.15rem;
    align-items: start;
}

.section-intro,
.story-panel,
.process-board,
.comparison-band,
.dual-panel,
.deliverables-grid,
.trust-grid,
.cta-band {
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-xl);
    background: var(--paper);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.section-intro,
.story-panel,
.process-board,
.comparison-band,
.dual-panel,
.deliverables-grid,
.trust-grid,
.cta-band,
.page-link-card,
.feature-card,
.sector-card,
.deliverable-card,
.trust-card,
.comparison-card,
.principle-card,
.contrast-card,
.metric-card,
.company-note,
.insight-column article,
.story-columns article {
    overflow: hidden;
}

.section-intro,
.process-board {
    padding: clamp(1.4rem, 2.6vw, 2rem);
}

.section-intro p:last-child {
    margin-top: 0.95rem;
}

.section-intro p,
.story-panel p,
.page-link-card p,
.feature-card p,
.sector-card p,
.deliverable-card p,
.trust-card p,
.comparison-card p,
.principle-card p,
.contrast-card li,
.metric-card span,
.company-note p,
.story-columns p {
    color: var(--muted);
}

.narrow {
    max-width: 40rem;
}

.feature-grid,
.page-link-grid,
.deliverables-grid,
.sector-grid,
.trust-grid,
.principle-grid {
    display: grid;
    gap: 1rem;
}

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

.feature-card,
.page-link-card,
.deliverable-card,
.sector-card,
.trust-card,
.principle-card {
    padding: 1.3rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.feature-card h3,
.page-link-card h3,
.deliverable-card h3,
.sector-card h3,
.trust-card h3,
.principle-card h3,
.story-columns h3,
.comparison-card h2,
.contrast-card h2,
.metric-card strong,
.company-note strong {
    font-size: 1.05rem;
}

.accent-sky {
    background: linear-gradient(180deg, rgba(223, 238, 254, 0.9), rgba(255, 255, 255, 0.94));
}

.accent-mint {
    background: linear-gradient(180deg, rgba(223, 245, 231, 0.92), rgba(255, 255, 255, 0.94));
}

.accent-gold {
    background: linear-gradient(180deg, rgba(249, 237, 211, 0.95), rgba(255, 255, 255, 0.94));
}

.story-panel {
    padding: clamp(1.45rem, 2.8vw, 2rem);
    color: #f6fbff;
    background:
        radial-gradient(circle at 100% 0%, rgba(239, 178, 78, 0.22), transparent 22%),
        linear-gradient(145deg, rgba(13, 34, 56, 0.98), rgba(15, 117, 132, 0.9));
}

.story-panel .eyebrow,
.story-panel p,
.story-panel h2 {
    color: inherit;
}

.story-panel-header {
    max-width: 48rem;
}

.story-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
}

.story-columns article {
    padding: 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

.story-columns p {
    margin: 0.55rem 0 0;
    color: rgba(245, 249, 252, 0.76);
}

.page-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-link-grid-simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.page-link-card {
    position: relative;
}

.page-link-card a {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--brand);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    color: #f7fbff;
    background:
        radial-gradient(circle at 100% 0%, rgba(239, 178, 78, 0.2), transparent 22%),
        linear-gradient(135deg, rgba(11, 28, 46, 0.98), rgba(15, 117, 132, 0.92));
}

.cta-band .eyebrow,
.cta-band h2 {
    color: inherit;
}

.metric-stack,
.insight-column,
.trust-ladder {
    display: grid;
    gap: 0.9rem;
    align-content: center;
}

.metric-stack.visual-stack,
.insight-column.visual-stack,
.trust-ladder.visual-stack,
.company-note.visual-stack {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.metric-card,
.insight-column article,
.company-note {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(7, 16, 29, 0.16);
}

.metric-card span,
.insight-column span,
.company-note strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(239, 178, 78, 0.88);
}

.metric-card strong,
.insight-column strong {
    display: block;
    margin-top: 0.42rem;
    color: #f6fbff;
}

.trust-ladder div {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #f5fbff;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-soft), rgba(255, 255, 255, 0.9));
    color: var(--brand-deep);
    font-size: 0.85rem;
    font-weight: 800;
}

.dual-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.contrast-card {
    padding: 1.45rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-lg);
}

.contrast-card-dark {
    color: #f7fbff;
    background:
        linear-gradient(150deg, rgba(13, 34, 56, 0.98), rgba(15, 117, 132, 0.88));
}

.contrast-card-dark .eyebrow,
.contrast-card-dark h2,
.contrast-card-dark li {
    color: inherit;
}

.bullet-list {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.deliverables-grid,
.sector-grid,
.trust-grid,
.principle-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.comparison-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.comparison-card {
    padding: 1.45rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(14, 27, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-lg);
}

.comparison-card-highlight {
    color: #f7fbff;
    background: linear-gradient(145deg, rgba(15, 117, 132, 0.95), rgba(13, 34, 56, 0.98));
}

.comparison-card-highlight .eyebrow,
.comparison-card-highlight h2,
.comparison-card-highlight p {
    color: inherit;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem 1.2rem;
    margin-top: 1.6rem;
    border: 1px solid rgba(14, 27, 42, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-lg);
}

.footer-brand p {
    max-width: 28rem;
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.footer-links,
.footer-meta {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
    text-decoration: none;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-delayed {
    0%,
    100% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 1100px) {
    .hero-home,
    .hero-interior,
    .section-grid,
    .process-board,
    .dual-panel,
    .comparison-band,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .page-link-grid,
    .deliverables-grid,
    .sector-grid,
    .trust-grid,
    .principle-grid,
    .simple-grid,
    .simple-grid-compact,
    .page-link-grid-simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .page-shell {
        width: min(1180px, calc(100% - 1rem));
    }

    .site-header {
        top: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 28px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-canvas {
        min-height: auto;
        display: grid;
        gap: 0.9rem;
    }

    .signal-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .canvas-orbit {
        display: none;
    }

    .feature-grid,
    .page-link-grid,
    .process-grid,
    .deliverables-grid,
    .sector-grid,
    .trust-grid,
    .principle-grid,
    .simple-grid,
    .simple-grid-compact,
    .page-link-grid-simple {
        grid-template-columns: 1fr;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .device-link-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding-top: 0.5rem;
    }

    .site-header {
        padding: 0.9rem;
    }

    .site-nav a {
        padding: 0.58rem 0.8rem;
        font-size: 0.86rem;
    }

    .button,
    .header-cta {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .inline-pills,
    .logo-rail {
        gap: 0.55rem;
    }

    .inline-pills span,
    .logo-rail span {
        width: 100%;
    }
}
