* {
	box-sizing: border-box;
}

body.threedxtl-public-card,
body.threedxtl-landing,
body.threedxtl-login,
body.threedxtl-portal,
body.threedxtl-pet-id,
body.threedxtl-error {
	margin: 0;
	background: #f7f8f8;
	color: #17201f;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

a {
	color: inherit;
}

.sl-card-shell,
.sl-auth-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px 14px;
}

.sl-card,
.sl-auth-card,
.sl-panel {
	width: min(100%, 520px);
	background: #fff;
	border: 1px solid #dfe7e5;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(20, 35, 32, .08);
}

.sl-card {
	padding: 24px;
}

.sl-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.sl-card-hero {
	display: flex;
	gap: 16px;
	align-items: center;
	min-width: 0;
}

.sl-avatar {
	width: 88px;
	height: 88px;
	flex: 0 0 88px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--sl-accent);
}

.sl-company-logo {
	max-width: 174px;
	max-height: 81px;
	width: auto;
	height: auto;
	object-fit: contain;
	flex: 0 1 174px;
	margin-top: 3px;
}

.sl-kicker {
	margin: 0 0 4px;
	color: var(--sl-accent);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sl-card h1,
.sl-auth-card h1,
.sl-portal h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: 0;
}

.sl-title,
.sl-bio {
	color: #52615e;
}

.sl-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 22px 0;
}

.sl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid #cfdad7;
	border-radius: 8px;
	background: #fff;
	color: #17201f;
	text-decoration: none;
	font-weight: 700;
	cursor: pointer;
}

.sl-button.primary {
	background: var(--sl-accent);
	border-color: var(--sl-accent);
	color: #fff;
}

.sl-button.danger {
	background: #dc2626;
	border-color: #dc2626;
	color: #fff;
}

.sl-detail-list,
.sl-social-list,
.sl-link-grid,
.sl-contact-list {
	display: grid;
	gap: 10px;
}

.sl-detail {
	padding: 12px;
	border: 1px solid #e4ebe9;
	border-radius: 8px;
}

.sl-detail span {
	display: block;
	font-size: 12px;
	color: #667572;
}

.sl-social-list,
.sl-link-grid {
	margin-top: 18px;
}

.sl-social-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid #dce6e3;
	border-radius: 8px;
	text-decoration: none;
}

.sl-social-icon {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--sl-accent);
	color: #fff;
}

.sl-social-icon svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.sl-social-link span:last-child {
	display: grid;
	gap: 1px;
}

.sl-social-link strong {
	font-size: 15px;
}

.sl-social-link small {
	color: #667572;
	font-size: 13px;
	overflow-wrap: anywhere;
}

.sl-custom-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid #dce6e3;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
}

.sl-custom-link > span:last-child {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.sl-custom-link strong {
	font-size: 15px;
	overflow-wrap: anywhere;
}

.sl-custom-link small {
	color: #667572;
	font-size: 13px;
	font-weight: 500;
	overflow-wrap: anywhere;
}

.sl-favicon-wrap {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid #dce6e3;
	border-radius: 8px;
	background: #fff;
}

.sl-favicon-wrap img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.sl-exchange {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #e4ebe9;
}

.sl-exchange h2,
.sl-panel h2 {
	margin: 0 0 14px;
	font-size: 20px;
}

.sl-exchange-copy {
	margin: 0 0 14px;
	color: #52615e;
	font-size: 14px;
}

.sl-exchange-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 14px;
}

.sl-exchange form,
.sl-auth-card form,
.sl-editor {
	display: grid;
	gap: 14px;
}

.sl-exchange-fields {
	display: grid;
	gap: 14px;
}

.sl-contact-enhanced .sl-exchange-fields {
	display: none;
}

.sl-contact-enhanced.sl-contact-open .sl-exchange-fields {
	display: grid;
}

.sl-auth-copy {
	color: #52615e;
}

