:root {
    --slate: #373737;
    --slate-deep: #1f1e1d;
    --slate-soft: #4a4a4a;
    --butter: #f2e2a6;
    --butter-deep: #9a9586;
    --sand: #edebe6;
    --sand-strong: #9a9586;
    --sand-light: #edebe6;
    --text: #161616;
    --muted: #4a4a4a;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --radius-lg: 14px;
    --page-max: 1180px;
    --page-pad: 32px;
    --page-pad-wide: 48px;
}

/* Use GeneralSans across the experience */
#codex-inuvo,
#codex-inuvoenhanced {
    font-family: 'GeneralSans', sans-serif;
}
#codex-inuvo *,
#codex-inuvoenhanced * {
    font-family: inherit;
}

#codex-inuvoenhanced {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    font-family: 'GeneralSans', sans-serif;
    background: #fff;
    color: var(--text);
    font-size: 17px;
    font-synthesis: none;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

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

h1 { font-size: 60px; }

.hero.hero-full h1 { font-weight: 500; }

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: #1c1c1e;
}

.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;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-row-inner {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    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: #1c1c1e;
    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: #1c1c1e;
    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: #1c1c1e;
}

.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: #1c1c1e;
}

.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: 700;
    color: #1c1c1e;
    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-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: #1c1c1e;
    text-decoration: none;
}

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

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

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

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

.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: #4a4a4a;
    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: #9a9586;
}

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

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

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

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

.nav-row.nav-dark {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.nav-row.nav-dark .nav-links a {
    color: #1c1c1e;
}

.nav-row.nav-dark .nav-secondary a {
    color: #4a4a4a;
}

.nav-row.nav-dark .dropdown a {
    color: #1c1c1e;
}

.nav-row.nav-dark .pill-btn.solid {
    background: #1c1c1e;
    color: #fff;
    border-color: #1c1c1e;
}

.nav-row.nav-dark .pill-btn.solid:hover {
    background: #0d0d0e;
    border-color: #fff;
    color: #0d0d0e;
}

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


.page {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    margin: 0 auto;
    padding: 40px 0 0;
    background: #fff;
    margin-bottom: 0;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 32px;
    background: #fff;
    border-radius: 0;
    padding: 120px 24px 140px;
    box-shadow: none;
    overflow: hidden;
    color: #fff;
    width: 100%;
    max-width: var(--page-max);
    margin: 60px auto 0;
    border-radius: 28px;
    transition: max-width 0.75s ease, border-radius 0.75s ease, margin 0.75s ease, padding 0.75s ease;
}

.hero.expanded {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    padding: 200px 24px 240px;
}

.hero-full {
    width: 100%;
    max-width: var(--page-max);
    background: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55, 55, 55, 0.24) 0%, rgba(55, 55, 55, 0.48) 100%);
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    filter: brightness(0.9);
}

.hero.hero-full .hero-copy {
    position: relative;
    z-index: 1;
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
}

.hero.hero-full h1 {
    color: #fff;
}


.hero-copy h1 {
    font-size: 60px;
    line-height: 1.2;
    margin: 8px 0 16px;
    color: #111;
    font-weight: 300;
    letter-spacing: -0.01em;
}

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

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

.hero.hero-full .hero-copy h1 {
    color: #fff;
}

.hero.hero-full .hero-copy p {
    color: #f7f8fb;
}

.eyebrow.light {
    color: #fff;
    font-style: normal;
}

.hero-cta {
    justify-content: flex-start;
}

.hero-statement {
    width: 80%;
    max-width: 880px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
    margin-top: 60px;
}

.hero-statement p {
    margin: 0;
    font-size: 30px;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.hero.expanded .hero-statement {
    max-height: 300px;
    opacity: 1;
    margin-top: 120px;
}

.hero-accent {
    display: block;
    color: #f2e2a6;
    font-style: italic;
}

.product-tiles {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad-wide));
    margin: 0 auto;
    padding: 0;
    background: #fff;
}
.tab-panel#tab-agencies {
    background: transparent;
    padding: 0;
}

@media (max-width: 1100px) {
    .product-tiles {
        width: 100%;
        margin: 0;
    }
    .product-tabs,
    .tab-panels {
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
    }
    .detail-tab-buttons {
        max-width: 100%;
        width: 100%;
    }
}
.intentkey-static {
    text-align: center;
    padding: 32px 18px 20px;
    display: grid;
    gap: 12px;
}

.intentkey-static-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    color: var(--slate);
}

.intentkey-static-body {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--muted);
}

.intentkey-static .button {
    width: auto;
    min-width: 220px;
    max-width: 320px;
    padding: 14px 28px;
    margin: 0 auto;
}

.product-tabs {
    width: 100%;
    display: grid;
    gap: 0;
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    background: #fff;
    margin-bottom: 0;
}
.product-tabs > * {
    min-width: 0;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 3px;
    background: #f8f6f2;
    box-shadow: none;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.tab-button {
    border: none;
    background: transparent;
    padding: 11px 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--slate);
    text-transform: none;
    letter-spacing: 0.01em;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tab-button.active {
    background: linear-gradient(180deg, #faf6d1 0%, var(--butter) 50%, #faf6d1 100%);
    color: var(--slate-deep);
    border: none;
    transform: none;
}

.tab-button:hover {
    color: #1c1c1e;
}

.tab-panels {
    display: grid;
    overflow: hidden;
    background: transparent;
    padding: 0;
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad-wide));
    margin: 0 auto;
    min-width: 0;
}

.tab-panels .tab-panel {
    background: transparent;
}

.tab-buttons-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 12px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.tab-panel {
    display: none;
    background: transparent;
    padding: 0;
    width: 100%;
    min-width: 0;
}

.tab-panel.active {
    display: block;
}

.hero-tile {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    box-shadow: none;
    display: grid;
    gap: 12px;
}

.hero-tile h3 {
    margin: 8px 0 10px;
    font-size: 26px;
    color: #1c1c1e;
}

.hero-tile-subhead {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1b1509;
}

.hero-tile p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #2f2f2f;
}

.hero-tile .eyebrow {
    display: none;
}

.hero-tile .button {
    align-self: flex-start;
    margin-top: 4px;
}

