:root {
	--ink: #111418;
	--text: #2d3338;
	--muted: #657078;
	--line: #d7ddd8;
	--line-strong: #1f272b;
	--paper: #ffffff;
	--wash: #f5f7f2;
	--panel: #edf3f0;
	--panel-blue: #e8eef7;
	--panel-rose: #f4ebe7;
	--teal: #174f57;
	--blue: #2f5f9f;
	--rust: #974b37;
	--shadow: 0 20px 60px rgba(17, 20, 24, 0.12);
}

* {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	color: var(--text);
	background: var(--wash);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 14px clamp(18px, 4vw, 48px);
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(12px);
}

.brand,
.site-nav,
.hero-actions,
.cta-actions {
	display: flex;
	align-items: center;
}

.brand {
	gap: 10px;
	flex: none;
	min-width: 0;
	font-weight: 700;
	color: var(--ink);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: #fff;
	background: var(--ink);
	border-radius: 6px;
	font-weight: 700;
}

.brand-name,
.brand-small {
	font-size: 15px;
}

.brand-logo {
	display: block;
	height: 32px;
	width: auto;
}

.site-nav {
	gap: 22px;
	font-size: 13px;
	color: var(--muted);
}

.site-nav a:hover,
.role-card:hover .role-link,
.header-cta:hover {
	color: var(--teal);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 16px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	overflow-wrap: anywhere;
	transition:
		transform 0.18s ease,
		background-color 0.18s ease,
		color 0.18s ease;
}

.header-cta {
	flex: none;
	background: var(--ink);
	color: #fff;
}

.button:hover,
.header-cta:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--ink);
	color: #fff;
}

.button-secondary {
	background: var(--paper);
	color: var(--ink);
}

.hero {
	padding: clamp(26px, 5vw, 64px) clamp(18px, 4vw, 48px) 0;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(34px, 6vw, 70px);
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 52%, var(--panel) 52%, var(--panel-blue) 100%);
	border: 1px solid var(--line-strong);
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--teal);
	font-size: 12px;
	font-weight: 700;
}

.hero h1 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(36px, 5.4vw, 58px);
	line-height: 1.16;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.mobile-title-line {
	display: none;
}

.hero-lead {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.95;
}