label {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

input,
textarea,
select {
	width: 100%;
	min-height: 42px;
	padding: 10px;
	border: 1px solid #cfdad7;
	border-radius: 8px;
	background: #fff;
	color: #17201f;
	font: inherit;
}

textarea {
	resize: vertical;
}

.sl-url-editor {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	border: 1px solid #cfdad7;
	border-radius: 8px;
	overflow: hidden;
}

.sl-url-editor span {
	padding: 10px;
	background: #f1f5f4;
	color: #52615e;
	font-weight: 600;
}

.sl-url-editor input {
	border: 0;
	border-left: 1px solid #cfdad7;
	border-radius: 0;
}

.sl-social-editor-row,
.sl-link-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.sl-editor-image-preview {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--sl-accent);
}

.sl-logo-preview {
	display: block;
	max-width: 180px;
	max-height: 74px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.sl-hp {
	position: absolute;
	left: -9999px;
}

.sl-notice {
	padding: 12px;
	border-radius: 8px;
	background: #e9f7f4;
	color: #0d4f48;
}

.sl-footer {
	margin-top: 22px;
	color: #72807d;
	font-size: 13px;
	text-align: center;
}

.dark {
	background: #101817;
	color: #eef5f3;
}

.dark .sl-card {
	background: #17211f;
	border-color: #2d3d39;
}

.dark .sl-title,
.dark .sl-bio,
.dark .sl-detail span,
.dark .sl-social-link small,
.dark .sl-exchange-copy,
.dark .sl-auth-copy {
	color: #b6c5c1;
}

.dark .sl-button:not(.primary),
.dark .sl-detail,
.dark .sl-custom-link,
.dark .sl-social-link {
	background: #17211f;
	border-color: #344642;
	color: #eef5f3;
}

.dark .sl-custom-link small {
	color: #b6c5c1;
}

.dark .sl-favicon-wrap {
	background: #eef5f3;
	border-color: #344642;
}

.sl-auth-card {
	padding: 24px;
}

.sl-portal {
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 24px 14px;
}

.sl-portal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.sl-portal-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

.sl-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 18px;
}

.sl-metrics div {
	padding: 14px;
	background: #fff;
	border: 1px solid #dfe7e5;
	border-radius: 8px;
}

.sl-metrics span {
	display: block;
	color: #667572;
	font-size: 13px;
}

.sl-metrics strong {
	font-size: 24px;
}

.sl-editor {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.sl-panel {
	width: 100%;
	padding: 18px;
	box-shadow: none;
}

.sl-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #52615e;
}

.sl-check input {
	width: auto;
	min-height: auto;
}

.sl-contact-list div {
	display: grid;
	padding: 12px;
	border: 1px solid #e4ebe9;
	border-radius: 8px;
}

.sl-contact-list small {
	color: #667572;
}

.sl-pet-shell {
	min-height: 100vh;
	display: grid;
	place-items: start center;
	padding: 16px 10px 28px;
	background: #f4f7f5;
}

.sl-pet-card {
	width: min(100%, 430px);
	overflow: hidden;
	background: #fff;
	border: 1px solid #d7e2df;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(20, 35, 32, .11);
}

.sl-pet-status {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 18px;
	background: #10221f;
	color: #fff;
}

.sl-pet-card.is-lost .sl-pet-status {
	background: #dc2626;
}

.sl-pet-status p,
.sl-pet-status h1 {
	margin: 0;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sl-pet-status p {
	font-size: 14px;
	font-weight: 800;
}

.sl-pet-status h1 {
	margin-top: 4px;
	font-size: 24px;
}

.sl-pet-sponsor-logo {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: clamp(74px, 22vw, 96px);
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 3px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.sl-pet-sponsor-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sl-pet-photo {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #dfe7e5;
}

.sl-pet-name-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	background: #eef2f1;
	color: #101817;
	font-weight: 800;
}

.sl-pet-name-strip span {
	color: #dc2626;
	text-transform: uppercase;
}

.sl-pet-card.is-safe .sl-pet-name-strip span {
	color: #0f766e;
}

.sl-pet-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 14px;
}

.sl-pet-section {
	padding: 14px;
	border-top: 1px solid #e3ebe8;
}

.sl-pet-section h2 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.15;
}

.sl-pet-sponsor-ad {
	padding: 14px;
	border-top: 1px solid #e3ebe8;
	background: #f8faf9;
}