.hero-tile .tile-copy.centered {
    text-align: center;
    align-items: center;
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero-tile-platform .tile-copy.centered {
    max-width: 960px;
    text-align: center;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    gap: 14px;
    padding: clamp(20px, 4vw, 44px) 18px clamp(18px, 3.5vw, 36px);
}

.hero-tile-platform .tile-copy.centered h3 {
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.04;
    text-align: center;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.hero-tile-platform .tile-copy.centered .hero-tile-subhead {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    text-align: center;
}

.hero-tile-platform .tile-copy.centered p {
    text-align: center;
    font-size: 18px;
    line-height: 1.65;
}
.tab-panel#tab-platform .hero-tile-platform {
    display: flex;
    justify-content: center;
}
.tab-panel#tab-platform .hero-tile-platform .tile-copy.centered {
    max-width: 900px;
    width: 100%;
}

.hero-tile .button.primary,
.hero-tile .button.ghost {
    background: var(--slate-deep);
    border-color: var(--slate-deep);
    color: #fff;
    box-shadow: none;
}

.hero-tile .button.primary:hover,
.hero-tile .button.ghost:hover {
    background: var(--slate-deep);
    color: #fff;
    border-color: var(--slate-deep);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.hero-tile-intentkey {
    background: transparent;
    border-color: transparent;
    color: #1c1c1e;
    box-shadow: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.hero-tile-platform {
    grid-template-columns: 1fr;
}

.hero-tile .button.primary {
    background: #1c1c1e;
    border-color: #1c1c1e;
    color: #fff;
}
.hero-tile .button.primary:hover {
    background: #f2e2a6;
    color: #1c1c1e;
    border-color: #f2e2a6;
}

.honey-visual {
    position: relative;
    min-height: 260px;
}

.intentkey-honey .honey-layer {
    position: absolute;
    inset: -24% -6% -14% -6%;
    pointer-events: none;
    opacity: 0.9;
    animation: honeyDrift 24s ease-in-out infinite;
}

.intentkey-honey .honey-layer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.intentkey-honey .honey-layer svg polygon {
    stroke: #d8c6a1 !important;
    stroke-width: 1.6 !important;
    fill: transparent;
    opacity: 1;
    transition: opacity 0.45s ease, stroke 0.35s ease, fill 0.45s ease;
}

.intentkey-honey .honey-layer svg polygon.hovered { fill: url(#honeyGrad1); stroke: #b45d2c; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }
.intentkey-honey .honey-layer svg polygon.chain { fill: url(#honeyGrad2); stroke: #c9972c; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.14)); }
.intentkey-honey .honey-layer svg polygon.strip { fill: url(#honeyGrad3); stroke: #c9972c; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12)); }
.intentkey-honey .honey-layer svg polygon[data-accent="1"] { fill: url(#honeyGrad4); stroke: #c45a32; }

@keyframes honeyDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  25% { transform: translate3d(-6px, 8px, 0) scale(1.01); }
  50% { transform: translate3d(6px, -10px, 0) scale(1.015); }
  75% { transform: translate3d(-4px, 6px, 0) scale(1.005); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

.lead-intro {
    text-align: center;
    padding: 56px 16px 36px;
    background: #fff;
}
.lead-heading {
    padding: 0 0 6px;
    background: transparent;
}
.lead-heading h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4a4a4a;
    font-weight: 700;
}
.lead-line {
    padding: 0 0 18px;
    margin: 0 auto;
    max-width: 900px;
}
.lead-line p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: #2a2a2f;
    font-weight: 700;
}
.lead-tabs {
    position: relative;
    display: inline-flex;
    gap: 42px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    margin-top: 8px;
}
.lead-tab {
    appearance: none;
    background: transparent;
    border: none;
    padding: 12px 6px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #3a3a42;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.lead-tab.active {
    color: #0f0f12;
}
.lead-tab:hover { opacity: 0.9; }
.lead-tab:focus-visible {
    outline: 2px solid #c9b060;
    outline-offset: 6px;
    border-radius: 6px;
}
.lead-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 120px;
    background: linear-gradient(90deg, #e2c874, #f2e2a6);
    border-radius: 999px;
    transform: translateX(0);
    transition: transform 0.28s ease, width 0.28s ease;
}
.lead-tabs[data-active=\"platform\"] .lead-underline {
    transform: translateX(100%);
}


.resource-section {
    background: var(--sand);
    padding: 0;
    overflow: hidden;
    position: relative;
    text-align: left;
    --rail-width: 240px;
    --card-gap: 18px;
    --card-width: clamp(260px, 32vw, 440px);
    --track-pad: 18px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-shadow: inset 0 6px 16px rgba(0,0,0,0.08);
}


.resource-sticky {
    position: relative;
    top: 0;
    bottom: auto;
    height: auto;
    min-height: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: var(--rail-width) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
}

.resource-rail {
    background: linear-gradient(180deg, #f2e2a6 0%, #e9d993 100%);
    color: var(--slate);
    display: grid;
    place-items: start;
    gap: 4px;
    padding: 22px 22px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.rail-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
}

.rail-label {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2;
    max-width: 180px;
}

.resource-track-wrapper {
    position: relative;
    overflow: visible;
    background: var(--sand);
    margin-left: 0;
    padding: 32px var(--track-pad) 48px var(--track-pad);
    width: 100%;
    height: auto;
    flex: 1;
}

.resource-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--card-width);
    gap: var(--card-gap);
    align-items: start;
    padding: 0;
    width: max-content;
    min-width: 100%;
    height: auto;
    transform: translate3d(0,0,0);
    will-change: transform;
}

.resource-card {
    background: #fff;
    border: 1px solid #e6ddcc;
    border-radius: 19px;
    padding: 26px 28px 30px;
    text-align: left;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    min-height: 340px;
    display: grid;
    gap: 12px;
}

.resource-card h3 {
    margin: 10px 0 12px;
    font-size: 28px;
    color: #1c1c1e;
}

.resource-card p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #2f2f2f;
}

.resource-card .button {
    margin-top: auto;
    color: #1c1c1e;
    border-color: #1c1c1e;
    background: transparent;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
    font-weight: 700;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.12);
    background: #f2e2a6;
}

.resource-scroll .resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.16);
}

.resource-card:hover .button,
.resource-scroll .resource-card:hover .button {
    color: #fff !important;
    border-color: #9a9586 !important;
    background: #9a9586;
}

.resource-scroll .resource-card {
    background: #fff;
    width: 100%;
}

.resource-card.newsletter-card {
    background: #9a9586;
    color: #fff;
    border-color: rgba(0,0,0,0.08);
}

.resource-card.newsletter-card p,
.resource-card.newsletter-card h3,
.resource-card.newsletter-card .eyebrow {
    color: #fff;
}

.resource-card.newsletter-card .newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.resource-card.newsletter-card .mail-icon {
    display: none;
}

.resource-card.newsletter-card .newsletter-field {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 10px 12px;
    position: relative;
}

.resource-card.newsletter-card input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
    padding: 8px 6px;
    width: 100%;
    box-sizing: border-box;
}

.resource-card.newsletter-card input::placeholder {
    color: rgba(255,255,255,0.8);
}

.resource-card.newsletter-card .newsletter-button {
    width: 100%;
    background: #fff;
    color: #1c1c1e;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.resource-card.newsletter-card .mail-icon {
    display: none !important;
}

@media (max-width: 1100px) {
    .resource-scroll {
        height: auto;
    }
    .resource-sticky {
        position: relative;
        height: auto;
        display: block;
        padding: 0;
    }
    .resource-rail {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
    }
    .resource-track {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-auto-columns: auto;
        padding: 32px 18px 40px;
        width: 100%;
    }
    .resource-track-wrapper {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        overflow-x: hidden;
        height: auto;
    }
}

.button.outline.slate {
    border: 2px solid #1c1c1e;
    color: #1c1c1e;
    background: #fff;
    padding: 12px 18px;
    font-weight: 700;
    border-radius: 14px;
}

.button.outline.slate:hover {
    background: #1c1c1e;
    color: #fff;
}

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 16px;
    border: 2px solid #9a9586;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button.light {
    background: #fff;
    color: #1c1c1e;
    border-color: #fff;
}

.button.light:hover {
    background: #f2e2a6;
    color: #1c1c1e;
    border-color: #f2e2a6;
}

.button.ghost-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.button.ghost-light:hover {
    background: #fff;
    color: #1c1c1e;
}

.button.primary {
    background: #1f1e1d;
    color: #fff;
    border-color: #1f1e1d;
}

.button.primary:hover {
    background: #1f1e1d;
    color: #fff;
    border-color: #1f1e1d;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

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

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    background: #9a9586;
    color: #1f1e1d;
    border-color: #9a9586;
}

.hero-visual {
    width: 100%;
}

.hero-experiment {
    position: relative;
    overflow: hidden;
}

.hero-experiment .hero-copy {
    position: relative;
    z-index: 2;
}

.hero-hex-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-hex-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hex-static-fallback {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(196, 134, 21, 0.12), transparent 40%), radial-gradient(circle at 72% 62%, rgba(15, 20, 47, 0.1), transparent 48%), linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8));
    opacity: 0.5;
    display: none;
}


