:root {
	--ink: #07130f;
	--muted: #64716c;
	--green: #163c4b;
	--green-dark: #08704d;
	--green-light: #eaf7f1;
	--line: #e2e9e5;
	--surface: #f6f9f7;
	--white: #ffffff;
	--navy: #071812;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

.container {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header {
	position: relative;
	z-index: 20;
	height: 82px;
	background: rgba(255, 255, 255, .92);
	border-bottom: 1px solid rgba(226, 233, 229, .8);
	backdrop-filter: blur(18px);
}

.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
}

.brand-mark {
	width: 37px;
	height: 37px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: var(--green);
	color: white;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.05em;
}

.brand-mark img {
	width: 58%;
	height: 58%;
	object-fit: contain;
	display: block;
}

.brand-mark.small {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	font-size: 16px;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-copy strong {
	font-size: 14px;
}

.brand-copy small {
	margin-top: 4px;
	color: #7b8782;
	font-size: 11px;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
	margin-right: 34px;
}

.desktop-nav a {
	color: #4d5a55;
	font-size: 13px;
	font-weight: 550;
	text-decoration: none;
}

.desktop-nav a:hover {
	color: var(--green);
}

.header-login {
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 9px;
	color: #26332e;
	font-size: 12px;
	font-weight: 650;
	text-decoration: none;
}

.header-login:hover {
	border-color: #bdcbc4;
	background: var(--surface);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 100px 0 110px;
	background:
		radial-gradient(circle at 75% 45%, rgba(18, 172, 116, .10), transparent 28%),
		linear-gradient(180deg, #fbfdfc 0%, #fff 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .3;
	background-image: linear-gradient(#e9efec 1px, transparent 1px), linear-gradient(90deg, #e9efec 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(to right, transparent 5%, black 65%, transparent);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	align-items: center;
	gap: 75px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--green);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 18px;
	height: 1px;
	background: currentColor;
}

.eyebrow.light {
	color: #77d8b4;
}

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

h1 {
	max-width: 650px;
	margin-bottom: 25px;
	font-size: clamp(48px, 5.5vw, 75px);
	line-height: .98;
	letter-spacing: -.055em;
	font-weight: 710;
}

.lead {
	max-width: 610px;
	margin-bottom: 32px;
	color: #596762;
	font-size: 18px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 11px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: .18s ease;
}

.button.primary {
	background: var(--green);
	color: #fff;
	box-shadow: 0 8px 20px rgba(12, 143, 98, .18);
}

.button.primary:hover {
	background: var(--green-dark);
	transform: translateY(-1px);
}

.button.secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, .7);
	color: #26332e;
}

.button.secondary:hover {
	background: white;
	border-color: #c7d2cd;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 34px;
	color: #6d7974;
	font-size: 11px;
}

.trust-row span {
	display: flex;
	align-items: center;
	gap: 7px;
}

.trust-row i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #31b881;
	box-shadow: 0 0 0 4px rgba(49, 184, 129, .09);
}

.hero-visual {
	position: relative;
	min-height: 500px;
	display: grid;
	place-items: center;
}

.visual-glow {
	position: absolute;
	width: 390px;
	height: 390px;
	border-radius: 50%;
	background: rgba(33, 191, 134, .11);
	filter: blur(55px);
}

.auth-window {
	position: relative;
	z-index: 2;
	width: min(100%, 430px);
	overflow: hidden;
	border: 1px solid rgba(204, 216, 210, .9);
	border-radius: 20px;
	background: rgba(255, 255, 255, .93);
	box-shadow: 0 35px 80px rgba(18, 53, 40, .13), 0 3px 10px rgba(18, 53, 40, .05);
	backdrop-filter: blur(15px);
}

.window-top {
	height: 48px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border-bottom: 1px solid #edf1ef;
}

.window-dots {
	display: flex;
	gap: 5px;
}

.window-dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d8dfdc;
}

