:root {
	--ink-950: #11231f;
	--ink-900: #17302a;
	--ink-700: #3b554d;
	--ink-600: #587068;
	--paper: #f7fbf9;
	--surface: #ffffff;
	--surface-soft: #edf8f3;
	--surface-mint: #dff5eb;
	--line: #d6e6df;
	--brand-800: #075e4b;
	--brand-700: #08735a;
	--brand-600: #0a8a68;
	--brand-500: #18a57d;
	--cyan: #32b7c4;
	--amber: #f0b44f;
	--violet: #7368d6;
	--danger: #a33b36;
	--footer: #14211f;
	--shadow-sm: 0 10px 30px rgba(18, 67, 53, 0.08);
	--shadow-md: 0 24px 70px rgba(13, 79, 59, 0.14);
	--radius-sm: 14px;
	--radius-md: 22px;
	--radius-lg: 32px;
	--shell: 1180px;
	--content: 780px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink-900);
	font-family: "Noto Sans Bengali", "Hind Siliguri", "Nirmala UI", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.75;
	overflow-wrap: break-word;
}

body.has-mobile-action-bar {
	padding-bottom: 96px;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--brand-700);
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--brand-800);
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--amber);
	outline-offset: 4px;
	border-radius: 5px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--ink-950);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.15rem, 5vw, 4.25rem);
}

h2 {
	font-size: clamp(1.7rem, 3.3vw, 2.75rem);
}

h3 {
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.site-shell {
	width: min(100% - 40px, var(--shell));
	margin-inline: auto;
}

.content-shell {
	width: min(100% - 40px, var(--content));
}

.section {
	padding-block: clamp(68px, 9vw, 116px);
}

.section-tight {
	padding-block: clamp(44px, 6vw, 72px);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 14px;
	left: 14px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--surface);
	color: var(--ink-950);
	box-shadow: var(--shadow-sm);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 15px;
	color: var(--brand-700);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 25px;
	height: 3px;
	border-radius: 999px;
	background: var(--amber);
	content: "";
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	border: 1px solid var(--brand-700);
	border-radius: 999px;
	background: var(--brand-700);
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 11px 24px rgba(4, 98, 73, 0.2);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--brand-800);
	color: #fff;
	box-shadow: 0 15px 30px rgba(4, 85, 64, 0.26);
}

.button-secondary {
	border-color: var(--brand-700);
	background: transparent;
	color: var(--brand-800);
	box-shadow: none;
}

.button-secondary:hover {
	background: var(--surface-mint);
	color: var(--brand-800);
	box-shadow: none;
}

.button-large {
	min-height: 58px;
	padding-inline: 32px;
	font-size: 1.02rem;
}

.button-compact {
	min-height: 43px;
	padding: 10px 19px;
	font-size: 0.88rem;
}

.text-link,
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--brand-700);
	font-weight: 800;
	text-decoration: none;
}

.text-link {
	border-bottom: 2px solid rgba(8, 115, 90, 0.35);
}

.arrow-link span {
	display: grid;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	place-items: center;
	background: var(--surface-mint);
	transition: transform 180ms ease;
}

.arrow-link:hover span {
	transform: translateX(4px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(214, 230, 223, 0.85);
	background: rgba(247, 251, 249, 0.94);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	min-height: 76px;
	align-items: center;
	gap: 24px;
}

.site-branding,
.brand-link,
.custom-logo-link {
	flex: 0 0 auto;
	min-width: 0;
	max-width: min(48vw, 235px);
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--ink-950);
	font-weight: 900;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	place-items: center;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.brand-mark img,
.footer-brand img {
	display: block;
	width: auto;
	height: auto;
	max-width: 44px;
	max-height: 44px;
	object-fit: contain;
}

.footer-brand img {
	max-width: 40px;
	max-height: 40px;
}

.brand-wordmark {
	white-space: nowrap;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(13px, 2vw, 26px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding-block: 8px;
	color: var(--ink-700);
	font-size: 0.9rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--brand-700);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--surface);
	color: var(--ink-950);
	cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	border-radius: 99px;
	background: currentColor;
	content: "";
	transition: transform 160ms ease;
}