.hero-hex-grid {
    --hex-size: 92px;
    --hex-gap: 0px;
    width: min(var(--page-max), 100% - var(--page-pad-wide));
    max-width: var(--page-max);
    margin: 30px auto 0;
    padding: 14px 12px 28px;
    display: flex;
    flex-direction: column;
    gap: var(--hex-gap);
    align-items: flex-start;
    overflow: hidden;
}

.resource-inner {
    width: 100%;
    margin: 0 auto;
}

.resource-section h2 {
    display: none;
}

.resource-section p {
    margin: 0;
}

.resource-cards {
    display: block;
}

.resource-card {
    background: #fff;
    border: 1px solid #efe3cf;
    border-radius: 18px;
    padding: 18px 20px 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    margin: 8px 0 10px;
    font-size: 26px;
    color: #1c1c1e;
    font-weight: 700;
}

.resource-card p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #2f2f2f;
}

.resource-card .button {
    margin-top: 4px;
}

.hex-row {
    display: flex;
    gap: var(--hex-gap);
    justify-content: flex-start;
}

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

.hex-row.offset {
    margin-left: calc((var(--hex-size) + var(--hex-gap)) / 2);
}

.grid-hex {
    width: var(--hex-size);
    height: var(--hex-size);
    background: linear-gradient(150deg, #f4dba4 0%, #c48615 100%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    transition: transform 0.16s ease-out, filter 0.16s ease-out, background 0.16s ease-out;
    opacity: 1;
    transform: translateY(0);
    animation: dropHex 0.5s ease-out forwards;
    animation-delay: var(--delay, 0ms);
    animation-fill-mode: both;
    will-change: opacity, transform;
}

.grid-hex.dark {
    background: linear-gradient(150deg, #d3a64b 0%, #9a6a05 100%);
}

.grid-hex:hover {
    transform: scale(1.06);
    background: linear-gradient(150deg, #fdf3d4 0%, #e7c479 100%);
    opacity: 0.6;
    filter: brightness(1.12);
}

.grid-hex.dark:hover {
    transform: scale(1.06);
    background: linear-gradient(150deg, #f7e2ae 0%, #d1a14c 100%);
    opacity: 0.6;
    filter: brightness(1.1);
}

.grid-hex.spacer {
    visibility: hidden;
}

.grid-hex.pulse {
    animation: hexHoverWave 0.35s ease-out;
}

.hero-hex-grid.auto-pulse .grid-hex {
    animation: dropHex 0.5s ease-out forwards;
    animation-fill-mode: both;
}

.grid-hex.flash {
    animation: hexFlash 1.3s ease-out forwards, hexGlow 1.3s ease-out forwards;
    background: linear-gradient(150deg, #f4dba4 0%, #8a6210 100%);
}

@keyframes hexGlow {
    0% { box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
    50% { box-shadow: 0 0 24px rgba(12, 18, 48, 0.24); }
    100% { box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
}

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

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

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

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

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

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

.card-grid:hover .info-card {
    background: linear-gradient(180deg, #fdfaf4 0%, #efe5d1 100%);
    filter: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
    background: #fff;
    filter: none;
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
    z-index: 2;
}

.card-grid:hover .info-card:hover {
    background: #fff;
    filter: none;
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.16);
}

.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: auto;
}

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

.card-icon {
    display: none;
}

.dark-panel {
    position: relative;
    margin: 103px auto 85px;
    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(--slate-deep);
    border-radius: 36px;
    overflow: hidden;
    padding: 110px 30px 110px;
    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;
    max-width: 820px;
    margin: 0 96px;
}

.dark-panel.in-view .dark-hex {
    animation-play-state: running;
}
.dark-copy h2 {
    margin: 0 0 16px;
    font-size: 54px;
    line-height: 1;
    max-width: 820px;
}

.dark-copy p {
    margin: 0 0 36px;
    max-width: 680px;
    color: #d6dcff;
    line-height: 1.25;
    font-size: 21px;
}

.accent {
    color: #d9a020;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: 1200px;
    align-items: stretch;
    margin: 30px auto 0;
    position: relative;
    z-index: 3;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    padding: 70px 32px 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    min-height: 290px;
    aspect-ratio: 1 / 1.12;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    text-align: left;
}

.stat .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.stat .label {
    display: block;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

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

.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: 30px;
    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: 17px;
}

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

.activation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    width: 100%;
}

.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 24px 38px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
    background: #fff;
    z-index: 2;
}

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

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

.activation-cards::before {
    display: none;
}

.activation-cards:hover .activation-card {
    background: linear-gradient(180deg, #fdfaf4 0%, #efe5d1 100%);
    filter: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.activation-cards:hover .activation-card:hover {
    background: #fff;
    filter: none;
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
    z-index: 2;
}

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

@media (max-width: 1200px) {
    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        max-width: 100%;
        justify-items: center;
    }
    .stat {
        width: 100%;
        max-width: 320px;
        min-height: 0;
        aspect-ratio: 1 / 1.12;
        padding: 90px 26px 36px;
    }
    .stats .stat:nth-child(1),
    .stats .stat:nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 1100px) {
    .stats {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
    }
    .stats .stat:nth-child(1),
    .stats .stat:nth-child(4) {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

.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.butter {
    background: #c48615;
}

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

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

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

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

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

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

.cta-banner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(180deg, #f5e2b2 0%, #b88314 100%);
    border-radius: 26px;
    padding: 48px 38px;
    color: #1b1509;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
    margin-top: 120px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-copy h3 {
    margin: 12px 0 22px;
    font-size: 32px;
    line-height: 1.32;
    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: 700;
    font-size: 15px;
    border: 2px solid #1c1c1e;
    text-decoration: none;
    min-width: 180px;
}

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

.cta-btn.outline {
    background: #fff;
    color: #1c1c1e;
}

.cta-laptop img {
    width: 100%;
    max-width: 520px;
    display: block;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.25));
    mix-blend-mode: normal;
    background: transparent;
    transition: transform 0.35s ease, filter 0.35s ease;
}

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

.eyebrow.center {
    text-align: center;
    display: block;
}

.cta-laptop {
    align-self: end;
    text-align: right;
    padding-right: 12px;
}

.cta-banner:hover .cta-laptop img {
    transform: scale(1.04);
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.28));
}

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

.newsletter-inner {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    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: #1c1c1e;
}

.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);
    min-width: 320px;
}

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

.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 #f2e2a6;
    background: #f2e2a6;
    color: #1c1c1e;
    font-weight: 700;
    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(0, 0, 0, 0.2);
    background: #f2e2a6;
}

.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: #1f1e1d;
    color: #e8edf6;
    padding: 56px 24px 46px;
}

