﻿:root {
	--tf-green: #0f8f78;
	--tf-green-dark: #075f56;
	--tf-blue: #2563eb;
	--tf-cyan: #1eead0;
	--tf-ink: #07111f;
	--tf-panel: #111827;
	--tf-muted: #94a3b8;
	--tf-line: rgba(255, 255, 255, 0.12);
	--tf-white: #ffffff;
	--tf-soft: #e8fff9;
	--tf-gradient: linear-gradient(135deg, #075f56 0%, #0f8f78 48%, #2563eb 100%);
	--tf-glow: 0 28px 90px rgba(15, 143, 120, 0.24);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.18), rgba(37, 99, 235, 0.1) 36%, transparent 60%),
		linear-gradient(180deg, #050914 0%, #07111f 46%, #f7fbff 46%, #ffffff 100%);
	color: var(--tf-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

code {
	background: rgba(15, 143, 120, 0.12);
	border: 1px solid rgba(15, 143, 120, 0.22);
	border-radius: 8px;
	color: #bffdf1;
	padding: 3px 7px;
}

.site-header {
	align-items: center;
	backdrop-filter: blur(18px);
	background: rgba(5, 9, 20, 0.74);
	border-bottom: 1px solid var(--tf-line);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	left: 0;
	padding: 16px clamp(18px, 4vw, 72px);
	position: sticky;
	top: 0;
	z-index: 20;
}

.brand {
	align-items: center;
	display: inline-flex;
	font-weight: 900;
	gap: 10px;
	letter-spacing: 0;
}

.brand-mark {
	align-items: center;
	background: var(--tf-gradient);
	border-radius: 8px;
	box-shadow: 0 10px 32px rgba(15, 143, 120, 0.38);
	display: inline-flex;
	font-size: 13px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.site-nav {
	display: flex;
	gap: 20px;
}

.site-nav a,
.nav-cta {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 800;
}

.site-nav a:hover {
	color: var(--tf-cyan);
}

.nav-cta {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #fff;
	padding: 10px 14px;
}

.section {
	padding: clamp(80px, 10vw, 132px) clamp(18px, 5vw, 84px);
}

.hero {
	min-height: 92vh;
	overflow: hidden;
	padding-top: clamp(84px, 9vw, 128px);
	position: relative;
}

.hero::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(to bottom, #000, transparent 90%);
	position: absolute;
}

.hero-grid,
.split-section,
.package-card,
.demo-shell {
	display: grid;
	gap: clamp(34px, 5vw, 72px);
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	z-index: 1;
}

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

.eyebrow {
	align-items: center;
	color: var(--tf-cyan);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 9px;
	letter-spacing: 0;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.eyebrow span {
	background: var(--tf-cyan);
	border-radius: 8px;
	box-shadow: 0 0 22px rgba(30, 234, 208, 0.8);
	display: inline-block;
	height: 8px;
	width: 8px;
}

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

h1 {
	font-size: 70px;
	letter-spacing: 0;
	line-height: 0.96;
	margin-bottom: 24px;
}

h2 {
	font-size: 52px;
	letter-spacing: 0;
	line-height: 1.04;
	margin-bottom: 18px;
}

h3 {
	font-size: 22px;
	letter-spacing: 0;
	margin-bottom: 10px;
}

.hero-copy p,
.section-head p,
.copy-block p,
.package-card p,
.demo-copy p {
	color: rgba(226, 232, 240, 0.76);
	font-size: 18px;
	max-width: 720px;
}

.hero-actions,
.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.button {
	border-radius: 8px;
	font-weight: 900;
	padding: 14px 20px;
}

.button-primary {
	background: var(--tf-gradient);
	box-shadow: var(--tf-glow);
}

.button-soft {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-tags span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	font-weight: 800;
	padding: 9px 13px;
}

.hero-visual {
	align-self: center;
	position: relative;
}

.browser-shell {
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
	padding: 48px 28px 28px;
	position: relative;
}

.browser-dots {
	display: flex;
	gap: 8px;
	left: 26px;
	position: absolute;
	top: 22px;
}

.browser-dots span {
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

.browser-dots span:nth-child(1) { background: #ff6363; }
.browser-dots span:nth-child(2) { background: #ffd166; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.tracking-card,
.visual-card,
.mail-window,
.phone-frame,
.shipment-card,
.log-table,
.package-card,
.demo-shell {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.tracking-card {
	padding: 22px;
}

.card-topline,
.mail-header,
.shipment-top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.card-topline span,
.mini-summary span,
.customer-summary span,
.eta-card span,
.settings-card span,
.shipment-top span,
.mail-header span {
	color: var(--tf-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.card-topline strong,
.mail-header strong,
.shipment-top strong {
	background: rgba(30, 234, 208, 0.13);
	border: 1px solid rgba(30, 234, 208, 0.28);
	border-radius: 8px;
	color: var(--tf-cyan);
	font-size: 12px;
	padding: 6px 10px;
}

.mini-summary,
.customer-summary,
.eta-grid,
.settings-grid,
.feature-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 20px;
}

.mini-summary div,
.customer-summary div {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 16px;
}

.mini-summary strong,
.customer-summary strong {
	display: block;
	font-size: 24px;
	line-height: 1.1;
	margin-top: 7px;
}

.timeline-preview {
	margin-top: 24px;
}

.time-row {
	display: grid;
	gap: 12px;
	grid-template-columns: 26px 1fr;
	padding: 0 0 20px;
	position: relative;
}

.time-row::before {
	background: rgba(255, 255, 255, 0.16);
	bottom: 0;
	content: "";
	left: 12px;
	position: absolute;
	top: 28px;
	width: 2px;
}

.time-row:last-child::before {
	display: none;
}

.time-row > span {
	background: #334155;
	border: 3px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	height: 26px;
	width: 26px;
}

.time-row.done > span,
.time-row.current > span {
	background: var(--tf-gradient);
	box-shadow: 0 0 26px rgba(30, 234, 208, 0.35);
}

.time-row strong {
	display: block;
}

.time-row small {
	color: var(--tf-muted);
}

.floating-pill {
	background: rgba(255, 255, 255, 0.88);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
	color: var(--tf-ink);
	font-size: 13px;
	font-weight: 900;
	padding: 10px 14px;
	position: absolute;
}

.pill-one {
	right: -18px;
	top: 22%;
}

.pill-two {
	bottom: 12%;
	left: -16px;
}

.pill-three {
	bottom: -18px;
	right: 22px;
}

.stats-band {
	background: #07111f;
	border-bottom: 1px solid #e2e8f0;
	border-top: 1px solid #e2e8f0;
	color: var(--tf-ink);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	padding: 36px clamp(18px, 4vw, 54px);
	text-align: center;
}

.stat + .stat {
	border-left: 1px solid #e2e8f0;
}

.stat strong {
	background: var(--tf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	display: block;
	font-size: 58px;
	font-weight: 950;
	line-height: 1;
}

.stat span {
	color: #64748b;
	font-weight: 800;
}

.feature-map,
.eta-section,
.logs-section,
.admin-section,
.package-section {
	background: #07111f;
	color: #f8fafc;
}

.section-head {
	margin: 0 auto 48px;
	max-width: 860px;
	text-align: center;
}

.feature-map .section-head p,
.eta-section .section-head p,
.logs-section .section-head p,
.admin-section .section-head p,
.package-section p {
	color: #64748b;
}

.feature-grid {
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	max-width: 1200px;
}

.feature-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #dbe6ef;
	border-radius: 8px;
	box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	padding: 28px;
	position: relative;
}

.feature-card::before {
	background: var(--tf-gradient);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.feature-icon {
	align-items: center;
	background: var(--tf-gradient);
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-weight: 950;
	height: 54px;
	justify-content: center;
	margin-bottom: 24px;
	width: 54px;
}

.feature-card p,
.check-list,
.settings-card strong {
	color: #64748b;
}

.split-section {
	background: #07111f;
}

.split-section.reverse {
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.split-section.reverse .copy-block {
	order: 2;
}

.copy-block {
	align-self: center;
}

.check-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.check-list li {
	align-items: center;
	display: flex;
	gap: 12px;
}

.check-list li::before {
	background: var(--tf-gradient);
	border-radius: 50%;
	content: "";
	height: 10px;
	width: 10px;
}

.visual-card {
	align-self: center;
	padding: 28px;
}

.gif-showcase {
	align-self: center;
	display: grid;
	gap: 18px;
	margin: 0 auto;
	width: 100%;
}

.gif-single {
	max-width: 1120px;
	margin-top: 34px;
}

.gif-pair {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gif-pair-compact {
	margin-top: 8px;
}

.gif-stack {
	grid-template-columns: 1fr;
}

.gif-grid {
	display: grid;
	gap: 18px;
	margin-top: 34px;
}

.gif-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 1180px;
}

.gif-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 1280px;
}

.gif-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
		#07111f;
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 8px;
	box-shadow: 0 28px 88px rgba(0, 0, 0, 0.28);
	color: #f8fafc;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.gif-card::before {
	background: var(--tf-gradient);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.gif-card-top {
	align-items: center;
	background: rgba(5, 9, 20, 0.72);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	min-height: 58px;
	padding: 16px 18px 14px;
}

.gif-card-top span {
	color: var(--tf-cyan);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.gif-card-top strong {
	color: rgba(248, 250, 252, 0.92);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	text-align: right;
}

.gif-card img {
	background: #050914;
	display: block;
	height: auto;
	width: 100%;
}

.gif-grid-three .gif-card img,
.gif-grid-four .gif-card img,
.gif-pair-compact .gif-card img {
	aspect-ratio: 16 / 9;
	object-fit: contain;
}

.lookup-form {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr auto;
}

.editor-shell {
	background: rgba(5, 9, 20, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	overflow: hidden;
}

.editor-top {
	background: rgba(255, 255, 255, 0.09);
	color: rgba(203, 213, 225, 0.78);
	font-size: 12px;
	font-weight: 950;
	padding: 14px 18px;
	text-transform: uppercase;
}

.block-row {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 16px 1fr;
	padding: 18px;
}

.block-row + .block-row {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.block-row > span {
	background: rgba(148, 163, 184, 0.5);
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

.block-row.active > span {
	background: var(--tf-cyan);
	box-shadow: 0 0 22px rgba(30, 234, 208, 0.7);
}

.block-row strong,
.block-row small {
	display: block;
}

.block-row small {
	color: var(--tf-muted);
}

.account-section,
.dashboard-section,
.reviewer-section,
.security-section {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.09), rgba(37, 99, 235, 0.075) 42%, transparent 70%),
		#07111f;
	color: #f8fafc;
}

.integration-grid,
.metric-grid,
.security-grid {
	display: grid;
	gap: 18px;
	margin: 0 auto;
	max-width: 1180px;
}

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

.metric-grid,
.security-grid {
	grid-template-columns: repeat(4, 1fr);
}

.integration-card,
.metric-card,
.security-item {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 8px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	padding: 28px;
	position: relative;
}

.integration-card::before,
.metric-card::before,
.security-item::before {
	background: var(--tf-gradient);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.integration-card span,
.metric-card span {
	color: var(--tf-cyan);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.integration-card strong,
.security-item strong {
	display: block;
	font-size: 24px;
	line-height: 1.25;
	margin: 8px 0 10px;
}

.integration-card p,
.metric-card small,
.security-item span {
	color: rgba(203, 213, 225, 0.75);
}

.metric-card strong {
	display: block;
	font-size: 44px;
	line-height: 1;
	margin: 14px 0 10px;
}

.reviewer-card {
	background:
		linear-gradient(135deg, rgba(7, 95, 86, 0.96), rgba(15, 143, 120, 0.9), rgba(37, 99, 235, 0.86));
	border: 1px solid rgba(30, 234, 208, 0.28);
	border-radius: 8px;
	box-shadow: 0 34px 110px rgba(15, 143, 120, 0.24);
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(32px, 5vw, 58px);
}

.reviewer-steps {
	align-self: center;
	display: grid;
	gap: 12px;
}

.reviewer-steps div {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	font-weight: 900;
	padding: 14px 16px;
}

.reviewer-steps span {
	color: var(--tf-cyan);
	display: block;
	font-size: 12px;
	margin-bottom: 6px;
}

.lookup-form label,
.lookup-form button {
	border-radius: 8px;
	font-weight: 900;
	padding: 14px;
}

.lookup-form label {
	background: rgba(255, 255, 255, 0.9);
	color: var(--tf-ink);
}

.lookup-form label span {
	color: #64748b;
	display: block;
	font-size: 13px;
	margin-top: 6px;
}

.lookup-form button {
	background: var(--tf-gradient);
	border: 0;
	color: #fff;
}

.dark-panel {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.18), rgba(37, 99, 235, 0.08) 48%, transparent 72%),
		#050914;
}

.dark-panel .section-head {
	color: #fff;
}

.stage-lane {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(5, 1fr);
	margin: 0 auto;
	max-width: 1180px;
}

.stage-step {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 24px;
	position: relative;
}

.stage-step span {
	align-items: center;
	background: #334155;
	border-radius: 8px;
	display: flex;
	font-weight: 950;
	height: 46px;
	justify-content: center;
	margin-bottom: 18px;
	width: 46px;
}

.stage-step.complete span,
.stage-step.active span {
	background: var(--tf-gradient);
}

.stage-step.active {
	border-color: rgba(30, 234, 208, 0.55);
	box-shadow: 0 0 0 1px rgba(30, 234, 208, 0.16), var(--tf-glow);
}

.stage-step small {
	color: var(--tf-muted);
	display: block;
	margin-top: 7px;
}

.mail-window {
	background: #07111f;
	color: #f8fafc;
	padding: 28px;
}

.mail-window h3 {
	font-size: 30px;
}

.mail-window p {
	color: #64748b;
}

.mail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.mail-meta span {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	color: #166534;
	font-size: 13px;
	font-weight: 900;
	padding: 8px 10px;
}

.phone-visual {
	display: flex;
	justify-content: center;
}

.phone-frame {
	background: linear-gradient(180deg, #111827, #061923);
	border-radius: 8px;
	max-width: 330px;
	padding: 22px;
	width: 100%;
}

.phone-top {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	height: 7px;
	margin: 0 auto 26px;
	width: 70px;
}

.chat-bubble {
	border-radius: 8px;
	margin-bottom: 14px;
	padding: 14px;
}

.chat-bubble.inbound {
	background: rgba(255, 255, 255, 0.12);
	color: #dbeafe;
	width: 70%;
}

.chat-bubble.outbound {
	background: var(--tf-gradient);
	box-shadow: var(--tf-glow);
	margin-left: auto;
	width: 86%;
}

.chat-status {
	color: var(--tf-cyan);
	font-size: 13px;
	font-weight: 900;
	margin-top: 24px;
	text-align: center;
}

.eta-grid {
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 980px;
}

.eta-card {
	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
	border: 1px solid #dbe6ef;
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
	padding: 34px;
	text-align: center;
}

.eta-card.hot {
	background: linear-gradient(135deg, #ecfdf5, #eff6ff);
	border-color: rgba(15, 143, 120, 0.36);
	box-shadow: var(--tf-glow);
}

.eta-card strong {
	display: block;
	font-size: 52px;
	line-height: 1;
	margin: 12px 0;
}

.eta-card small {
	color: #64748b;
	font-weight: 900;
}

.shipment-number {
	background: rgba(255, 255, 255, 0.1);
	border: 1px dashed rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	font-size: 28px;
	font-weight: 950;
	margin: 28px 0;
	padding: 20px;
	text-align: center;
}

.shipment-route {
	align-items: center;
	display: grid;
	grid-template-columns: 18px 1fr 18px 1fr 18px;
	margin: 18px 0 28px;
}

.shipment-route span {
	background: var(--tf-cyan);
	border-radius: 50%;
	box-shadow: 0 0 22px rgba(30, 234, 208, 0.7);
	height: 18px;
	width: 18px;
}

.shipment-route i {
	background: rgba(30, 234, 208, 0.34);
	height: 2px;
}

.shipment-footer small {
	color: var(--tf-muted);
	display: block;
}

.log-table {
	background: #07111f;
	border-color: #dbe6ef;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
	color: var(--tf-ink);
	margin: 0 auto;
	max-width: 1100px;
	overflow: hidden;
}

.log-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 auto 18px;
	max-width: 1100px;
}

.log-toolbar span {
	background: rgba(30, 234, 208, 0.08);
	border-color: rgba(30, 234, 208, 0.22);
	color: #dffef9;
}

.log-row {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 0.75fr 0.9fr 0.85fr 1.65fr 0.75fr;
	padding: 18px 22px;
}

.log-row button {
	background: transparent;
	border: 1px solid rgba(37, 99, 235, 0.65);
	border-radius: 8px;
	color: #93c5fd;
	cursor: pointer;
	font-size: 12px;
	font-weight: 950;
	padding: 7px 12px;
}

.log-row + .log-row {
	border-top: 1px solid #e2e8f0;
}

.log-head {
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.badge {
	border-radius: 8px;
	font-size: 12px;
	font-weight: 950;
	padding: 6px 10px;
	width: fit-content;
}

.badge.success {
	background: #dcfce7;
	color: #166534;
}

.badge.failed {
	background: #ffe4e6;
	color: #be123c;
}

.settings-grid {
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 1120px;
}

.settings-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #dbe6ef;
	border-radius: 8px;
	padding: 26px;
}

.settings-card strong {
	display: block;
	font-size: 18px;
	line-height: 1.35;
	margin-top: 8px;
}

.demo-section {
	background: #07111f;
}

.demo-shell {
	background: var(--tf-gradient);
	overflow: hidden;
	padding: clamp(30px, 5vw, 54px);
}

.flow-steps {
	display: grid;
	gap: 14px;
}

.flow-steps div {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	padding: 18px;
}

.flow-steps span {
	color: var(--tf-cyan);
	display: block;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	margin-bottom: 7px;
}

.package-card {
	background:
		linear-gradient(135deg, rgba(7, 95, 86, 0.96), rgba(15, 143, 120, 0.9), rgba(37, 99, 235, 0.86));
	color: #fff;
	padding: clamp(32px, 5vw, 58px);
}

.package-list {
	align-self: center;
	display: grid;
	gap: 12px;
}

.package-list span {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	font-weight: 900;
	padding: 12px 16px;
}

.site-footer {
	align-items: center;
	background: #050914;
	border-top: 1px solid var(--tf-line);
	color: rgba(255, 255, 255, 0.72);
	display: flex;
	justify-content: space-between;
	padding: 28px clamp(18px, 5vw, 84px);
}

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

.site-footer strong {
	color: #fff;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

	.hero-grid,
	.split-section,
	.split-section.reverse,
	.package-card,
	.demo-shell {
		grid-template-columns: 1fr;
	}

	.split-section.reverse .copy-block {
		order: 0;
	}

	.feature-grid,
	.stage-lane,
	.settings-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.site-header {
		padding: 12px 16px;
	}

	.nav-cta {
		display: none;
	}

	.section {
		padding: 70px 16px;
	}

	h1 {
		font-size: 44px;
	}

	h2 {
		font-size: 36px;
	}

	.stats-band,
	.feature-grid,
	.stage-lane,
	.eta-grid,
	.settings-grid,
	.mini-summary,
	.customer-summary,
	.lookup-form {
		grid-template-columns: 1fr;
	}

	.stat + .stat {
		border-left: 0;
		border-top: 1px solid #e2e8f0;
	}

	.log-table {
		overflow-x: auto;
	}

	.log-row {
		min-width: 760px;
	}

	.browser-shell,
	.visual-card {
		padding: 22px;
	}

	.floating-pill {
		display: none;
	}

.site-footer {
	align-items: flex-start;
	flex-direction: column;
	gap: 12px;
	}
}

/* Premium dark studio refresh */
body {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.2), rgba(37, 99, 235, 0.14) 38%, transparent 68%),
		linear-gradient(180deg, #050914 0%, #07111f 36%, #081524 100%);
	color: #f8fafc;
	overflow-x: hidden;
}

body::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: -1;
}

.site-header {
	background: rgba(5, 9, 20, 0.9);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.section {
	padding: 104px clamp(22px, 5vw, 92px);
}

.hero {
	align-items: center;
	display: flex;
	min-height: 88vh;
	padding-top: 112px;
}

.hero::before {
	display: none;
}

.hero-grid,
.feature-grid,
.stage-lane,
.eta-grid,
.settings-grid,
.log-table,
.section-head,
.package-card,
.demo-shell {
	width: 100%;
}

.hero-grid {
	max-width: 1280px;
}

.hero-copy p,
.section-head p,
.copy-block p,
.package-card p,
.demo-copy p {
	color: rgba(226, 232, 240, 0.78);
}

.browser-shell,
.tracking-card,
.visual-card,
.mail-window,
.phone-frame,
.shipment-card,
.log-table,
.feature-card,
.eta-card,
.settings-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
	border: 1px solid rgba(148, 163, 184, 0.24);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	color: #f8fafc;
}

.stats-band {
	background: linear-gradient(90deg, rgba(7, 95, 86, 0.52), rgba(8, 21, 36, 0.96), rgba(37, 99, 235, 0.38));
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #f8fafc;
}

.stat + .stat {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat span {
	color: rgba(226, 232, 240, 0.76);
}

.feature-map,
.eta-section,
.logs-section,
.admin-section,
.package-section,
.split-section,
.dark-panel,
.demo-section {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.09), rgba(37, 99, 235, 0.075) 42%, transparent 70%),
		#07111f;
	color: #f8fafc;
}

.feature-map,
.eta-section,
.logs-section,
.admin-section,
.package-section {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-map .section-head p,
.eta-section .section-head p,
.logs-section .section-head p,
.admin-section .section-head p,
.package-section p,
.feature-card p,
.check-list,
.settings-card strong,
.mail-window p,
.eta-card small {
	color: rgba(203, 213, 225, 0.75);
}

.feature-card,
.eta-card,
.settings-card {
	position: relative;
}

.feature-card::before,
.eta-card::before,
.settings-card::before {
	background: var(--tf-gradient);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.feature-icon,
.stage-step.complete span,
.stage-step.active span {
	box-shadow: 0 18px 42px rgba(15, 143, 120, 0.28);
}

.split-section,
.split-section.reverse {
	gap: 64px;
	grid-template-columns: minmax(0, 540px) minmax(380px, 540px);
	justify-content: center;
	margin: 0;
	max-width: none;
	width: 100%;
}

.split-section.reverse .copy-block {
	order: 2;
}

.customer-summary div,
.mini-summary div,
.lookup-form label {
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #f8fafc;
}

.lookup-form label span,
.customer-summary span,
.mini-summary span {
	color: rgba(203, 213, 225, 0.72);
}

.mail-window {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
	color: #f8fafc;
}

.mail-header span {
	color: rgba(203, 213, 225, 0.72);
}

.eta-card.hot {
	background: linear-gradient(135deg, rgba(15, 143, 120, 0.28), rgba(37, 99, 235, 0.2));
	border-color: rgba(30, 234, 208, 0.34);
}

.log-table {
	overflow: hidden;
}

.log-row {
	background: rgba(255, 255, 255, 0.035);
}

.log-row + .log-row {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.log-head {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(226, 232, 240, 0.82);
}

.settings-card span,
.eta-card span {
	color: var(--tf-cyan);
}

.demo-shell,
.package-card {
	border: 1px solid rgba(30, 234, 208, 0.28);
	box-shadow: 0 34px 110px rgba(15, 143, 120, 0.24);
}

.site-footer {
	background: #050914;
}

@media (max-width: 1020px) {
	.split-section,
	.split-section.reverse {
		grid-template-columns: 1fr;
	}

	.split-section.reverse .copy-block {
		order: 0;
	}
}

@media (max-width: 720px) {
	.section {
		padding: 72px 16px;
	}

	.hero {
		min-height: auto;
		padding-top: 84px;
	}
}

/* Current feature expansion overrides */
.account-section,
.dashboard-section,
.reviewer-section,
.security-section {
	background:
		linear-gradient(135deg, rgba(15, 143, 120, 0.09), rgba(37, 99, 235, 0.075) 42%, transparent 70%),
		#07111f;
	color: #f8fafc;
}

.integration-card,
.metric-card,
.security-item,
.reviewer-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
	border: 1px solid rgba(148, 163, 184, 0.24);
	color: #f8fafc;
}

.reviewer-card {
	background:
		linear-gradient(135deg, rgba(7, 95, 86, 0.96), rgba(15, 143, 120, 0.9), rgba(37, 99, 235, 0.86));
}

.integration-grid,
.metric-grid,
.security-grid {
	width: 100%;
}

@media (max-width: 1020px) {
	.integration-grid,
	.metric-grid,
	.security-grid,
	.reviewer-card {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.integration-grid,
	.metric-grid,
	.security-grid,
	.reviewer-card,
	.notification-visual {
		grid-template-columns: 1fr;
	}

	.log-row {
		min-width: 900px;
	}
}

/* GIF proof cards */
.split-section > .gif-grid-three {
	grid-template-columns: 1fr;
	margin-top: 0;
	max-width: 560px;
}

.split-section > .gif-grid-four {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 0;
	max-width: 620px;
}

.gif-showcase + .gif-showcase {
	margin-top: 26px;
}

.dark-panel .gif-card,
.dashboard-section .gif-card,
.reviewer-section .gif-card {
	border-color: rgba(30, 234, 208, 0.24);
}

.gif-card:hover {
	border-color: rgba(30, 234, 208, 0.46);
	box-shadow: 0 32px 96px rgba(15, 143, 120, 0.18), 0 28px 88px rgba(0, 0, 0, 0.28);
	transform: translateY(-2px);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (max-width: 1180px) {
	.gif-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1020px) {
	.gif-pair,
	.split-section > .gif-grid-four,
	.split-section > .gif-grid-three {
		grid-template-columns: 1fr;
		max-width: 760px;
	}

	.gif-grid-three {
		grid-template-columns: 1fr;
		max-width: 760px;
	}
}

@media (max-width: 720px) {
	.gif-grid,
	.gif-single {
		margin-top: 24px;
	}

	.gif-grid-four {
		grid-template-columns: 1fr;
	}

	.gif-card-top {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
		min-height: 0;
		padding: 14px;
	}

	.gif-card-top strong {
		text-align: left;
	}
}

/* Larger marketplace demo captures */
.split-section,
.split-section.reverse {
	grid-template-columns: minmax(320px, 0.68fr) minmax(680px, 1.32fr);
	max-width: 1380px;
	margin: 0 auto;
}

.split-section > .gif-pair,
.split-section > .gif-stack,
.split-section > .gif-grid-three {
	max-width: 820px;
	width: 100%;
}

.split-section > .gif-pair,
.split-section > .gif-stack .gif-pair,
.split-section > .gif-grid-three {
	grid-template-columns: 1fr;
}

.split-section > .gif-grid-four {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 860px;
}

.dark-panel .gif-grid-four {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 1220px;
}

.eta-section .gif-grid-three,
.admin-section .gif-pair,
.dashboard-section .gif-single,
.reviewer-section .gif-pair {
	max-width: 1120px;
}

.eta-section .gif-grid-three {
	grid-template-columns: 1fr;
}

.gif-card-top {
	padding: 18px 20px 16px;
}

.gif-card-top span {
	font-size: 12px;
}

.gif-card-top strong {
	font-size: 15px;
}

.gif-card img {
	min-height: 260px;
	object-fit: contain;
}

.gif-pair .gif-card img,
.gif-single .gif-card img,
.eta-section .gif-card img,
.split-section > .gif-grid-three .gif-card img {
	aspect-ratio: auto;
	min-height: 320px;
}

.gif-grid-four .gif-card img {
	min-height: 300px;
}

.gif-card figcaption {
	background: rgba(5, 9, 20, 0.78);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 16px 20px 18px;
}

.gif-card figcaption p {
	color: rgba(226, 232, 240, 0.8);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 1180px) {
	.split-section,
	.split-section.reverse,
	.dark-panel .gif-grid-four {
		grid-template-columns: 1fr;
	}

	.split-section > .gif-pair,
	.split-section > .gif-stack,
	.split-section > .gif-grid-three,
	.split-section > .gif-grid-four {
		max-width: 980px;
	}
}

@media (max-width: 720px) {
	.gif-card img,
	.gif-pair .gif-card img,
	.gif-single .gif-card img,
	.eta-section .gif-card img,
	.split-section > .gif-grid-three .gif-card img,
	.gif-grid-four .gif-card img {
		min-height: 0;
	}

	.gif-card figcaption {
		padding: 14px;
	}
}

/* Readable premium demo layout - GIFs are the product proof */
.section {
	padding: clamp(86px, 9vw, 128px) clamp(22px, 5vw, 72px);
}

.split-section,
.split-section.reverse {
	display: grid;
	gap: 42px;
	grid-template-columns: 1fr;
	margin: 0 auto;
	max-width: 1240px;
	width: 100%;
}

.split-section.reverse .copy-block {
	order: 0;
}

.copy-block,
.section-head {
	margin: 0 auto;
	max-width: 900px;
	text-align: center;
}

.copy-block p,
.section-head p {
	margin-left: auto;
	margin-right: auto;
}

.check-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-left: auto;
	margin-right: auto;
	max-width: 820px;
	text-align: left;
}

.gif-showcase,
.split-section > .gif-pair,
.split-section > .gif-stack,
.split-section > .gif-grid-three,
.split-section > .gif-grid-four,
.dark-panel .gif-grid-four,
.eta-section .gif-grid-three,
.admin-section .gif-pair,
.dashboard-section .gif-single,
.reviewer-section .gif-pair {
	max-width: 1180px;
	width: 100%;
}

.gif-pair,
.gif-pair-compact,
.gif-grid-three,
.gif-grid-four,
.split-section > .gif-pair,
.split-section > .gif-stack .gif-pair,
.split-section > .gif-grid-three,
.split-section > .gif-grid-four,
.dark-panel .gif-grid-four,
.eta-section .gif-grid-three {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}

.gif-grid,
.gif-single,
.gif-showcase + .gif-showcase {
	margin-top: 42px;
}

.gif-stack {
	gap: 30px;
}

.gif-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
	border: 1px solid rgba(30, 234, 208, 0.26);
	border-radius: 14px;
	box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
	overflow: hidden;
}

.gif-card:hover {
	transform: none;
}

.gif-card-top {
	align-items: center;
	background: linear-gradient(90deg, rgba(5, 9, 20, 0.98), rgba(7, 17, 31, 0.92));
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	min-height: 74px;
	padding: 22px 26px 20px;
}

.gif-card-top span {
	background: rgba(30, 234, 208, 0.12);
	border: 1px solid rgba(30, 234, 208, 0.22);
	border-radius: 999px;
	color: var(--tf-cyan);
	font-size: 12px;
	font-weight: 950;
	padding: 7px 11px;
	white-space: nowrap;
}

.gif-card-top strong {
	color: #fff;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 950;
	line-height: 1.15;
	text-align: right;
}

.gif-card img {
	background: #f8fafc;
	display: block;
	height: clamp(430px, 54vw, 650px);
	min-height: 0;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.gif-card figcaption {
	background: linear-gradient(180deg, rgba(5, 9, 20, 0.96), rgba(8, 21, 36, 0.96));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 26px 24px;
}

.gif-card figcaption p {
	color: rgba(226, 232, 240, 0.9);
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.65;
	margin: 0;
}

.dark-panel .gif-card,
.dashboard-section .gif-card,
.reviewer-section .gif-card {
	border-color: rgba(30, 234, 208, 0.32);
}

.stage-lane,
.feature-grid,
.settings-grid,
.metric-grid,
.integration-grid,
.security-grid,
.eta-grid {
	max-width: 1180px;
}

.demo-shell,
.package-card,
.reviewer-card {
	max-width: 1180px;
}

@media (min-width: 1200px) {
	.dark-panel .gif-grid-four,
	.split-section > .gif-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dark-panel .gif-grid-four .gif-card img,
	.split-section > .gif-grid-four .gif-card img {
		height: clamp(360px, 32vw, 520px);
	}
}

@media (max-width: 720px) {
	.copy-block,
	.section-head {
		text-align: left;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.gif-card-top {
		align-items: flex-start;
		flex-direction: column;
		min-height: 0;
		padding: 16px;
	}

	.gif-card-top strong {
		font-size: 18px;
		text-align: left;
	}

	.gif-card img {
		height: auto;
	}

	.gif-card figcaption {
		padding: 16px;
	}
}