.hero-actions {
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-visual {
	position: relative;
	min-height: 440px;
}

.flyer-mock,
.phone-mock {
	position: absolute;
	background: var(--paper);
	border: 1px solid var(--line-strong);
	box-shadow: 0 18px 36px rgba(17, 20, 24, 0.14);
}

.flyer-mock {
	left: 0;
	top: 18px;
	width: min(72%, 340px);
	min-height: 420px;
	padding: 28px;
}

.flyer-label,
.flyer-footer,
.app-title,
.panel-header,
.review-date,
.feature-number,
.flow-list span,
.role-kicker {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.flyer-label {
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
}

.flyer-title {
	margin-top: 34px;
	color: var(--ink);
	font-size: 34px;
	line-height: 1.25;
	font-weight: 800;
}

.flyer-lines {
	display: grid;
	gap: 10px;
	margin-top: 34px;
}

.flyer-lines span {
	display: block;
	height: 10px;
	background: repeating-linear-gradient(90deg, #dfe6e1 0 14px, #f4f6f3 14px 22px);
	border: 1px solid var(--line);
}

.flyer-lines span:nth-child(2) {
	width: 86%;
}

.flyer-lines span:nth-child(3) {
	width: 64%;
}

.flyer-footer {
	position: absolute;
	right: 24px;
	bottom: 24px;
	padding: 8px 10px;
	color: var(--rust);
	background: var(--panel-rose);
	border: 1px solid #dfc6bd;
	font-size: 12px;
	font-weight: 700;
}

.phone-mock {
	right: 0;
	bottom: 0;
	width: min(48%, 230px);
	min-width: 188px;
	padding: 12px;
	background: #20252b;
	border-radius: 8px;
}

.phone-bar {
	width: 58px;
	height: 5px;
	margin: 2px auto 12px;
	background: #59626b;
	border-radius: 4px;
}

.phone-screen {
	min-height: 330px;
	padding: 18px 14px;
	background: #fbfcfa;
	border-radius: 6px;
}

.app-title {
	color: var(--ink);
	font-size: 18px;
	font-weight: 800;
}

.notice-card {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	margin-top: 14px;
	padding: 12px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.notice-card strong,
.notice-card p {
	display: block;
	margin: 0;
}

.notice-card strong {
	font-size: 13px;
	color: var(--ink);
}

.notice-card p {
	margin-top: 4px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.5;
}

.notice-dot,
.notice-thumb {
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 2px;
	background: var(--rust);
	border-radius: 50%;
}

.notice-thumb {
	background: var(--blue);
	border-radius: 3px;
}

.tab-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin-top: 22px;
	color: var(--muted);
	font-size: 10px;
	text-align: center;
}

.tab-row span {
	padding-top: 8px;
	border-top: 1px solid var(--line);
}

.role-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 1180px;
	margin: 18px auto 0;
}

.role-card,
.feature-card,
.screen-panel,
.flow-list li,
.cta-section {
	background: var(--paper);
	border: 1px solid var(--line-strong);
	border-radius: 8px;
}

.role-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 230px;
	padding: 24px;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.role-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(17, 20, 24, 0.12);
}

.role-kicker {
	color: var(--muted);
	font-size: 12px;
}

.role-title {
	margin-top: 10px;
	color: var(--ink);
	font-size: 22px;
	font-weight: 800;
}

.role-desc {
	margin-top: 14px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.8;
}

.role-link {
	margin-top: auto;
	padding-top: 24px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 700;
}

.section {
	width: min(1180px, calc(100vw - 36px));
	margin: 0 auto;
	padding: clamp(64px, 8vw, 108px) 0 0;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
	gap: 24px;
	align-items: start;
	margin-bottom: 28px;
}

.section-heading h2,
.cta-section h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.32;
	overflow-wrap: anywhere;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.feature-card {
	min-height: 220px;
	padding: 26px;
}

.feature-card:nth-child(1) {
	background: #ffffff;
}

.feature-card:nth-child(2) {
	background: var(--panel-blue);
}

.feature-card:nth-child(3) {
	background: var(--panel-rose);
}

.feature-number {
	color: var(--teal);
	font-size: 13px;
	font-weight: 700;
}

.feature-card h3 {
	margin: 18px 0 10px;
	color: var(--ink);
	font-size: 20px;
	line-height: 1.45;
}

.feature-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.85;
}

.screen-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.screen-panel {
	overflow: hidden;
	min-height: 280px;
	background: #fbfcfa;
}

.panel-header {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	color: var(--muted);
	background: #ffffff;
	border-bottom: 1px solid var(--line-strong);
	font-size: 12px;
}

.panel-body {
	padding: 24px;
}

.input-line {
	height: 34px;
	margin-bottom: 14px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 4px;
}

.input-line.wide {
	height: 68px;
}

.input-line.short {
	width: 66%;
}

.status-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
	font-size: 12px;
}

.status-row span {
	padding: 8px 10px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 4px;
}

.review-list {
	display: grid;
	gap: 12px;
}

.review-date {
	color: var(--teal);
	font-size: 12px;
	font-weight: 700;
}

.review-item {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 12px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 4px;
}

.review-item span {
	width: 10px;
	height: 10px;
	background: var(--blue);
	border-radius: 50%;
}

.review-item strong {
	font-size: 13px;
}

.review-item em {
	color: var(--muted);
	font-size: 11px;
	font-style: normal;
}

.phone-panel .panel-body {
	display: grid;
	place-items: center;
}

.mini-phone {
	width: min(100%, 210px);
	padding: 16px;
	background: #20252b;
	border-radius: 8px;
}

