:root {
	--ink: #102a43;
	--text: #334e68;
	--muted: #627d98;
	--line: rgba(24, 78, 92, .15);
	--base: #e8f4f2;
	--base-deep: #d9ece9;
	--mist: #edf1fa;
	--sun: #fff1c9;
	--blue: #135bb5;
	--blue-dark: #104c91;
	--green: #138f7a;
	--coral: #e76f51;
	--white: #fff;
	--surface: rgba(255, 255, 255, .72);
	--shadow: 0 24px 60px rgba(22, 66, 81, .12);
	--shadow-small: 0 12px 30px rgba(22, 66, 81, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	color: var(--text);
	background: var(--base);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
	line-height: 1.8;
	overflow-x: hidden;
}

a { color: inherit; }
img, svg { max-width: 100%; }

::selection {
	color: var(--white);
	background: var(--green);
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
	pointer-events: none;
}

.pointer-light {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: rgba(255, 230, 153, .26);
	filter: blur(24px);
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s ease;
}

body.has-pointer .pointer-light { opacity: 1; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 74px;
	padding: 10px clamp(18px, 4vw, 56px);
	background: rgba(232, 244, 242, .82);
	border-bottom: 1px solid rgba(19, 91, 181, .1);
	backdrop-filter: blur(18px) saturate(1.3);
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: 174px;
	height: auto;
}

.site-logo small {
	padding-left: 14px;
	border-left: 1px solid var(--line);
	color: var(--muted);
	font-size: .68rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}

.global-nav {
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.5vw, 20px);
	font-size: .9rem;
	font-weight: 600;
}

.global-nav a, .footer-nav a {
	position: relative;
	text-decoration: none;
}

.global-nav a:not(:last-child)::after {
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	content: "";
	background: var(--green);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}

.global-nav a:hover::after,
.global-nav a.is-current::after {
	transform: scaleX(1);
	transform-origin: left;
}