.sl-pet-sponsor-ad p {
	margin: 0 0 8px;
	color: #52615e;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sl-pet-sponsor-ad a,
.sl-pet-sponsor-ad div {
	display: block;
	overflow: hidden;
	background: #0f1716;
	border: 1px solid #d9e4e1;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(20, 35, 32, .13);
}

.sl-pet-sponsor-ad img,
.sl-pet-sponsor-ad video {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 2;
	object-fit: cover;
}

.sl-pet-report p {
	margin: 0 0 12px;
	color: #52615e;
	font-size: 14px;
}

.sl-pet-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: flex-end;
	justify-content: center;
	padding: 0 10px 12px;
	pointer-events: none;
	background: linear-gradient(to top, rgba(10, 17, 16, .22), rgba(10, 17, 16, 0));
}

.sl-pet-modal.is-open {
	display: flex;
}

.sl-pet-modal .sl-pet-report {
	position: relative;
	width: min(100%, 410px);
	max-height: min(70vh, 560px);
	overflow: auto;
	background: #fff;
	border: 0;
	border-radius: 16px;
	pointer-events: auto;
	box-shadow: 0 18px 54px rgba(0, 0, 0, .26);
}

.sl-pet-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid #d7e2df;
	border-radius: 50%;
	background: #fff;
	color: #17201f;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.sl-pet-modal-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
	gap: 8px;
	margin-bottom: 12px;
}

.sl-pet-modal-actions .sl-button {
	min-height: 42px;
	padding: 9px 8px;
	font-size: 13px;
	line-height: 1.1;
}

.sl-pet-report form {
	display: grid;
	gap: 12px;
}

.sl-pet-photo-prompt {
	position: relative;
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border: 2px dashed #16816f;
	border-radius: 8px;
	background: #f4fbf8;
	color: #0d4f48;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
}

.sl-pet-photo-prompt small {
	color: #52615e;
	font-size: 12px;
	font-weight: 700;
}

.sl-pet-photo-prompt input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.sl-pet-photo-preview {
	display: grid;
	gap: 6px;
	margin: -2px 0 0;
}

.sl-pet-photo-preview[hidden] {
	display: none;
}

.sl-pet-photo-preview img {
	width: 100%;
	max-height: 190px;
	object-fit: cover;
	border-radius: 8px;
	background: #e7eeeb;
}

.sl-pet-photo-preview figcaption {
	color: #52615e;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.sl-pet-detail {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 8px;
	align-items: start;
	padding: 6px 0;
	border-bottom: 1px solid #edf2f0;
}

.sl-pet-detail:last-child {
	border-bottom: 0;
}

.sl-pet-detail-icon {
	display: inline-grid;
	place-items: center;
	width: 24px;
	min-height: 22px;
	color: #16816f;
	font-size: 17px;
	line-height: 1;
}