.footer-inner {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 40px;
}

.footer-brand {
    font-weight: 700;
    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: 700;
    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(--slate);
}

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

.footer-btn.solid:hover {
    background: var(--slate-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: #edebe6;
    font-size: 13px;
    text-align: center;
    margin-top: 85px;
}

.footer-meta a {
    color: #edebe6;
    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: 700;
    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: #b86b1d;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-note-link:hover {
    color: #8f4f0d;
}

@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); }
    40% { transform: scale(1.1); filter: brightness(0.92); }
    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 hexFlash {
    0% { filter: brightness(1); transform: translateY(0) scale(1); }
    45% { filter: brightness(0.35); transform: translateY(-7px) scale(1.08); }
    100% { filter: brightness(1); transform: translateY(0) scale(1); }
}

@keyframes mobilePulse {
    0%, 100% { filter: brightness(1); transform: translateY(0) scale(1); }
    40% { filter: brightness(0.65); transform: translateY(-6px) scale(1.05); }
    60% { filter: brightness(1.05); transform: translateY(0) scale(1.02); }
}

@keyframes noteBounce {
    0%, 100% { transform: translateY(-50%) scale(1.015); }
    50% { transform: translateY(-52%) scale(1.025); }
}

@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: 1100px) {
    .hero,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 110px 46px 150px;
    }

    .hero-experiment {
        overflow: hidden;
    }

    .hero-hex-field {
        inset: 0;
    }

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

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

    .info-card.offset {
        max-width: 100%;
        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));
    }

    .note-hero {
        padding: 38px 18px 80px;
    }

    .card-grid {
        gap: 16px;
    }

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

    .cta-laptop {
        justify-self: center;
        padding-right: 0;
    }

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

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

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

    .hero-hex-grid {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 12px 22px;
    }

    .hex-row {
        justify-content: center;
    }

    .hero-hex-grid {
        --hex-size: 78px;
    }

    .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;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .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: 0;
        background: #fff;
    }

    .hero {
        padding: 96px 28px 160px;
    }

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

    .dark-panel {
        padding: 80px 28px 90px;
        margin: 80px auto 70px;
    }
    .dark-content {
        max-width: 90%;
        margin: 0 auto 28px;
        text-align: left;
    }
    .dark-copy h2 {
        font-size: 38px;
        line-height: 1.05;
        max-width: 100%;
    }
    .dark-copy p {
        font-size: 18px;
        line-height: 1.35;
        max-width: 100%;
    }

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

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

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

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

    .hero-copy p {
        font-size: 16px;
    }

    .hero-hex-field {
        display: block;
        inset: 0;
        opacity: 0.9;
    }

    .note-hero-inner h2 {
        font-size: 28px;
    }

    .note-hero-inner p {
        font-size: 15px;
    }

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

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

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

    .newsletter-button {
        width: 100%;
    }

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

    .cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 18px 32px;
    }

    .cta-copy {
        width: 100%;
    }

    .cta-laptop {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .cta-laptop img {
        max-width: 100%;
        width: 100%;
        height: auto;
        filter: none;
    }

    .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: 100%;
        min-width: 0;
    }

    .hero-hex-grid {
        --hex-size: 64px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 10px 20px;
        width: min(var(--page-max), 100% - var(--page-pad-wide));
        max-width: var(--page-max);
    }

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

    .hex-row {
        justify-content: center;
    }

    .hero {
        overflow: hidden;
        padding-left: 14px;
        padding-right: 14px;
    }

    .dark-panel {
        padding-left: 28px;
        padding-right: 28px;
    }
    .product-tabs,
    .tab-panels,
    .product-tiles {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .note-accent,
    .note-accent:hover {
        transform: none !important;
        pointer-events: none;
    }
}

/* IntentKey deep-dive tabs */
.intentkey-detail-tabs {
    margin-top: 12px;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
    padding: 0 18px 32px;
}

.feature {
    padding: 30px 0;
}

.feature-inner {
    max-width: var(--page-max);
    width: min(var(--page-max), 100% - var(--page-pad));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    gap: 22px;
}

.feature .lead { color: var(--muted); }

.cards-section .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.cards-section .card {
    border-radius: 13px;
    padding: 40px 26px;
    box-shadow: var(--card-shadow);
}

