:root {
  --blue: #3664a0;
  --deep-blue: #0f172a;
  --orange: #ff7f27;
  --sky: #cbeaf0;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f7f9fb;
  --violet: #6366f1;
  --cyan: #0ea5e9;
  --steel: #334155;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
a, button, input, select, textarea { touch-action: manipulation; -webkit-tap-highlight-color: rgba(54, 100, 160, .16); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.skip { position: fixed; top: 14px; left: 16px; z-index: 100; padding: 10px 14px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.skip:focus-visible { transform: translateY(0); }

header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(219, 228, 238, .84); background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); }
.admin-bar header { top: 32px; }
.nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; flex: 0 0 auto; align-items: center; width: 98px; }
.logo img { width: 92px; }
.nav-links { display: flex; min-width: 0; align-items: center; gap: clamp(14px, 2vw, 26px); color: var(--blue); font-size: 14px; font-weight: 650; }
.nav-links .menu, .mobile-menu .menu { display: flex; gap: inherit; margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; display: block; padding: 25px 0 21px; }
.nav-links a::after { position: absolute; right: 0; bottom: 15px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.nav-links a:hover::after, .nav-links .current-menu-item a::after, .nav-links .current-menu-ancestor a::after { transform: scaleX(1); }
.nav-action { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; color: var(--blue); font-size: 14px; font-weight: 750; }
.nav-action span { display: inline-grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; transition: color .18s ease, background .18s ease; }
.nav-action:hover span { color: var(--white); background: var(--blue); }
.menu-button { display: none; padding: 8px; border: 0; color: var(--blue); background: transparent; font-size: 25px; line-height: 1; cursor: pointer; }

.mobile-menu { position: fixed; top: 0; right: 0; z-index: 50; display: none; width: min(88vw, 360px); height: 100dvh; padding: 84px 24px calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; background: var(--white); box-shadow: -20px 0 45px -30px rgba(15, 23, 42, .55); }
.mobile-menu.is-open { display: block; }
.mobile-menu-header { position: absolute; top: max(22px, env(safe-area-inset-top)); right: 20px; left: 24px; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-title { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu-close { padding: 6px; border: 0; color: var(--ink); background: transparent; font-size: 24px; line-height: 1; cursor: pointer; }
.mobile-menu .menu { display: block; }
.mobile-menu .menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 16px; font-weight: 650; }
.mobile-menu .menu a:hover, .mobile-menu .current-menu-item a { color: var(--orange); }
.mobile-menu-footer { display: flow-root; margin-top: 28px; padding-top: 28px; }
.mobile-menu .mobile-cta { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 18px; border: 0; border-radius: 999px; color: var(--white); background: var(--orange); text-align: center; }
.menu-scrim { position: fixed; inset: 0; z-index: 40; display: none; background: rgba(15, 23, 42, .32); }
.menu-scrim.is-open { display: block; }

.eyebrow, .section-label, .brand-role { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.emphasis { color: var(--orange); font-weight: inherit; }
h1 { color: var(--ink); font-size: clamp(48px, 7vw, 88px); font-weight: 700; letter-spacing: -.045em; line-height: .98; }
h2 { color: var(--ink); font-size: clamp(34px, 5vw, 60px); font-weight: 700; letter-spacing: -.04em; line-height: 1.03; }
h3 { color: var(--ink); }

section { padding: clamp(76px, 9vw, 112px) 0; }
.soft-section, .solutions { background: var(--soft); }
.section-head { display: grid; grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr); gap: clamp(32px, 7vw, 78px); align-items: start; margin-bottom: 48px; }
.section-head > div { min-width: 0; }
.section-head > .section-label { padding-top: 8px; }
.section-intro { max-width: 620px; margin-top: 19px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.hero { padding: clamp(62px, 8vw, 92px) 0 56px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); align-items: center; gap: clamp(44px, 7vw, 76px); }
.hero h1 { max-width: 690px; margin-top: 22px; }
.hero-copy { max-width: 610px; margin-top: 26px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-copy strong, .hero-note strong { color: var(--ink); font-weight: 750; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-note { margin-top: 30px; color: var(--muted); font-size: 13px; }
.hero-art { position: relative; min-height: 480px; overflow: hidden; background: var(--ink); }
.hero-art::before { position: absolute; inset: 0; content: ""; background: url("gonimbus-hero-banner-bg.webp") center / cover no-repeat; opacity: .9; mix-blend-mode: screen; }
.hero-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(15, 23, 42, .2), rgba(15, 23, 42, .05)); }
.hero-art-content { position: absolute; right: 32px; bottom: 30px; left: 32px; z-index: 1; color: var(--white); }
.hero-art-content p { max-width: 260px; color: rgba(255, 255, 255, .73); font-size: 14px; }
.hero-art-meta { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-top: 19px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, .28); }
.hero-art-meta strong { display: block; font-size: 32px; line-height: 1; }
.hero-art-meta small { display: block; margin-top: 6px; color: rgba(255, 255, 255, .65); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 19px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 750; transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--orange); }
.button.primary:hover { background: #d96116; }
.button.secondary { border-color: var(--blue); color: var(--blue); background: var(--white); }
.button.secondary:hover { color: var(--white); background: var(--blue); }

.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 118px; padding: 27px 24px 24px 0; border-right: 1px solid var(--line); }
.trust-item:not(:first-child) { padding-left: 24px; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { color: var(--blue); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.trust-item span { display: block; max-width: 180px; margin-top: 7px; color: var(--muted); font-size: 14px; }

.solution-list, .category-list { border-top: 1px solid var(--line); }
.solution-row, .category-row { display: grid; grid-template-columns: 70px minmax(220px, .8fr) minmax(240px, 1fr); gap: 28px; align-items: center; padding: 27px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.solution-index, .category-index { color: var(--blue); font-size: 13px; font-weight: 800; }
.solution-row h3, .category-row h3 { color: var(--ink); font-size: clamp(21px, 2.4vw, 32px); letter-spacing: -.02em; line-height: 1.08; }
.solution-row p, .category-row p { color: var(--muted); font-size: 15px; }
.story-link { color: var(--blue); font-size: 14px; font-weight: 750; }
.story-link:hover { color: var(--orange); }
.solution-row.has-image, .category-row.has-image { grid-template-columns: 70px minmax(190px, .8fr) minmax(220px, 1fr) 112px; }
.solution-visual { width: 112px; aspect-ratio: 1 / 1; overflow: hidden; background: var(--line); }
.solution-visual img { width: 100%; height: 100%; object-fit: cover; }
.solution-row:nth-child(1) .solution-index, .category-row:nth-child(1) .category-index { color: var(--violet); }
.solution-row:nth-child(2) .solution-index, .category-row:nth-child(2) .category-index { color: var(--cyan); }
.solution-row:nth-child(3) .solution-index, .category-row:nth-child(3) .category-index { color: var(--steel); }
.solution-row:nth-child(n + 4) .solution-index, .category-row:nth-child(n + 4) .category-index { color: var(--muted); }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principle { min-height: 235px; padding: 24px 28px 20px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 28px; }
.principle:last-child { border-right: 0; }
.principle-number { color: var(--orange); font-size: 14px; font-weight: 800; }
.principle h3 { margin-top: 42px; font-size: 24px; letter-spacing: -.02em; }
.principle p { margin-top: 12px; color: var(--muted); font-size: 15px; }

.audiences, .brands, .story-preview { padding-top: 0; }
.audience-grid, .partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.audience { display: flex; min-height: 275px; flex-direction: column; align-items: flex-start; padding: 31px; border: 1px solid var(--line); background: var(--white); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.audience:first-child { background: rgba(203, 234, 240, .38); }
.audience:hover, .panel:hover { border-color: var(--blue); box-shadow: 0 22px 45px -34px rgba(15, 23, 42, .55); transform: translateY(-3px); }
.audience-kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.audience h3 { max-width: 380px; margin-top: 24px; font-size: clamp(25px, 3vw, 39px); letter-spacing: -.03em; line-height: 1.05; }
.audience p { max-width: 420px; margin-top: 15px; color: var(--muted); font-size: 15px; }
.audience a { display: inline-flex; margin-top: auto; padding-top: 28px; color: var(--blue); font-size: 14px; font-weight: 750; }
.audience a:hover { color: var(--orange); }

.brand-line { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand { display: grid; min-height: 130px; place-items: center; padding: 20px; border-right: 1px solid var(--line); color: var(--deep-blue); font-size: 24px; font-weight: 800; letter-spacing: -.04em; }
.brand:last-child { border-right: 0; }
.brand-name { display: block; }
.brand-logo { display: grid; width: 132px; height: 58px; place-items: center; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand.has-logo .brand-name { margin-top: 10px; font-size: 20px; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.brand:nth-child(1) small { color: var(--violet); }
.brand:nth-child(2) small { color: var(--cyan); }
.brand:nth-child(3) small { color: var(--steel); }
.section-link { margin-top: 22px; text-align: right; }

.story-preview .story-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 350px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-preview .story-visual { position: relative; min-height: 350px; overflow: hidden; background: var(--ink); }
.story-preview .story-visual::before, .story-grid .story-visual::before { position: absolute; inset: 0; content: ""; background: url("gonimbus-hero-banner-bg.webp") center / cover no-repeat; opacity: .76; mix-blend-mode: screen; }
.story-visual-label, .story-tag { position: absolute; right: 24px; bottom: 23px; left: 24px; z-index: 1; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 42px; background: var(--soft); }
.story-copy h3 { max-width: 430px; margin-top: 17px; font-size: clamp(28px, 4vw, 47px); letter-spacing: -.035em; line-height: 1.03; }
.story-copy p { max-width: 430px; margin-top: 16px; color: var(--muted); font-size: 15px; }
.story-copy a { margin-top: 25px; color: var(--blue); font-size: 14px; font-weight: 750; }
.story-copy a:hover { color: var(--orange); }
.story-visual { display: block; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.story-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.story-post-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.story-post-card:hover { border-color: var(--blue); box-shadow: 0 23px 45px -34px rgba(15, 23, 42, .65); transform: translateY(-3px); }
.story-post-media { position: relative; display: block; aspect-ratio: 1.44 / 1; overflow: hidden; background: var(--ink); }
.story-post-media::before { position: absolute; inset: 0; content: ""; background: url("gonimbus-hero-banner-bg.webp") center / cover no-repeat; opacity: .7; mix-blend-mode: screen; }
.story-post-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.story-post-media span { position: absolute; right: 20px; bottom: 18px; left: 20px; z-index: 2; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.story-post-card-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; align-items: flex-start; padding: 26px 25px 28px; }
.story-post-card-copy h3 { margin-top: 13px; font-size: 28px; letter-spacing: -.03em; line-height: 1.08; }
.story-post-card-copy h3 a:hover, .story-back-link:hover { color: var(--orange); }
.story-post-card-copy > p:not(.eyebrow) { margin-top: 14px; color: var(--muted); font-size: 15px; }
.story-post-card-copy .story-link { margin-top: auto; padding-top: 25px; }
.story-empty { max-width: 630px; padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-empty h3 { margin-top: 15px; font-size: 32px; letter-spacing: -.03em; }
.story-empty p:last-child { margin-top: 12px; color: var(--muted); }
.navigation.pagination { display: flex; gap: 16px; margin-top: 38px; color: var(--blue); font-size: 14px; font-weight: 750; }
.navigation.pagination a:hover { color: var(--orange); }

.story-post-hero { padding: clamp(72px, 9vw, 104px) 0 56px; background: var(--white); }
.story-post-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(38px, 6vw, 70px); align-items: end; }
.story-post-hero-grid--simple > div:first-child { max-width: 970px; grid-column: 1 / -1; }
.story-post-hero h1 { max-width: 970px; margin-top: 20px; font-size: clamp(45px, 6vw, 77px); }
.story-post-summary { max-width: 790px; margin-top: 30px; color: var(--muted); font-size: clamp(20px, 2vw, 28px); line-height: 1.45; }
.story-post-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-post-details div { min-width: 0; padding: 17px 13px 17px 0; border-right: 1px solid var(--line); }
.story-post-details div:nth-child(2n) { padding-left: 13px; border-right: 0; }
.story-post-details strong { display: block; color: var(--blue); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.story-post-details span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.story-post-feature { min-height: min(52vw, 590px); margin: 0; overflow: hidden; background: var(--ink); }
.story-post-feature img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.story-post-fallback { min-height: min(52vw, 590px); background: var(--ink) url("gonimbus-hero-banner-bg.webp") center / cover no-repeat; }
.story-post-content > .wrap { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(38px, 7vw, 75px); padding-top: clamp(48px, 5vw, 72px); padding-bottom: clamp(78px, 10vw, 132px); }
.story-post-aside { position: sticky; top: 104px; align-self: start; }
.story-post-aside .stack { margin-top: 0; }
.story-back-link { display: inline-flex; margin-top: 16px; color: var(--blue); font-size: 14px; font-weight: 750; }
.story-prose { max-width: 760px; min-width: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.story-prose > * + * { margin-top: 1.4em; }
.story-prose h2, .story-prose h3 { color: var(--ink); }
.story-prose h2 { margin-top: 2.1em; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; line-height: 1.08; }
.story-prose > h2:first-child, .story-prose > h3:first-child { margin-top: 0; }
.story-prose h3 { font-size: 26px; letter-spacing: -.025em; line-height: 1.15; }
.story-prose a { color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.story-prose img { max-width: 100%; height: auto; }
.story-prose blockquote { margin-right: 0; margin-left: 0; padding: 24px 0 24px 25px; border-left: 3px solid var(--orange); color: var(--ink); font-size: 25px; font-weight: 650; letter-spacing: -.02em; line-height: 1.25; }

.cta { padding: 70px 0; color: var(--white); background: var(--deep-blue); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { color: var(--white); font-size: clamp(35px, 5vw, 60px); }
.cta p { max-width: 430px; margin-top: 13px; color: rgba(255, 255, 255, .7); }
.cta .button.secondary { border-color: rgba(255, 255, 255, .7); color: var(--white); background: transparent; }
.cta .button.secondary:hover { color: var(--deep-blue); background: var(--white); }

.page-header { padding: clamp(68px, 9vw, 92px) 0 clamp(52px, 7vw, 77px); border-bottom: 1px solid var(--line); background: var(--white); }
.page-header h1 { max-width: 760px; margin-top: 20px; }
.page-lede { max-width: 650px; margin-top: 25px; color: var(--muted); font-size: 19px; line-height: 1.6; }

.editorial-section { padding: clamp(72px, 8vw, 104px) 0; }
.editorial-content { max-width: 920px; }
.editorial-content > * + * { margin-top: 26px; }
.editorial-content h2 { margin-top: 1.35em; color: var(--ink); font-size: clamp(34px, 4vw, 53px); }
.editorial-content h3 { margin-top: 1.1em; font-size: 25px; letter-spacing: -.025em; }
.editorial-content p, .editorial-content li { max-width: 740px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.editorial-content a { color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.editorial-content .wp-block-columns { gap: 18px; margin-top: 42px; }
.editorial-content .wp-block-column { min-width: 0; padding: 26px; border: 1px solid var(--line); background: var(--soft); }
.editorial-content .wp-block-column h3 { margin-top: 0; }
.editorial-content .wp-block-column p { margin-top: 12px; font-size: 15px; }

.brand-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-page-card { min-height: 245px; padding: 27px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-page-card h3 { margin-top: 46px; font-size: 31px; letter-spacing: -.03em; }
.brand-page-card .brand-logo { margin-top: 28px; margin-bottom: 14px; }
.brand-page-card.has-logo h3 { margin-top: 0; }
.brand-page-card p:not(.brand-role) { max-width: 430px; margin-top: 11px; color: var(--muted); font-size: 15px; }
.brand-page-card:nth-child(1) .brand-role { color: var(--violet); }
.brand-page-card:nth-child(2) .brand-role { color: var(--cyan); }
.brand-page-card:nth-child(3) .brand-role { color: var(--steel); }
.brand-page-card:nth-child(4) .brand-role { color: var(--muted); }

.panel { min-height: 250px; padding: 30px; border: 1px solid var(--line); background: var(--white); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.panel--soft { border-color: rgba(203, 234, 240, .9); background: rgba(203, 234, 240, .38); }
.panel h3 { font-size: 27px; letter-spacing: -.03em; line-height: 1.08; }
.panel p:not(.section-label) { margin-top: 13px; color: var(--muted); font-size: 15px; }
.panel .story-link { display: inline-flex; margin-top: 26px; }

.company-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 74px); align-items: start; }
.company-story h2, .contact-details h2 { font-size: clamp(34px, 4.8vw, 57px); }
.company-story p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.company-story p + p { margin-top: 18px; }
.info-list { display: grid; margin-top: 34px; border-top: 1px solid var(--line); }
.info-list div { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list strong, .contact-line strong { color: var(--blue); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.info-list span { color: var(--muted); font-size: 14px; text-align: right; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 74px); align-items: start; }
.contact-details { padding-right: 22px; }
.contact-details > p:not(.section-label) { max-width: 380px; margin-top: 18px; color: var(--muted); font-size: 16px; }
.contact-line { margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink); font-size: 15px; }
.contact-line strong { display: block; margin-bottom: 4px; }
.hubspot-form-shell { padding: 30px; border: 1px solid var(--line); background: var(--soft); }
.hubspot-form-shell .hs-form-field { margin-bottom: 16px; }
.hubspot-form-shell label { display: block; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hubspot-form-shell input, .hubspot-form-shell select, .hubspot-form-shell textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); }
.hubspot-form-shell textarea { min-height: 125px; resize: vertical; }
.hubspot-form-shell .hs-button { min-height: 46px; padding: 0 19px; border: 0; border-radius: 999px; color: var(--white); background: var(--orange); font-size: 14px; font-weight: 750; cursor: pointer; }
.hubspot-form-shell .hs-error-msgs { margin: 7px 0 0; padding: 0; color: #b42318; font-size: 13px; list-style: none; }
.hubspot-placeholder p:not(.section-label) { max-width: 380px; margin: 14px 0 22px; color: var(--muted); }

.story-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 18px; }
.story-grid .story-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.story-grid .story-card:hover { border-color: var(--blue); box-shadow: 0 23px 45px -34px rgba(15, 23, 42, .65); transform: translateY(-3px); }
.story-grid .story-visual { position: relative; min-height: 290px; overflow: hidden; background: var(--ink); }
.story-grid .story-visual--small { min-height: 165px; }
.story-grid .story-body { padding: 27px 28px 30px; }
.story-grid .story-body h3 { max-width: 580px; margin-top: 13px; font-size: clamp(25px, 3vw, 40px); letter-spacing: -.035em; line-height: 1.06; }
.story-grid .story-body p:not(.eyebrow) { max-width: 570px; margin-top: 14px; color: var(--muted); font-size: 15px; }
.story-grid .story-link { display: inline-flex; margin-top: 22px; }
.story-grid .story-card--small { display: grid; grid-template-rows: auto 1fr; }
.story-grid .story-card--small .story-body h3 { font-size: 24px; }

.case-hero { padding: 92px 0 55px; }
.case-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; }
.case-meta { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-meta div { padding: 17px 13px 17px 0; border-right: 1px solid var(--line); }
.case-meta div:nth-child(2n) { padding-left: 13px; border-right: 0; }
.case-meta strong { display: block; color: var(--blue); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.case-meta span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.case-banner { min-height: 410px; background: var(--ink) url("gonimbus-hero-banner-bg.webp") center / cover no-repeat; }
.case-content { display: grid; grid-template-columns: .68fr 1.32fr; gap: 75px; }
.case-aside { position: sticky; top: 100px; align-self: start; }
.case-body h2 { margin-bottom: 17px; color: var(--blue); font-size: 38px; }
.case-body p { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.case-body p + h2 { margin-top: 55px; }
.case-quote { margin: 52px 0; padding: 26px 0 26px 24px; border-left: 3px solid var(--orange); color: var(--ink); font-size: 25px; font-weight: 650; letter-spacing: -.02em; line-height: 1.2; }
.stack { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.stack span { padding: 8px 11px; border: 1px solid var(--line); color: var(--blue); font-size: 13px; font-weight: 700; }

footer { padding: 58px 0 24px; border-top: 1px solid var(--line); color: var(--ink); background: var(--soft); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 42px; }
.footer-brand { max-width: 310px; }
.footer-brand img { width: 108px; }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 14px 25px; color: var(--ink); font-size: 14px; font-weight: 650; }
.footer-links .menu { display: flex; flex-wrap: wrap; justify-content: inherit; gap: inherit; margin: 0; padding: 0; list-style: none; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

@media (max-width: 1024px) {
  .wrap { width: min(var(--max), calc(100% - 44px)); }
  .nav-links, .nav-action { display: none; }
  .menu-button { display: block; }
  .hero-grid, .section-head, .company-story, .contact-grid, .case-hero-grid, .case-content { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-art { min-height: 360px; }
  .section-head { gap: 16px; margin-bottom: 38px; }
  .section-head > .section-label { padding-top: 0; }
  .trust-grid, .principles-grid, .brand-line { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2), .principle:nth-child(2), .brand:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2), .brand:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .principle:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--line); border-right: 0; }
  .story-preview .story-card { grid-template-columns: 1fr; }
  .story-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-post-hero-grid, .story-post-content > .wrap { grid-template-columns: 1fr; }
  .story-post-aside { position: static; }
  .solution-row, .category-row { grid-template-columns: 42px minmax(0, 1fr); gap: 13px 18px; padding: 24px 0; }
  .solution-row p, .category-row p { grid-column: 2; justify-self: start; }
  .solution-row.has-image, .category-row.has-image { grid-template-columns: 42px minmax(0, 1fr); }
  .solution-visual { grid-column: 2; width: 100%; max-width: none; aspect-ratio: 16 / 8; }
  .solution-row h3, .category-row h3 { font-size: 25px; }
  .story-preview .story-visual { min-height: 280px; }
  .brand-page-grid, .story-grid { grid-template-columns: 1fr; }
  .editorial-content .wp-block-columns { gap: 14px; }
  .case-aside { position: static; }
  .cta-inner, .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: start; }
}

@media (max-width: 640px) {
  .admin-bar header { top: 46px; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .nav { min-height: 64px; }
  .logo img { width: 84px; }
  h1 { font-size: clamp(43px, 13vw, 58px); }
  h2 { font-size: clamp(32px, 10vw, 46px); }
  section { padding: 72px 0; }
  .page-header { padding: 58px 0 50px; }
  .page-lede, .hero-copy { font-size: 17px; }
  .hero { padding-top: 54px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 285px; }
  .hero-art-content { right: 22px; bottom: 22px; left: 22px; }
  .trust-grid, .principles-grid, .audience-grid, .partner-grid { grid-template-columns: 1fr; }
  .brand-line { grid-template-columns: 1fr; }
  .story-post-grid { grid-template-columns: 1fr; }
  .story-post-hero { padding-top: 58px; }
  .story-post-details div, .story-post-details div:nth-child(2n) { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-post-details div:last-child { border-bottom: 0; }
  .story-post-feature, .story-post-fallback { min-height: 270px; }
  .story-post-content > .wrap { gap: 23px; padding-top: 58px; padding-bottom: 78px; }
  .story-prose { font-size: 17px; }
  .trust-item, .trust-item:not(:first-child), .principle, .principle + .principle { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child, .principle:last-child { border-bottom: 0; }
  .brand, .brand:nth-child(2) { min-height: 210px; padding: 26px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand:nth-child(n) { border-bottom: 1px solid var(--line); }
  .brand:last-child { border-bottom: 0; }
  .brand.has-logo { display: flex; align-items: center; justify-content: center; }
  .brand.has-logo > div { display: flex; width: 100%; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .brand.has-logo .brand-logo { flex: 0 0 58px; }
  .brand.has-logo .brand-name { margin-top: 12px; font-size: 20px; line-height: 1.15; }
  .brand.has-logo small { min-height: 0; margin-top: 8px; line-height: 1.35; }
  .principle:nth-child(3) { grid-column: auto; padding-left: 0; border-top: 0; }
  .principle h3 { margin-top: 24px; }
  .audience, .panel, .hubspot-form-shell, .brand-page-card { padding: 24px; }
  .story-preview .story-visual { min-height: 230px; }
  .story-copy { padding: 29px 24px 34px; }
  .story-grid .story-body { padding: 23px 21px 25px; }
  .story-grid .story-visual { min-height: 230px; }
  .story-grid .story-visual--small { min-height: 170px; }
  .company-story, .contact-grid { gap: 32px; }
  .section-link { text-align: left; }
  .editorial-content .wp-block-columns { margin-top: 28px; }
  .contact-details { padding-right: 0; }
  .info-list div { align-items: start; flex-direction: column; gap: 4px; }
  .info-list span { text-align: left; }
  .cta { padding: 58px 0; }
  .cta .button { width: 100%; }
  .mobile-menu { width: 100%; padding-right: 24px; padding-left: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