.nav-toggle-lines::before {
	transform: translateY(-6px);
}

.nav-toggle-lines::after {
	transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
	transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
	transform: translateY(-1px) rotate(-45deg);
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(58px, 8vw, 104px);
	background:
		radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.22) 0 3px, transparent 4px),
		radial-gradient(circle at 11% 70%, rgba(240, 180, 79, 0.2), transparent 31%),
		linear-gradient(135deg, #e3f8ef 0%, #c6f0df 52%, #b9ebe2 100%);
}

.home-hero::after {
	position: absolute;
	right: -190px;
	bottom: -260px;
	width: 520px;
	height: 520px;
	border: 78px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	content: "";
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
	align-items: center;
	gap: clamp(42px, 7vw, 88px);
}

.hero-copy h1 {
	max-width: 720px;
	margin-bottom: 24px;
}

.hero-lead {
	max-width: 650px;
	margin-bottom: 28px;
	color: var(--ink-700);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 33px;
}

.hero-signals {
	display: flex;
	max-width: 620px;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.6);
	list-style: none;
	box-shadow: 0 16px 40px rgba(26, 88, 66, 0.08);
	backdrop-filter: blur(10px);
}

.hero-signals li {
	display: grid;
	flex: 1;
	gap: 1px;
	padding: 15px 18px;
}

.hero-signals li + li {
	border-left: 1px solid rgba(16, 89, 64, 0.13);
}

.hero-signals strong {
	font-size: 0.76rem;
}

.hero-signals span {
	color: var(--ink-700);
	font-size: 0.9rem;
}

.hero-visual {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 44px 44px 20px 44px;
	background: rgba(255, 255, 255, 0.36);
	box-shadow: var(--shadow-md);
}

.hero-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
}

.visual-orbit {
	position: absolute;
	inset: 9% 5%;
	border: 1px dashed rgba(7, 94, 75, 0.22);
	border-radius: 50%;
	transform: rotate(-9deg);
}

.quick-access {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--line);
	background: var(--surface);
}

.section-heading {
	max-width: 790px;
	margin-bottom: clamp(32px, 5vw, 52px);
}

.section-heading h2,
.section-copy h2,
.payment-copy h2,
.faq-route-copy h2 {
	margin-bottom: 18px;
}

.section-heading > p:last-child,
.section-copy > p,
.payment-copy > p,
.faq-route-copy > p {
	color: var(--ink-700);
}

.section-heading-inline {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.64fr);
	align-items: end;
	gap: 70px;
}

.section-heading-inline h2 {
	margin-bottom: 0;
}

.section-heading-inline > p {
	margin-bottom: 8px;
	color: var(--ink-700);
}

.task-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.task-card {
	position: relative;
	display: grid;
	min-height: 176px;
	padding: 23px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	color: var(--ink-900);
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.task-card:hover {
	transform: translateY(-5px);
	border-color: var(--brand-500);
	color: var(--ink-900);
	box-shadow: var(--shadow-md);
}

.task-card::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 62px;
	height: 62px;
	border-radius: 0 var(--radius-md) 0 52px;
	background: var(--surface-mint);
	content: "";
}

.task-icon {
	display: grid;
	width: 39px;
	height: 39px;
	margin-bottom: 22px;
	border-radius: 12px;
	place-items: center;
	background: var(--brand-700);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
}

.task-card strong {
	margin-bottom: 4px;
	font-size: 1.02rem;
}

.task-card > span:last-child {
	color: var(--ink-600);
	font-size: 0.87rem;
}

.task-card-app .task-icon {
	background: var(--cyan);
}

.task-card-payment .task-icon {
	background: var(--violet);
}

.task-card-games .task-icon {
	background: #b87c18;
}

