/* ——————————————————————— FRONT PAGE — KANTAN HOMEPAGE ——————————————————————— */

/* Kill WP block spacing on the front page */
.wp-site-blocks          { padding: 0 !important; }
.wp-site-blocks > * + *  { margin-block-start: 0 !important; }

/* ——————————————————————— HERO ——————————————————————— */

.hero {
	padding: 90px 0 120px;
	position: relative;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 80px;
	align-items: start;
}

@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; gap: 60px; }
	.hero { padding: 60px 0 80px; }
}

.hero-label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 48px;
	opacity: 0;
	animation: riseIn 900ms 100ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-label .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--persimmon);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--persimmon) 18%, transparent);
	animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--persimmon) 18%, transparent); }
	50%       { box-shadow: 0 0 0 8px color-mix(in srgb, var(--persimmon) 6%, transparent); }
}

h1.headline {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(44px, 6.5vw, 88px);
	line-height: 0.98;
	letter-spacing: -0.03em;
	font-variation-settings: "SOFT" 60, "opsz" 144;
	color: var(--ink);
	margin-bottom: 32px;
	opacity: 0;
	animation: riseIn 1100ms 200ms cubic-bezier(.2,.8,.2,1) forwards;
}

h1.headline .italic {
	font-style: italic;
	font-variation-settings: "SOFT" 80, "opsz" 144;
	color: var(--persimmon);
}

.lede {
	font-size: 19px;
	line-height: 1.5;
	color: var(--ink-soft);
	max-width: 520px;
	margin-bottom: 44px;
	opacity: 0;
	animation: riseIn 1100ms 400ms cubic-bezier(.2,.8,.2,1) forwards;
}

.cta-row {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	opacity: 0;
	animation: riseIn 1100ms 600ms cubic-bezier(.2,.8,.2,1) forwards;
}


.hero-meta {
	margin-top: 56px;
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	opacity: 0;
	animation: riseIn 1100ms 800ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-meta span {
	font-family: var(--f-mono);
	font-size: 12px;
	color: var(--ink-mute);
	letter-spacing: 0.02em;
}

.hero-meta span::before {
	content: "+";
	color: var(--persimmon);
	margin-right: 8px;
}

/* ——————————————————————— TERMINAL ——————————————————————— */

.terminal-wrap {
	opacity: 0;
	animation: riseIn 1200ms 500ms cubic-bezier(.2,.8,.2,1) forwards;
}

.terminal {
	background: var(--graphite);
	border-radius: 14px;
	box-shadow:
		0 1px 2px rgba(0,0,0,0.1),
		0 20px 40px -12px rgba(26,22,20,0.28),
		0 40px 80px -20px rgba(26,22,20,0.2);
	overflow: hidden;
	position: relative;
	font-family: var(--f-mono);
	font-size: 13px;
	line-height: 1.7;
}

.terminal-bar {
	background: var(--graphite-soft);
	padding: 13px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255,255,255,0.04);
}

.terminal-bar .lights {
	display: flex;
	gap: 6px;
	margin-right: 14px;
}

.terminal-bar .lights span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4a4038;
}

.terminal-bar .title {
	color: #9b9087;
	font-size: 11px;
	letter-spacing: 0.05em;
	flex: 1;
	text-align: center;
}

.terminal-body {
	padding: 22px 24px 26px;
	color: #d6cdbf;
}

