:root {
    --navy: #0f142f;
    --navy-deep: #0a0f26;
    --navy-soft: #131a38;
    --gold: #c9961a;
    --gold-deep: #ae7c00;
    --sand: #f3ecdd;
    --sand-strong: #e6dbc5;
    --sand-light: #fbf8f1;
    --text: #161616;
    --muted: #4a4a4a;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --radius-lg: 22px;
}

#codex-technology { font-family: 'Gelion', sans-serif; }
#codex-technology * { font-family: inherit; }

@font-face {
  font-family: 'Gelion';
  src: url("/wp-content/themes/salient-child/assets/fonts/gelion/Gelion-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelion';
  src: url("/wp-content/themes/salient-child/assets/fonts/gelion/Gelion-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelion';
  src: url("/wp-content/themes/salient-child/assets/fonts/gelion/Gelion-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelion';
  src: url("/wp-content/themes/salient-child/assets/fonts/gelion/Gelion-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gelion';
  src: url("/wp-content/themes/salient-child/assets/fonts/gelion/Gelion-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Gelion', 'Inter', sans-serif;
    background: var(--sand-light);
    color: var(--text);
    font-size: 17px;
    font-synthesis: none;
}

/* Global type tweaks */
h1, h2, h3, h4, h5, h6,
.hero-copy h1,
.pillar-head h2,
.section-heading h3,
.info-card h3,
.activation-card h4,
.pillar-card h3 {
    font-weight: 500;
    letter-spacing: -0.01em;
}

h1 { font-size: 60px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 24px; }

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

.top-bar {
    position: relative;
    background: #fff;
    color: #0f142f;
}

.logo-row {
    display: flex;
    justify-content: center;
    padding: 16px 24px 10px;
    transition: transform 0.22s ease, max-height 0.22s ease, padding 0.22s ease, opacity 0.22s ease;
    height: 48px;
    overflow: hidden;
    opacity: 1;
}

.logo-row .brand-mark {
    height: 32px;
    width: auto;
}

.nav-row {
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-row-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px 28px;
}

.nav-brand-mobile {
    display: none;
    align-items: center;
}

.nav-brand-mobile .brand-mark {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
}

.nav-item {
    position: relative;
}

.nav-links a {
    color: #0f142f;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

.nav-links a .caret {
    font-size: 11px;
    opacity: 0.8;
}

.dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    display: none;
    min-width: 200px;
    z-index: 25;
}

.dropdown a {
    display: block;
    padding: 8px 6px;
    color: #0f142f;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.dropdown a:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav-item.has-menu:hover .dropdown,
.nav-item.has-menu:focus-within .dropdown,
.nav-item.has-menu .dropdown:hover {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f142f;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    background: #fff;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 22px 20px 24px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-mark {
    height: 36px;
    width: auto;
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f142f;
}

.mobile-menu-list {
    list-style: none;
    padding: 22px 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.mobile-menu-label {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
    color: #0f142f;
    padding: 10px 4px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-label span {
    font-size: 12px;
    color: #3b4054;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    gap: 0;
}

.mobile-submenu a {
    display: block;
    padding: 8px 4px;
    font-size: 16px;
    font-weight: 600;
    color: #0f142f;
    text-decoration: none;
}

.mobile-submenu.open {
    display: grid;
    gap: 8px;
    padding-top: 6px;
}

.mobile-menu-footer {
    display: grid;
    gap: 12px;
}

.mobile-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-weight: 700;
    color: #0f142f;
}

.mobile-links a {
    color: inherit;
    text-decoration: none;
}

.mobile-actions {
    display: grid;
    gap: 10px;
}

.nav-item.has-menu {
    padding-bottom: 10px;
}

.top-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-secondary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 4px;
}

.nav-secondary a {
    color: #2f3350;
    font-weight: 600;
    font-size: 12.5px;
    opacity: 0.9;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.nav-secondary a:hover {
    border-color: rgba(230, 234, 248, 0.9);
}

.pill-btn {
    padding: 11px 18px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid var(--navy);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pill-btn.ghost {
    background: transparent;
    color: var(--navy);
}

.pill-btn.ghost:hover {
    background: var(--navy);
    color: #fff;
}

.pill-btn.solid {
    background: var(--navy);
    color: #fff;
}

.pill-btn.solid:hover {
    background: #0c1230;
    color: #fff;
}

.moving-hex {
    position: fixed;
    width: 110px;
    height: 110px;
    background: linear-gradient(150deg, #d9b45a 0%, #c48615 100%);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.2);
    z-index: 12;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    opacity: 0;
}

.moving-hex.at-rest {
    animation: bigBounce 2.4s ease-in-out infinite;
}

.moving-hex.is-floating {
    animation: none;
}

.moving-hex.playing.at-rest {
    animation-play-state: running;
}

.moving-hex.active {
    opacity: 1;
}
.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 26px 90px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    background: linear-gradient(180deg, #fdfaf4 0%, #efe5d1 100%);
    border-radius: 28px;
    padding: 70px 60px 60px;
    box-shadow: var(--card-shadow);
}

.hero-copy h1 {
    font-size: 60px;
    line-height: 1.08;
    margin: 8px 0 16px;
    color: #111;
}

.hero-copy {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.62;
    color: var(--muted);
}

.eyebrow {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: var(--navy);
    text-transform: uppercase;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.pillar-cta-row {
    justify-content: flex-start;
    margin-top: 12px;
}

.pillar-visual-cta {
    justify-content: center;
    margin-top: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--navy);
}

.button.primary {
    background: var(--navy);
    color: #fff;
}

.button.ghost {
    background: #fff;
    color: var(--navy);
}

.button:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.hero-visual {
    width: 100%;
}

.hero-video {
    width: 100%;
    max-width: 1080px;
    margin: 30px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    border: none;
    background: #000;
}

.hero-video video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-video img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.pillar-section {
    margin: 120px auto 24px;
    background: #fff;
    border-radius: 22px;
    padding: 62px 26px 32px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    scroll-margin-top: 120px;
    position: relative;
}

.section-tag {
    position: absolute;
    top: 20px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f142f;
}

.section-tag__hex {
    width: 14px;
    height: 14px;
    background: linear-gradient(150deg, #d9b45a 0%, #c48615 100%);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.pillar-head h2 {
    margin: 14px 0 16px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f142f;
}

.pillar-head p {
    margin: 0 0 16px;
    color: #3b4054;
    line-height: 1.6;
    max-width: 880px;
}

.chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 16px;
    background: var(--sand);
    color: #2f3350;
    font-weight: 800;
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c48615;
    box-shadow: 0 0 0 6px rgba(196, 134, 21, 0.16);
}

.pillar-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 18px;
    align-items: start;
}

.pillar-body.process-layout {
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.process-card {
    background: #fdfbf7;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.process-label {
    display: inline-block;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #8b6b1b;
    text-transform: uppercase;
    background: #f4e6c9;
    padding: 6px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.process-card h3 {
    margin: 6px 0 10px;
    font-size: 20px;
    color: #0f142f;
}

.process-visual {
    text-align: center;
    margin: 6px auto 0;
}

.process-visual img {
    width: 100%;
    max-width: 975px;
    display: block;
    margin: 30px auto;
    border-radius: 18px;
}

.process-card p {
    margin: 0;
    color: #3b4054;
    line-height: 1.6;
}

.process-cta-row {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.process-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0f142f;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(201, 150, 26, 0.12);
    border: 1px solid rgba(201, 150, 26, 0.28);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.process-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.08);
    background: rgba(201, 150, 26, 0.16);
}

.process-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 800;
    color: #b0742f;
    text-decoration: none;
}

.process-cta-link:hover {
    text-decoration: underline;
    color: #9a6629;
}

.play-icon {
    font-size: 12px;
    display: inline-block;
    transform: translateY(1px);
    color: inherit;
}

.arrow-icon {
    font-size: 13px;
    display: inline-block;
    transform: translateY(1px);
    color: inherit;
}

.audience-model-visual {
    position: relative;
    margin: 14px auto 6px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.audience-model-visual img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hotspot-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    top: var(--y);
    left: var(--x);
    overflow: visible;
}

.hotspot::after {
    content: "";
    position: absolute;
    inset: -10px;
}

.hotspot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.35;
    animation: hotspot-pulse 1.6s ease-in-out infinite;
}

.audience-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.callout {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(12px, -50%);
    width: min(320px, 40vw);
    pointer-events: auto;
}

.callout.callout--left {
    transform: translate(calc(-100% - 12px), -50%);
}

.callout.callout--above {
    transform: translate(-50%, calc(-100% - 12px));
}

.callout.callout--right {
    transform: translate(12px, -50%);
}

.callout h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #0f142f;
}

.callout p {
    margin: 0 0 6px;
    color: #2f3350;
    line-height: 1.45;
    font-size: 13.5px;
}

.callout-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #0f142f;
    padding: 4px;
    line-height: 1;
}

.callout-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #0f142f;
    padding: 4px;
    line-height: 1;
}

.how-it-works {
    margin: 60px auto 32px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.how-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #0f142f;
}

.how-head p {
    margin: 0 0 18px;
    color: #3b4054;
}

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

.how-card {
    background: #fdfbf7;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.how-step {
    font-weight: 900;
    color: #0f142f;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.how-card p {
    margin: 0 0 8px;
    color: #2f3350;
    line-height: 1.55;
}

.how-card ul {
    margin: 0;
    padding-left: 18px;
    color: #2f3350;
    line-height: 1.55;
}

.how-card ul li + li {
    margin-top: 4px;
}

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

#hotspot-1:checked ~ .audience-callouts .callout[data-card="hotspot-1"],
#hotspot-2:checked ~ .audience-callouts .callout[data-card="hotspot-2"],
#hotspot-3:checked ~ .audience-callouts .callout[data-card="hotspot-3"],
#hotspot-4:checked ~ .audience-callouts .callout[data-card="hotspot-4"] {
    display: block;
}

@media (max-width: 900px) {
    .audience-callouts {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        pointer-events: none;
        z-index: 40;
    }

    .hotspot {
        width: 16px;
        height: 16px;
    }

    .callout {
        position: relative;
        transform: none;
        width: min(90vw, 640px);
        max-height: 80vh;
        overflow: auto;
        pointer-events: auto;
    }
}

@keyframes hotspot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.35;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.pillar-card {
    background: #fdfbf7;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.card-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 14px 0;
}

.pillar-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0f142f;
}

.pillar-card p {
    margin: 0;
    color: #3b4054;
    line-height: 1.6;
}

.pillar-card ul {
    margin: 0;
    padding-left: 18px;
    color: #3b4054;
    line-height: 1.6;
}

.pillar-card ul li + li {
    margin-top: 6px;
}

.pillar-stack {
    display: grid;
    gap: 14px;
}

.pillar-visual {
    margin-top: 0;
    text-align: center;
}

.pillar-visual img,
.pillar-visual video {
    width: 100%;
    max-width: none;
    border-radius: 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
    border: none;
    margin: 0 auto;
}

.platform-expands {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.platform-toggle {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ai-toggle {
    margin-top: 14px;
}

.platform-toggle__head {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    background: linear-gradient(180deg, #f8f4ec 0%, #f1e7d4 100%);
    border: none;
    text-align: left;
    font-weight: 800;
    color: #0f142f;
    cursor: pointer;
}

.platform-toggle__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #0f142f;
    position: relative;
}

.platform-toggle__icon::before,
.platform-toggle__icon::after {
    content: "";
    position: absolute;
    background: #0f142f;
    border-radius: 6px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.platform-toggle__icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.platform-toggle__icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.platform-toggle__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 16px;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
    color: #3b4054;
    line-height: 1.6;
    background: #fff;
}

.platform-toggle__body p.note {
    font-size: 13px;
    font-style: italic;
    color: #4a4a4a;
}

.platform-toggle__body ul,
.platform-toggle__body ol {
    margin: 0 0 10px;
    padding-left: 18px;
}

.platform-toggle__body ul li + li,
.platform-toggle__body ol li + li {
    margin-top: 6px;
}

.platform-toggle.open .platform-toggle__body {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 16px;
}

.platform-toggle.open .platform-toggle__icon {
    background: #0f142f;
}

.platform-toggle.open .platform-toggle__icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.platform-toggle.open .platform-toggle__icon::before {
    background: #fdfbf7;
}

.card-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
    margin: 50px auto 60px;
    max-width: 1240px;
    padding: 0 14px;
}

.card-grid::before {
    display: none;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 20px 22px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-card h3 {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.32;
    color: #0f142f;
}

.info-card p {
    margin: 0;
    color: #44495a;
    line-height: 1.6;
    font-size: 18px;
}

.info-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.info-card:nth-child(1) { transition-delay: 0.04s; }
.info-card:nth-child(2) { transition-delay: 0.12s; }
.info-card:nth-child(3) { transition-delay: 0.2s; }
.info-card:nth-child(4) { transition-delay: 0.28s; }

.info-card.tall { grid-row: span 2; }
.info-card.wide { grid-column: span 2; }

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(150deg, #f4dba4 0%, #c48615 100%);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 10px 18px rgba(0, 0, 0, 0.08);
}

.card-icon::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(15, 20, 47, 0.7);
}

.card-icon.shield::before {
    border-radius: 5px;
    background: linear-gradient(180deg, #0f142f, #1d2c5a);
}

.card-icon.radar::before {
    border-radius: 50%;
    border: 2px solid rgba(15, 20, 47, 0.6);
    background: transparent;
    box-shadow: 0 0 0 2px rgba(15, 20, 47, 0.2);
}

.card-icon.spark::before {
    background: linear-gradient(180deg, #0f142f, #20315f);
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

.card-icon.prompt::before {
    content: ">";
    width: auto;
    height: auto;
    background: none;
    color: #0f142f;
    font-weight: 800;
    font-size: 18px;
}

.dark-panel {
    position: relative;
    margin: 110px auto 90px;
    background: radial-gradient(circle at 36% 50%, rgba(201, 150, 26, 0.18) 0%, transparent 42%), radial-gradient(circle at 90% 30%, rgba(255, 205, 119, 0.18) 0%, transparent 30%), var(--navy-deep);
    border-radius: 36px;
    overflow: hidden;
    padding: 110px 90px 130px;
    color: #f6f8ff;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.dark-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 66% 40%, rgba(255, 210, 120, 0.35) 0%, transparent 60%);
    opacity: 0.85;
    z-index: 1;
}

.globe-graphic {
    position: absolute;
    inset: -10% -10% -16% -10%;
    border-radius: 50%;
    background:
        radial-gradient(120% 90% at 78% 52%, rgba(255, 214, 124, 0.35) 0%, rgba(11, 13, 29, 0.16) 52%, transparent 62%),
        radial-gradient(80% 70% at 82% 40%, rgba(255, 214, 124, 0.18) 0%, transparent 55%),
        repeating-radial-gradient(ellipse at 76% 52%, transparent 0 14%, rgba(255, 214, 124, 0.22) 15%, rgba(255, 214, 124, 0.14) 16.5%, transparent 18% 24%),
        linear-gradient(120deg, transparent 36%, rgba(255, 214, 124, 0.35) 40%, rgba(255, 214, 124, 0.16) 42%, transparent 46%),
        linear-gradient(135deg, transparent 30%, rgba(255, 214, 124, 0.14) 34%, rgba(255, 214, 124, 0.08) 36%, transparent 40%);
    filter: blur(0.3px);
    opacity: 0.9;
    z-index: 1;
    transform: rotate(-6deg);
    animation: swirlFloat 24s ease-in-out infinite alternate;
}

.globe-graphic::after {
    content: "";
    position: absolute;
    inset: 8% 6% 24% 14%;
    border: 2px solid rgba(243, 214, 124, 0.24);
    border-radius: 50%;
    transform: rotate(-12deg);
    box-shadow: 0 0 18px rgba(243, 214, 124, 0.18);
}

.dark-panel.in-view .globe-graphic::after {
    animation: orbitPulse 3.6s ease-in-out infinite;
}

.dark-content {
    position: relative;
    z-index: 2;
}

.dark-panel.in-view .dark-hex {
    animation-play-state: running;
}
.dark-copy h2 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.2;
}

.dark-copy p {
    margin: 0 0 36px;
    max-width: 620px;
    color: #d6dcff;
    line-height: 1.6;
    font-size: 18px;
}

.accent {
    color: #f3d67c;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1020px;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.stat .value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat .label {
    display: block;
    color: #f1f3ff;
    font-size: 14px;
    font-weight: 700;
}

.stat .sub-label {
    display: block;
    color: #d6dcff;
    font-size: 13px;
    margin-top: 6px;
}

.dark-hex {
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(150deg, #f2d480 0%, #c48615 100%);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.32));
    animation: hexPulse 3.6s ease-in-out infinite;
    z-index: 3;
    animation-play-state: paused;
    transform: rotate(90deg);
}

.dark-hex.top { top: 26px; left: 32px; }
.dark-hex.right { right: 32px; bottom: 26px; }

.hex-divider { display: none; }

.feature-section {
    background: transparent;
    border-radius: 0;
    padding: 70px 0 100px;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.section-heading h3 {
    margin: 0 0 10px;
    font-size: 32px;
    text-align: center;
}

.section-heading p {
    margin: 0 0 30px;
    color: var(--muted);
    max-width: 740px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.value-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 50px;
}

.feature-row {
    max-width: 1200px;
    margin: 50px auto 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-row--hero {
    margin: 10px auto 0;
    max-width: 1180px;
    padding: 0 10px 6px;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    justify-items: center;
}

.feature-row--intentpath {
    margin: 28px auto 4px;
    padding: 0 12px 10px;
}

.feature-col {
    position: relative;
    padding: 18px 14px 18px 18px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.feature-row--hero .feature-col {
    text-align: center;
}

.feature-col h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f142f;
}

.feature-col p {
    margin: 0;
    color: #3b4054;
    line-height: 1.6;
    font-size: 15px;
}

.feature-col::before {
    content: "";
    position: absolute;
    inset: 2px 10px 2px 0;
    background: radial-gradient(ellipse at 50% 35%, rgba(196, 134, 21, 0.08), rgba(196, 134, 21, 0.0) 60%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(0deg);
}

.feature-col > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    color: #a79885;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.feature-icon svg {
    width: 72px;
    height: 72px;
    stroke: currentColor;
    stroke-width: 2.6;
    fill: none;
}

.intentpath,
.advantage {
    max-width: 1100px;
    margin: 40px auto 10px;
    background: #fff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.intentpath h3,
.advantage h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0f142f;
}

.intentpath p,
.advantage p {
    margin: 0 0 10px;
    color: #3b4054;
    line-height: 1.6;
}

.intentpath ul {
    margin: 0;
    padding-left: 18px;
    color: #3b4054;
    line-height: 1.5;
}

.faq-band {
    width: 100%;
    background: transparent;
    padding: 50px 0 40px;
}

.faq-band-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.faq-lead h3 {
    margin: 6px 0 10px;
    font-size: 30px;
    color: #0f142f;
}

.faq-lead p {
    margin: 0;
    color: #3b4054;
    line-height: 1.6;
}

.faq-accordion {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item.open {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    padding: 18px 18px;
    border: none;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    text-align: left;
    font-size: 17px;
    font-weight: 800;
    color: #0f142f;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
    color: #3b4054;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 240px;
    opacity: 1;
    padding-bottom: 18px;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #0f142f;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #0f142f;
    border-radius: 6px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    background: #0f142f;
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.faq-item.open .faq-icon::before {
    background: #fdfbf7;
}

.activation-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.activation-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.activation-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.activation-card:hover {
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
}

.activation-card h4 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.32;
    color: #0f142f;
}

.activation-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 18px;
}

.activation-cards::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 20, 47, 0.08) 12%, rgba(15, 20, 47, 0.12) 50%, rgba(15, 20, 47, 0.08) 88%, transparent 100%);
    z-index: 0;
}

.activation-card {
    z-index: 1;
}

@media (max-width: 1100px) {
    .activation-card:not(:last-child)::after,
    .activation-cards::before {
        display: none;
    }
}

.device-wrap {
    display: none;
}

.device {
    display: none;
}

.sticky-device {
    display: none;
}

.device-top {
    display: flex;
    gap: 8px;
    padding: 6px 4px 10px;
}

.device .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f3d67c;
}

.device .dot.dark {
    background: #1b1f36;
}

.device-screen {
    background: linear-gradient(145deg, #151a2f 0%, #0b0f26 100%);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-screen.has-image {
    background-image: url('assets/intentkeyplatform4-3.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    min-height: 320px;
    padding: 0;
    border: 0;
    mix-blend-mode: multiply;
}

.sticky-device {
    transform: translate(20px, 18px) scale(0.96);
}

.feature-section.dock-device .sticky-device {
    transform: translate(0, 0) scale(1.05);
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.hex-dot {
    width: 14px;
    height: 14px;
    background: #c6cde5;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.hex-dot.gold {
    background: #c48615;
}

.hex-dot.dark {
    background: #1b203a;
}

.hex-dot.large {
    width: 18px;
    height: 18px;
}

.gold-device {
    background: linear-gradient(180deg, #dba72c 0%, #b07900 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.gold-device .device-screen {
    background: linear-gradient(160deg, #f3d67c 0%, #b77900 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gold-device .hex-dot {
    background: #f7e3a8;
}

.gold-device .hex-dot.dark {
    background: #1b203a;
}

.cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #f5e2b2 0%, #c58b2f 100%);
    border-radius: 26px;
    padding: 0;
    color: #1b1509;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
    margin: 120px auto 10px !important;
    max-width: 1180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 90%;
    text-align: left;
    padding: 46px 0 46px 46px;
}

.cta-copy h3 {
    margin: 6px 0 18px;
    font-size: 34px;
    line-height: 1.28;
    color: #1b1509;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 15px;
    border: 2px solid #0f142f;
    text-decoration: none;
    min-width: 180px;
}

.cta-btn.solid {
    background: #0f142f;
    color: #fff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
}

.cta-btn.outline {
    background: #fff;
    color: #0f142f;
}

.cta-copy .eyebrow.dark {
    color: #1b1509;
}

.cta-hex-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    overflow: hidden;
    padding: 0;
    border-radius: 0 26px 26px 0;
}

.cta-hex-grid {
    --cta-hex-size: 86px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: calc(var(--cta-hex-size) * 7);
    min-width: calc(var(--cta-hex-size) * 6.5);
    transform: translate(0, 6%);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.12));
}

.cta-hex-row {
    display: flex;
    gap: 0;
}

.cta-hex-row + .cta-hex-row {
    margin-top: calc(var(--cta-hex-size) * -0.2);
}

.cta-hex-row.offset {
    margin-left: calc(var(--cta-hex-size) * 0.5);
}

.cta-hex {
    width: var(--cta-hex-size);
    height: var(--cta-hex-size);
    background: linear-gradient(155deg, #f9edd4 0%, #d6b26a 100%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, filter;
    pointer-events: auto;
    animation: none;
}

.cta-hex.dark {
    background: linear-gradient(150deg, #c89232 0%, #8f5f07 100%);
}

.cta-hex:hover {
    transform: scale(1.07);
    filter: brightness(1.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    animation: hexHoverWave 0.8s ease;
}

.cta-hex.spacer {
    opacity: 0;
    pointer-events: none;
}

.newsletter {
    background: linear-gradient(180deg, #f7f5ef 0%, #f2efe8 100%);
    padding: 64px 24px 70px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
Display:none;
}

.newsletter-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.newsletter-copy h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #0f142f;
}

.newsletter-copy p {
    margin: 0;
    font-size: 17px;
    color: #3f4457;
    line-height: 1.6;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: stretch;
}

.newsletter-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 0 14px 0 42px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.newsletter-field input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    height: 48px;
    font-size: 16px;
    color: #0f142f;
}

.newsletter-field input::placeholder {
    color: #7a8095;
}

.mail-icon {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='18' viewBox='0 0 24 18' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='16' rx='3' ry='3' fill='none' stroke='%23909ab0' stroke-width='1.5'/%3E%3Cpolyline points='2,3 12,10 22,3' fill='none' stroke='%23909ab0' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
}

.newsletter-button {
    height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    border: 2px solid #c48615;
    background: #c48615;
    color: #0f142f;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(196, 134, 21, 0.25);
    background: #d39a2f;
}

.newsletter-button:active {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer {
    background: var(--navy);
    color: #f0f4ff;
    padding: 56px 24px 46px;
}

.footer-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 40px;
}

.footer-brand {
    font-weight: 800;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-mark {
    height: 46px;
    width: auto;
}

.footer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-btn.outline {
    background: transparent;
    color: #fff;
}

.footer-btn.outline:hover {
    background: #fff;
    color: var(--navy);
}

.footer-btn.solid {
    background: #fff;
    color: var(--navy);
}

.footer-btn.solid:hover {
    background: var(--navy-soft);
    color: #fff;
}

.footer-columns {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-left: auto;
    width: 100%;
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #f4f6ff;
}

.footer-col a {
    display: block;
    color: #f0f4ff;
    margin: 6px 0;
    font-weight: 600;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 12px;
}

.footer-meta {
    color: #c9d1ff;
    font-size: 13px;
    text-align: center;
    margin-top: 85px;
}

.footer-meta a {
    color: #c9d1ff;
    text-decoration: none;
    font-weight: 600;
}

.footer-meta a:hover {
    text-decoration: underline;
}

.footer-meta .dot {
    padding: 0 8px;
}

.final-cta {
    align-items: stretch;
}

.feature-row.cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 34px;
}

.info-note {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0 auto 48px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4f5f;
    padding: 0 10px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-width: 980px;
}

.info-note-head {
    margin: 0 0 6px;
    font-weight: 800;
    color: #11142d;
    font-size: 22px;
}

.info-note-body {
    margin: 0;
    color: #3b4054;
    font-size: 18px;
    line-height: 1.7;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.info-note.revealed {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.info-note-link {
    display: inline-block;
    margin-top: 12px;
    color: #c48615;
    font-weight: 700;
    text-decoration: none;
}

.info-note-link:hover {
    text-decoration: underline;
}

@keyframes hexGhostFloat {
    0% { background-position: 0 0, 40px 30px; opacity: 0.14; }
    50% { background-position: 12px 10px, 52px 46px; opacity: 0.18; }
    100% { background-position: 24px 18px, 64px 62px; opacity: 0.14; }
}

.cta-device-anchor {
    height: 320px;
    position: relative;
}

.feature-section.dock-device .sticky-device {
    position: absolute;
    right: 36px;
    bottom: 12px;
    top: auto;
    transform: translate(0, 0) scale(1.05);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.feature-section.dock-device .device-wrap {
    height: 100%;
}

.feature-section.cta-locked .cta-banner {
    border-radius: 26px 26px 0 0;
    transition: border-radius 0.3s ease;
}

@keyframes bigBounce {
    0%, 100% { transform: translate3d(0, -6px, 0) rotate(90deg); }
    50% { transform: translate3d(0, 6px, 0) rotate(90deg); }
}

@keyframes hexPulse {
    0%, 100% { transform: scale(1) rotate(90deg); opacity: 0.94; }
    50% { transform: scale(1.08) rotate(90deg); opacity: 1; }
}

@keyframes fallIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes orbitPulse {
    0%, 100% { box-shadow: 0 0 14px rgba(243, 214, 124, 0.18); opacity: 0.9; }
    50% { box-shadow: 0 0 26px rgba(243, 214, 124, 0.28); opacity: 1; }
}

@keyframes hexHoverWave {
    0% { transform: scale(1); filter: brightness(1); }
    25% { transform: scale(1.08); filter: brightness(1.08); }
    50% { transform: scale(1.14); filter: brightness(1.18); }
    75% { transform: scale(1.06); filter: brightness(1.06); }
    100% { transform: scale(1); filter: brightness(1); }
}

@keyframes swirlFloat {
    0% { transform: rotate(-10deg) scale(1); opacity: 0.85; }
    50% { transform: rotate(6deg) scale(1.03); opacity: 0.9; }
    100% { transform: rotate(-4deg) scale(1.06); opacity: 0.95; }
}

@keyframes dropHex {
    0% { opacity: 0; transform: translateY(-18px) scale(0.94); }
    60% { opacity: 1; transform: translateY(6px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 1000px) {
    .hero,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 34px;
    }

    .hex-cluster {
        width: 360px;
        height: 260px;
    }

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

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

    .info-card.offset {
        max-width: none;
        margin-left: 0;
    }

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

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

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

    .faq-band-inner {
        padding: 0 18px;
    }

    .cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta-copy {
        align-items: center;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-copy h3 {
        font-size: 28px;
    }

    .cta-hex-block {
        width: 100%;
        justify-content: center;
        min-height: 260px;
        padding: 0;
        overflow: hidden;
        display: none;
    }

    .cta-hex-grid {
        --cta-hex-size: 74px;
        width: calc(var(--cta-hex-size) * 7);
        min-width: calc(var(--cta-hex-size) * 6.5);
        transform: translate(0, 8%);
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-field {
        max-width: 520px;
        margin: 0 auto;
    }

    .feature-row--hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        align-items: center;
    }

    .nav-links,
    .top-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

    .nav-row {
        padding: 10px 18px;
        justify-content: space-between;
    }

    .logo-row {
        display: none;
    }

    .nav-brand-mobile {
        display: flex;
    }
}

@media (max-width: 640px) {
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-start;
    }

    .pill-button {
        margin-left: 0;
    }

    .page {
        padding: 48px 18px 70px;
    }

    .hero {
        padding: 40px 22px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

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

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

    .feature-section {
        padding: 32px 12px;
    }

    .value-cards,
    .activation-cards {
        grid-template-columns: 1fr;
    }

    .pillar-section {
        padding: 54px 18px 26px;
    }

    .section-tag {
        top: 14px;
        left: 16px;
        font-size: 12px;
        gap: 8px;
        letter-spacing: 0.06em;
    }

    .section-tag__hex {
        width: 12px;
        height: 12px;
    }

    .pillar-head h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 14px;
    }

    .cta-actions {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        min-width: 0;
    }

    .cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-copy {
        width: 100%;
        align-items: center;
        padding: 28px 18px 24px;
    }

    .cta-hex-block {
        margin-top: 12px;
        min-height: 220px;
        padding: 0;
        overflow: hidden;
        display: none;
        border-radius: 0 22px 22px 0;
    }

    .cta-hex-grid {
        --cta-hex-size: 62px;
        width: calc(var(--cta-hex-size) * 7);
        min-width: calc(var(--cta-hex-size) * 6.5);
        transform: translate(0, 10%);
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .newsletter-field {
        width: 100%;
        max-width: none;
    }

    .globe-graphic {
        inset: -16% -16% -22% -16%;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .feature-row--hero {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .audience-model-visual {
        overflow: hidden;
    }

    .audience-model-visual .hotspot {
        width: 16px;
        height: 16px;
    }

    .audience-model-visual .callout {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90vw;
        max-width: 360px;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
    }
}

/* Codex typography reset */
#codex-homepage h1,
#codex-homepage h2,
#codex-homepage h3,
#codex-homepage h4,
#codex-homepage h5,
#codex-homepage h6,
#codex-homepage p {
  margin-top: 0;
}

