:root {
	--gf-background: #f7f8fa;
	--gf-foreground: #11151d;
	--gf-muted: #eef0f4;
	--gf-muted-foreground: #5c6472;
	--gf-card: #ffffff;
	--gf-border: #dde2ea;
	--gf-primary: #3b6cff;
	--gf-primary-600: #2a55e0;
	--gf-accent: #22c7dc;
	--gf-emerald: #16c181;
	--gf-navy-900: #05070d;
	--gf-navy-800: #0a0f1f;
	--gf-navy-700: #101936;
	--gf-radius: 8px;
	--gf-radius-xl: 20px;
	--gf-radius-2xl: 28px;
	--gf-shadow-e2: 0 1px 2px rgba(8, 12, 28, .06), 0 1px 3px rgba(8, 12, 28, .08);
	--gf-shadow-e3: 0 8px 24px rgba(8, 12, 28, .10);
	--gf-shadow-e4: 0 24px 60px -20px rgba(8, 12, 28, .30);
	--gf-font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--gf-font-display: "Inter Tight", Inter, system-ui, sans-serif;
	--gf-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.dark {
	--gf-background: #05070d;
	--gf-foreground: #f2f4f8;
	--gf-muted: #101936;
	--gf-muted-foreground: #b5bdca;
	--gf-card: #101936;
	--gf-border: #23304f;
	--gf-primary: #6f91ff;
	--gf-primary-600: #9cb4ff;
	--gf-accent: #62ddea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { margin: 0; background: var(--gf-background); color: var(--gf-foreground); font-family: var(--gf-font-sans); line-height: 1.65; }
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gf-foreground); }
img, svg { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--gf-font-display); margin: 0; line-height: 1.08; letter-spacing: 0; }
p { margin: 0; }
::selection { background: color-mix(in srgb, var(--gf-primary) 20%, transparent); }

.gf-container { width: min(100% - 40px, 1280px); margin-inline: auto; }
.gf-narrow { max-width: 780px; }
.gf-wide-copy { max-width: 900px; }
.gf-section { padding: 96px 0; position: relative; }
.gf-muted { background: color-mix(in srgb, var(--gf-muted) 45%, transparent); }
.gf-main { min-height: 60vh; }
.gf-skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; background: var(--gf-foreground); color: var(--gf-background); padding: 8px 12px; border-radius: var(--gf-radius); }
.gf-skip-link:focus { top: 16px; }

.gf-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: background-color .3s, border-color .3s, backdrop-filter .3s; }
.gf-header.is-scrolled, .gf-header.is-open { background: color-mix(in srgb, var(--gf-background) 86%, transparent); border-color: color-mix(in srgb, var(--gf-border) 80%, transparent); backdrop-filter: blur(12px); }
.gf-header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gf-header-left, .gf-header-actions, .gf-menu { display: flex; align-items: center; gap: 8px; }
.gf-logo { display: inline-flex; align-items: center; min-width: 150px; }
.gf-logo-inline { gap: 10px; color: var(--gf-foreground); transition: opacity .15s; }
.gf-logo-inline:hover { opacity: .9; }
.gf-logo-inline > span { font: 600 18px/1 var(--gf-font-display); }
.gf-logo-inline > span > span { margin-left: 3px; }
.gf-logo img, .custom-logo { display: block; width: 180px; max-height: 44px; object-fit: contain; }
.gf-menu { list-style: none; padding: 0; margin: 0; }
.gf-menu a { display: inline-flex; border-radius: 8px; padding: 8px 12px; color: var(--gf-muted-foreground); font-size: 14px; transition: background .15s, color .15s; }
.gf-menu a:hover, .gf-menu .current-menu-item > a, .gf-menu a[aria-current="page"] { color: var(--gf-foreground); background: color-mix(in srgb, var(--gf-foreground) 5%, transparent); }
.gf-mobile-nav { display: none; border-top: 1px solid var(--gf-border); background: var(--gf-background); }
.gf-mobile-ctas { display: flex; gap: 8px; padding: 8px 0 16px; }
.gf-menu-toggle { display: none; width: 36px; height: 36px; border: 0; background: transparent; color: var(--gf-foreground); border-radius: 8px; position: relative; }
.gf-menu-toggle span { position: absolute; left: 9px; width: 18px; height: 2px; background: currentColor; transition: transform .2s; }
.gf-menu-toggle span:first-child { top: 13px; }
.gf-menu-toggle span:last-child { top: 21px; }
.is-open .gf-menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.is-open .gf-menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.gf-theme-toggle { width: 36px; height: 36px; border: 0; border-radius: 8px; display: inline-grid; place-items: center; background: transparent; color: var(--gf-foreground); cursor: pointer; }
.gf-theme-toggle:hover { background: color-mix(in srgb, var(--gf-foreground) 5%, transparent); }
.gf-moon { display: none; }
.dark .gf-sun { display: none; }
.dark .gf-moon { display: inline; }