.sl-pet-detail-copy {
	margin: 0;
	color: #17201f;
	font-size: 15px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.sl-pet-detail-label,
.sl-pet-detail-name {
	color: #17201f;
	font-size: 15px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.sl-pet-detail-phone {
	color: #243533;
	font-weight: 500;
	white-space: nowrap;
}

.sl-pet-detail--location .sl-pet-detail-icon {
	color: #0f766e;
}

.sl-pet-detail--alert .sl-pet-detail-icon,
.sl-pet-detail--alert .sl-pet-detail-label,
.sl-pet-detail--alert .sl-pet-detail-name {
	color: #dc2626;
}

.sl-pet-detail--medical .sl-pet-detail-icon {
	color: #16a34a;
}

.sl-pet-detail--behavior .sl-pet-detail-icon {
	color: #15803d;
}

.sl-pet-detail--record .sl-pet-detail-icon {
	color: #2563eb;
}

.sl-pet-record-note {
	margin: 12px 0 0;
	color: #52615e;
	font-size: 13px;
	line-height: 1.4;
}

.sl-pet-reward {
	margin: 10px 0 0;
	padding: 10px;
	border-radius: 8px;
	background: #fef3c7;
	color: #854d0e;
	font-weight: 800;
	text-transform: uppercase;
}

.sl-pet-list {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.sl-pet-list-card {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: #fff;
	border: 1px solid #dfe7e5;
	border-left: 6px solid #16a34a;
	border-radius: 8px;
}

.sl-pet-list-card.is-lost {
	border-left-color: #dc2626;
}

.sl-pet-list-card img {
	width: 72px;
	height: 72px;
	border-radius: 8px;
	object-fit: cover;
	background: #dfe7e5;
}

.sl-pet-list-card h2,
.sl-pet-list-card p {
	margin: 0;
}

.sl-pet-list-card h2 {
	font-size: 20px;
	line-height: 1.1;
}

.sl-pet-list-card p {
	color: #52615e;
	font-weight: 700;
}

.sl-pet-list-card small {
	color: #667572;
}

.sl-pet-list-actions {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.sl-pet-list-actions form {
	margin: 0;
}

.sl-pet-report-history {
	margin-top: 18px;
}

.sl-pet-report-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 12px;
}

.sl-pet-report-card {
	display: grid;
	gap: 10px;
	align-content: start;
	min-width: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid #e4ebe9;
	border-radius: 8px;
}

.sl-pet-report-card header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.sl-pet-report-card header strong {
	color: #071817;
	font-size: 17px;
}

.sl-pet-report-list img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	object-fit: cover;
}

.sl-pet-report-list small {
	color: #667572;
	white-space: nowrap;
}

.sl-pet-report-list a {
	color: #0f766e;
	font-weight: 800;
}

.sl-pet-report-summary {
	margin: 0;
	color: #243533;
	font-size: 14px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.sl-pet-report-action {
	justify-self: start;
}

.sl-pet-report-details {
	min-width: 0;
	color: #344541;
	font-size: 13px;
}

.sl-pet-report-details summary {
	cursor: pointer;
	color: #0f766e;
	font-weight: 800;
}

.sl-pet-report-details dl {
	display: grid;
	gap: 8px;
	margin: 10px 0 0;
}

.sl-pet-report-details div {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding-top: 8px;
	border-top: 1px solid #edf2f0;
}

.sl-pet-report-details dt {
	color: #667572;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.sl-pet-report-details dd {
	margin: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

body.threedxtl-landing {
	background: #f5f8fc;
	color: #071637;
}

.threedxtl-landing .sl-line-icon {
	display: inline-grid;
	place-items: center;
	color: currentColor;
}

.threedxtl-landing .sl-line-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sl-landing-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 86px;
	padding: 16px clamp(18px, 6vw, 96px);
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #e5ebf5;
	backdrop-filter: blur(14px);
}

.sl-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #061434;
}

.sl-brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #eaf3ff;
	color: #0874ff;
	box-shadow: inset 0 0 0 1px #c9ddff;
}

.sl-brand-mark .sl-line-icon {
	font-size: 33px;
}

.sl-brand strong {
	display: block;
	font-size: clamp(26px, 3vw, 38px);
	line-height: .9;
	letter-spacing: 0;
}

.sl-brand strong::first-letter {
	color: #0874ff;
}

.sl-brand small {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .32em;
	color: #0c1a3a;
}

.sl-landing-nav nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 3vw, 42px);
	flex: 1;
}

.sl-landing-nav nav a {
	color: #071637;
	font-weight: 800;
	text-decoration: none;
}

.sl-landing-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid #0874ff;
	border-radius: 8px;
	background: #0874ff;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 16px 35px rgba(8, 116, 255, .24);
}

.sl-landing-button.ghost {
	background: rgba(3, 13, 32, .28);
	border-color: rgba(62, 169, 255, .8);
	color: #fff;
	box-shadow: none;
}

.sl-landing {
	display: block;
	clear: both;
	float: none !important;
	width: 100%;
	max-width: none;
	overflow: hidden;
}