.secure-address {
	margin: auto;
	padding: 6px 18px;
	border-radius: 7px;
	background: #f4f7f5;
	color: #8a9590;
	font-size: 9px;
}

.lock {
	display: inline-block;
	width: 6px;
	height: 7px;
	margin-right: 4px;
	border: 1px solid #9ba59f;
	border-radius: 1px;
}

.auth-content {
	padding: 46px 42px 37px;
	text-align: center;
}

.auth-icon {
	width: 57px;
	height: 57px;
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
	border-radius: 16px;
	background: var(--green-light);
	color: var(--green);
}

.auth-icon svg {
	width: 28px;
	height: 28px;
}

.auth-label {
	display: block;
	margin-bottom: 9px;
	color: #82908a;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .13em;
}

.auth-content h2 {
	margin-bottom: 10px;
	font-size: 24px;
	letter-spacing: -.035em;
}

.auth-content p {
	max-width: 290px;
	margin: 0 auto 25px;
	color: #77837e;
	font-size: 12px;
	line-height: 1.6;
}

.mock-button {
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 9px;
	background: #132b22;
	color: white;
	font-size: 12px;
	font-weight: 650;
}

.mock-button img {
	width: 27px;
	height: 27px;
	object-fit: contain;
	display: block;
}

.auth-status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 18px;
	color: #97a19d;
	font-size: 9px;
}

.auth-status span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #31b881;
}

.floating-card {
	position: absolute;
	z-index: 3;
	border: 1px solid #e3eae6;
	border-radius: 12px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 16px 40px rgba(18, 53, 40, .10);
}

.card-api {
	right: -10px;
	bottom: 67px;
	width: 128px;
	padding: 13px 14px;
}

.card-api span,
.card-status span {
	display: block;
	color: #8c9792;
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.card-api strong,
.card-status strong {
	display: block;
	margin-top: 3px;
	font-size: 11px;
}

.card-api i {
	position: absolute;
	right: 13px;
	top: 18px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #25b77d;
}

.card-status {
	left: -20px;
	top: 90px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 15px;
}

.card-status > i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25b77d;
	box-shadow: 0 0 0 5px #e7f7f0;
}

.section {
	padding: 105px 0;
}

.section-intro {
	max-width: 650px;
	margin-bottom: 50px;
}

.section-intro h2,
.process-copy h2,
.developer h2,
.partner-box h2 {
	margin-bottom: 17px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
	letter-spacing: -.045em;
}

.section-intro p,
.process-copy p,
.partner-box p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

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

.service-card {
	min-height: 260px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: white;
	transition: .2s ease;
}

.service-card:hover {
	transform: translateY(-3px);
	border-color: #c9d8d1;
	box-shadow: 0 18px 45px rgba(20, 55, 42, .06);
}

.service-icon {
	width: 45px;
	height: 45px;
	display: grid;
	place-items: center;
	margin-bottom: 43px;
	border-radius: 12px;
	background: var(--green-light);
	color: var(--green);
}

.service-icon svg {
	width: 23px;
	height: 23px;
}

.service-card h3 {
	margin-bottom: 12px;
	font-size: 18px;
	letter-spacing: -.025em;
}

.service-card p {
	margin: 0;
	color: #69766f;
	font-size: 13px;
	line-height: 1.7;
}

.process {
	background: var(--surface);
	border-top: 1px solid #edf1ef;
	border-bottom: 1px solid #edf1ef;
}

.process-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 100px;
	align-items: start;
}

.process-copy {
	position: sticky;
	top: 40px;
}

.text-link {
	display: inline-flex;
	gap: 9px;
	margin-top: 12px;
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.steps {
	display: grid;
}

.step {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 20px;
	padding: 25px 0;
	border-bottom: 1px solid #dfe7e3;
}

.step:first-child {
	padding-top: 0;
}

.step > span {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid #d5e0db;
	border-radius: 11px;
	background: white;
	color: var(--green);
	font-size: 10px;
	font-weight: 800;
}

.step h3 {
	margin: 2px 0 7px;
	font-size: 16px;
}

.step p {
	margin: 0;
	color: #6b7772;
	font-size: 12px;
	line-height: 1.6;
}

.developer {
	background: var(--navy);
	color: white;
}

.developer-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 90px;
}