.mini-notice {
	margin-bottom: 10px;
	padding: 12px;
	color: var(--muted);
	background: #fbfcfa;
	border-radius: 4px;
	font-size: 13px;
}

.mini-notice.active {
	color: #ffffff;
	background: var(--teal);
}

.flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.flow-list li {
	position: relative;
	min-height: 210px;
	padding: 22px;
}

.flow-list span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
}

.flow-list strong {
	display: block;
	margin-top: 14px;
	color: var(--ink);
	font-size: 19px;
}

.flow-list p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
}

.cta-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
	gap: 28px;
	align-items: center;
	max-width: 1180px;
	margin: clamp(64px, 9vw, 110px) auto 0;
	padding: clamp(28px, 5vw, 46px);
	background: linear-gradient(135deg, #ffffff 0%, var(--panel) 100%);
}

.cta-actions {
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(1180px, calc(100vw - 36px));
	margin: 42px auto 0;
	padding: 24px 0 34px;
	color: var(--muted);
	border-top: 1px solid var(--line);
}

.footer small {
	font-size: 12px;
}

@media (max-width: 980px) {
	.site-nav {
		display: none;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		padding: clamp(28px, 6vw, 44px);
	}

	.hero-visual {
		min-height: 390px;
	}

	.role-links,
	.feature-grid,
	.screen-grid,
	.flow-list {
		grid-template-columns: 1fr;
	}

	.role-card,
	.feature-card,
	.flow-list li {
		min-height: auto;
	}

	.section-heading,
	.cta-section {
		grid-template-columns: 1fr;
	}

	.cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.site-header {
		align-items: stretch;
		gap: 10px;
		padding: 12px 14px;
	}

	.brand {
		flex: 1 1 auto;
	}

	.brand-name {
		font-size: 14px;
	}

	.header-cta {
		max-width: 112px;
		min-height: 38px;
		padding: 8px 10px;
		font-size: 11px;
		line-height: 1.2;
		white-space: normal;
	}

	.hero {
		padding: 18px 12px 0;
		overflow: hidden;
	}

	.hero-inner {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		padding: 28px 20px;
	}

	.hero h1 {
		font-size: 30px;
		line-height: 1.24;
	}

	.desktop-title-line {
		display: none;
	}

	.mobile-title-line {
		display: inline;
	}

	.hero-lead {
		font-size: 14px;
		line-height: 1.85;
	}

	.button {
		width: 100%;
	}

	.hero-visual {
		min-height: 340px;
	}

	.flyer-mock {
		width: 76%;
		min-height: 330px;
		padding: 20px;
	}

	.flyer-title {
		font-size: 27px;
	}

	.phone-mock {
		width: 42%;
		min-width: 138px;
	}

	.phone-screen {
		min-height: 258px;
		padding: 14px 10px;
	}

	.notice-card {
		grid-template-columns: 12px minmax(0, 1fr);
		gap: 8px;
		padding: 10px;
	}

	.notice-dot,
	.notice-thumb {
		width: 10px;
		height: 10px;
	}

	.role-links {
		width: auto;
		max-width: none;
		margin-right: 0;
		margin-left: 0;
	}

	.section {
		width: auto;
		max-width: none;
		margin-right: 12px;
		margin-left: 12px;
	}

	.cta-section,
	.footer {
		width: auto;
		max-width: none;
		margin-right: 12px;
		margin-left: 12px;
	}

	.section {
		padding-top: 56px;
	}

	.role-card,
	.feature-card,
	.panel-body,
	.flow-list li {
		padding: 20px;
	}

	.screen-panel {
		min-height: auto;
	}

	.review-item {
		grid-template-columns: 10px minmax(0, 1fr);
	}

	.review-item em {
		grid-column: 2;
	}

	.footer {
		flex-direction: column;
		align-items: flex-start;
	}
}