body.threedxtl-landing main.sl-landing {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sl-landing .sl-hero {
	width: 100% !important;
	max-width: none !important;
}

.sl-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: clamp(24px, 5vw, 70px);
	padding: clamp(48px, 8vw, 88px) clamp(18px, 7vw, 112px) 88px;
	background:
		radial-gradient(circle at 95% 48%, rgba(8, 116, 255, .35), transparent 28%),
		linear-gradient(135deg, #020917 0%, #06132d 50%, #021835 100%);
	color: #fff;
}

.sl-hero::after {
	content: "";
	position: absolute;
	inset: auto -10% 12% 42%;
	height: 180px;
	background:
		linear-gradient(100deg, transparent, rgba(13, 128, 255, .2), transparent),
		linear-gradient(96deg, transparent 8%, rgba(12, 133, 255, .8) 48%, transparent 84%);
	transform: rotate(-8deg);
	filter: blur(.2px);
	pointer-events: none;
}

.sl-hero-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.sl-hero h1 {
	margin: 0;
	font-size: clamp(46px, 5.6vw, 78px);
	line-height: 1.05;
	letter-spacing: 0;
}

.sl-hero h1::first-line {
	color: #fff;
}

.sl-hero h1 {
	text-wrap: balance;
}

.sl-hero h1 span,
.sl-hero h1 em {
	display: block;
}

.sl-hero h1 em {
	color: #0874ff;
	font-style: normal;
}

.sl-hero-content > p {
	max-width: 620px;
	margin: 22px 0 32px;
	color: #e7eefb;
	font-size: clamp(17px, 2vw, 21px);
}

.sl-hero-steps {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 34px;
}

.sl-hero-steps span {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	align-items: center;
	min-width: 112px;
}

.sl-hero-steps .sl-line-icon {
	grid-row: span 2;
	font-size: 34px;
	color: #0874ff;
}

.sl-hero-steps strong {
	font-size: 17px;
	text-transform: uppercase;
}

.sl-hero-steps small {
	color: #d3e2fb;
	font-size: 15px;
}

.sl-hero-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.sl-hero-visual {
	position: relative;
	z-index: 2;
	min-height: 530px;
}

.sl-phone-mockup {
	position: absolute;
	left: 4%;
	top: 0;
	width: min(310px, 44vw);
	min-width: 255px;
	aspect-ratio: 9 / 19;
	padding: 34px 18px 18px;
	border: 4px solid #202a37;
	border-radius: 42px;
	background: #020812;
	box-shadow: 0 26px 80px rgba(0, 0, 0, .45), inset 0 0 0 2px #5b6572;
}

.sl-phone-camera {
	position: absolute;
	top: 14px;
	left: 50%;
	width: 78px;
	height: 18px;
	border-radius: 999px;
	background: #000;
	transform: translateX(-50%);
}

.sl-phone-card {
	display: grid;
	justify-items: center;
	height: 100%;
	padding: 24px 18px 18px;
	border-radius: 26px;
	background: linear-gradient(180deg, #031021, #07182c);
	color: #fff;
	text-align: center;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.sl-demo-avatar {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 35%, #f0c9aa 0 22%, transparent 23%),
		radial-gradient(circle at 50% 72%, #ffffff 0 35%, transparent 36%),
		linear-gradient(135deg, #d7e7ff, #fff);
	border: 3px solid rgba(255, 255, 255, .92);
}

.sl-phone-card strong {
	margin-top: 8px;
	font-size: 23px;
}

.sl-phone-card span {
	color: #e7eefb;
}

.sl-phone-card small {
	color: #58a6ff;
	font-size: 14px;
}

.sl-demo-actions {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: 100%;
	margin: 18px 0;
}

.sl-demo-actions b {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0 auto;
	border-radius: 50%;
	background: #0874ff;
	color: #fff;
}

.sl-demo-actions .sl-line-icon {
	font-size: 19px;
}

.sl-phone-card ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: 12px;
}

.sl-phone-card li {
	padding: 9px 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
	color: #f4f8ff;
}

.sl-nfc-card-mockup {
	position: absolute;
	right: 0;
	top: 115px;
	width: min(355px, 50vw);
	min-width: 280px;
	aspect-ratio: 1.58;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .52);
	border-radius: 18px;
	background:
		linear-gradient(100deg, rgba(255, 255, 255, .18), transparent 18% 80%, rgba(255, 255, 255, .12)),
		repeating-linear-gradient(178deg, #25272a 0 2px, #16191d 2px 5px);
	box-shadow: -12px 28px 78px rgba(0, 0, 0, .48);
	transform: rotate(-4deg);
}

.sl-nfc-wave {
	position: absolute;
	right: 22px;
	top: 22px;
	color: #fff;
	font-size: 34px;
}

.sl-card-logo {
	position: absolute;
	left: 28px;
	top: 92px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 38px;
	font-style: italic;
}

.sl-card-logo .sl-brand-mark {
	width: 46px;
	height: 46px;
	background: rgba(8, 116, 255, .15);
	box-shadow: none;
}

.sl-demo-qr {
	position: absolute;
	left: 74px;
	bottom: 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
	width: 92px;
	height: 92px;
	padding: 8px;
	background: #fff;
	border-radius: 7px;
	box-shadow: 0 0 28px rgba(8, 116, 255, .95);
}

.sl-demo-qr i {
	background: #08101e;
}

.sl-demo-qr i:nth-child(2),
.sl-demo-qr i:nth-child(7),
.sl-demo-qr i:nth-child(9),
.sl-demo-qr i:nth-child(12),
.sl-demo-qr i:nth-child(14) {
	background: transparent;
}

.sl-proof-strip {
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	width: min(100% - 36px, 1320px);
	margin: -48px auto 0;
	padding: 22px 28px;
	background: #fff;
	border: 1px solid #d7e2f0;
	border-radius: 18px;
	box-shadow: 0 20px 45px rgba(6, 22, 52, .12);
}

.sl-proof-strip article {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 22px;
	border-right: 1px solid #d7e2f0;
}

.sl-proof-strip article:last-child {
	border-right: 0;
}

.sl-proof-strip .sl-line-icon {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #e7f2ff;
	color: #0874ff;
	font-size: 31px;
}

.sl-proof-strip h2,
.sl-feature-grid h2,
.sl-process h2 {
	margin: 0 0 6px;
	font-size: 18px;
}

.sl-proof-strip p,
.sl-feature-grid p,
.sl-process p,
.sl-split-section p,
.sl-pricing p,
.sl-faq p,
.sl-final-cta p {
	margin: 0;
	color: #42506b;
	font-size: 15px;
}

.sl-section {
	width: min(100% - 36px, 1240px);
	margin: 0 auto;
	padding: 62px 0 20px;
}

.sl-section-kicker {
	margin: 0 0 28px;
	color: #071637;
	font-size: clamp(29px, 3.5vw, 42px);
	font-weight: 900;
	text-align: center;
}

.sl-section-kicker::after {
	content: " ";
}

.sl-section-kicker {
	text-wrap: balance;
}

.sl-feature-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	text-align: center;
}

.sl-feature-grid article {
	padding: 10px 18px;
	border-right: 1px solid #d7e2f0;
}

.sl-feature-grid article:last-child {
	border-right: 0;
}

.sl-feature-grid .sl-line-icon {
	margin-bottom: 12px;
	color: #0874ff;
	font-size: 52px;
}

.sl-split-section {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 34px;
	align-items: center;
}

.sl-split-section .sl-section-kicker,
.sl-pricing .sl-section-kicker,
.sl-faq .sl-section-kicker {
	text-align: left;
	margin-bottom: 10px;
}

.sl-split-section h2,
.sl-pricing h2,
.sl-final-cta h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.1;
	letter-spacing: 0;
}

.sl-use-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.sl-use-list span {
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #d7e2f0;
	border-radius: 8px;
	font-weight: 800;
	box-shadow: 0 10px 28px rgba(6, 22, 52, .06);
}

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

.sl-process article,
.sl-faq details {
	background: #fff;
	border: 1px solid #d7e2f0;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 12px 30px rgba(6, 22, 52, .06);
}

.sl-process strong {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: #0874ff;
	color: #fff;
}

.sl-pricing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 34px;
	margin-top: 44px;
	background: #061025;
	border-radius: 18px;
	color: #fff;
	box-shadow: 0 22px 50px rgba(6, 22, 52, .18);
}

.sl-pricing p,
.sl-final-cta p {
	color: #d8e6fb;
}

.sl-pricing .sl-section-kicker {
	color: #58a6ff;
}

.sl-faq {
	display: grid;
	gap: 12px;
	padding-bottom: 48px;
}

.sl-faq summary {
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
}

.sl-faq details p {
	padding-top: 12px;
}

.sl-final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: min(100% - 36px, 1240px);
	margin: 0 auto 44px;
	padding: 28px 34px;
	background: linear-gradient(135deg, #041026, #061a3d);
	border-radius: 18px;
	color: #fff;
	box-shadow: 0 22px 50px rgba(6, 22, 52, .18);
}

.sl-final-cta > div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 18px;
	align-items: center;
}

