:root {
	--ink: #17252d;
	--ink-soft: #40545d;
	--paper: #f7f8f2;
	--paper-blue: #e8f0f3;
	--blue: #123b5d;
	--blue-deep: #092c47;
	--rule: #9ab5c3;
	--red: #c9362b;
	--yellow: #f4d35e;
	--green: #286047;
	--green-paper: #e4f0e7;
	--placeholder: #566b75;
	--error: #a5251d;
	--success-on-blue: #b9efc7;
	--error-on-blue: #ffd0ca;
	--white: #ffffff;
	--display: "Anek Latin", sans-serif;
	--body: "Hanken Grotesk", sans-serif;
	--page: min(1180px, calc(100% - 32px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--paper);
}

body {
	margin: 0;
	color: var(--ink);
	background-color: var(--paper);
	background-image: repeating-linear-gradient(
		to bottom,
		transparent 0,
		transparent 31px,
		rgba(18, 59, 93, 0.065) 31px,
		rgba(18, 59, 93, 0.065) 32px
	);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body::before {
	position: fixed;
	z-index: 20;
	top: 0;
	bottom: 0;
	left: max(10px, calc((100vw - 1240px) / 2));
	width: 2px;
	background: var(--red);
	content: "";
	pointer-events: none;
}

::selection {
	color: var(--blue-deep);
	background: var(--yellow);
}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--paper-blue);
}

::-webkit-scrollbar-thumb {
	border: 3px solid var(--paper-blue);
	border-radius: 8px;
	background: var(--blue);
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 4px;
}

.site-header,
.site-footer,
.section-shell {
	width: var(--page);
	margin-inline: auto;
}

.site-header {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid var(--blue);
}

.brand {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	font-family: var(--display);
	font-size: 1.65rem;
	font-stretch: 105%;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1;
	text-decoration: none;
}

.brand-raqam {
	color: var(--blue);
}

.brand-nama {
	margin-left: 0.08em;
	padding: 0.12em 0.2em 0.07em;
	color: var(--paper);
	background: var(--red);
	transform: rotate(-2deg);
}

.text-link,
.quiet-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.text-link {
	font-size: 0.9rem;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--display);
	line-height: 0.98;
	text-wrap: balance;
}

.hero {
	display: grid;
	gap: 50px;
	align-items: center;
	padding-block: clamp(52px, 8vw, 110px);
}

.hero-copy {
	position: relative;
}

.launch-note,
.intro,
.answer-label,
.example-label {
	width: fit-content;
	margin-bottom: 18px;
	padding: 0.24rem 0.5rem;
	color: var(--blue-deep);
	background: var(--yellow);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	text-transform: uppercase;
}

h1 {
	max-width: 790px;
	margin-bottom: 26px;
	color: var(--blue-deep);
	font-size: clamp(3.35rem, 11vw, 6rem);
	font-stretch: 105%;
	font-weight: 800;
	letter-spacing: -0.04em;
}

h1 em {
	display: inline;
	color: var(--red);
	font-style: normal;
	font-weight: 750;
}

.hero-lede {
	max-width: 660px;
	margin-bottom: 31px;
	color: var(--ink-soft);
	font-size: clamp(1.06rem, 2vw, 1.2rem);
}

.waitlist-form {
	max-width: 680px;
}

.field-label {
	display: block;
	margin-bottom: 7px;
	color: var(--blue-deep);
	font-size: 0.88rem;
	font-weight: 700;
}

.email-row {
	display: flex;
	gap: 0;
	border: 2px solid var(--blue);
	background: var(--white);
}

input {
	width: 100%;
	min-width: 0;
	min-height: 52px;
	border: 0;
	border-radius: 0;
	padding: 13px 15px;
	color: var(--ink);
	background: transparent;
	caret-color: var(--red);
}

input::placeholder {
	color: var(--placeholder);
	opacity: 1;
}

button {
	flex: 0 0 auto;
	min-height: 52px;
	border: 0;
	border-left: 0;
	border-radius: 0;
	padding: 12px 20px;
	color: var(--white);
	background: var(--blue);
	box-shadow: inset 2px 0 var(--blue);
	font-weight: 700;
	transition: color 180ms ease, background-color 180ms ease;
}

button:not(:disabled):hover {
	color: var(--blue-deep);
	background: var(--yellow);
}

button:disabled {
	cursor: wait;
	opacity: 0.65;
}

.waitlist-form[data-state="joined"] button {
	cursor: default;
}

.form-note,
.form-status {
	margin: 8px 0 0;
	font-size: 0.9rem;
}

.form-note {
	color: var(--ink-soft);
}

.form-status {
	min-height: 1.4em;
	font-weight: 700;
}

.form-status[data-state="loading"] {
	color: var(--ink-soft);
}

.form-status[data-state="success"] {
	color: var(--green);
}

.form-status[data-state="error"] {
	color: var(--error);
}

.quiet-link {
	margin-top: 18px;
	font-size: 0.9rem;
	text-decoration-color: var(--red);
}