.gf-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 38px; padding: 9px 16px; border-radius: 8px; border: 1px solid transparent; font-size: 14px; font-weight: 500; line-height: 1; transition: transform .2s cubic-bezier(.22, 1, .36, 1), background .2s, border-color .2s, color .2s; cursor: pointer; }
.gf-button:hover { transform: translateY(-1px); }
.gf-button-primary { background: var(--gf-primary); color: #fff; box-shadow: 0 0 0 1px rgba(59, 108, 255, .2), 0 12px 40px -10px rgba(59, 108, 255, .35); }
.dark .gf-button-primary { color: #05070d; }
.gf-button-primary:hover { background: var(--gf-primary-600); color: #fff; }
.gf-button-outline { background: var(--gf-background); border-color: var(--gf-border); color: var(--gf-foreground); }
.gf-button-outline:hover { background: color-mix(in srgb, var(--gf-foreground) 4%, transparent); }
.gf-button-ghost { background: transparent; color: var(--gf-foreground); }
.gf-button-ghost:hover { background: color-mix(in srgb, var(--gf-foreground) 5%, transparent); }
.gf-button-dark-outline { border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .05); color: #fff; }
.gf-button-dark-outline:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.gf-badge { display: inline-flex; align-items: center; gap: 8px; width: fit-content; border: 1px solid color-mix(in srgb, var(--gf-primary) 30%, transparent); background: color-mix(in srgb, var(--gf-primary) 10%, transparent); color: color-mix(in srgb, var(--gf-primary) 80%, var(--gf-foreground)); border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 500; }
.gf-badge span { width: 6px; height: 6px; border-radius: 999px; background: var(--gf-emerald); }
.gf-badge-muted { color: var(--gf-muted-foreground); background: var(--gf-muted); border-color: var(--gf-border); }
.gf-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; text-transform: uppercase; color: var(--gf-muted-foreground); letter-spacing: .14em; }
.gf-eyebrow:before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: .4; }
.gf-text-gradient { background: linear-gradient(135deg, #3b6cff 0%, #22c7dc 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gf-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.gf-hero { position: relative; overflow: hidden; padding: 96px 0 128px; }
.gf-grid-bg, .gf-radial { position: absolute; inset: 0; pointer-events: none; }
.gf-grid-bg { background-image: linear-gradient(to right, rgba(17, 21, 29, .05) 1px, transparent 1px), linear-gradient(to bottom, rgba(17, 21, 29, .05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); }
.dark .gf-grid-bg { background-image: linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px); }
.gf-radial { background: radial-gradient(60% 60% at 50% 0%, rgba(59, 108, 255, .18) 0%, transparent 70%), radial-gradient(40% 40% at 80% 30%, rgba(34, 199, 220, .12) 0%, transparent 70%); }
.gf-hero .gf-container { position: relative; }
.gf-hero-copy { max-width: 780px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.gf-hero h1 { margin-top: 24px; font-size: clamp(2.5rem, 5vw + .5rem, 4.75rem); font-weight: 600; line-height: 1.04; }
.gf-hero-copy > p { margin-top: 24px; max-width: 680px; color: var(--gf-muted-foreground); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
.gf-hero .gf-actions { margin-top: 36px; justify-content: center; }
.gf-hero-signals { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-top: 40px; color: var(--gf-muted-foreground); font-size: 12px; }
.gf-hero-signals span, .gf-card-kicker, .gf-cta-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.gf-hero-signals i, .gf-system-rail i, .gf-cta-eyebrow i { width: 6px; height: 6px; border-radius: 999px; background: var(--gf-primary); }
.gf-hero-signals .is-green, .gf-system-rail .is-green, .gf-cta-eyebrow i { background: var(--gf-emerald); }
.gf-hero-signals .is-cyan, .gf-system-rail .is-cyan { background: var(--gf-accent); }

.gf-system-window, .gf-product-canvas { position: relative; margin: 64px auto 0; max-width: 1024px; border: 1px solid var(--gf-border); border-radius: var(--gf-radius-2xl); background: color-mix(in srgb, var(--gf-card) 70%, transparent); box-shadow: var(--gf-shadow-e4); overflow: hidden; }
.gf-browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 16px; border-bottom: 1px solid color-mix(in srgb, var(--gf-border) 80%, transparent); }
.gf-browser-bar span { width: 10px; height: 10px; border-radius: 999px; background: color-mix(in srgb, var(--gf-foreground) 10%, transparent); }
.gf-browser-bar code { margin-left: 12px; font-family: var(--gf-font-mono); font-size: 11px; color: var(--gf-muted-foreground); }
.gf-system-grid { display: grid; grid-template-columns: 3fr 9fr; gap: 1px; background: color-mix(in srgb, var(--gf-border) 60%, transparent); }
.gf-system-rail { background: var(--gf-card); padding: 20px; display: grid; gap: 12px; }
.gf-system-rail div { display: flex; justify-content: space-between; align-items: center; border: 1px solid color-mix(in srgb, var(--gf-border) 70%, transparent); border-radius: 8px; background: var(--gf-background); padding: 8px 12px; font-size: 12px; color: color-mix(in srgb, var(--gf-foreground) 80%, transparent); }
.gf-system-canvas { min-height: 280px; background: var(--gf-card); position: relative; overflow: hidden; }
.gf-system-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; color: color-mix(in srgb, var(--gf-foreground) 6%, transparent); }
.gf-system-canvas circle { fill: var(--gf-card); stroke: #3b6cff; stroke-width: 2; }
.gf-system-canvas .gf-core { fill: #3b6cff; stroke: none; }
.gf-metric-chips { position: absolute; top: 20px; right: 20px; display: grid; gap: 8px; }
.gf-metric-chips span { display: grid; min-width: 132px; padding: 10px 12px; border: 1px solid var(--gf-border); border-radius: 10px; background: color-mix(in srgb, var(--gf-card) 88%, transparent); box-shadow: var(--gf-shadow-e2); color: var(--gf-muted-foreground); font-size: 11px; }
.gf-metric-chips b { color: var(--gf-foreground); font: 500 16px/1.2 var(--gf-font-mono); }

.gf-stack-strip { padding: 56px 0; text-align: center; }
.gf-stack-strip .gf-container { display: grid; justify-items: center; gap: 24px; }
.gf-chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
.gf-chip-row.is-left { justify-content: flex-start; }
.gf-chip-row span { border: 1px solid var(--gf-border); background: var(--gf-background); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: color-mix(in srgb, var(--gf-foreground) 80%, transparent); }

.gf-section-header { max-width: 760px; }
.gf-section-header.is-center { margin-inline: auto; text-align: center; }
.gf-section-header h2 { margin-top: 16px; font-size: clamp(2rem, 3vw + 1rem, 3rem); font-weight: 600; }
.gf-section-header p { margin-top: 16px; max-width: 640px; color: var(--gf-muted-foreground); }
.gf-section-header.is-center p { margin-inline: auto; }
.gf-card-grid { display: grid; gap: 20px; margin-top: 56px; }
.gf-card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gf-card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gf-card, .gf-post-card { border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-card); color: var(--gf-foreground); box-shadow: var(--gf-shadow-e2); padding: 28px; }
.gf-link-card, .gf-service-card, .gf-product-card { transition: border-color .3s, box-shadow .3s, transform .3s; }
.gf-link-card:hover, .gf-service-card:hover, .gf-product-card:hover { border-color: color-mix(in srgb, var(--gf-primary) 40%, var(--gf-border)); box-shadow: var(--gf-shadow-e3); transform: translateY(-2px); }
.gf-card-top { display: flex; align-items: flex-start; justify-content: space-between; color: var(--gf-muted-foreground); }
.gf-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: color-mix(in srgb, var(--gf-primary) 10%, transparent); color: var(--gf-primary); font-weight: 700; }
.gf-card h3, .gf-service-card h3, .gf-product-card h3 { margin-top: 24px; font-size: 1.25rem; font-weight: 600; }
.gf-card p, .gf-service-card p, .gf-product-card p { margin-top: 12px; color: var(--gf-muted-foreground); font-size: 14px; line-height: 1.7; }
.gf-card-kicker { margin-top: 24px; color: var(--gf-muted-foreground); text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.gf-card-kicker span { width: 24px; height: 1px; background: currentColor; opacity: .5; }
.gf-service-head { display: flex; align-items: flex-start; gap: 16px; }
.gf-service-head h3 { margin-top: 0; }
.gf-mini-grid { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gf-mini-grid li, .gf-capability-grid li { display: flex; align-items: center; gap: 10px; border: 1px solid color-mix(in srgb, var(--gf-border) 70%, transparent); border-radius: 8px; background: var(--gf-background); padding: 9px 12px; font-size: 13px; color: color-mix(in srgb, var(--gf-foreground) 82%, transparent); }
.gf-mini-grid span, .gf-capability-grid span { flex: none; width: 6px; height: 6px; border-radius: 999px; background: var(--gf-primary); }
.gf-text-link { display: inline-flex; gap: 6px; margin-top: 24px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--gf-border) 60%, transparent); width: 100%; color: var(--gf-primary); font-size: 12px; font-weight: 500; }

.gf-metrics-grid, .gf-principles-grid { display: grid; margin-top: 48px; gap: 1px; overflow: hidden; border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-border); }
.gf-metrics-grid { grid-template-columns: repeat(4, 1fr); }
.gf-metrics-grid div, .gf-principles-grid article { background: var(--gf-card); padding: 32px; }
.gf-metrics-grid strong { display: block; font: 600 clamp(2rem, 3vw, 2.5rem)/1.05 var(--gf-font-display); }
.gf-metrics-grid span, .gf-principles-grid article > span { color: var(--gf-muted-foreground); text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.gf-principles-grid { grid-template-columns: repeat(2, 1fr); }
.gf-principles-grid h3 { margin-top: 12px; font-size: 1.25rem; }
.gf-principles-grid p { margin-top: 8px; color: var(--gf-muted-foreground); font-size: 14px; max-width: 480px; }
.gf-principles-grid article > span { color: var(--gf-primary); font-family: var(--gf-font-mono); }

.gf-product-card { display: block; overflow: hidden; border: 1px solid var(--gf-border); border-radius: 28px; background: var(--gf-card); }
.gf-product-art { height: 224px; overflow: hidden; border-bottom: 1px solid var(--gf-border); background: var(--gf-navy-800); }
.gf-product-art .gf-product-canvas { margin: 0; border: 0; border-radius: 0; box-shadow: none; max-width: none; transform: scale(1.02); }
.gf-product-body { padding: 28px; }
.gf-product-body h3 { margin-top: 12px; font-size: 1.5rem; }
.gf-product-tagline, .gf-blue-text { color: var(--gf-primary) !important; }
.gf-product-canvas { background: var(--gf-navy-900); color: white; }
.gf-product-canvas:before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59, 108, 255, .2), rgba(34, 199, 220, .16)); pointer-events: none; }
.gf-canvas-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 1px; background: rgba(255, 255, 255, .05); position: relative; }
.gf-canvas-rail, .gf-canvas-main { background: var(--gf-navy-900); }
.gf-canvas-rail { padding: 16px; display: grid; gap: 8px; align-content: start; }
.gf-canvas-rail div { border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .03); border-radius: 8px; padding: 8px 12px; color: rgba(255, 255, 255, .8); font-size: 12px; }
.gf-canvas-main { position: relative; min-height: 260px; }
.gf-canvas-main svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.gf-cta { position: relative; overflow: hidden; border: 1px solid var(--gf-border); border-radius: 28px; background: var(--gf-navy-900); color: #fff; }
.gf-cta-bg { position: absolute; inset: 0; opacity: .75; background: radial-gradient(60% 60% at 20% 0%, rgba(59, 108, 255, .35) 0%, transparent 60%), radial-gradient(40% 60% at 90% 100%, rgba(34, 199, 220, .30) 0%, transparent 60%); }
.gf-cta-content { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 32px; padding: clamp(40px, 5vw, 64px); }
.gf-cta-eyebrow { color: rgba(255, 255, 255, .7); text-transform: uppercase; font-size: 11px; letter-spacing: .18em; }
.gf-cta h2 { margin-top: 20px; max-width: 820px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.gf-cta p { margin-top: 20px; max-width: 600px; color: rgba(255, 255, 255, .72); }
.gf-cta-actions { align-self: end; display: grid; gap: 12px; }

.gf-page-hero { padding-top: 112px; }
.gf-page-hero h1 { font-size: clamp(2.5rem, 4vw + 1rem, 4rem); font-weight: 600; }
.gf-page-hero p, .gf-wide-copy > p { margin-top: 24px; max-width: 720px; color: var(--gf-muted-foreground); font-size: 1.1rem; }
.gf-page-hero .gf-actions { margin-top: 36px; }
.gf-split-copy, .gf-solution-layout, .gf-contact-layout, .gf-product-detail { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.gf-split-copy h2, .gf-solution-layout h2, .gf-product-detail h2 { margin-top: 16px; font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 600; }
.gf-split-copy p, .gf-solution-layout p, .gf-product-detail p { margin-top: 16px; color: var(--gf-muted-foreground); }
.gf-capability-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gf-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 16px; overflow: hidden; border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-border); }
.gf-outcomes div { background: var(--gf-card); padding: 16px; }
.gf-outcomes span { display: block; color: var(--gf-muted-foreground); text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }
.gf-outcomes strong { display: block; margin-top: 4px; font: 500 18px/1.2 var(--gf-font-mono); }
.gf-product-detail { grid-template-columns: 5fr 7fr; }
.gf-product-detail.is-reverse { grid-template-columns: 7fr 5fr; }
.gf-product-detail .gf-product-canvas { margin: 0; max-width: none; }
.gf-check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.gf-check-list li { color: color-mix(in srgb, var(--gf-foreground) 86%, transparent); font-size: 14px; }
.gf-check-list li:before { content: "✓"; color: var(--gf-primary); margin-right: 10px; }

.gf-contact-page { padding-top: 112px; }
.gf-contact-layout { grid-template-columns: 5fr 7fr; }
.gf-contact-layout h1 { margin-top: 24px; font-size: clamp(2.5rem, 4vw, 3.5rem); }
.gf-contact-layout > div > p { margin-top: 20px; color: var(--gf-muted-foreground); max-width: 480px; }
.gf-contact-list { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin-top: 40px; font-size: 14px; }
.gf-contact-list dt { color: var(--gf-muted-foreground); text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.gf-contact-list dd { margin: 0 0 14px; }
.gf-contact-form, .gf-form-state { border: 1px solid var(--gf-border); border-radius: 28px; background: var(--gf-card); box-shadow: var(--gf-shadow-e2); padding: clamp(24px, 4vw, 32px); display: grid; gap: 20px; }
.gf-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gf-contact-form label { display: grid; gap: 8px; }
.gf-contact-form label span { color: var(--gf-muted-foreground); text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.gf-contact-form label b { color: var(--gf-primary); }
.gf-contact-form input, .gf-contact-form select, .gf-contact-form textarea, .wpcf7 input, .wpcf7 select, .wpcf7 textarea, .wpforms-form input, .wpforms-form select, .wpforms-form textarea { width: 100%; border: 1px solid var(--gf-border); border-radius: 8px; background: var(--gf-background); color: var(--gf-foreground); padding: 10px 12px; font-size: 14px; }
.gf-contact-form input:focus, .gf-contact-form select:focus, .gf-contact-form textarea:focus { outline: 0; border-color: var(--gf-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gf-primary) 18%, transparent); }
.gf-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gf-form-actions p { color: var(--gf-muted-foreground); font-size: 12px; max-width: 440px; }
.gf-form-error { border: 1px solid #ef4444; background: rgba(239, 68, 68, .08); color: #b91c1c; padding: 12px 14px; border-radius: 8px; }
.gf-check { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: rgba(22, 193, 129, .12); color: var(--gf-emerald); }
.gf-form-state h2 { font-size: 1.5rem; }
.gf-form-state p { color: var(--gf-muted-foreground); max-width: 520px; }

.gf-prose { max-width: 780px; }
.gf-prose > * + * { margin-top: 20px; }
.gf-prose h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.gf-prose h2 { margin-top: 40px; font-size: 1.5rem; }
.gf-prose h3 { font-size: 1.25rem; }
.gf-prose p, .gf-prose li { color: color-mix(in srgb, var(--gf-foreground) 86%, transparent); }
.gf-prose a { color: var(--gf-primary); text-decoration: underline; text-underline-offset: 4px; }
.gf-post-list { display: grid; gap: 20px; }
.gf-post-card h2 { font-size: 1.5rem; }
.gf-post-card p { color: var(--gf-muted-foreground); }
.gf-post-meta { color: var(--gf-muted-foreground); font-size: 14px; }
.gf-blog-hero { padding-top: 112px; background: radial-gradient(60% 60% at 50% 0%, rgba(59, 108, 255, .12), transparent 70%); }
.gf-blog-hero h1 { margin-top: 24px; font-size: clamp(2.5rem, 4vw + 1rem, 4rem); }
.gf-blog-hero p { margin-top: 20px; color: var(--gf-muted-foreground); max-width: 720px; font-size: 1.1rem; }
.gf-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gf-blog-card { border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-card); overflow: hidden; box-shadow: var(--gf-shadow-e2); transition: transform .3s, border-color .3s, box-shadow .3s; }
.gf-blog-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--gf-primary) 40%, var(--gf-border)); box-shadow: var(--gf-shadow-e3); }
.gf-blog-card-link { display: grid; height: 100%; }
.gf-blog-thumb { aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid var(--gf-border); background: var(--gf-muted); }
.gf-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gf-blog-card-body { padding: 24px; display: grid; align-content: start; }
.gf-blog-card h2 { margin-top: 8px; font-size: 1.35rem; }
.gf-blog-card p:not(.gf-post-meta) { margin-top: 12px; color: var(--gf-muted-foreground); font-size: 14px; }
.gf-blog-card .gf-text-link { margin-top: 20px; }
.gf-empty-blog { border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-card); padding: 32px; }
.gf-empty-blog p { color: var(--gf-muted-foreground); }