.sl-final-cta .sl-brand-mark {
	grid-row: span 2;
}

.sl-landing-footer {
	clear: both;
	padding: 24px;
	color: #42506b;
	text-align: center;
}

@media (max-width: 1100px) {
	.sl-landing-nav {
		flex-wrap: wrap;
	}

	.sl-landing-nav nav {
		order: 3;
		flex-basis: 100%;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.sl-hero {
		grid-template-columns: 1fr;
		padding-bottom: 54px;
	}

	.sl-hero-visual {
		min-height: 460px;
	}

	.sl-phone-mockup {
		left: 6%;
	}

	.sl-nfc-card-mockup {
		right: 6%;
	}

	.sl-proof-strip,
	.sl-feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-proof-strip article:nth-child(2),
	.sl-feature-grid article:nth-child(2),
	.sl-feature-grid article:nth-child(4) {
		border-right: 0;
	}

	.sl-feature-grid article:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.sl-landing-nav {
		position: static;
		min-height: auto;
		padding: 14px 18px;
	}

	.sl-brand-mark {
		width: 42px;
		height: 42px;
	}

	.sl-brand strong {
		font-size: 25px;
	}

	.sl-brand small {
		font-size: 10px;
		letter-spacing: .22em;
	}

	.sl-landing-nav > .sl-landing-button {
		display: none;
	}

	.sl-landing-nav nav {
		gap: 18px;
		font-size: 14px;
	}

	.sl-hero {
		padding: 42px 18px 34px;
		gap: 32px;
	}

	.sl-hero h1 {
		font-size: 44px;
	}

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

	.sl-hero-steps {
		gap: 14px;
	}

	.sl-hero-steps span {
		min-width: 0;
	}

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

	.sl-phone-mockup {
		left: 0;
		width: 255px;
		min-width: 0;
	}

	.sl-nfc-card-mockup {
		right: -16px;
		top: 190px;
		width: 280px;
		min-width: 0;
	}

	.sl-card-logo {
		top: 82px;
		font-size: 30px;
	}

	.sl-proof-strip,
	.sl-feature-grid,
	.sl-split-section,
	.sl-process,
	.sl-use-list {
		grid-template-columns: 1fr;
	}

	.sl-proof-strip {
		margin-top: 0;
		padding: 10px;
		border-radius: 0;
		width: 100%;
	}

	.sl-proof-strip article,
	.sl-feature-grid article {
		border-right: 0;
		border-bottom: 1px solid #d7e2f0;
		padding: 16px;
	}

	.sl-proof-strip article:last-child,
	.sl-feature-grid article:last-child {
		border-bottom: 0;
	}

	.sl-section {
		padding-top: 44px;
	}

	.sl-section-kicker {
		font-size: 31px;
		text-align: left;
	}

	.sl-pricing,
	.sl-final-cta {
		align-items: stretch;
		flex-direction: column;
		padding: 24px;
	}

	.sl-final-cta > div {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.sl-final-cta .sl-brand-mark {
		grid-row: auto;
	}

	.sl-card h1,
	.sl-auth-card h1,
	.sl-portal h1 {
		font-size: 25px;
	}

	.sl-card-header {
		display: grid;
		gap: 14px;
	}

	.sl-card-hero {
		align-items: flex-start;
	}

	.sl-company-logo {
		max-width: 222px;
		max-height: 87px;
	}

	.sl-actions,
	.sl-editor,
	.sl-metrics,
	.sl-link-row,
	.sl-social-editor-row,
	.sl-url-editor {
		grid-template-columns: 1fr;
	}

	.sl-url-editor input {
		border-left: 0;
		border-top: 1px solid #cfdad7;
	}

	.sl-portal-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.sl-portal-actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.sl-card {
		padding: 18px;
	}

	.sl-avatar {
		width: 76px;
		height: 76px;
		flex-basis: 76px;
	}

	.sl-pet-actions,
	.sl-pet-list-card,
	.sl-pet-report-list {
		grid-template-columns: 1fr;
	}

	.sl-pet-list-card {
		align-items: start;
	}

	.sl-pet-list-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		justify-content: stretch;
	}

	.sl-pet-list-actions form,
	.sl-pet-list-actions button {
		width: 100%;
	}
}