.product-section {
	background: var(--paper);
}

.split-layout,
.payment-layout,
.faq-route-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(50px, 8vw, 100px);
}

.split-layout-visual-first .section-visual {
	order: -1;
}

.section-visual,
.faq-route-visual {
	position: relative;
	padding: clamp(20px, 4vw, 38px);
	border: 1px solid var(--line);
	border-radius: 35px;
	background: linear-gradient(145deg, #fff, #e8f6f0);
	box-shadow: var(--shadow-sm);
}

.section-visual::before,
.faq-route-visual::before {
	position: absolute;
	top: 16px;
	left: 18px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--amber);
	box-shadow: 18px 0 0 var(--cyan), 36px 0 0 var(--brand-500);
	content: "";
}

.category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 27px 0;
	list-style: none;
}

.category-pills li {
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink-700);
	font-size: 0.88rem;
	font-weight: 750;
}

.account-section {
	background: var(--surface);
}

.account-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	align-items: center;
	gap: clamp(42px, 7vw, 84px);
}

.account-visual {
	overflow: hidden;
	padding: clamp(22px, 4vw, 42px);
	border-radius: 30px 100px 30px 30px;
	background: linear-gradient(145deg, #ddf5ea, #d6f3f3);
}

.decision-stack {
	display: grid;
	gap: 18px;
}

.decision-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.decision-card > span {
	display: grid;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	place-items: center;
	background: var(--surface-mint);
	color: var(--brand-800);
	font-size: 0.78rem;
	font-weight: 900;
}

.decision-card h3 {
	margin-bottom: 7px;
}

.decision-card p {
	margin-bottom: 8px;
	color: var(--ink-700);
}

.decision-card a {
	font-size: 0.9rem;
	font-weight: 800;
}

.payment-section {
	background: linear-gradient(180deg, var(--paper), #edf8f5);
}

.payment-layout {
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.payment-lanes {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 28px 0 30px;
	list-style: none;
}

.payment-lanes li {
	display: grid;
	grid-template-columns: 36px 102px 1fr;
	align-items: center;
	gap: 13px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.78);
}

.payment-lanes li > span {
	color: var(--brand-600);
	font-size: 0.72rem;
	font-weight: 900;
}

.payment-lanes small {
	color: var(--ink-600);
}

.local-use-section {
	padding-top: 0;
	background: #edf8f5;
}

.local-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 7vw, 76px);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 84% 0%, rgba(50, 183, 196, 0.28), transparent 37%),
		linear-gradient(135deg, #075e4b, #0a725d);
	color: #fff;
}

.local-panel::after {
	position: absolute;
	right: -60px;
	bottom: -100px;
	width: 280px;
	height: 280px;
	border: 50px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

.local-panel h2,
.local-panel p,
.local-panel .eyebrow,
.local-panel .arrow-link {
	position: relative;
	z-index: 1;
	color: #fff;
}

.local-panel .eyebrow::before {
	background: var(--amber);
}

.local-panel-copy {
	max-width: 800px;
}

.local-panel-copy p:last-child {
	color: rgba(255, 255, 255, 0.82);
}

.safety-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 0;
	margin: 29px 0 28px;
	list-style: none;
}

.safety-grid li {
	display: flex;
	min-height: 92px;
	align-items: center;
	gap: 12px;
	padding: 17px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.09);
	font-weight: 750;
	backdrop-filter: blur(9px);
}

.safety-grid span {
	display: grid;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	place-items: center;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	font-size: 0.76rem;
}

.arrow-link-light span {
	background: rgba(255, 255, 255, 0.14);
}

.editor-home-section {
	background: var(--surface);
}

.faq-route-section {
	background: var(--surface);
}

.faq-route-layout {
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.question-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 26px 0;
}

.question-links a {
	padding: 15px 17px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	color: var(--ink-900);
	font-size: 0.9rem;
	font-weight: 750;
	text-decoration: none;
}

