/* =========================================================
 * Smart Punch - Promotion site common styles
 * ========================================================= */

:root {
	--brand: #1c3f94;
	--brand-dark: #14306f;
	--brand-light: #4c79d4;
	--accent: #22b8aa;
	--accent-dark: #168f85;
	--accent-light: #72ddd3;
	--text: #1d2433;
	--muted: #687184;
	--line: #e3e7ee;
	--bg: #ffffff;
	--surface: #f7f8fb;
	--content-width: 1120px;
	--radius-small: 14px;
	--radius-medium: 20px;
	--radius-large: 28px;
	--shadow-small: 0 8px 20px rgba(28, 63, 148, 0.08);
	--shadow-medium: 0 14px 34px rgba(28, 63, 148, 0.10);
	--shadow-button: 0 12px 28px rgba(28, 63, 148, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

/* Header */
.global-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(227, 231, 238, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.global-header-inner {
	display: flex;
	width: min(var(--content-width), 100%);
	min-height: 72px;
	margin: 0 auto;
	padding: 0 20px;
	align-items: center;
	gap: 28px;
}

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

.global-logo-mark{
	display:block;
	width:40px;
	height:40px;
	object-fit:contain;
	flex-shrink:0;
}

.global-logo-text{
	font-size:28px;
	font-weight:800;
	letter-spacing:-0.02em;
	line-height:1;
}

.global-logo-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.global-nav {
	display: flex;
	margin-left: auto;
	align-items: center;
	gap: 24px;
	color: #4e5666;
	font-size: 14px;
	font-weight: 700;
}
.global-nav a:hover { color: var(--brand); }
.global-nav-contact {
	padding: 11px 18px;
	background: var(--brand);
	color: #fff !important;
	border-radius: 999px;
	box-shadow: var(--shadow-small);
}

/* Footer */
.global-footer {
	padding: 64px 20px 24px;
	background: #10182a;
	color: #fff;
}
.global-footer-inner {
	display: grid;
	width: min(var(--content-width), 100%);
	margin: 0 auto;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.global-logo-footer .global-logo-text { color: #fff; }
.global-footer-copy {
	margin: 20px 0 0;
	color: #aeb7c9;
	line-height: 1.8;
}
.global-footer-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
	align-content: start;
	color: #d6dce7;
	font-size: 14px;
}
.global-footer-nav a:hover { color: #fff; }
.global-footer-bottom {
	width: min(var(--content-width), 100%);
	margin: 48px auto 0;
	padding-top: 22px;
	color: #7f899c;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

/* Layout / sections */
.section { padding: 96px 20px; }
.section-inner, .cta-inner {
	width: min(var(--content-width), 100%);
	margin: 0 auto;
}
.section-heading {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}
.section-kicker {
	margin: 0 0 16px;
	color: var(--accent-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.section-heading h2, .cta h2 {
	margin: 0;
	color: var(--text);
	font-size: clamp(30px, 4vw, 50px);
	letter-spacing: -0.025em;
	line-height: 1.28;
}
.section-heading > p:last-child, .cta p {
	margin: 20px 0 0;
	color: var(--muted);
	line-height: 1.9;
}
.section-actions { margin-top: 34px; text-align: center; }

/* Buttons */
.button {
	display: inline-flex;
	min-height: 52px;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
	background: var(--brand);
	color: #fff;
	box-shadow: var(--shadow-button);
}
.button-primary:hover { background: var(--brand-dark); }
.button-secondary {
	background: #fff;
	color: var(--text);
	border-color: var(--line);
	box-shadow: var(--shadow-small);
}
.button-secondary:hover { border-color: color-mix(in srgb, var(--brand) 36%, var(--line)); }

/* Cards */
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-medium);
	box-shadow: var(--shadow-medium);
}

/* Links */
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--brand);
	font-weight: 900;
}
.text-link::after { content: "→"; }

/* CTA */
.cta {
	padding: 96px 20px;
	background:
		radial-gradient(circle at 18% 20%, rgba(255,255,255,.18), transparent 260px),
		linear-gradient(135deg, var(--brand-dark), var(--brand));
	color: #fff;
	text-align: center;
}
.cta .section-kicker, .cta h2, .cta p { color: #fff; }
.cta p { opacity: .86; }
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 34px;
}
.cta .button-primary {
	background: #fff;
	color: var(--brand);
	box-shadow: 0 14px 32px rgba(20,48,111,.24);
}
.cta .button-primary:hover { background: #f7f9ff; }
.cta .button-secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.54);
	box-shadow: none;
}

/* Utilities */
.u-center { text-align: center; }
.u-hidden { display: none !important; }

@media (max-width: 760px) {
	.global-header-inner { min-height: 64px; }
	.global-logo-mark { width: 38px; height: 38px; flex-basis: 38px; }
	.global-logo-text { font-size: 17px; }
	.global-nav a:not(.global-nav-contact) { display: none; }
	.global-nav { gap: 0; }
	.global-nav-contact { padding: 10px 15px; font-size: 13px; }
	.global-footer-inner { grid-template-columns: 1fr; }
	.global-footer-nav { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.section, .cta { padding: 72px 18px; }
	.section-heading br { display: none; }
	.button { width: 100%; }
	.cta-actions { flex-direction: column; }
}