.developer h2 {
	max-width: 520px;
}

.developer p {
	max-width: 540px;
	margin: 0;
	color: #a6b8b1;
	font-size: 14px;
	line-height: 1.75;
}

.code-window {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 15px;
	background: #0b2119;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

.code-top {
	height: 42px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.code-top span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #40564e;
}

.code-top small {
	margin-left: auto;
	color: #71867e;
	font-size: 9px;
}

pre {
	margin: 0;
	padding: 27px;
	overflow: auto;
	color: #d1ddd8;
	font: 11px/1.85 "SFMono-Regular", Consolas, monospace;
}

code span {
	color: #6fd3ad;
}

code .success {
	color: #61d9a9;
}

.partner-section {
	padding: 80px 0;
}

.partner-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 45px 50px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: linear-gradient(135deg, #f7fbf9, #fff);
}

.partner-box h2 {
	margin-bottom: 10px;
	font-size: 31px;
}

.partner-box p {
	max-width: 650px;
	margin-bottom: 0;
	font-size: 13px;
}

.partner-box .eyebrow {
	margin-bottom: 12px;
}

.partner-box .button {
	flex: 0 0 auto;
}

footer {
	padding: 40px 0 25px;
	border-top: 1px solid var(--line);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
}

.footer-brand .brand-mark img {
	margin-top: 6px;
}

.footer-brand strong,
.footer-brand span {
	display: block;
}

.footer-brand strong {
	font-size: 12px;
}

.footer-brand div span {
	margin-top: 4px;
	color: #8a9590;
	font-size: 9px;
}

.footer-links {
	display: flex;
	gap: 24px;
}

.footer-links a {
	color: #69756f;
	font-size: 10px;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--green);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #edf0ee;
	color: #9aa39f;
	font-size: 9px;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.desktop-nav {
		display: none;
	}

	.header-login {
		margin-left: auto;
	}

	.hero {
		padding-top: 75px;
	}

	.hero-grid,
	.process-grid,
	.developer-box {
		grid-template-columns: 1fr;
		gap: 55px;
	}

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

	.hero-visual {
		min-height: 450px;
	}

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

	.service-card {
		min-height: auto;
	}

	.service-icon {
		margin-bottom: 25px;
	}

	.process-copy {
		position: static;
	}

	.partner-box {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.container {
		width: min(100% - 30px, 1180px);
	}

	.site-header {
		height: 70px;
	}

	.brand-copy small {
		display: none;
	}

	.hero {
		padding: 65px 0 80px;
	}

	h1 {
		font-size: 48px;
	}

	.lead {
		font-size: 16px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.trust-row {
		gap: 14px;
	}

	.hero-visual {
		min-height: 390px;
	}

	.auth-content {
		padding: 38px 22px 30px;
	}

	.card-status {
		left: -5px;
		top: 55px;
	}

	.card-api {
		right: -4px;
		bottom: 25px;
	}

	.section {
		padding: 78px 0;
	}

	.section-intro {
		margin-bottom: 35px;
	}

	.service-card {
		padding: 24px;
	}

	.developer-box {
		gap: 40px;
	}

	.partner-section {
		padding: 50px 0;
	}

	.partner-box {
		padding: 30px 25px;
	}

	.partner-box .button {
		width: 100%;
	}

	.footer-inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-links {
		flex-wrap: wrap;
		gap: 15px;
	}
}


.header-cta,
.header-back {
	margin-left: 28px;
	padding: 10px 15px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.header-cta {
	background: var(--green);
	color: #fff;
}

.header-cta:hover {
	background: var(--green-dark);
}

.header-back {
	margin-left: auto;
	border: 1px solid var(--line);
	color: #53605b;
}

.apply-cta {
	padding: 80px 0;
}

.apply-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	padding: 48px 52px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: linear-gradient(135deg, #f5fbf8 0%, #fff 75%);
}

.apply-cta-box h2 {
	margin-bottom: 10px;
	font-size: 34px;
	letter-spacing: -.04em;
}

.apply-cta-box p {
	max-width: 650px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.application-page {
	background: #f4f7f5;
}

.application-main {
	min-height: calc(100vh - 82px);
	padding: 70px 0 100px;
	background:
		radial-gradient(circle at 50% 0, rgba(12, 143, 98, .07), transparent 35%),
		#f4f7f5;
}

.application-container {
	max-width: 900px;
}

.application-intro {
	max-width: 700px;
	margin-bottom: 36px;
}

.application-intro h1 {
	margin-bottom: 17px;
	font-size: clamp(40px, 5vw, 58px);
}

.application-intro p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.application-progress {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: rgba(255, 255, 255, .8);
}

.progress-item {
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: .42;
}

.progress-item.active,
.progress-item.done {
	opacity: 1;
}

.progress-item > span {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border: 1px solid #d5dfda;
	border-radius: 50%;
	background: #fff;
	color: #718079;
	font-size: 10px;
	font-weight: 800;
}

.progress-item.active > span,
.progress-item.done > span {
	border-color: var(--green);
	background: var(--green);
	color: #fff;
}

.progress-item strong,
.progress-item small {
	display: block;
}

.progress-item strong {
	font-size: 11px;
}

.progress-item small {
	margin-top: 3px;
	color: #85908b;
	font-size: 9px;
}

.progress-line {
	flex: 1;
	height: 1px;
	margin: 0 18px;
	background: #dce4e0;
}

.application-card {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(21, 50, 39, .07);
}

.identify-card {
	display: grid;
	grid-template-columns: 1fr 330px;
	gap: 55px;
	align-items: center;
}

.step-label {
	display: block;
	margin-bottom: 10px;
	color: var(--green);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.application-card h2 {
	margin-bottom: 12px;
	font-size: 26px;
	letter-spacing: -.035em;
}

.application-card-copy > p,
.form-section > p {
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.privacy-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #7b8882;
	font-size: 10px;
	line-height: 1.5;
}

.privacy-note span {
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	margin-top: 4px;
	border-radius: 50%;
	background: #25b77d;
}

.application-bankid {
	padding: 24px;
	border-radius: 15px;
	background: #f5f8f6;
	text-align: center;
}

.customer-bankid-button {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	border: 0;
	border-radius: 10px;
	background: #08241b;
	color: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(8, 36, 27, .15);
}

.customer-bankid-button:hover {
	background: #0b3024;
}

.customer-bankid-button img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.application-bankid small {
	display: block;
	margin-top: 12px;
	color: #8a9691;
	font-size: 9px;
	line-height: 1.5;
}

.application-alert {
	margin-bottom: 20px;
	padding: 13px 15px;
	border: 1px solid #f0c8c4;
	border-radius: 10px;
	background: #fff5f4;
	color: #a1372e;
	font-size: 12px;
	line-height: 1.5;
}

.verified-person {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: -5px -5px 30px;
	padding: 13px 15px;
	border-radius: 12px;
	background: #f1f9f5;
}

.verified-check {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.verified-person span,
.verified-person strong {
	display: block;
}

.verified-person span {
	color: #6f7e77;
	font-size: 9px;
}

.verified-person strong {
	margin-top: 3px;
	font-size: 12px;
}

.company-options {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.company-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 68px;
	padding: 13px 15px;
	border: 1px solid #dce4e0;
	border-radius: 12px;
	cursor: pointer;
	transition: .15s ease;
}

.company-option:hover {
	border-color: #b8cec4;
}

.company-option:has(input:checked) {
	border-color: var(--green);
	background: #f5fbf8;
	box-shadow: 0 0 0 3px rgba(12, 143, 98, .07);
}

.company-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.company-radio {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border: 1px solid #b9c5bf;
	border-radius: 50%;
	background: #fff;
}

.company-option input:checked + .company-radio {
	border: 5px solid var(--green);
}

.company-info {
	min-width: 0;
	flex: 1;
}

.company-info strong,
.company-info small {
	display: block;
}

.company-info strong {
	font-size: 13px;
}

.company-info small {
	margin-top: 5px;
	color: #7a8781;
	font-size: 10px;
}

.verified-pill {
	padding: 6px 8px;
	border-radius: 99px;
	background: #e9f7f0;
	color: #08704d;
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.form-divider {
	height: 1px;
	margin: 30px 0;
	background: #e8edea;
}

.form-section h3 {
	margin-bottom: 17px;
	font-size: 16px;
}

.application-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.application-form-grid label {
	display: block;
}

.application-form-grid label.full {
	grid-column: 1 / -1;
}

.application-form-grid label > span {
	display: block;
	margin-bottom: 7px;
	color: #52605a;
	font-size: 10px;
	font-weight: 700;
}

.application-form-grid input,
.application-form-grid textarea {
	width: 100%;
	border: 1px solid #d3dcd8;
	border-radius: 9px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 12px;
}

.application-form-grid input {
	height: 44px;
	padding: 0 12px;
}

.application-form-grid textarea {
	padding: 12px;
	resize: vertical;
	line-height: 1.55;
}

.application-form-grid input:focus,
.application-form-grid textarea:focus {
	outline: 0;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(12, 143, 98, .08);
}

.authority-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 20px;
	color: #63716b;
	font-size: 10px;
	line-height: 1.55;
	cursor: pointer;
}

.authority-check input {
	margin-top: 2px;
	accent-color: var(--green);
}

.application-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 26px;
}

.no-companies {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #e2e8e5;
	border-radius: 12px;
	background: #f8faf9;
}

.no-companies strong {
	font-size: 13px;
}

.no-companies p {
	margin: 8px 0 16px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.6;
}

.completion-card {
	max-width: 650px;
	margin: 0 auto;
	padding: 50px 40px;
	text-align: center;
}

.completion-icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	font-size: 23px;
}

.completion-card .eyebrow {
	margin-bottom: 13px;
}

.completion-card .eyebrow::before {
	display: none;
}

.completion-card p {
	max-width: 500px;
	margin: 0 auto 20px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.application-number {
	display: inline-block;
	margin-bottom: 25px;
	padding: 10px 14px;
	border-radius: 8px;
	background: #f2f6f4;
	font: 700 12px "SFMono-Regular", Consolas, monospace;
	letter-spacing: .04em;
}

@media (max-width: 800px) {
	.identify-card {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.apply-cta-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.application-progress {
		overflow-x: auto;
	}

	.progress-item div {
		display: none;
	}
}

@media (max-width: 600px) {
	.header-cta {
		margin-left: auto;
	}

	.application-main {
		padding: 45px 0 70px;
	}

	.application-card {
		padding: 24px 20px;
	}

	.application-form-grid {
		grid-template-columns: 1fr;
	}

	.application-form-grid label.full {
		grid-column: auto;
	}

	.application-progress {
		padding: 14px;
	}

	.progress-line {
		margin: 0 10px;
	}

	.company-option {
		align-items: flex-start;
	}

	.verified-pill {
		display: none;
	}

	.apply-cta {
		padding: 55px 0;
	}

	.apply-cta-box {
		padding: 30px 25px;
	}

	.apply-cta-box .button {
		width: 100%;
	}
}


.other-company-wrap {
	margin-top: 18px;
}

.other-company-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	color: #9aa49f;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.other-company-divider::before,
.other-company-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5ebe8;
}

.other-company-divider span {
	padding: 0 12px;
}

.other-company-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 17px;
	border: 1px dashed #c7d4ce;
	border-radius: 12px;
	background: #fbfcfb;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
}

.other-company-trigger:hover {
	border-color: var(--green);
	background: #f6fbf8;
}

.other-company-plus {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 9px;
	background: #e9f7f0;
	color: var(--green);
	font-size: 20px;
}

.other-company-trigger strong,
.other-company-trigger small {
	display: block;
}

.other-company-trigger strong {
	font-size: 12px;
}

.other-company-trigger small {
	margin-top: 4px;
	color: #7a8781;
	font-size: 9px;
	line-height: 1.45;
}

.other-company-panel {
	padding: 22px;
	border: 1px solid #cfe0d8;
	border-radius: 14px;
	background: #f8fbf9;
}

.other-company-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.other-company-heading h3 {
	margin: 0 0 6px;
	font-size: 15px;
}

.other-company-heading p {
	max-width: 590px;
	margin: 0;
	color: #738079;
	font-size: 10px;
	line-height: 1.55;
}

.other-company-close {
	padding: 0;
	border: 0;
	background: transparent;
	color: #718079;
	font: inherit;
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}

.org-search-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 10px;
}

.org-search-row label > span,
.other-company-details label > span {
	display: block;
	margin-bottom: 7px;
	color: #52605a;
	font-size: 10px;
	font-weight: 700;
}

.org-search-row input,
.other-company-details input,
.other-company-details textarea {
	width: 100%;
	border: 1px solid #d3dcd8;
	border-radius: 9px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 12px;
}

.org-search-row input,
.other-company-details input {
	height: 44px;
	padding: 0 12px;
}

.other-company-details textarea {
	padding: 12px;
	resize: vertical;
	line-height: 1.55;
}

.org-search-button {
	height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 9px;
	background: #102b21;
	color: #fff;
	font: inherit;
	font-size: 10px;
	font-weight: 750;
	cursor: pointer;
}

.org-search-status {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 10px;
	line-height: 1.45;
}

.org-search-status.success {
	background: #eaf7f1;
	color: #08704d;
}

.org-search-status.error {
	background: #fff0ee;
	color: #a1372e;
}

.other-company-details {
	display: grid;
	gap: 15px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #dfe8e3;
}

.manual-verification-note {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 12px;
	border-radius: 9px;
	background: #fff;
	color: #69766f;
	font-size: 9px;
	line-height: 1.5;
}

.manual-verification-note > span {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #e9f7f0;
	color: var(--green);
	font-weight: 800;
}

.manual-verification-note p {
	margin: 1px 0 0;
}

@media (max-width: 600px) {
	.org-search-row {
		grid-template-columns: 1fr;
	}

	.org-search-button {
		width: 100%;
	}

	.other-company-heading {
		flex-direction: column;
		gap: 10px;
	}
}

.org-search-status.loading { background:#f1f4f2; color:#617069; }
.org-search-button:disabled { opacity:.55; cursor:wait; }
.company-lookup-result { padding:15px 16px; border:1px solid #d8e5df; border-radius:10px; background:#fff; }
.company-lookup-result > span,.company-lookup-result > strong,.company-lookup-result > small { display:block; }
.company-lookup-result > span { margin-bottom:5px; color:#7c8983; font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.company-lookup-result > strong { font-size:14px; letter-spacing:-.015em; }
.company-lookup-result > small { margin-top:5px; color:#7a8781; font-size:10px; }
.role-select-label { display:block; }
.role-select-label > span { display:block; margin-bottom:7px; color:#52605a; font-size:10px; font-weight:700; }
.role-select-wrap { position:relative; }
.role-select-wrap::after { content:""; position:absolute; right:15px; top:50%; width:7px; height:7px; border-right:1.5px solid #718079; border-bottom:1.5px solid #718079; transform:translateY(-70%) rotate(45deg); pointer-events:none; }
.role-select-wrap select { width:100%; height:46px; padding:0 42px 0 13px; border:1px solid #d3dcd8; border-radius:9px; background:#fff; color:var(--ink); font:inherit; font-size:12px; appearance:none; cursor:pointer; }
.role-select-wrap select:focus { outline:0; border-color:var(--green); box-shadow:0 0 0 3px rgba(12,143,98,.08); }


[hidden] {
	display: none !important;
}

.company-lookup-result {
	width: 100%;
	position: relative;
	padding: 15px 46px 15px 16px;
	border: 1px solid #d8e5df;
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.company-lookup-result:hover,
.company-lookup-result.selected {
	border-color: var(--green);
	background: #f6fbf8;
	box-shadow: 0 0 0 3px rgba(12,143,98,.07);
}

.company-lookup-result::after {
	content: "→";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--green);
	font-size: 16px;
}

.company-lookup-result > em {
	display: block;
	margin-top: 8px;
	color: var(--green);
	font-size: 9px;
	font-style: normal;
	font-weight: 750;
}

.company-option-highlight {
	animation: companyOptionHighlight 1.8s ease;
}

@keyframes companyOptionHighlight {
	0%, 100% { box-shadow: 0 0 0 0 rgba(12,143,98,0); }
	25%, 70% { box-shadow: 0 0 0 4px rgba(12,143,98,.16); border-color: var(--green); }
}


.company-lookup-result {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 15px 16px;
	border: 1px solid #d8e5df;
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.company-lookup-result:hover,
.company-lookup-result:has(input:checked) {
	border-color: var(--green);
	background: #f6fbf8;
	box-shadow: 0 0 0 3px rgba(12,143,98,.07);
}

.company-lookup-result > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.company-lookup-result .company-info {
	flex: 1;
	min-width: 0;
}

.company-lookup-result .company-info strong,
.company-lookup-result .company-info small {
	display: block;
}

.company-lookup-result .company-info strong {
	font-size: 12px;
}

.company-lookup-result .company-info small {
	margin-top: 4px;
	color: #7a8781;
	font-size: 9px;
}

.company-lookup-result::after,
.company-lookup-result > em {
	display: none !important;
}


.company-lookup-result.company-option {
	display: flex;
	width: 100%;
	position: relative;
	padding: 17px 16px;
	border: 1px solid #d6dfdb;
	border-radius: 12px;
	background: #fff;
	box-shadow: none;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.company-lookup-result.company-option:hover {
	border-color: #b8c9c1;
	background: #fff;
	box-shadow: none;
}

.company-lookup-result.company-option:has(input:checked) {
	border-color: #174e5e;
	background: #f6fbf9;
	box-shadow: inset 0 0 0 1px #174e5e;
}

.company-lookup-result.company-option::after {
	display: none !important;
}

.company-lookup-result.company-option .company-info strong {
	font-size: inherit;
}

.company-lookup-result.company-option .company-info small {
	margin-top: inherit;
	font-size: inherit;
}


.company-lookup-options {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.company-lookup-options .company-option {
	width: 100%;
}

.company-lookup-options.company-lookup-result,
.company-lookup-options .company-lookup-result {
	all: unset;
}

.company-lookup-options .company-option::after {
	display: none;
}

.application-validation-error{margin:0 0 20px;padding:14px 16px;border:1px solid #efc7c1;border-radius:10px;background:#fff7f6;color:#913a32;font-size:10px;line-height:1.5}
.application-validation-error strong,.application-validation-error span{display:block}
.application-validation-error strong{margin-bottom:3px;color:#792b25;font-size:11px}
.application-actions .button.primary[type="submit"]{border:0!important;outline:0;box-shadow:none;cursor:pointer;appearance:none;-webkit-appearance:none}
.application-actions .button.primary[type="submit"]:hover,.application-actions .button.primary[type="submit"]:focus{border:0!important;cursor:pointer}