.gf-reveal { animation: gf-fade-up .52s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes gf-fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
	.gf-nav-desktop, .gf-header-actions > .gf-button { display: none; }
	.gf-menu-toggle { display: inline-block; }
	.gf-header.is-open .gf-mobile-nav { display: block; }
	.gf-mobile-nav .gf-menu { display: grid; padding: 16px 0 8px; }
	.gf-mobile-nav .gf-menu a { display: flex; padding: 12px; font-size: 16px; color: var(--gf-foreground); }
	.gf-card-grid-2, .gf-card-grid-3, .gf-metrics-grid, .gf-principles-grid, .gf-split-copy, .gf-solution-layout, .gf-contact-layout, .gf-product-detail, .gf-product-detail.is-reverse, .gf-cta-content, .gf-blog-grid { grid-template-columns: 1fr; }
	.gf-system-grid { grid-template-columns: 1fr; }
	.gf-system-rail { grid-template-columns: repeat(2, 1fr); }
	.gf-metric-chips { position: relative; top: auto; right: auto; padding: 20px; grid-template-columns: repeat(3, 1fr); }
	.gf-system-canvas { min-height: 220px; }
	.gf-cta-actions { align-self: start; }
}

@media (max-width: 640px) {
	.gf-container { width: min(100% - 32px, 1280px); }
	.gf-section, .gf-hero { padding: 72px 0; }
	.gf-page-hero, .gf-contact-page { padding-top: 96px; }
	.gf-form-grid, .gf-mini-grid, .gf-capability-grid, .gf-outcomes, .gf-metric-chips { grid-template-columns: 1fr; }
	.gf-system-rail { display: none; }
	.gf-hero-signals span:nth-child(n+2) { display: none; }
	.gf-footer-grid { grid-template-columns: 1fr 1fr; }
}

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