.global-nav a:last-child {
	padding: 9px 15px;
	border: 1px solid var(--blue);
	border-radius: 6px;
	color: var(--white);
	background: var(--blue);
	box-shadow: 0 8px 20px rgba(19, 91, 181, .2);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: rgba(255, 255, 255, .7);
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
	transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.breadcrumb {
	max-width: 1120px;
	margin: 18px auto 0;
	padding: 0 24px;
	font-size: .82rem;
	color: var(--muted);
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li + li::before {
	margin-right: 8px;
	content: "/";
	color: #829ab1;
}

.hero, .section, .page-header, .contact-cta, .site-footer {
	padding-left: clamp(20px, 5vw, 64px);
	padding-right: clamp(20px, 5vw, 64px);
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
	gap: clamp(36px, 7vw, 92px);
	align-items: center;
	min-height: min(790px, calc(100vh - 74px));
	padding-top: 72px;
	padding-bottom: 96px;
	background:
		linear-gradient(rgba(19, 143, 122, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(19, 143, 122, .08) 1px, transparent 1px),
		linear-gradient(125deg, #e1f3ed 0%, #edf1fa 55%, #fff1c9 130%);
	background-size: 44px 44px, 44px 44px, auto;
	overflow: hidden;
}

.hero::before {
	position: absolute;
	left: 8%;
	bottom: -120px;
	width: 360px;
	height: 360px;
	border: 80px solid rgba(19, 91, 181, .06);
	border-radius: 50%;
	content: "";
}

.hero__content, .hero-visual { position: relative; z-index: 1; }

.hero h1, .page-header h1, .section-title h2, .contact-cta h2 {
	margin: 0;
	color: var(--ink);
	line-height: 1.25;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 780px;
	font-size: clamp(2.25rem, 5vw, 4.35rem);
}

.text-accent {
	color: var(--blue);
	background: linear-gradient(transparent 70%, rgba(255, 207, 79, .58) 0);
}

.hero p, .page-header p, .section-title p, .lead-text {
	max-width: 760px;
	font-size: 1.04rem;
}

.hero__content > p:not(.eyebrow) { max-width: 680px; }

.eyebrow, .card-label {
	color: var(--blue);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 0 rgba(19, 143, 122, .45);
	animation: status-pulse 2s infinite;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 20px;
	border: 1px solid var(--blue);
	border-radius: 6px;
	color: var(--blue);
	background: rgba(255, 255, 255, .62);
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after { margin-left: 9px; content: "→"; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.button:hover::after { transform: translateX(3px); }

.button--accent {
	border-color: var(--green);
	color: var(--white);
	background: var(--green);
	box-shadow: 0 10px 24px rgba(19, 143, 122, .2);
}

.button--ghost { border-color: var(--line); color: var(--text); background: transparent; }

.hero-visual {
	min-height: 490px;
	perspective: 1200px;
	transition: transform .2s ease-out;
}

.visual-grid {
	position: absolute;
	inset: 20px;
	border: 1px solid rgba(19, 91, 181, .18);
	border-radius: 50%;
	animation: slow-spin 35s linear infinite;
}

.visual-grid::before, .visual-grid::after {
	position: absolute;
	inset: 38px;
	border: 1px dashed rgba(19, 143, 122, .3);
	border-radius: 50%;
	content: "";
}

.visual-grid::after { inset: 86px; border-style: solid; border-color: rgba(231, 111, 81, .22); }

.visual-window {
	position: absolute;
	top: 76px;
	left: 4%;
	width: 92%;
	border: 1px solid rgba(16, 42, 67, .13);
	border-radius: 8px;
	background: rgba(255, 255, 255, .8);
	box-shadow: 0 35px 70px rgba(22, 66, 81, .2);
	backdrop-filter: blur(16px);
	overflow: hidden;
	transform: rotateY(-4deg) rotateX(2deg);
}

.window-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 38px;
	padding: 0 14px;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .68rem;
}

.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.window-bar i:nth-child(2) { background: #e9b949; }
.window-bar i:nth-child(3) { background: var(--green); }
.window-bar span { margin-left: 5px; }

.window-body { padding: 34px 30px 28px; }
.visual-heading { margin: 0 0 18px; color: var(--ink); font-size: 1.05rem; font-weight: 800; }
.visual-solutions { display: grid; gap: 10px; }
.visual-solutions div { display: grid; grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr); align-items: center; gap: 8px; min-height: 58px; padding: 10px 13px; border: 1px solid rgba(19, 91, 181, .12); border-radius: 6px; background: rgba(232, 244, 242, .7); }
.visual-solutions span { color: var(--text); font-size: .75rem; }
.visual-solutions i { color: var(--green); font-style: normal; font-weight: 800; text-align: center; }
.visual-solutions b { color: var(--blue); font-size: .78rem; }
.visual-note { margin: 16px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

.visual-float {
	position: absolute;
	z-index: 2;
	display: grid;
	min-width: 174px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 7px;
	background: rgba(255, 255, 255, .88);
	box-shadow: var(--shadow-small);
	backdrop-filter: blur(12px);
	animation: float 5s ease-in-out infinite;
}

.visual-float b { color: var(--ink); font-size: .86rem; }
.visual-float small { color: var(--muted); font-size: .7rem; }
.visual-float--top { top: 28px; right: -10px; grid-template-columns: 12px 1fr; column-gap: 8px; }
.visual-float--top small { grid-column: 2; }
.visual-float--bottom { left: -18px; bottom: 32px; gap: 2px; animation-delay: -2.4s; }

.pulse { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--green); }
.trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 1120px;
	margin: -34px auto 0;
	position: relative;
	z-index: 3;
	border: 1px solid rgba(19, 91, 181, .12);
	border-radius: 8px;
	background: rgba(255, 255, 255, .72);
	box-shadow: var(--shadow-small);
	backdrop-filter: blur(16px);
}

.trust-strip div { display: grid; grid-template-columns: minmax(94px, auto) 1fr; align-items: center; gap: 14px; padding: 21px 26px; }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--blue); font-size: 1.05rem; line-height: 1.3; }
.trust-strip span { font-size: .82rem; line-height: 1.5; }

.section {
	max-width: none;
	margin: 0 auto;
	padding-top: 96px;
	padding-bottom: 96px;
}

.section > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section:nth-of-type(3n + 1) { background: var(--base); }
.section:nth-of-type(3n + 2) { background: var(--mist); }
.section:nth-of-type(3n) { background: #f3eee9; }
.section--soft { background: var(--base-deep) !important; }

.page-header {
	position: relative;
	padding-top: 76px;
	padding-bottom: 70px;
	background:
		linear-gradient(rgba(19, 91, 181, .07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(19, 91, 181, .07) 1px, transparent 1px),
		linear-gradient(125deg, #deefea, #edf0fa 72%, #fff1c9);
	background-size: 38px 38px, 38px 38px, auto;
	overflow: hidden;
}

.page-header::after {
	position: absolute;
	top: 38px;
	right: 8%;
	width: 130px;
	height: 130px;
	border: 32px solid rgba(19, 143, 122, .08);
	border-radius: 50%;
	content: "";
}

.page-header__inner { position: relative; z-index: 1; max-width: 1120px; margin-left: auto; margin-right: auto; }
.page-header__inner > * { margin-left: 0; margin-right: 0; }
.page-header h1 { max-width: 880px; font-size: clamp(2rem, 4.5vw, 3.4rem); }

.section-title { margin-bottom: 38px; }
.section-title h2 { max-width: 780px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.section-title p:last-child { color: var(--muted); }

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

.card, .mini-card, .problem-card, .flow-step, .faq-item {
	border: 1px solid rgba(19, 91, 181, .12);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 10px 28px rgba(22, 66, 81, .06);
	backdrop-filter: blur(10px);
}

.card {
	position: relative;
	padding: 26px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	content: "";
	background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
	transform: scaleX(.3);
	transform-origin: left;
	transition: transform .3s ease;
}

.card:hover { transform: translateY(-6px); border-color: rgba(19, 91, 181, .25); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card h3, .flow-step h3 { margin-top: 0; color: var(--ink); line-height: 1.4; }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), #e9b949); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), #7868e6); }

.problem-card, .mini-card { position: relative; padding: 19px; color: var(--ink); font-weight: 700; }
.problem-card { padding-left: 46px; }
.problem-card::before { position: absolute; left: 20px; color: var(--green); content: "✓"; }
.mini-card { background: rgba(255, 255, 255, .5); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; padding: 0; list-style: none; }
.tag-list li, .filter-tags span { padding: 6px 10px; border-radius: 999px; color: var(--blue-dark); background: rgba(91, 157, 232, .14); font-size: .84rem; }
.tag-list--large li { font-size: .95rem; }
.text-link { color: var(--blue); font-weight: 750; text-decoration: none; }
.text-link::after { margin-left: 5px; content: "→"; }
.text-link--muted { color: var(--muted); }
.work-card dl { margin: 0; }
.work-card dt { margin-top: 14px; color: var(--ink); font-weight: 700; }
.work-card dd { margin: 0; }

.column-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.column-card__meta,
.column-card__footer,
.column-article__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
	color: var(--muted);
	font-size: .82rem;
}

.column-card__meta span,
.column-article__meta span:first-child {
	padding: 4px 10px;
	border-radius: 999px;
	color: var(--blue-dark);
	background: rgba(91, 157, 232, .14);
	font-weight: 700;
}

.column-card h3 {
	margin: 18px 0 12px;
}

.column-card h3 a {
	text-decoration: none;
}

.column-card > p {
	flex: 1;
}

.column-card__footer {
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.column-article {
	max-width: 920px;
	margin: 0 auto;
	padding: 78px clamp(20px, 5vw, 64px) 20px;
}

.column-article__header {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--line);
}

.column-article__header h1 {
	margin: 22px 0 18px;
	color: var(--ink);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.35;
	letter-spacing: 0;
}

.column-article__header > p {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.article-body {
	padding: 48px 0;
	font-size: 1rem;
	line-height: 2;
}

.article-body h2,
.article-body h3 {
	color: var(--ink);
	line-height: 1.45;
	letter-spacing: 0;
}

.article-body h2 {
	margin: 2.4em 0 1em;
	padding: 15px 18px;
	border-left: 4px solid var(--green);
	background: rgba(255, 255, 255, .56);
	font-size: 1.55rem;
}

.article-body h3 {
	margin: 2em 0 .8em;
	font-size: 1.25rem;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body table,
.article-body blockquote,
.article-body pre {
	margin-top: 0;
	margin-bottom: 1.6em;
}

.article-body blockquote {
	margin-left: 0;
	padding: 16px 20px;
	border-left: 4px solid #e9b949;
	border-radius: 0 6px 6px 0;
	background: rgba(255, 241, 201, .72);
}

.article-body blockquote > :last-child { margin-bottom: 0; }

.article-body code {
	padding: .16em .4em;
	border-radius: 4px;
	color: #114b5f;
	background: rgba(19, 143, 122, .12);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.article-body pre {
	overflow-x: auto;
	padding: 20px;
	border-radius: 8px;
	color: #edf2f7;
	background: #102a43;
}

.article-body pre code { padding: 0; color: inherit; background: transparent; }

.article-body table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	background: rgba(255, 255, 255, .6);
}

.article-body th,
.article-body td {
	min-width: 140px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	text-align: left;
}

.article-body th { color: var(--ink); background: rgba(19, 91, 181, .09); }

.column-article__footer {
	padding: 28px 0 44px;
	border-top: 1px solid var(--line);
}

.flow-list { display: grid; gap: 14px; }
.flow-list--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flow-step { position: relative; padding: 24px; }
.flow-step span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 12px; border-radius: 6px; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--green)); font-weight: 800; }

.table-wrap { overflow-x: auto; border: 1px solid rgba(19, 91, 181, .14); border-radius: 8px; background: rgba(255, 255, 255, .68); box-shadow: var(--shadow-small); }
.price-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table thead th { color: var(--ink); background: rgba(19, 91, 181, .09); }
.price-table tbody tr { transition: background .2s ease; }
.price-table tbody tr:hover { background: rgba(255, 255, 255, .55); }
.price-large { margin: 0; color: var(--blue); font-size: 2rem; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 0 22px; transition: background .2s ease; }
.faq-item[open] { background: rgba(255, 255, 255, .85); }
.faq-item summary { position: relative; padding: 19px 42px 19px 0; color: var(--ink); font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 17px; right: 0; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--blue); background: rgba(19, 91, 181, .1); content: "+"; transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 42px 20px 0; }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 36px; align-items: start; }
.check-list { margin: 0; padding-left: 1.2em; }
.check-list li + li { margin-top: 8px; }
.notice, .note, .form-alert { padding: 16px 18px; border-left: 4px solid #e9b949; border-radius: 6px; background: rgba(255, 241, 201, .72); color: #7c4a03; }
.filter-tags, .link-panels { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px auto 28px; }
.link-panels a { flex: 1 1 220px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--ink); font-weight: 700; text-decoration: none; transition: transform .2s ease; }
.link-panels a:hover { transform: translateY(-3px); }

.contact-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: 1120px;
	margin: 88px auto;
	padding-top: 42px;
	padding-bottom: 42px;
	border-radius: 8px;
	color: var(--white);
	background: linear-gradient(115deg, #102a43, #135bb5 68%, #138f7a);
	box-shadow: 0 30px 60px rgba(16, 42, 67, .2);
	overflow: hidden;
}

.contact-cta::after { position: absolute; right: -40px; bottom: -100px; width: 240px; height: 240px; border: 55px solid rgba(255, 255, 255, .08); border-radius: 50%; content: ""; }
.contact-cta > * { position: relative; z-index: 1; }
.contact-cta h2, .contact-cta .eyebrow { color: var(--white); }
.contact-cta p { max-width: 720px; margin-bottom: 0; color: #d9e2ec; }
.contact-cta .button--accent { border-color: #f7c948; color: var(--ink); background: #f7c948; }

.contact-form { display: grid; gap: 22px; max-width: 920px; }
.contact-confirm { max-width: 920px; }
.contact-confirm__note { margin-bottom: 24px; }
.contact-confirm__list { margin: 0; border: 1px solid rgba(19, 91, 181, .14); border-radius: 8px; background: rgba(255, 255, 255, .68); overflow: hidden; }
.contact-confirm__list > div { display: grid; grid-template-columns: 220px minmax(0, 1fr); }
.contact-confirm__list > div + div { border-top: 1px solid var(--line); }
.contact-confirm__list dt, .contact-confirm__list dd { padding: 17px 20px; }
.contact-confirm__list dt { color: var(--ink); background: rgba(19, 91, 181, .07); font-weight: 700; }
.contact-confirm__list dd { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.contact-confirm__empty { color: var(--muted); }
.contact-confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 700; }
.form-label { display: flex; min-height: 24px; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--ink); font: inherit; }
.field-badge { display: inline-flex; min-height: 20px; align-items: center; padding: 2px 7px; border: 1px solid rgba(21, 65, 102, .2); border-radius: 999px; color: var(--muted); background: rgba(21, 65, 102, .08); font-size: .7rem; font-weight: 700; line-height: 1.2; }
.field-badge--required { border-color: rgba(180, 77, 18, .24); color: #a5430c; background: rgba(235, 108, 68, .1); }
input, select, textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(19, 91, 181, .2); border-radius: 6px; color: var(--ink); background: rgba(255, 255, 255, .8); font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { min-height: 52px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(19, 91, 181, .1); }
textarea { resize: vertical; }
label em { color: #b91c1c; font-size: .86rem; font-style: normal; }
.narrow { max-width: 760px; }
.section-more { margin-top: 22px; }

.site-footer {
	padding-top: 54px;
	padding-bottom: 28px;
	color: #bcccdc;
	background: #102a43;
}

.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr); gap: 34px; max-width: 1120px; margin: 0 auto; }
.footer-grid > div p { max-width: 620px; }
.footer-brand { display: inline-block; }
.footer-brand img { width: 180px; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.footer-nav a:hover { color: var(--white); }
.copyright { max-width: 1120px; margin: 32px auto 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #829ab1; font-size: .82rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes status-pulse { 70% { box-shadow: 0 0 0 8px rgba(19, 143, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(19, 143, 122, 0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes chart-grow { from { height: 0; } }

@media (max-width: 1080px) {
	.site-logo small { display: none; }
	.global-nav { gap: 11px; font-size: .84rem; }
	.trust-strip { margin-left: 24px; margin-right: 24px; }
}

@media (max-width: 960px) {
	.nav-toggle { display: block; }
	.global-nav { position: absolute; top: 73px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: rgba(232, 244, 242, .98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-small); }
	.global-nav.is-open { display: flex; }
	.global-nav a { padding: 11px 0; }
	.global-nav a:last-child { margin-top: 8px; text-align: center; }
	.global-nav a:not(:last-child)::after { display: none; }
	.hero, .split, .footer-grid { grid-template-columns: 1fr; }
	.hero { min-height: auto; }
	.hero__content { max-width: 760px; }
	.hero-visual { width: min(600px, 100%); margin: 0 auto; }
	.grid--3, .grid--5, .flow-list--compact, .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.site-header { min-height: 66px; padding: 10px 16px; }
	.site-logo img { width: 148px; }
	.global-nav { top: 65px; }
	.hero { padding-top: 54px; padding-bottom: 76px; background-size: 32px 32px, 32px 32px, auto; }
	.hero h1 { font-size: clamp(2.15rem, 11vw, 3.15rem); }
	.hero__content > p:not(.eyebrow) { font-size: .97rem; }
	.hero-visual { min-height: 390px; }
	.visual-window { top: 58px; left: 0; width: 100%; }
	.window-body { padding: 28px 20px 24px; }
	.visual-solutions div { grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr); padding: 9px 10px; }
	.visual-solutions span, .visual-solutions b { font-size: .7rem; }
	.visual-float--top { top: 16px; right: -8px; }
	.visual-float--bottom { display: none; }
	.trust-strip { grid-template-columns: 1fr; margin-top: -28px; }
	.trust-strip div { padding: 15px 20px; }
	.trust-strip div + div { border-top: 1px solid var(--line); border-left: 0; }
	.section { padding-top: 70px; padding-bottom: 70px; }
	.page-header h1 { font-size: 1.95rem; }
	.grid--3, .grid--5, .flow-list--compact, .form-grid { grid-template-columns: 1fr; }
	.button-row, .contact-cta { align-items: stretch; flex-direction: column; }
	.button { width: 100%; }
	.contact-cta { margin: 64px 20px; }
	.footer-nav { grid-template-columns: 1fr 1fr; }
	.pointer-light { display: none; }
	.column-article { padding-top: 54px; }
	.article-body { padding: 34px 0; }
	.article-body h2 { font-size: 1.3rem; }
	.contact-confirm__list > div { grid-template-columns: 1fr; }
	.contact-confirm__list dt { padding-bottom: 6px; }
	.contact-confirm__list dd { padding-top: 6px; }
	.contact-confirm__actions { flex-direction: column; }
}

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