.card-butter {
    background: #e1ded7;
    border: 1px solid rgba(0,0,0,0.08);
}

.ik-overview-shell {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    display: grid;
    gap: 18px;
}

.ik-overview-copy {
    display: grid;
    gap: 8px;
    color: var(--slate);
    text-align: center;
    justify-items: center;
}

.ik-overview-title {
    margin: 0;
    color: var(--navy);
    text-align: center;
}

.ik-overview-body {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
}

.ik-overline {
    margin: 0;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
    text-transform: none;
}

.ik-video-wrap {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 12px 0 0;
}

.ik-video {
    width: 100%;
    max-width: 840px;
    border-radius: 14px;
    box-shadow: none;
    border: none;
    background: var(--slate-deep) url("/wp-content/themes/salient-child/assets/inuvoenhanced/Hero.jpeg") center/cover no-repeat;
    display: block;
    object-fit: cover;
    min-height: 320px;
    aspect-ratio: 16 / 9;
}

.detail-tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 4px;
    background: #f7f5ef;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 28px;
    box-shadow: none;
    margin: 0 auto 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    align-items: stretch;
    min-width: 0;
}

.detail-tab {
    border: none;
    border-radius: 22px;
    padding: 0 16px;
    background: transparent;
    font-weight: 700;
    color: var(--slate);
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: color 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    height: 100%;
    min-width: 0;
    font-size: 15px;
    padding: 10px 10px;
}