.gf-footer { border-top: 1px solid var(--gf-border); background: var(--gf-background); padding: 64px 0 32px; }
.gf-footer-grid { display: grid; grid-template-columns: 4fr repeat(4, 2fr); gap: 40px; }
.gf-footer-brand p { margin-top: 20px; max-width: 380px; color: var(--gf-muted-foreground); font-size: 14px; }
.gf-socials { display: flex; gap: 16px; margin-top: 16px; color: var(--gf-muted-foreground); font-size: 14px; }
.gf-footer-col h2 { margin: 0 0 16px; color: var(--gf-muted-foreground); text-transform: uppercase; font: 500 12px/1.2 var(--gf-font-sans); letter-spacing: .14em; }
.gf-footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gf-footer-menu a { color: color-mix(in srgb, var(--gf-foreground) 80%, transparent); font-size: 14px; }
.gf-footer-menu a:hover, .gf-socials a:hover { color: var(--gf-foreground); }
.gf-footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--gf-border); color: var(--gf-muted-foreground); font-size: 12px; }
.wp-block-button.is-style-gf-primary .wp-block-button__link { background: var(--gf-primary); color: #fff; border-radius: 8px; }
.wp-block-button.is-style-gf-outline .wp-block-button__link { background: transparent; color: var(--gf-foreground); border: 1px solid var(--gf-border); border-radius: 8px; }
.wp-block-group.is-style-gf-card, .wp-block-column.is-style-gf-card, .is-style-gf-card { border: 1px solid var(--gf-border); border-radius: 20px; background: var(--gf-card); box-shadow: var(--gf-shadow-e2); padding: 28px; }

@media (max-width: 900px) {
	.gf-footer-grid { grid-template-columns: 1fr 1fr; }
	.gf-footer-brand { grid-column: 1 / -1; }
	.gf-footer-bottom { flex-direction: column; }
}