.launch-note {
	margin-top: -8px;
	padding: 0 0 3px;
	border-bottom: 4px solid var(--yellow);
	background: transparent;
	letter-spacing: 0;
	text-transform: none;
}

.portfolio-preview {
	position: relative;
	border: 2px solid var(--blue);
	background: var(--paper);
	box-shadow: 10px 14px 28px rgba(9, 44, 71, 0.14);
}

.portfolio-preview::before {
	position: absolute;
	z-index: -1;
	top: 14px;
	right: -12px;
	bottom: -14px;
	left: 12px;
	border: 1px solid var(--rule);
	background: var(--paper-blue);
	content: "";
}

.preview-topline {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 2px solid var(--blue);
	padding: 13px 16px 11px;
	color: var(--white);
	background: var(--blue);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.preview-topline span:last-child {
	color: var(--blue-deep);
	background: var(--yellow);
	padding-inline: 5px;
}

.preview-main {
	padding: 26px 18px 23px;
	background-image: repeating-linear-gradient(
		to bottom,
		transparent 0,
		transparent 31px,
		rgba(18, 59, 93, 0.1) 31px,
		rgba(18, 59, 93, 0.1) 32px
	);
}

.preview-main p,
.preview-main span {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.87rem;
}

.preview-main strong {
	display: block;
	margin: 4px 0 0;
	color: var(--blue-deep);
	font-family: var(--display);
	font-size: clamp(2.25rem, 7vw, 3.45rem);
	font-variant-numeric: tabular-nums;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1;
}

.insight {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
	border-top: 1px solid var(--rule);
	padding: 16px 18px;
}

.insight-positive {
	background: var(--green-paper);
}

.insight p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.insight-mark {
	width: 12px;
	height: 12px;
	margin-top: 5px;
	border: 3px solid var(--red);
	transform: rotate(45deg);
}

.insight-positive .insight-mark {
	border-color: var(--green);
}

.preview-footnote {
	margin: 0;
	border-top: 1px solid var(--rule);
	padding: 12px 18px;
	color: var(--ink-soft);
	font-size: 0.875rem;
	font-weight: 600;
}

.statement {
	width: 100%;
	max-width: none;
	padding: clamp(56px, 8vw, 104px) max(24px, calc((100% - 1120px) / 2));
	color: var(--white);
	background: var(--blue);
}

.statement p {
	max-width: 1050px;
	margin: 0 auto;
	font-family: var(--display);
	font-size: clamp(2.25rem, 6vw, 4.4rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.statement em {
	display: inline;
	color: var(--yellow);
	font-style: normal;
	font-weight: 800;
}

.not-a-trader {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 22px;
	padding-block: clamp(64px, 8vw, 104px);
}

.line-art {
	width: 25px;
	height: 25px;
	margin-top: 6px;
	border: 3px solid var(--red);
	border-radius: 50%;
}

.line-art::after {
	display: block;
	width: 15px;
	height: 3px;
	margin: 8px 0 0 18px;
	background: var(--red);
	content: "";
	transform: rotate(-32deg);
}

.not-a-trader h2,
.section-heading h2,
.belief h2,
.trust h2,
.faq h2 {
	margin-bottom: 22px;
	color: var(--blue-deep);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 750;
	letter-spacing: -0.04em;
	line-height: 1.03;
}

.waitlist h2 {
	margin-bottom: 22px;
	color: var(--blue-deep);
	font-size: clamp(2.5rem, 6vw, 4.8rem);
	font-weight: 750;
	letter-spacing: -0.04em;
}

.not-a-trader p,
.trust p,
.waitlist > div > p:last-child {
	max-width: 70ch;
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.explain {
	padding-bottom: clamp(64px, 9vw, 112px);
}

.section-heading {
	max-width: 860px;
}

.answer-list {
	margin-top: 48px;
	border-top: 2px solid var(--blue);
}

.answer {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	border-bottom: 1px solid var(--rule);
	padding: 27px 0;
}

.answer-number {
	color: var(--red);
	font-family: var(--display);
	font-size: 1.25rem;
	font-variant-numeric: tabular-nums;
	font-weight: 800;
}

.answer h3 {
	margin-bottom: 9px;
	color: var(--blue-deep);
	font-size: clamp(1.55rem, 4vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.answer p {
	max-width: 65ch;
	margin-bottom: 14px;
	color: var(--ink-soft);
}

.answer-label {
	display: inline-block;
	margin: 0;
	background: var(--paper-blue);
}

.belief {
	width: 100%;
	max-width: none;
	display: grid;
	gap: 48px;
	padding: clamp(64px, 9vw, 104px) max(24px, calc((100% - 1120px) / 2));
	background: var(--yellow);
}

.belief .intro {
	margin-top: 22px;
	color: var(--white);
	background: var(--blue);
}

.belief-copy {
	max-width: 590px;
}

.belief-copy h2 {
	margin-bottom: 0;
}

.belief-example {
	border: 2px solid var(--blue);
	background: var(--paper);
	box-shadow: 8px 11px 24px rgba(9, 44, 71, 0.14);
}

.example-label,
.technical,
.meaning,
.example-note {
	margin: 0;
	padding: 13px 18px;
}

.example-label {
	color: var(--white);
	background: var(--blue);
}

.technical {
	border-bottom: 1px solid var(--rule);
	color: var(--ink-soft);
	font-variant-numeric: tabular-nums;
	font-weight: 600;
}

.meaning {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 10px;
	align-items: start;
	padding-block: 22px;
}

.meaning span {
	color: var(--red);
	font-size: 1.5rem;
	font-weight: 800;
}

.meaning p {
	margin: 0;
	color: var(--blue-deep);
	font-family: var(--display);
	font-size: 1.28rem;
	font-weight: 600;
	line-height: 1.35;
}

.example-note {
	border-top: 1px solid var(--rule);
	color: var(--ink-soft);
	font-size: 0.88rem;
}

.trust {
	display: grid;
	gap: 38px;
	padding-block: clamp(64px, 9vw, 112px);
}

.trust-detail {
	position: relative;
	max-width: 580px;
	border: 2px solid var(--red);
	padding: 23px;
	background: var(--paper);
}

.trust-detail::before {
	position: absolute;
	top: -12px;
	left: 18px;
	padding: 0 7px;
	color: var(--white);
	background: var(--red);
	content: "WHY";
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.trust-detail p {
	margin: 0;
	color: var(--ink);
}

.faq {
	padding-bottom: clamp(64px, 9vw, 112px);
}

.faq-list {
	border-top: 2px solid var(--blue);
}

.faq details {
	border-bottom: 1px solid var(--rule);
}

.faq summary {
	display: flex;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 2px;
	color: var(--blue-deep);
	font-family: var(--display);
	font-size: 1.38rem;
	font-weight: 700;
	line-height: 1.2;
	list-style: none;
	cursor: pointer;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	border: 2px solid var(--blue);
	color: var(--blue);
	content: "+";
	font-family: var(--body);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}

.faq details[open] summary::after {
	color: var(--white);
	background: var(--blue);
	content: "−";
}

.faq details p {
	max-width: 70ch;
	margin: 0 48px 22px 0;
	color: var(--ink-soft);
}

.waitlist {
	display: grid;
	gap: 35px;
	margin-bottom: 55px;
	padding: clamp(48px, 8vw, 88px) clamp(24px, 6vw, 72px);
	color: var(--white);
	background: var(--blue);
}

.waitlist .intro {
	margin-top: 20px;
	color: var(--blue-deep);
	background: var(--yellow);
}

.waitlist h2,
.waitlist > div > p:last-child,
.waitlist .field-label,
.waitlist .form-note {
	color: var(--white);
}

.waitlist .form-status[data-state="success"] {
	color: var(--success-on-blue);
}

.waitlist .form-status[data-state="loading"] {
	color: var(--white);
}

.waitlist .form-status[data-state="error"] {
	color: var(--error-on-blue);
}

.waitlist .email-row {
	border-color: var(--white);
}

.waitlist button {
	border-left-color: var(--white);
	color: var(--blue-deep);
	background: var(--yellow);
}

.waitlist button:not(:disabled):hover {
	color: var(--white);
	background: var(--red);
}

.site-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 34px;
	color: var(--ink-soft);
}

.site-footer p {
	margin: 0;
	font-size: 0.88rem;
}

.script-notice {
	width: var(--page);
	margin: 0 auto 32px;
	border: 2px solid var(--red);
	padding: 12px 16px;
	color: var(--blue-deep);
	background: var(--paper);
	font-weight: 700;
}

@media (min-width: 800px) {
	:root {
		--page: min(1180px, calc(100% - 72px));
	}

	.hero {
		grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
		gap: clamp(52px, 7vw, 100px);
		min-height: calc(100vh - 76px);
	}

	.answer {
		grid-template-columns: 110px minmax(0, 1fr);
		padding-block: 33px;
	}

	.belief,
	.trust,
	.waitlist {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
		align-items: center;
		gap: clamp(60px, 9vw, 120px);
	}
}

@media (max-width: 560px) {
	body::before {
		left: 8px;
	}

	.site-header {
		min-height: 68px;
	}

	.brand {
		font-size: 1.42rem;
	}

	.text-link {
		font-size: 0.8rem;
	}

	.hero {
		gap: 42px;
		padding-top: 42px;
	}

	.launch-note {
		width: 100%;
	}

	h1 {
		font-size: clamp(2.85rem, 12.8vw, 3.4rem);
		text-wrap: wrap;
	}

	.email-row {
		flex-direction: column;
	}

	button {
		width: 100%;
		border-top: 2px solid var(--blue);
		border-left: 0;
		box-shadow: none;
	}

	.waitlist button {
		border-top-color: var(--white);
	}

	.portfolio-preview::before {
		right: -7px;
		bottom: -9px;
		left: 7px;
	}

	.statement {
		padding-inline: 24px;
	}

	.not-a-trader {
		grid-template-columns: 26px 1fr;
		gap: 14px;
	}

	.answer {
		grid-template-columns: 42px 1fr;
		gap: 10px;
	}

	.waitlist {
		width: calc(100% - 32px);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