.question-links a:hover {
	border-color: var(--brand-500);
	background: var(--surface-mint);
}

.page-hero {
	padding-block: clamp(50px, 7vw, 84px);
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(circle at 89% 20%, rgba(50, 183, 196, 0.18), transparent 30%),
		linear-gradient(135deg, #e4f8ef, #f7fbf9 74%);
}

.page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.58fr);
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
}

.page-hero-copy h1 {
	max-width: 800px;
	margin-bottom: 19px;
	font-size: clamp(2rem, 4.2vw, 3.55rem);
}

.page-hero-copy > p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--ink-700);
	font-size: 1.03rem;
}

.page-hero-visual {
	max-width: 430px;
	justify-self: end;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: var(--shadow-sm);
}

.entry-content {
	padding-block: clamp(58px, 8vw, 92px);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2 {
	margin: 2.1em 0 0.65em;
	font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.entry-content h3 {
	margin: 1.8em 0 0.6em;
}

.entry-content p,
.entry-content li {
	color: var(--ink-700);
}

.entry-content a {
	font-weight: 700;
}

.entry-content img {
	border-radius: var(--radius-md);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--line);
	text-align: left;
}

.entry-content details {
	padding: 17px 19px;
	margin-bottom: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--surface);
}

.entry-content summary {
	cursor: pointer;
	font-weight: 800;
}

.page-shell {
	min-height: 460px;
	background: var(--surface);
}

.page-shell-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 35px;
}

.page-shell-heading .eyebrow {
	margin-bottom: 0;
}

.home-context-link {
	font-size: 0.9rem;
	font-weight: 800;
}

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

.page-component-card {
	position: relative;
	min-height: 220px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--paper);
}

.component-index {
	display: inline-grid;
	width: 38px;
	height: 38px;
	margin-bottom: 28px;
	border-radius: 12px;
	place-items: center;
	background: var(--surface-mint);
	color: var(--brand-800);
	font-size: 0.72rem;
	font-weight: 900;
}

.page-component-card h2 {
	margin-bottom: 10px;
	font-size: 1.18rem;
}

.page-component-card p {
	margin-bottom: 0;
	color: var(--ink-700);
	font-size: 0.93rem;
}

.related-paths {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 32px;
}