.tb-dim    { color: #7a6f62; }
.tb-prompt { color: var(--persimmon-soft); font-weight: 500; }
.tb-user   { color: #f0e5cf; }
.tb-ok     { color: #9cb85a; }
.tb-warn   { color: #e8b04a; }
.tb-bad    { color: #e27a52; }
.tb-accent { color: var(--persimmon-soft); }
.tb-line   { white-space: pre-wrap; }
.tb-gap    { height: 10px; }

.cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background: var(--persimmon-soft);
	vertical-align: -2px;
	animation: blink 1.1s steps(2, end) infinite;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

.hero::after {
	content: "簡";
	position: absolute;
	bottom: 40px;
	right: -20px;
	font-family: var(--f-display);
	font-size: clamp(180px, 22vw, 320px);
	font-weight: 300;
	color: var(--paper-deep);
	opacity: 0.55;
	z-index: -1;
	pointer-events: none;
	line-height: 1;
}

/* ——————————————————————— SECTIONS ——————————————————————— */

section.block {
	padding: 120px 0;
	position: relative;
}

.block-header {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 40px;
	margin-bottom: 72px;
	align-items: baseline;
}

@media (max-width: 680px) {
	.block-header { grid-template-columns: 1fr; gap: 16px; }
	section.block { padding: 80px 0; }
}

h2.section-h {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(32px, 4.2vw, 54px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-variation-settings: "SOFT" 60, "opsz" 120;
	max-width: 900px;
}

h2.section-h .italic {
	font-style: italic;
	color: var(--persimmon);
}

/* ——————————————————————— HOOK ——————————————————————— */

.hook-prompts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: var(--rule);
	border-left: var(--rule);
}

@media (max-width: 780px) {
	.hook-prompts { grid-template-columns: 1fr; }
}

.hook-prompt {
	padding: 40px 36px;
	border-right: var(--rule);
	border-bottom: var(--rule);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hook-prompt .q {
	font-family: var(--f-display);
	font-style: italic;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.3;
	font-variation-settings: "SOFT" 60, "opsz" 48;
	color: var(--ink);
}

.hook-prompt .q::before {
	content: "\201C";
	font-size: 38px;
	color: var(--persimmon);
	margin-right: 2px;
	vertical-align: -10px;
	line-height: 0;
}

.hook-prompt .meta {
	font-family: var(--f-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-mute);
}

.hook-closing {
	font-size: 19px;
	line-height: 1.55;
	max-width: 760px;
	color: var(--ink-soft);
	margin-top: 64px;
}

.hook-closing em {
	font-family: var(--f-display);
	font-style: italic;
	font-weight: 500;
	color: var(--ink);
	font-variation-settings: "SOFT" 80;
}

/* ——————————————————————— SUITE ——————————————————————— */

.suite-intro {
	font-size: 19px;
	color: var(--ink-soft);
	max-width: 700px;
	margin-bottom: 72px;
}

.suite {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	border-top: var(--rule);
	border-left: var(--rule);
}

@media (max-width: 980px) {
	.suite { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.suite { grid-template-columns: 1fr; }
}

.module {
	padding: 36px 30px 40px;
	border-right: var(--rule);
	border-bottom: var(--rule);
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 320px;
	grid-column: span 2;
}

.module.featured {
	grid-column: span 6;
	background: var(--ink);
	color: var(--paper);
	min-height: 280px;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px;
}

.module.half { grid-column: span 3; }

.module.featured .featured-body  { max-width: 520px; }
.module.featured .featured-cta   { align-self: flex-end; }

@media (max-width: 980px) {
	.module, .module.half, .module.featured { grid-column: span 1; }
	.module.featured {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

.module .idx {
	font-family: var(--f-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-bottom: 28px;
}

.module.featured .idx { color: color-mix(in srgb, var(--paper) 55%, transparent); }

.module h3 {
	font-family: var(--f-display);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: -0.015em;
	font-variation-settings: "SOFT" 50, "opsz" 48;
	margin-bottom: 10px;
}

.module.featured h3 { font-weight: 400; }

.module h3 .italic {
	font-style: italic;
	font-weight: 400;
	color: var(--persimmon);
}

.module.featured h3 .italic { color: var(--persimmon-soft); }

.module .price {
	font-family: var(--f-mono);
	font-size: 13px;
	color: var(--persimmon);
	margin-bottom: 22px;
}

.module.featured .price { color: var(--persimmon-soft); }
.module.coming   .price { color: var(--ink-mute); }

.module p {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ink-soft);
	flex: 1;
}

.module.featured p { color: color-mix(in srgb, var(--paper) 78%, transparent); }

.module .link {
	margin-top: 24px;
	font-family: var(--f-mono);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--ink);
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 40%, transparent);
	padding-bottom: 2px;
	align-self: flex-start;
	transition: all 180ms ease;
	text-decoration: none;
}

.module.featured .link {
	color: var(--paper);
	border-color: color-mix(in srgb, var(--paper) 50%, transparent);
}

.module .link:hover { color: var(--persimmon); border-color: var(--persimmon); }

/* ——————————————————————— HOW IT WORKS ——————————————————————— */

.how {
	background: var(--paper-warm);
	position: relative;
	overflow: hidden;
}

.how::before {
	content: "簡単";
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	font-family: var(--f-display);
	font-size: clamp(300px, 40vw, 560px);
	font-weight: 300;
	color: var(--paper);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
	letter-spacing: -0.06em;
	line-height: 1;
}

.how .shell { position: relative; z-index: 1; }

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
}

@media (max-width: 860px) {
	.steps { grid-template-columns: 1fr; gap: 50px; }
}

.step {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.step .numeral {
	font-family: var(--f-display);
	font-style: italic;
	font-weight: 400;
	font-size: 120px;
	line-height: 0.8;
	color: var(--persimmon);
	font-variation-settings: "SOFT" 100, "opsz" 144;
}

.step h3 {
	font-family: var(--f-display);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.1;
	letter-spacing: -0.015em;
	font-variation-settings: "SOFT" 50;
	max-width: 280px;
}

.step p {
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--ink-soft);
}

/* ——————————————————————— WHY ——————————————————————— */

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: var(--rule);
	border-left: var(--rule);
}

@media (max-width: 780px) {
	.why-grid { grid-template-columns: 1fr; }
}

.why-card {
	padding: 50px 44px 56px;
	border-right: var(--rule);
	border-bottom: var(--rule);
}

.why-card .motif {
	font-family: var(--f-display);
	font-style: italic;
	font-size: 34px;
	color: var(--persimmon);
	margin-bottom: 22px;
	display: block;
	font-variation-settings: "SOFT" 100;
}

.why-card h3 {
	font-family: var(--f-display);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.15;
	letter-spacing: -0.015em;
	font-variation-settings: "SOFT" 50;
	margin-bottom: 14px;
	max-width: 420px;
}

.why-card p {
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--ink-soft);
	max-width: 480px;
}

/* ——————————————————————— AUDIENCE ASIDE ——————————————————————— */

.audience {
	padding: 130px 0;
	background: var(--ink);
	color: var(--paper);
	position: relative;
}

.audience .aside {
	max-width: 840px;
	margin: 0 auto;
	text-align: left;
}

.audience .quote-mark {
	font-family: var(--f-display);
	font-style: italic;
	font-size: 120px;
	line-height: 0.7;
	color: var(--persimmon);
	margin-bottom: 8px;
	font-variation-settings: "SOFT" 100;
}

.audience .aside p {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	font-variation-settings: "SOFT" 70, "opsz" 96;
	max-width: 760px;
}

.audience .aside p + p { margin-top: 28px; }

.audience .aside p em {
	font-style: italic;
	color: var(--persimmon-soft);
	font-weight: 400;
}

.audience .signature {
	margin-top: 48px;
	font-family: var(--f-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--paper) 50%, transparent);
}

.audience .signature a {
	color: var(--persimmon-soft);
	border-bottom: 1px solid var(--persimmon-soft);
}

/* ——————————————————————— FAQ ——————————————————————— */

.faq {
	border-top: var(--rule);
}

.faq details {
	border-bottom: var(--rule);
	padding: 32px 0;
	cursor: pointer;
}

.faq summary {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 40px;
	list-style: none;
	cursor: pointer;
	font-family: var(--f-display);
	font-weight: 500;
	font-size: clamp(20px, 2.6vw, 28px);
	line-height: 1.2;
	letter-spacing: -0.015em;
	font-variation-settings: "SOFT" 50, "opsz" 48;
	color: var(--ink);
	transition: color 180ms ease;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--persimmon); }

.faq .plus {
	font-family: var(--f-display);
	font-style: italic;
	font-weight: 400;
	font-size: 36px;
	line-height: 0.8;
	color: var(--persimmon);
	transition: transform 220ms ease;
	flex-shrink: 0;
}

.faq details[open] .plus { transform: rotate(45deg); }

.faq .answer {
	margin-top: 24px;
	padding-right: 80px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-soft);
	max-width: 760px;
}

/* ——————————————————————— CTA END ——————————————————————— */

.cta-end {
	padding: 160px 0 180px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-end::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 120px;
	background: var(--persimmon);
}

.cta-end h2 {
	font-family: var(--f-display);
	font-weight: 400;
	font-size: clamp(40px, 6vw, 80px);
	line-height: 1;
	letter-spacing: -0.03em;
	font-variation-settings: "SOFT" 70, "opsz" 144;
	margin-bottom: 32px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.cta-end h2 .italic {
	font-style: italic;
	color: var(--persimmon);
}

.cta-end p {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 540px;
	margin: 0 auto 44px;
}