.detail-tab.active {
    color: var(--slate-deep);
    background: transparent;
    border-radius: 22px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.detail-tab.active::after {
    content: '';
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 8px;
    height: 4px;
    background: linear-gradient(90deg, var(--butter) 0%, #e9d993 100%);
    border-radius: 999px;
}

.detail-tab-buttons .detail-tab:nth-child(1).active {
    background: linear-gradient(90deg, var(--butter) 0%, #f7f5ef 100%);
}

.detail-tab-buttons .detail-tab:nth-child(2).active,
.detail-tab-buttons .detail-tab:nth-child(3).active {
    background: linear-gradient(90deg, #f7f5ef 0%, var(--butter) 50%, #f7f5ef 100%);
}

.detail-tab-buttons .detail-tab:nth-child(4).active {
    background: linear-gradient(90deg, #f7f5ef 0%, var(--butter) 100%);
}

.detail-tab-panels {
    padding: 12px 0;
    background: transparent;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.detail-tab-panel {
    display: none;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 12px 0 0;
    gap: 24px;
    text-align: center;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.detail-tab-panel.active { display: grid; }

.tab-content {
    display: grid;
    gap: 24px;
    justify-items: center;
    text-align: center;
    width: 100%;
    max-width: min(1040px, 92vw);
    min-width: 0;
    margin: 0 auto;
    padding: 0 16px;
}

.ik-hero-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: center;
    padding: 10px 0 0;
}

.ik-hero-preview .hero-copy h3 { color: var(--slate); margin-bottom: 8px; }
.ik-hero-preview .hero-copy .lead { color: var(--muted); }
.ik-hero-preview .hero-copy .button { background: var(--slate); color: #fff; border: none; }
.ik-hero-preview .overline { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }
.ik-hero-preview .hero-copy {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.ik-hero-preview .hero-copy.full {
    grid-column: 1 / -1;
}

.ik-hero-preview .device .device-screen {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ik-hero-preview .metric-card,
.ik-hero-preview .chart-placeholder {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: var(--card-shadow);
    color: var(--slate);
}

.feature.light.cards-section .card { color: var(--slate); border: none; }
.feature.light.cards-section .card.card-ochre-dark { background: var(--butter); }
.feature.light.cards-section .card.card-ctv-photo { background: var(--slate); color: #fff; }
.feature.light.cards-section .card.card-mustard-browser { background: #fff; }

.platform-section {
    background: transparent;
    color: var(--slate);
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    border: none;
    box-shadow: none;
}

.platform-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: center;
}

.platform-copy .platform-headline { color: var(--slate); }
.platform-copy .platform-subhead { color: var(--muted); }
.platform-copy .button { background: var(--slate-deep); color: #fff; border-color: var(--slate-deep); }

.platform-stack {
    display: grid;
    gap: 28px;
    justify-items: center;
    text-align: center;
    align-items: center;
}

.platform-copy.centered {
    max-width: 820px;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.platform-video {
    width: min(960px, 100%);
    max-width: 100%;
}

.platform-video-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    border: none;
    box-shadow: none;
    background: var(--slate-deep);
    aspect-ratio: 16 / 9;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.platform-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 980px;
    justify-items: center;
}

.platform-stat {
    background: var(--sand-light);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--slate);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.activate-section { background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
.activate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: var(--page-max); width: min(var(--page-max), 100% - var(--page-pad)); margin: 0 auto; }
.activate-card { background: #f3f1eb; border: 1px solid rgba(0,0,0,0.05); color: var(--slate); border-radius: 11px; padding: 16px 18px; box-shadow: 0 12px 26px rgba(0,0,0,0.07); text-align: center; display: grid; gap: 8px; }
.activate-card h4 { margin: 0; font-size: 20px; line-height: 1.3; color: var(--slate); }
.activate-card p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--muted); }

.hex-path { background: transparent; border-radius: 0; padding: 10px 0; box-shadow: none; }
.hex-layout { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; justify-items: center; }
.hex-copy h3 { color: var(--slate); text-align: center; }
.hex-copy .lead { color: var(--muted); text-align: center; }
.hex-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 12px; margin-top: 12px; max-width: 760px; width: 100%; justify-items: center; }
.hex-stats .stat-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 14px; color: var(--slate); box-shadow: var(--card-shadow); text-align: center; }
.hex-stats .stat-card h4 { margin: 0 0 8px; }
.hex-stats .stat-card p { margin: 0; }

.tab-top {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 22px;
}

.tab-top .button {
    margin-top: 6px;
    margin-bottom: 6px;
}

.tab-top h3 {
    margin: 0;
    font-size: 41px;
    line-height: 1.2;
    color: var(--slate);
}

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

.tab-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 1200px;
}

.tab-pill {
    background: #fbf9f6;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 13px;
    padding: 18px 16px;
    color: var(--slate);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
}

.tab-pill-icon {
    font-size: 20px;
    color: #9a9586;
}

.tab-pill-text { font-size: 22px; line-height: 1.35; font-weight: 800; color: var(--slate); }

.tab-pill-sub {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    font-weight: 600;
}

/* Stat row (icon + single line, no card) */
.stat-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 1100px;
    justify-items: center;
}

.stat-pill {
    display: inline-grid;
    grid-auto-flow: row;
    gap: 6px;
    align-items: center;
    justify-items: center;
    text-align: center;
    color: var(--slate);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
}

.stat-pill-icon {
    font-size: 22px;
    color: #9a9586;
}

.stat-pill-text {
    font-weight: 600;
    color: var(--slate);
}

.feature-cards.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card-feature {
    background: #fbf9f6;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 13px;
    padding: 32px 26px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    text-align: center;
    display: grid;
    gap: 10px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.card-feature h4 {
    margin: 0;
    font-size: 22px;
    color: var(--slate);
    line-height: 1.25;
}

.card-feature p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
}

.card-feature:hover {
    background: #fff;
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 14px 26px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .product-tiles {
        width: 100%;
        margin: 0;
    }
    .tab-buttons,
    .detail-tab-buttons {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .product-tabs {
        padding: 0 12px;
    }
    .tab-buttons {
        width: min(440px, 92vw);
        max-width: 100%;
        margin: 0 auto;
    }
    .detail-tab-buttons {
        width: min(480px, 94vw);
        max-width: 100%;
        padding: 4px 6px;
        margin: 0 auto 14px;
    }
}

@media (max-width: 1100px) {
    .detail-tab-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 100%;
        width: 100%;
        padding: 6px 8px;
        overflow: hidden;
    }
    .detail-tab {
        padding: 12px 8px 12px;
        font-size: 16px;
    }
    .detail-tab.active::after {
        left: 14%;
        right: 14%;
        bottom: 5px;
    }
}

@media (max-width: 640px) {
    .tab-pills {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    .product-tabs {
        width: 100%;
        max-width: 100%;
        padding: 0 8px 28px;
        margin-left: auto;
        margin-right: auto;
    }
    .intentkey-detail-tabs {
        padding: 0 10px 22px;
    }
    .tab-buttons {
        width: 100%;
        max-width: 100%;
        padding: 6px 8px;
        border-radius: 22px;
        margin: 0 auto;
        overflow: hidden;
    }
    .tab-button {
        font-size: 15.5px;
        padding: 13px 10px;
    }
    .detail-tab-buttons {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 4px 4px;
        border-radius: 12px;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }
    .detail-tab {
        min-height: 44px;
        font-size: 13px;
        padding: 8px 4px 9px;
    }
    .detail-tab.active::after {
        left: 12%;
        right: 12%;
        bottom: 5px;
    }

    .hero-statement {
        width: 90%;
    }
    .hero-statement p {
        font-size: 22px;
        line-height: 1.5;
    }
}

@media (max-width: 900px) {
    .tab-panels {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding-left: 12px;
        padding-right: 12px;
    }
    .tab-content {
        max-width: min(840px, 94vw);
    }
    .tab-pills {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 100%;
        width: 100%;
    }
    .newsletter-field {
        min-width: 360px;
    }
    .activate-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 100%;
        width: 100%;
        padding-left: 4px;
        padding-right: 4px;
    }
    .tab-buttons {
        max-width: 100%;
        width: 100%;
    }
    .detail-tab-buttons {
        max-width: 100%;
        width: 100%;
        padding: 4px 6px;
        margin-left: auto;
        margin-right: auto;
    }
    .detail-tab {
        min-height: 48px;
        padding: 9px 6px 9px;
        font-size: 14px;
    }
    .detail-tab.active::after {
        left: 12%;
        right: 12%;
    }
}

@media (max-width: 768px) {
    .tab-buttons,
    .detail-tab-buttons {
        width: 100%;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    .detail-tab {
        font-size: 15px;
    }
    .activate-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 16px;
    }
    .tab-pills {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .product-tabs {
        padding: 0 14px 34px;
        background: #fff;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .tab-buttons-wrap {
        padding: 16px 10px 10px;
        background: #fff;
        width: 100%;
    }
    .tab-panels {
        padding-top: 22px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow-x: hidden;
    }
    .detail-tab-panels {
        width: 100%;
        max-width: 100%;
    }
    .product-tiles {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 8px 42px;
        background: #fff;
    }
    .intentkey-detail-tabs {
        padding-left: 0;
        padding-right: 0;
    }
    .resource-section {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0 0 32px;
        background: var(--sand);
    }
    .tab-content {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }
    .stat-pills {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }
.feature-cards,
.tab-pills.feature-cards,
.feature-cards.card-grid {
    grid-template-columns: 1fr;
    width: 100%;
}
.activation-cards {
    grid-template-columns: 1fr;
}
.activation-cards {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* Sharper corners across the page */
.hero,
.hero-video,
.hero-overlay {
    border-radius: 6px;
}

.tab-buttons,
.tab-button,
.detail-tab-buttons,
.detail-tab {
    border-radius: 12px;
}

.product-tabs,
.product-tiles {
    border-radius: 0;
}

.cards-section .card,
.tab-pills .tab-pill,
.resource-card,
.activation-card,
.activate-card {
    border-radius: 10px;
}


    .ik-hex-node {
        transition: none;
    }
}

@media (max-width: 1200px) {
    .ik-panel-main {
        grid-template-columns: minmax(220px, 320px) 1fr;
    }
}

@media (max-width: 1023px) {
    .ik-panel-body {
        padding: 0 16px;
    }
    .ik-panel-main {
        grid-template-columns: 1fr;
    }
    .ik-visual-stage {
        position: relative;
        top: auto;
        min-height: 320px;
        max-height: none;
        justify-content: center;
    }
    .ik-hex-path {
        gap: 16px;
        padding: 10px 0;
        height: auto;
        align-items: center;
    }
    .ik-hex-node {
        width: 140px;
    }
    .ik-mobile-tabs { display: none; }
    .ik-stories {
        gap: 18px;
    }
    .ik-story {
        display: block;
    }
    .ik-story.active {
        display: block;
    }
    .ik-story::after {
        margin-top: 14px;
    }
    .ik-story-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .ik-stage-panel {
        padding: 60px 0 70px;
    }
    .ik-panel-title {
        font-size: 38px;
    }
    .ik-panel-subhead {
        font-size: 18px;
    }
    .ik-story {
        padding: 18px 16px 20px;
        border-radius: 10px;
    }
    .ik-visual-stage {
        min-height: 210px;
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .product-tabs {
        padding: 0;
        background: var(--sand);
    }
    .tab-buttons-wrap {
        padding: 16px 14px 10px;
        background: var(--sand);
    }
    .tab-panels {
        padding-top: 24px;
    }
    .product-tiles {
        padding: 0 0 42px;
        background: #fff;
    }

    .resource-section {
        background: var(--sand);
        padding: 0 0 36px;
    }
    .resource-sticky {
        display: block;
    }
    .resource-rail {
        width: 100%;
        max-width: 100%;
        padding: 18px 16px;
        margin: 0;
        border-radius: 0;
        border-right: none;
    }
    .resource-track-wrapper {
        width: 100%;
        overflow: visible;
        background: var(--sand);
        padding: 12px 0 0;
    }
    .resource-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 14px;
        transform: none !important;
    }
    .resource-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* IntentKey panel reset */
#intentkey-panel {
    margin-bottom: 28px;
    max-width: 1340px;
    width: min(1340px, 100% - 24px);
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #1A1A1D 0%, #121214 50%, #0B0B0C 100%);
    box-shadow: none;
    border-radius: 12px;
    padding: clamp(36px,5vw,72px);
    position: relative;
    overflow: hidden;
}
#intentkey-panel::after { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 82% 78%, rgba(242,226,166,.18), transparent 55%); opacity:.85; }
#intentkey-panel .ik-layout { max-width: var(--page-max); width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(28px, 4vw, 64px); align-items: flex-start; }
#intentkey-panel .ik-panel-header { display: none; }
#intentkey-panel .ik-visual-stage { display: flex; align-items: flex-start; }

/* Hero surface (matches Bonfire tile styling) */
.ik-hero-surface { background: #fff; color: #1c1c1e; padding: clamp(20px, 4vw, 40px) clamp(24px, 4vw, 48px); border-radius: 18px; box-shadow: none; margin: 0 0 16px 0; }
.ik-hero-headline { margin: 0 0 4px 0; font-size: clamp(36px, 4vw, 64px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 600; color: #1c1c1e; }
.ik-hero-subhead { margin: 0 0 16px 0; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; max-width: 60ch; color: #2f2f2f; }
.ik-hero-surface .ik-cta { background: transparent; border: 2px solid #1c1c1e; box-shadow: none; color: #1c1c1e; padding: 12px 20px; border-radius: 12px; font-weight: 700; }
.ik-hero-surface .ik-cta:hover, .ik-hero-surface .ik-cta:focus-visible { background: #1c1c1e; color: #fff; border-color: #1c1c1e; }

/* Dark stage */
.ik-stage { position: relative; color: rgba(245,243,238,.92); padding: clamp(36px, 5vw, 72px); border-radius: 12px; background: linear-gradient(180deg, #1A1A1D 0%, #121214 50%, #0B0B0C 100%); box-shadow: 0 28px 80px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06); overflow: visible; background-position: 0 0; animation: ikParallax 6s ease-in-out infinite alternate; }
.ik-stage .ik-layout { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(28px, 4vw, 64px); align-items: start; }

/* Rail */
.ik-stage .ik-rail { display: flex; flex-direction: column; gap: 14px; padding: 6px 0; align-items: flex-start; position: relative; z-index: 1; }
.ik-stage .ik-rail::before { display: none; }

/* Hex nodes */
.ik-stage .ik-hex { --hx-offset: 0px; width: 176px; height: 188px; margin-top: 0; clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); background: linear-gradient(145deg, #F3E6B5, #E6D39A 40%, #C7AE6A); color: rgba(15,15,15,.9); box-shadow: 0 10px 28px rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; text-align: center; cursor: default; user-select: none; transition: transform 380ms cubic-bezier(.2,.8,.2,1), box-shadow 380ms cubic-bezier(.2,.8,.2,1), opacity 380ms cubic-bezier(.2,.8,.2,1), filter 380ms cubic-bezier(.2,.8,.2,1); transform: translateX(var(--hx-offset)); }
.ik-stage .ik-hex:nth-child(2) { --hx-offset: 81px; margin-top: -43px; }
.ik-stage .ik-hex:nth-child(3) { --hx-offset: -4px; margin-top: -48px; }
.ik-stage .ik-hex:nth-child(4) { --hx-offset: 80px; margin-top: -46px; }
.ik-stage .ik-hex .ik-hex-icon, .ik-stage .ik-hex svg { display: none; }
.ik-stage .ik-hex .ik-hex-label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ik-stage .ik-hex:hover:not(.active):not(.is-active):not(.current):not([aria-current="true"]) { transform: translateX(calc(var(--hx-offset) + 2px)) scale(1.03); }
.ik-stage .ik-hex:not(.active):not(.is-active):not(.current):not([aria-current="true"]) { opacity: .55; filter: saturate(.85) brightness(.95); }
.ik-stage .ik-hex.active, .ik-stage .ik-hex.is-active, .ik-stage .ik-hex.current, .ik-stage .ik-hex[aria-current="true"] { opacity: 1; transform: translateX(calc(var(--hx-offset) + 2px)) scale(1.05); box-shadow: 0 0 30px rgba(242,226,166,.45), 0 14px 48px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.4); }

/* Content */
.ik-stage .ik-content { max-width: 900px; padding-top: 28px; position: relative; }
.ik-stage .ik-eyebrow, .ik-stage .ik-story-label { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,243,238,.45); margin: 0 0 12px 0; }
.ik-stage .ik-headline, .ik-stage .ik-story-title { font-size: clamp(34px, 3.6vw, 54px); line-height: 1.08; letter-spacing: 0.01em; margin: 0 0 22px 0; color: #F5F3EE; }
.ik-stage .ik-body, .ik-stage .ik-story-body { font-size: 18px; line-height: 1.7; max-width: 82ch; color: rgba(245,243,238,.78); margin: 0 0 20px 0; }
.ik-stage .ik-bullets, .ik-stage .ik-story-points { margin-top: 18px; color: #E6D39A; }
.ik-stage .ik-bullets li, .ik-stage .ik-story-points li { margin: 6px 0; }
.ik-stage .ik-bullets li::marker, .ik-stage .ik-story-points li::marker { color: rgba(242,226,166,.85); }

/* CTA */
.ik-stage .ik-cta { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(247,244,234,.92); box-shadow: 0 12px 30px rgba(0,0,0,.35); text-decoration: none; transition: transform 240ms cubic-bezier(.2,.8,.2,1), background 240ms cubic-bezier(.2,.8,.2,1), border-color 240ms cubic-bezier(.2,.8,.2,1); }
.ik-stage .ik-cta:hover, .ik-stage .ik-cta:focus-visible { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(242,226,166,.35); }
.ik-stage.ik-cta-hover .ik-hex.active, .ik-stage.ik-cta-hover .ik-hex.is-active, .ik-stage.ik-cta-hover .ik-hex.current, .ik-stage.ik-cta-hover .ik-hex[aria-current="true"] { box-shadow: 0 0 34px rgba(242,226,166,.48), 0 16px 54px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.38); }

/* Stories */
.ik-stage .ik-stories { position: relative; min-height: 520px; }
.ik-stage .ik-story { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(0); transition: opacity 0.24s ease; }
.ik-stage .ik-story.is-current { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.ik-stage .ik-story.is-current .ik-story-title, .ik-stage .ik-story.is-current .ik-story-body, .ik-stage .ik-story.is-current .ik-story-points li { animation: none; }
@keyframes ikParallax { from { background-position: 0 0; } to { background-position: 20px 12px; } }

/* Optional aura – repositioned to lower-right */
.ik-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle at 82% 78%, rgba(242,226,166,.18), transparent 55%);
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.6;
}

/* Corner visual */
.ik-stage .ik-corner-visual {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 420px;
  height: 320px;
  background: url('platformyelllow.png') no-repeat;
  background-size: cover;
  background-position: right bottom;
  border-radius: 0 0 12px 0;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
  transform-origin: right bottom;
  pointer-events: auto;
}
.ik-stage .ik-corner-visual:hover { transform: scale(1.05); }

@media (max-width: 980px) {
  #intentkey-panel { padding: clamp(28px,6vw,48px); overflow: visible; }
  .ik-stage { display: flex; flex-direction: column; gap: 16px; }
  .ik-stage .ik-layout { order: 1; grid-template-columns: 1fr; gap: 22px; max-width: 100%; }
  .ik-stage .ik-rail { flex-direction: row; flex-wrap: wrap; gap: 8px 12px; justify-content: center; padding-bottom: 12px; }
  .ik-stage .ik-hex { margin-top: 0 !important; --hx-offset: 0px; transform: translateX(0); width: 140px; height: 150px; }
  .ik-stage .ik-stories { position: relative; min-height: auto; padding-bottom: 32px; }
  .ik-stage .ik-story { position: relative; inset: auto; transform: none; }
  #intentkey-panel .ik-layout { grid-template-columns: 1fr; }
  #intentkey-panel .ik-visual-stage { justify-content: flex-start; }
  /* Mobile intent panel image: move below text, uncropped */
  .ik-stage .ik-corner-visual {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 220px;
    margin-top: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transform: none;
    pointer-events: none;
  }
  .ik-stage .ik-corner-visual:hover { transform: none; }
}

@media (max-width: 980px) {
  .resource-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .ik-stage {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  /* Disable hover/growth on mid-line hex layout; taps still work */
  .ik-stage .ik-hex:hover,
  .ik-stage .ik-hex:active {
    transform: translate(var(--hx-mobile-x, 0), var(--hx-mobile-y, 0)) !important;
    box-shadow: 0 10px 34px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.30);
  }
  .ik-stage .ik-hex {
    transition: none;
    width: 140px;
    height: 150px;
    margin: 0;
  }
  .ik-stage .ik-rail {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-auto-rows: auto;
    gap: 10px;
    justify-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .ik-stage .ik-hex {
    --hx-mobile-x: 0px;
    --hx-mobile-y: 0px;
    transform: translate(0,0) !important;
  }
  .ik-stage .ik-hex:nth-child(1) { grid-column: 1; grid-row: 1; }
  .ik-stage .ik-hex:nth-child(2) { grid-column: 2; grid-row: 1; }
  .ik-stage .ik-hex:nth-child(3) { grid-column: 3; grid-row: 1; }
  .ik-stage .ik-hex:nth-child(4) { grid-column: 4; grid-row: 1; }
}

@media (max-width: 720px) {
  .ik-stage .ik-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    justify-items: center;
    gap: 0;
    position: relative;
    justify-content: center;
    align-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #intentkey-panel .ik-visual-stage {
    justify-content: center;
    padding: 0;
  }
  .ik-stage .ik-hex {
    width: 130px;
    height: 140px;
    margin: 0;
    --hx-mobile-x: 0px;
    --hx-mobile-y: 0px;
    transform: translate(var(--hx-mobile-x), var(--hx-mobile-y));
  }
  /* 2x2 offset layout (no 3+1 wrap) */
  .ik-stage .ik-hex:nth-child(1) { grid-column: 1; grid-row: 1; --hx-mobile-x: -21px; --hx-mobile-y: 0px; }
  .ik-stage .ik-hex:nth-child(2) { grid-column: 2; grid-row: 1; --hx-mobile-x: -42px; --hx-mobile-y: 0px; }
  .ik-stage .ik-hex:nth-child(3) { grid-column: 1; grid-row: 2; --hx-mobile-x: 44px; --hx-mobile-y: -10px; }
  .ik-stage .ik-hex:nth-child(4) { grid-column: 2; grid-row: 2; --hx-mobile-x: 21px; --hx-mobile-y: -10px; }
  .ik-stage .ik-hex.active,
  .ik-stage .ik-hex.is-active,
  .ik-stage .ik-hex.current,
  .ik-stage .ik-hex[aria-current="true"] {
    transform: translate(var(--hx-mobile-x), var(--hx-mobile-y));
  }
  /* Disable hover lift on mobile */
  .ik-stage .ik-hex:hover,
  .ik-stage .ik-hex:active {
    transform: translate(var(--hx-mobile-x), var(--hx-mobile-y)) !important;
    box-shadow: 0 10px 34px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.30);
  }
  /* Corner visual nearly full width below content */
  .ik-stage .ik-corner-visual {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 16px);
    height: auto;
    min-height: 240px;
    margin: 6px auto 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    transform: none;
    pointer-events: none;
  }
  .ik-stage .ik-corner-visual:hover { transform: none; }
}

@media (max-width: 545px) {
  .resource-track {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 12px;
  }
  .resource-card {
    width: 100%;
    max-width: 100%;
  }
  .resource-section {
    padding: 0 var(--track-pad);
  }
}

@media (max-width: 900px) {
  .resource-section {
    max-width: 100%;
    width: 100%;
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .resource-sticky {
    grid-template-columns: 1fr;
  }
  .resource-rail {
    width: 100%;
    min-height: 0;
    height: auto;
    border-right: none;
    padding: 18px 18px 12px;
  }
  .resource-track-wrapper {
    padding: 0 0 28px 0;
    overflow: visible;
  }
  .resource-track {
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    width: 100%;
    min-width: 0;
    gap: 12px;
    padding: 0 0 0;
  }
  .resource-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ik-stage * { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