.page-shell-steps .page-component-card {
	border-top: 4px solid var(--brand-500);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.page-shell-compare .page-component-grid {
	grid-template-columns: repeat(6, 1fr);
}

.page-shell-compare .page-component-card {
	grid-column: span 2;
}

.page-shell-compare .page-component-card:nth-child(1) {
	grid-column: 1 / span 3;
	background: #e9f7f1;
}

.page-shell-compare .page-component-card:nth-child(2) {
	grid-column: 4 / span 3;
	background: #e7f6f8;
}

.page-shell-lanes .page-component-grid {
	grid-template-columns: repeat(4, 1fr);
}

.page-shell-lanes .page-component-card {
	min-height: 250px;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	border-top: 5px solid var(--violet);
}

.page-shell-categories .page-component-grid {
	grid-template-columns: repeat(2, 1fr);
}

.page-shell-categories .page-component-card:nth-child(2),
.page-shell-categories .page-component-card:nth-child(3) {
	background: var(--surface-mint);
}

.page-shell-routes .page-component-grid {
	grid-template-columns: repeat(2, 1fr);
}

.page-shell-routes .page-component-card {
	min-height: 180px;
	padding-left: 82px;
}

.page-shell-routes .component-index {
	position: absolute;
	top: 25px;
	left: 24px;
	border-radius: 50%;
}

.page-shell-purpose .page-component-grid {
	grid-template-columns: 1.3fr 1fr 1fr;
}

.page-shell-purpose .page-component-card:first-child {
	background: var(--surface-mint);
}

.page-shell-policy .page-component-grid {
	grid-template-columns: 1fr;
	gap: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	overflow: hidden;
}

.page-shell-policy .page-component-card {
	display: grid;
	min-height: auto;
	grid-template-columns: 52px 220px 1fr;
	align-items: center;
	gap: 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.page-shell-policy .page-component-card + .page-component-card {
	border-top: 1px solid var(--line);
}

.page-shell-policy .component-index {
	margin: 0;
}

.page-shell-policy .page-component-card h2,
.page-shell-policy .page-component-card p {
	margin: 0;
}

.page-shell-limits {
	background: linear-gradient(180deg, var(--surface), #edf8f5);
}

.page-shell-limits .page-component-grid {
	grid-template-columns: repeat(4, 1fr);
}

.page-shell-limits .page-component-card {
	min-height: 265px;
	background: var(--ink-900);
	color: #fff;
}

.page-shell-limits .page-component-card h2,
.page-shell-limits .page-component-card p {
	color: #fff;
}

.page-shell-limits .page-component-card p {
	opacity: 0.78;
}

.article-main,
.listing-main,
.not-found-main {
	min-height: 60vh;
}

.entry-header {
	margin-bottom: 42px;
}

.entry-header h1 {
	font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.entry-featured-image {
	margin-top: 34px;
}

.listing-hero {
	padding-block: clamp(48px, 7vw, 78px);
	border-bottom: 1px solid var(--line);
	background: var(--surface-mint);
}

.listing-hero h1 {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 3.3rem);
}

.archive-description {
	max-width: 720px;
	color: var(--ink-700);
}

.listing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	padding-block: 62px 90px;
}

.content-card {
	display: grid;
	grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
	min-height: 230px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.content-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-card-body {
	padding: 24px;
}

.content-card-body h2 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.content-card-body h2 a {
	color: var(--ink-950);
	text-decoration: none;
}

.content-card-excerpt {
	color: var(--ink-700);
	font-size: 0.9rem;
}

.pagination-wrap,
.empty-state {
	grid-column: 1 / -1;
}

.not-found-main {
	display: grid;
	padding-block: 80px;
	place-items: center;
}

.not-found-card {
	max-width: 760px;
	padding: clamp(34px, 7vw, 72px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	text-align: center;
	box-shadow: var(--shadow-md);
}

.error-code {
	margin-bottom: 10px;
	color: var(--brand-600);
	font-size: clamp(4rem, 14vw, 8rem);
	font-weight: 900;
	line-height: 0.9;
}

.not-found-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.search-form {
	display: flex;
	max-width: 620px;
	align-items: stretch;
	gap: 10px;
	margin-top: 22px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 11px 15px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink-900);
}

.site-footer {
	padding-top: clamp(58px, 8vw, 88px);
	background: var(--footer);
	color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(250px, 1.7fr) repeat(3, minmax(130px, 0.72fr));
	gap: clamp(30px, 5vw, 68px);
}

.footer-brand {
	max-width: 420px;
}

.footer-brand .brand-link {
	margin-bottom: 20px;
	color: #fff;
}

.footer-brand p {
	font-size: 0.9rem;
}

.footer-boundary {
	color: rgba(255, 255, 255, 0.56);
}

.footer-column h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 0.92rem;
	letter-spacing: 0;
}

.footer-column ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-column li + li {
	margin-top: 8px;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
	text-decoration: none;
}

.footer-column a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 23px;
	margin-top: 56px;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	font-size: 0.82rem;
}

.footer-bottom p {
	margin: 0;
}

.floating-brand-action {
	position: fixed;
	right: 50%;
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 120;
	display: flex;
	justify-content: center;
	width: min(calc(100% - 28px), 460px);
	transform: translateX(50%);
	pointer-events: none;
}

.floating-brand-action__button {
	width: min(100%, 320px);
	min-width: min(280px, 100%);
	border: 2px solid rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 42px rgba(4, 70, 53, 0.34), 0 0 0 6px rgba(237, 249, 244, 0.74);
	pointer-events: auto;
}

@media (max-width: 1080px) {
	.primary-navigation .menu {
		gap: 14px;
	}

	.primary-navigation a {
		font-size: 0.83rem;
	}

	.header-action {
		display: none;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	}

	.task-grid,
	.safety-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.5fr repeat(3, 0.75fr);
	}
}

@media (max-width: 960px) {
	.nav-toggle {
		display: grid;
		margin-left: auto;
		place-items: center;
	}

	.primary-navigation {
		position: absolute;
		top: calc(100% + 1px);
		right: 20px;
		left: 20px;
		display: none;
		max-height: calc(100vh - 110px);
		padding: 13px;
		border: 1px solid var(--line);
		border-radius: 0 0 var(--radius-md) var(--radius-md);
		background: var(--surface);
		box-shadow: var(--shadow-md);
		overflow-y: auto;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		display: grid;
		gap: 0;
	}

	.primary-navigation a {
		padding: 13px 12px;
		font-size: 0.95rem;
	}

	.hero-grid,
	.split-layout,
	.payment-layout,
	.faq-route-layout,
	.account-layout,
	.page-hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 760px;
	}

	.hero-visual {
		width: min(100%, 650px);
		margin-inline: auto;
	}

	.split-layout-visual-first .section-visual {
		order: 0;
	}

	.section-heading-inline {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.payment-copy,
	.faq-route-copy {
		order: -1;
	}

	.page-hero-visual {
		max-width: 480px;
		justify-self: start;
	}

	.page-component-grid,
	.page-shell-lanes .page-component-grid,
	.page-shell-limits .page-component-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-shell-purpose .page-component-grid {
		grid-template-columns: 1fr 1fr;
	}

	.page-shell-purpose .page-component-card:first-child {
		grid-column: 1 / -1;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-column:last-child {
		grid-column: auto;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 16px;
		line-height: 1.72;
	}

	.site-shell,
	.content-shell {
		width: min(100% - 28px, var(--shell));
	}

	.header-inner {
		min-height: 66px;
		gap: 12px;
	}

	.site-branding,
	.brand-link,
	.custom-logo-link {
		max-width: min(58vw, 190px);
	}

	.custom-logo,
	.custom-logo-link img,
	.site-branding img,
	.brand-logo img,
	.brand-mark img {
		max-width: 38px;
		max-height: 38px;
	}

	.brand-mark {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

	.brand-wordmark {
		font-size: 0.96rem;
	}

	.home-hero {
		padding-top: 48px;
		padding-bottom: 62px;
	}

	.hero-grid {
		gap: 34px;
	}

	.hero-copy h1 {
		font-size: clamp(2rem, 11vw, 3.2rem);
	}

	.hero-actions {
		display: grid;
		gap: 17px;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-actions .text-link {
		justify-self: start;
	}

	.hero-signals {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-signals li {
		padding: 12px;
	}

	.hero-signals li + li {
		border-top: 0;
		border-left: 1px solid rgba(16, 89, 64, 0.13);
	}

	.hero-visual {
		padding: 15px;
		border-radius: 32px 32px 14px 32px;
	}

	.task-grid,
	.safety-grid,
	.question-links,
	.page-component-grid,
	.page-shell-compare .page-component-grid,
	.page-shell-lanes .page-component-grid,
	.page-shell-categories .page-component-grid,
	.page-shell-routes .page-component-grid,
	.page-shell-purpose .page-component-grid,
	.page-shell-limits .page-component-grid,
	.listing-grid {
		grid-template-columns: 1fr;
	}

	.task-card {
		min-height: 148px;
	}

	.page-shell-compare .page-component-card,
	.page-shell-compare .page-component-card:nth-child(1),
	.page-shell-compare .page-component-card:nth-child(2) {
		grid-column: auto;
	}

	.page-shell-purpose .page-component-card:first-child {
		grid-column: auto;
	}

	.payment-lanes li {
		grid-template-columns: 34px 78px 1fr;
		gap: 8px;
	}

	.payment-lanes small {
		font-size: 0.78rem;
	}

	.local-panel {
		border-radius: var(--radius-md);
	}

	.page-hero {
		padding-block: 44px 50px;
	}

	.page-hero-grid {
		gap: 30px;
	}

	.page-hero-copy h1 {
		font-size: clamp(1.85rem, 9vw, 2.75rem);
	}

	.page-hero-visual {
		max-width: 100%;
	}

	.page-shell-heading {
		display: grid;
		gap: 12px;
	}

	.page-component-card {
		min-height: 190px;
	}

	.page-shell-policy .page-component-card {
		grid-template-columns: 48px 1fr;
	}

	.page-shell-policy .page-component-card p {
		grid-column: 2;
	}

	.content-card {
		grid-template-columns: 1fr;
	}

	.content-card-image {
		max-height: 220px;
		overflow: hidden;
	}

	.not-found-actions {
		display: grid;
	}

	.search-form {
		display: grid;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		display: grid;
	}

	.floating-brand-action {
		bottom: max(12px, env(safe-area-inset-bottom));
	}

	.floating-brand-action__button {
		min-height: 52px;
	}
}

@media (max-width: 430px) {
	.hero-signals {
		grid-template-columns: 1fr;
	}

	.hero-signals li + li {
		border-top: 1px solid rgba(16, 89, 64, 0.13);
		border-left: 0;
	}

	.safety-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Database-backed planned content. */
.home-entry-content,
.planned-entry-content {
	width: min(100% - 40px, var(--shell));
	padding-block: 0 clamp(72px, 9vw, 112px);
}

.content-hero {
	padding: clamp(36px, 6vw, 74px);
	margin-block: clamp(28px, 4vw, 52px) 24px;
	border: 1px solid rgba(35, 120, 92, 0.14);
	border-radius: clamp(24px, 4vw, 42px);
	background:
		radial-gradient(circle at 85% 15%, rgba(49, 199, 178, 0.19), transparent 34%),
		linear-gradient(135deg, #f3fbf7 0%, #f8fbff 55%, #fff9ef 100%);
	box-shadow: var(--shadow-sm);
}

.content-hero .wp-block-columns {
	margin: 0;
	gap: clamp(30px, 6vw, 72px);
}

.content-hero h1 {
	max-width: 820px;
	margin-bottom: 20px;
	font-size: clamp(2.15rem, 4.7vw, 4rem);
	letter-spacing: -0.04em;
	overflow-wrap: normal;
	word-break: normal;
}

.content-hero .hero-lead {
	max-width: 780px;
	color: var(--ink-700);
	font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.content-hero .content-figure {
	margin: 0;
}

.content-section {
	padding: clamp(34px, 5vw, 62px);
	margin-top: 24px;
	border: 1px solid var(--line);
	border-radius: clamp(20px, 3vw, 32px);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	scroll-margin-top: 110px;
}

.content-section.alternate-section,
.faq-directory {
	background: var(--surface-mint);
}

.payment-market-section,
.limits-section {
	border-color: rgba(38, 112, 88, 0.22);
	background: linear-gradient(155deg, #f3fbf7, #fff);
}

.entry-content .content-section > h2:first-child,
.entry-content .content-section > .wp-block-heading:first-child {
	margin-top: 0;
}

.entry-content .content-section > p,
.entry-content .content-section > ul,
.entry-content .content-section > ol,
.entry-content .content-section > .wp-block-details {
	max-width: 940px;
}

.entry-content .content-section p {
	line-height: 1.86;
}

.entry-content .wp-block-columns {
	gap: 18px;
}

.entry-content .quick-card-grid .wp-block-column,
.entry-content .status-strip .wp-block-column,
.entry-content .decision-grid .wp-block-column,
.entry-content .issue-card-grid .wp-block-column,
.entry-content .source-check-grid .wp-block-column,
.entry-content .troubleshooting-grid .wp-block-column,
.entry-content .withdrawal-check-grid .wp-block-column,
.entry-content .category-card-grid .wp-block-column,
.entry-content .pace-card-grid .wp-block-column,
.entry-content .limit-card-grid .wp-block-column,
.entry-content .warning-sign-grid .wp-block-column,
.entry-content .coverage-grid .wp-block-column {
	padding: 23px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.82);
}

.entry-content .quick-card-grid h3,
.entry-content .status-strip h3,
.entry-content .decision-grid h3,
.entry-content .issue-card-grid h3,
.entry-content .source-check-grid h3,
.entry-content .troubleshooting-grid h3,
.entry-content .withdrawal-check-grid h3,
.entry-content .category-card-grid h3,
.entry-content .pace-card-grid h3,
.entry-content .limit-card-grid h3,
.entry-content .warning-sign-grid h3,
.entry-content .coverage-grid h3 {
	margin-top: 0;
}

.entry-content .snapshot-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.entry-content .snapshot-list li {
	padding: 8px 12px;
	border: 1px solid rgba(29, 109, 82, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
}

.entry-content .wp-block-buttons {
	margin-block: 26px;
}

.entry-content .wp-block-button__link {
	min-height: 49px;
	padding: 13px 22px;
	border: 1px solid var(--brand-600);
	border-radius: 999px;
	background: var(--brand-600);
	color: #fff;
	text-decoration: none;
}

.entry-content .is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--brand-700);
}

.entry-content .content-figure {
	margin-block: clamp(26px, 4vw, 44px);
}

.entry-content .content-figure img {
	width: 100%;
	height: auto;
	border: 1px solid rgba(19, 79, 61, 0.1);
	border-radius: clamp(18px, 3vw, 30px);
	background: #eef6f2;
	box-shadow: var(--shadow-sm);
}

.entry-content .wp-block-table {
	max-width: 100%;
	margin-block: 26px;
	overflow-x: auto;
	border-radius: 14px;
}

.entry-content .wp-block-table table {
	min-width: 680px;
	background: #fff;
}

.entry-content .wp-block-table th {
	background: var(--surface-mint);
	color: var(--ink-950);
}

.entry-content .wp-block-details {
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.entry-content .wp-block-details[open] {
	border-color: rgba(26, 118, 86, 0.34);
	box-shadow: var(--shadow-sm);
}

.entry-content .wp-block-details summary {
	color: var(--ink-950);
}

.entry-content .wp-block-details > p:last-child {
	margin-bottom: 0;
}

.entry-content .risk-note {
	padding: 22px 24px;
	border-left: 5px solid var(--amber-500);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: #fff8e8;
	color: var(--ink-900);
}

.entry-content .task-selector-grid {
	flex-wrap: wrap;
}

.entry-content .task-selector-grid .wp-block-column {
	flex-basis: calc(33.333% - 18px);
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	text-align: center;
}

.entry-content .task-selector-grid p {
	margin: 0;
}

.entry-content .task-selector-grid a {
	text-decoration: none;
}

.entry-content .numbered-flow li,
.entry-content .timeline-list li,
.entry-content .payment-market-list li,
.entry-content .pause-plan li {
	padding-left: 8px;
	margin-bottom: 13px;
}

@media (max-width: 782px) {
	.home-entry-content,
	.planned-entry-content {
		width: min(100% - 28px, var(--shell));
	}

	.content-hero,
	.content-section {
		padding: 28px 22px;
	}

	.content-hero .wp-block-columns {
		gap: 22px;
	}

	.entry-content .task-selector-grid .wp-block-column {
		flex-basis: calc(50% - 12px) !important;
	}

	.entry-content .wp-block-table {
		margin-inline: -6px;
	}
}

@media (max-width: 480px) {
	.content-hero,
	.content-section {
		padding: 24px 18px;
		border-radius: 20px;
	}

	.entry-content .task-selector-grid .wp-block-column {
		flex-basis: 100% !important;
	}

	.entry-content .snapshot-list {
		display: grid;
	}
}
