:root {
	--ink: #102a2e;
	--ink-deep: #0a1e21;
	--ink-soft: #3b5558;
	--cream: #f5f3ea;
	--cream-warm: #ece9dd;
	--white: #ffffff;
	--line: rgba(16, 42, 46, 0.14);
	--lime: #c9f06b;
	--lime-bright: #dcff86;
	--mint: #b8e8d4;
	--teal: #1b6f6a;
	--coral: #f28466;
	--blue: #7eb3d3;
	--purple: #8d7bbf;
	--shadow: 0 28px 70px rgba(8, 30, 33, 0.13);
	--radius-sm: 14px;
	--radius-md: 24px;
	--radius-lg: 38px;
	--shell: min(1240px, calc(100vw - 48px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

button,
a {
	font: inherit;
}

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

button {
	color: inherit;
}

svg {
	display: block;
}

.skip-link {
	position: fixed;
	top: -60px;
	left: 24px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 0 0 10px 10px;
	background: var(--lime);
	color: var(--ink-deep);
	font-weight: 700;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
}

.page-shell {
	width: var(--shell);
	margin-inline: auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 18px 0;
	transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
	padding: 10px 0;
	background: rgba(245, 243, 234, 0.88);
	box-shadow: 0 1px 0 rgba(16, 42, 46, 0.08);
	backdrop-filter: blur(18px);
}

.nav-shell {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: var(--shell);
	min-height: 52px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 10px;
}

.brand-mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: var(--ink);
}

.brand-mark svg {
	width: 31px;
	height: 31px;
	fill: var(--cream);
}

.brand-mark .brand-mark-accent {
	fill: var(--lime);
}

.brand-copy {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-family: "Manrope", sans-serif;
}

.brand-copy strong {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.7px;
}

.brand-copy span {
	color: var(--teal);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 34px;
}

.nav-links a {
	position: relative;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 600;
}

.nav-links a::after {
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	height: 1px;
	background: var(--ink);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-actions {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 18px;
}

.language-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: #87989a;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.language-switch .lang-active {
	color: var(--ink);
}

.lang-divider {
	color: #bcc5c5;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-height: 54px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.2px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.button-small {
	min-height: 43px;
	padding-inline: 21px;
	font-size: 13px;
}

.button-dark {
	background: var(--ink);
	color: var(--white);
}

.button-dark:hover {
	box-shadow: 0 10px 24px rgba(10, 30, 33, 0.2);
}

.button-primary {
	background: var(--lime);
	color: var(--ink-deep);
}

.button-primary:hover {
	background: var(--lime-bright);
	box-shadow: 0 12px 32px rgba(154, 194, 58, 0.24);
}

.button-light {
	background: var(--white);
	color: var(--ink);
}

.button-light:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.button-large {
	min-height: 62px;
	padding-inline: 32px;
	font-size: 15px;
}

.menu-button {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.menu-button span {
	display: block;
	width: 17px;
	height: 1.5px;
	margin: 5px auto;
	background: var(--ink);
	transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
	transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
	transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
	position: relative;
	min-height: 860px;
	padding: 162px 0 104px;
	overflow: hidden;
}

.hero::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 48%;
	height: 100%;
	background: linear-gradient(135deg, rgba(184, 232, 212, 0.18), rgba(201, 240, 107, 0.1));
	content: "";
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-orbit {
	position: absolute;
	border: 1px solid rgba(16, 42, 46, 0.09);
	border-radius: 50%;
	pointer-events: none;
}

.hero-orbit-one {
	top: 38px;
	right: -180px;
	width: 620px;
	height: 620px;
}

.hero-orbit-two {
	top: 156px;
	right: -60px;
	width: 380px;
	height: 380px;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	align-items: center;
	gap: 62px;
}

.hero-copy {
	padding-bottom: 26px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 28px;
	padding: 8px 13px 8px 10px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	color: var(--ink-soft);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 4px rgba(201, 240, 107, 0.22);
}

.hero h1 {
	max-width: 680px;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: clamp(58px, 6.3vw, 94px);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.96;
}

.hero h1 em {
	color: var(--teal);
	font-style: normal;
}

.hero-intro {
	max-width: 570px;
	margin: 31px 0 0;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-top: 35px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-size: 14px;
	font-weight: 700;
}

.text-link span:last-child {
	transition: transform 0.25s ease;
}

.text-link:hover span:last-child {
	transform: translateY(3px);
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 23px;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.hero-proof > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #5f7476;
	font-size: 12px;
	font-weight: 600;
}

.hero-proof svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--teal);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.hero-product {
	position: relative;
	width: 785px;
	margin-right: -190px;
	transform: perspective(1500px) rotateY(-3deg) rotateX(1.2deg);
	transform-origin: left center;
}

.product-halo {
	position: absolute;
	top: 4%;
	right: 9%;
	bottom: -7%;
	left: 2%;
	border-radius: 50%;
	background: rgba(201, 240, 107, 0.32);
	filter: blur(58px);
}

.dashboard-window {
	position: relative;
	border: 1px solid rgba(16, 42, 46, 0.15);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 42px 90px rgba(10, 30, 33, 0.2), 0 8px 20px rgba(10, 30, 33, 0.07);
	overflow: hidden;
}

.window-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 42px;
	padding-inline: 14px;
	border-bottom: 1px solid #e5e8e5;
	background: #f7f8f6;
}

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

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

.window-address {
	padding: 3px 42px;
	border-radius: 5px;
	background: #edf0ed;
	color: #83908e;
	font-size: 7px;
	letter-spacing: 0.04em;
}

.window-avatar {
	justify-self: end;
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: 6px;
	font-weight: 700;
}

.dashboard-body {
	display: grid;
	grid-template-columns: 135px 1fr;
	min-height: 480px;
}

.dashboard-sidebar {
	display: flex;
	flex-direction: column;
	padding: 22px 13px 15px;
	background: var(--ink-deep);
	color: #fff;
}

.mini-brand {
	display: grid;
	grid-template-columns: repeat(2, 6px);
	gap: 2px;
	width: max-content;
	margin: 0 0 27px 10px;
}

.mini-brand span {
	width: 6px;
	height: 6px;
	background: #fff;
}

.mini-brand span:last-child {
	background: var(--lime);
}

.dashboard-sidebar nav {
	display: grid;
	gap: 5px;
}

.side-item {
	display: flex;
	align-items: center;
	gap: 9px;
	height: 32px;
	padding: 0 9px;
	border-radius: 7px;
	color: #9eb0af;
	font-size: 7.6px;
	font-weight: 600;
}

.side-item.active {
	background: rgba(201, 240, 107, 0.14);
	color: var(--lime);
}

.side-item svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.3;
}

.sidebar-user {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	padding: 10px 8px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-user div {
	display: flex;
	flex-direction: column;
}

.sidebar-user strong {
	font-size: 7px;
}

.sidebar-user small {
	color: #829391;
	font-size: 6px;
}

.avatar {
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: #9bbbd0;
	color: var(--ink-deep);
	font-style: normal;
	font-weight: 800;
}

.avatar-small {
	width: 23px;
	height: 23px;
	font-size: 6px;
}

.dashboard-main {
	padding: 28px 27px;
	background: #f6f7f4;
}

.dash-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dash-kicker {
	color: #8f9d9c;
	font-size: 6px;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.dash-heading h2 {
	margin: 3px 0 0;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	letter-spacing: -0.7px;
}

.dash-heading button {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 29px;
	padding: 0 12px;
	border: 0;
	border-radius: 6px;
	background: var(--ink);
	color: #fff;
	font-size: 7px;
	font-weight: 700;
}

.dash-heading button span:first-child {
	color: var(--lime);
	font-size: 12px;
}

.metric-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 23px;
}

.metric-card {
	display: flex;
	min-height: 91px;
	padding: 14px;
	border: 1px solid #e3e7e3;
	border-radius: 10px;
	background: #fff;
	flex-direction: column;
}

.metric-card > span {
	color: #798987;
	font-size: 7px;
	font-weight: 600;
}

.metric-card strong {
	margin-top: 3px;
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	letter-spacing: -0.6px;
}

.metric-card small {
	margin-top: auto;
	color: #71807e;
	font-size: 6.5px;
}

.metric-card small b {
	color: var(--coral);
}

.metric-focus {
	border: 0;
	background: var(--ink);
	color: #fff;
}

.metric-focus > span,
.metric-focus small {
	color: #afbfbd;
}

.trend-up {
	color: #4fa380;
	font-style: normal;
}

.dash-columns {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 10px;
	margin-top: 11px;
}

.task-panel,
.pipeline-panel {
	min-height: 220px;
	padding: 15px;
	border: 1px solid #e3e7e3;
	border-radius: 10px;
	background: #fff;
}

.panel-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.panel-title h3 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 9px;
}

.panel-title p {
	margin: 1px 0 0;
	color: #92a09e;
	font-size: 6px;
}

.panel-title > span {
	color: #90a09d;
	font-size: 7px;
}

.view-all {
	color: var(--teal) !important;
	font-weight: 700;
}

.task-list {
	margin-top: 11px;
}

.task-row {
	display: grid;
	grid-template-columns: 28px 23px 1fr 20px;
	align-items: center;
	gap: 7px;
	min-height: 47px;
	border-top: 1px solid #edf0ed;
}

.task-time {
	color: #8c9998;
	font-size: 6px;
}

.task-icon {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 6px;
	font-size: 8px;
	font-weight: 700;
}

.task-call {
	background: #def0ea;
	color: #317866;
}

.task-meet {
	background: #e6e2f1;
	color: #6d5f96;
}

.task-quote {
	background: #f8e3dc;
	color: #a75a44;
}

.task-row > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.task-row strong {
	font-size: 6.6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.task-row small {
	color: #8d9a98;
	font-size: 5.5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.task-owner {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	color: #193234;
	font-size: 5px;
	font-weight: 800;
}

.owner-blue { background: #b7d2e1; }
.owner-coral { background: #f2b9a8; }
.owner-lime { background: #dff5a8; }

.pipeline-bar {
	display: flex;
	height: 9px;
	margin: 22px 0 18px;
	border-radius: 999px;
	overflow: hidden;
}

.pipeline-bar span { height: 100%; }
.pipe-one { width: 38%; background: var(--teal); }
.pipe-two { width: 28%; background: var(--mint); }
.pipe-three { width: 20%; background: var(--lime); }
.pipe-four { width: 14%; background: var(--coral); }

.pipeline-list {
	display: grid;
	gap: 12px;
}

.pipeline-list div {
	display: grid;
	grid-template-columns: 7px 1fr auto;
	align-items: center;
	gap: 6px;
	color: #71807e;
	font-size: 6.5px;
}

.pipeline-list strong {
	color: var(--ink);
	font-size: 7px;
}

.dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.dot-one { background: var(--teal); }
.dot-two { background: var(--mint); }
.dot-three { background: #a8cc4e; }
.dot-four { background: var(--coral); }

.floating-note {
	position: absolute;
	z-index: 4;
	display: flex;
	align-items: center;
	border: 1px solid rgba(16, 42, 46, 0.1);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 42px rgba(10, 30, 33, 0.18);
	backdrop-filter: blur(12px);
}

.note-top {
	top: 86px;
	right: -21px;
	gap: 10px;
	padding: 11px 17px 11px 11px;
	border-radius: 12px;
}

.note-check {
	display: grid;
	width: 29px;
	height: 29px;
	place-items: center;
	border-radius: 8px;
	background: #def3e5;
	color: #30805f;
	font-size: 13px;
	font-weight: 800;
}

.floating-note div {
	display: flex;
	flex-direction: column;
}

.floating-note strong {
	font-size: 9px;
}

.floating-note small {
	color: #83918f;
	font-size: 7px;
}

.note-bottom {
	right: 52px;
	bottom: -31px;
	gap: 11px;
	min-width: 232px;
	padding: 14px;
	border-radius: 14px;
}

.note-icon {
	display: grid;
	width: 35px;
	height: 35px;
	place-items: center;
	border-radius: 9px;
	background: var(--lime);
	font-family: "Manrope", sans-serif;
	font-weight: 800;
}

.note-bottom strong {
	font-family: "Manrope", sans-serif;
	font-size: 14px;
}

.note-bottom strong i {
	color: #81908e;
	font-size: 6px;
	font-style: normal;
}

.mini-chart {
	display: flex;
	align-items: end;
	gap: 2px;
	height: 28px;
	margin-left: auto;
}

.mini-chart i {
	display: block;
	width: 4px;
	border-radius: 2px 2px 0 0;
	background: var(--teal);
}

.mini-chart i:nth-child(1) { height: 8px; }
.mini-chart i:nth-child(2) { height: 13px; }
.mini-chart i:nth-child(3) { height: 11px; }
.mini-chart i:nth-child(4) { height: 19px; }
.mini-chart i:nth-child(5) { height: 25px; background: var(--lime); }

.audience-strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.24);
}

.audience-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 108px;
	gap: 40px;
}

.audience-inner > p {
	margin: 0;
	color: #718285;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.audience-list {
	display: flex;
	align-items: center;
	gap: 23px;
	color: #4c6265;
	font-family: "Manrope", sans-serif;
	font-size: 15px;
	font-weight: 700;
}

.audience-list i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #9eaeac;
}

.section {
	padding: 140px 0;
}

.section-heading {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	align-items: end;
	gap: 80px;
	margin-bottom: 64px;
}

.section-number {
	display: block;
	margin-bottom: 22px;
	color: var(--teal);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.section-number.light {
	color: var(--lime);
}

.section-heading h2,
.workflow-copy h2,
.clarity-heading h2,
.trust-heading h2,
.faq-intro h2,
.contact-inner h2 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: clamp(45px, 5vw, 72px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.section-heading > p {
	margin: 0 0 5px;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.7;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.bento-card {
	position: relative;
	min-height: 620px;
	padding: 43px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.52);
	overflow: hidden;
}

.bento-customers {
	background: #dceee7;
}

.bento-pipeline {
	background: #efece2;
}

.bento-tasks,
.bento-quotes {
	min-height: 470px;
}

.bento-tasks {
	background: var(--ink);
	color: #fff;
}

.bento-quotes {
	background: #eadfd5;
}

.card-copy {
	position: relative;
	z-index: 2;
	max-width: 460px;
}

.card-index {
	display: block;
	margin-bottom: 21px;
	color: #66817e;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.bento-tasks .card-index {
	color: var(--lime);
}

.card-copy h3 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 30px;
	letter-spacing: -1.2px;
	line-height: 1.15;
}

.card-copy p {
	max-width: 430px;
	margin: 15px 0 0;
	color: #526a6a;
	font-size: 15px;
	line-height: 1.65;
}

.bento-tasks .card-copy p {
	color: #acbcba;
}

.customer-visual {
	position: absolute;
	right: 42px;
	bottom: -36px;
	left: 80px;
	min-height: 335px;
	padding: 22px;
	border-radius: 17px 17px 0 0;
	background: #fff;
	box-shadow: 0 28px 50px rgba(30, 82, 73, 0.14);
}

.customer-header {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	gap: 11px;
}

.logo-tile {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 11px;
	background: var(--ink);
	color: var(--lime);
	font-family: "Manrope", sans-serif;
	font-weight: 800;
}

.customer-header > div {
	display: flex;
	flex-direction: column;
}

.customer-header strong {
	font-family: "Manrope", sans-serif;
	font-size: 13px;
}

.customer-header small {
	color: #7d8c8b;
	font-size: 9px;
}

.customer-header button {
	border: 0;
	background: transparent;
	color: #859391;
}

.customer-tags {
	display: flex;
	gap: 6px;
	margin-top: 17px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e8ebe8;
}

.customer-tags span {
	padding: 4px 8px;
	border-radius: 999px;
	background: #edf5f1;
	color: #417466;
	font-size: 7px;
	font-weight: 700;
}

.customer-tags span:last-child {
	background: #f4efdd;
	color: #87733f;
}

.timeline {
	margin-top: 2px;
}

.timeline > div {
	position: relative;
	display: grid;
	grid-template-columns: 29px 1fr auto;
	align-items: center;
	gap: 10px;
	min-height: 63px;
	border-bottom: 1px solid #edf0ed;
}

.timeline > div:last-child {
	border-bottom: 0;
}

.timeline i {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 8px;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}

.timeline-call { background: #dff1e9; color: #377b67; }
.timeline-doc { background: #f9e6de; color: #ad624a; }
.timeline-note { background: #ebe6f4; color: #6d5f98; }

.timeline p {
	display: flex;
	margin: 0;
	flex-direction: column;
}

.timeline strong {
	font-size: 9px;
}

.timeline small,
.timeline time {
	color: #8b9997;
	font-size: 7px;
}

.kanban-mini {
	position: absolute;
	right: -34px;
	bottom: 0;
	left: 38px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	min-height: 330px;
	padding: 24px;
	border-radius: 17px 0 0 0;
	background: #fff;
	box-shadow: 0 28px 50px rgba(45, 51, 42, 0.12);
}

.kanban-column {
	padding: 11px;
	border-radius: 10px 10px 0 0;
	background: #f5f6f3;
}

.kanban-column header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	color: #768684;
	font-size: 6px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.kanban-column header span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.kanban-column header b {
	display: grid;
	width: 15px;
	height: 15px;
	place-items: center;
	border-radius: 4px;
	background: #e8ece8;
	font-size: 6px;
}

.deal-card {
	display: flex;
	min-height: 88px;
	margin-bottom: 8px;
	padding: 12px;
	border: 1px solid #e4e8e4;
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(10, 30, 33, 0.04);
	flex-direction: column;
}

.deal-card small {
	color: #657674;
	font-size: 7px;
}

.deal-card strong {
	margin-top: 3px;
	font-family: "Manrope", sans-serif;
	font-size: 11px;
}

.deal-card > span {
	display: flex;
	align-items: center;
	margin-top: auto;
	color: #8b9997;
	font-size: 6px;
}

.deal-card.faint {
	opacity: 0.6;
}

.deal-featured {
	border-color: #b7da62;
	box-shadow: 0 8px 18px rgba(159, 192, 79, 0.13);
}

.avatar-tiny {
	width: 16px;
	height: 16px;
	margin-right: 4px;
	font-size: 5px;
}

.avatar-coral { background: #f0b3a3; }
.avatar-lime { background: #d9efa0; }

.reminder-card {
	position: absolute;
	right: 42px;
	bottom: 43px;
	left: 43px;
	display: grid;
	grid-template-columns: 56px 1fr;
	align-items: center;
	gap: 17px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.07);
}

.reminder-icon {
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	border-radius: 13px;
	background: var(--lime);
	color: var(--ink);
	font-size: 20px;
	font-weight: 800;
}

.reminder-card > div:last-child {
	display: flex;
	flex-direction: column;
}

.reminder-card > div > span {
	color: var(--lime);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.reminder-card strong {
	margin-top: 3px;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
}

.reminder-card small {
	display: flex;
	gap: 14px;
	margin-top: 5px;
	color: #899c99;
	font-size: 8px;
}

.reminder-card small b {
	color: #dce5e3;
}

.quote-paper {
	position: absolute;
	right: 42px;
	bottom: -70px;
	left: 43px;
	min-height: 265px;
	padding: 24px;
	border-radius: 12px 12px 0 0;
	background: #fff;
	box-shadow: 0 20px 40px rgba(73, 50, 38, 0.13);
	transform: rotate(-1.2deg);
}

.quote-top,
.quote-title,
.quote-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.quote-top > span {
	color: #7a8986;
	font-size: 8px;
	font-weight: 700;
}

.quote-logo {
	display: grid;
	grid-template-columns: repeat(2, 7px);
	gap: 2px;
}

.quote-logo i {
	width: 7px;
	height: 7px;
	background: var(--ink);
}

.quote-logo i:last-child { background: var(--lime); }

.quote-title {
	margin-top: 22px;
}

.quote-title > div {
	display: flex;
	flex-direction: column;
}

.quote-title small {
	color: #8e9998;
	font-size: 6px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.quote-title strong {
	font-family: "Manrope", sans-serif;
	font-size: 12px;
}

.quote-title > b {
	padding: 5px 8px;
	border-radius: 999px;
	background: #f4eade;
	color: #8d6e4e;
	font-size: 6px;
	letter-spacing: 0.08em;
}

.quote-lines {
	display: grid;
	gap: 8px;
	margin: 25px 0 17px;
}

.quote-lines span {
	display: block;
	height: 8px;
	border-radius: 2px;
	background: linear-gradient(90deg, #e8ebe8 0 58%, transparent 58% 69%, #e8ebe8 69% 82%, transparent 82% 88%, #e8ebe8 88% 100%);
}

.quote-total {
	padding-top: 15px;
	border-top: 1px solid #e5e9e6;
}

.quote-total > span {
	color: #7f8d8a;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.quote-total strong {
	font-family: "Manrope", sans-serif;
	font-size: 14px;
}

.quote-total small {
	color: #8e9a98;
	font-size: 6px;
}

.workflow-section {
	background: var(--ink);
	color: #fff;
}

.workflow-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 120px;
}

.workflow-copy {
	position: sticky;
	top: 135px;
	align-self: start;
}

.workflow-copy h2 {
	max-width: 520px;
}

.workflow-copy > p {
	max-width: 470px;
	margin: 28px 0 34px;
	color: #aebfbd;
	font-size: 17px;
	line-height: 1.75;
}

.workflow-steps {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.workflow-step {
	display: grid;
	grid-template-columns: 58px 1fr 28px;
	align-items: start;
	gap: 28px;
	padding: 39px 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.workflow-step > span {
	color: var(--lime);
	font-size: 11px;
	font-weight: 800;
}

.workflow-step h3 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	letter-spacing: -0.8px;
}

.workflow-step p {
	max-width: 450px;
	margin: 9px 0 0;
	color: #a8b9b7;
	font-size: 15px;
	line-height: 1.65;
}

.workflow-step > i {
	color: #667e7c;
	font-size: 22px;
	font-style: normal;
	transition: color 0.25s ease, transform 0.25s ease;
}

.workflow-step:hover > i {
	color: var(--lime);
	transform: translate(4px, -4px);
}

.clarity-section {
	background: #e8e5da;
}

.clarity-heading {
	display: grid;
	grid-template-columns: 0.55fr 1.45fr;
	align-items: start;
	gap: 80px;
	margin-bottom: 65px;
}

.clarity-heading .section-number {
	margin-top: 12px;
}

.clarity-heading h2 {
	max-width: 850px;
}

.before-after {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.before-panel,
.after-panel {
	padding: 45px;
}

.before-panel {
	background: rgba(255, 255, 255, 0.35);
}

.after-panel {
	background: #fff;
	box-shadow: -20px 0 50px rgba(16, 42, 46, 0.08);
}

.ba-label {
	display: flex;
	align-items: center;
	gap: 9px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--line);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.status-dot.muted { background: #a9b0ab; }
.status-dot.active { background: #87b72e; box-shadow: 0 0 0 5px rgba(135, 183, 46, 0.12); }

.before-after ul {
	display: grid;
	gap: 0;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.before-after li {
	display: grid;
	grid-template-columns: 43px 1fr;
	align-items: start;
	gap: 14px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.before-after li:last-child { border-bottom: 0; }

.before-after li > span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: rgba(16, 42, 46, 0.06);
	color: #899492;
	font-size: 18px;
}

.after-panel li > span {
	background: rgba(201, 240, 107, 0.3);
	color: #527618;
}

.before-after p {
	display: flex;
	margin: 0;
	flex-direction: column;
}

.before-after strong {
	font-family: "Manrope", sans-serif;
	font-size: 17px;
}

.before-after small {
	margin-top: 5px;
	color: #6b7d7c;
	font-size: 14px;
}

.trust-section {
	background: #143438;
	color: #fff;
}

.trust-heading {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: end;
	gap: 100px;
	margin-bottom: 60px;
}

.trust-heading p {
	margin: 0 0 6px;
	color: #aec1bf;
	font-size: 17px;
	line-height: 1.7;
}

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

.trust-card {
	min-height: 330px;
	padding: 35px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.035);
	transition: background 0.25s ease, transform 0.25s ease;
}

.trust-card:hover {
	background: rgba(255, 255, 255, 0.065);
	transform: translateY(-4px);
}

.trust-icon {
	display: grid;
	width: 60px;
	height: 60px;
	margin-bottom: 59px;
	place-items: center;
	border-radius: 16px;
	background: rgba(201, 240, 107, 0.12);
	color: var(--lime);
}

.trust-icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.trust-card h3 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	letter-spacing: -0.7px;
}

.trust-card p {
	margin: 13px 0 0;
	color: #aabbb9;
	font-size: 14px;
	line-height: 1.7;
}

.trust-banner {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	align-items: center;
	gap: 28px;
	margin-top: 16px;
	padding: 28px 32px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: var(--lime);
	color: var(--ink-deep);
}

.trust-banner-mark {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 14px;
	background: var(--ink);
}

.trust-banner-mark svg {
	width: 40px;
	height: 40px;
	fill: #fff;
}

.trust-banner-mark path:last-child { fill: var(--lime); }

.trust-banner p {
	max-width: 800px;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
}

.trust-banner > span {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	white-space: nowrap;
}

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

.faq-grid {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	align-items: start;
	gap: 110px;
}

.faq-intro {
	position: sticky;
	top: 130px;
}

.faq-intro h2 {
	font-size: clamp(42px, 4.5vw, 62px);
}

.faq-intro > p {
	max-width: 420px;
	margin: 25px 0;
	color: var(--ink-soft);
	font-size: 16px;
}

.dark-link span:last-child {
	font-size: 19px;
}

.dark-link:hover span:last-child {
	transform: translateX(4px);
}

.accordion {
	border-top: 1px solid var(--line);
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-item > button {
	display: grid;
	grid-template-columns: 1fr 28px;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 27px 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.faq-item > button span {
	font-family: "Manrope", sans-serif;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.4px;
}

.faq-item > button i {
	position: relative;
	display: block;
	width: 25px;
	height: 25px;
	border: 1px solid var(--line);
	border-radius: 50%;
}

.faq-item > button i::before,
.faq-item > button i::after {
	position: absolute;
	top: 11px;
	left: 7px;
	width: 9px;
	height: 1px;
	background: var(--ink);
	content: "";
	transition: transform 0.25s ease;
}

.faq-item > button i::after {
	transform: rotate(90deg);
}

.faq-item.open > button i::after {
	transform: rotate(0);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
	min-height: 0;
	margin: 0;
	padding-right: 60px;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.75;
	overflow: hidden;
	transition: padding 0.35s ease;
}

.faq-item.open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
	padding-bottom: 28px;
}

.contact-section {
	position: relative;
	padding: 124px 0;
	background: var(--ink-deep);
	color: #fff;
	overflow: hidden;
}

.contact-section::before,
.contact-section::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	content: "";
}

.contact-section::before {
	top: -270px;
	right: -110px;
	width: 650px;
	height: 650px;
}

.contact-section::after {
	top: -145px;
	right: 15px;
	width: 400px;
	height: 400px;
}

.contact-orbit {
	position: absolute;
	right: 143px;
	bottom: -70px;
	width: 200px;
	height: 200px;
	border: 58px solid rgba(201, 240, 107, 0.08);
	border-radius: 50%;
}

.contact-inner {
	position: relative;
	z-index: 2;
}

.contact-inner h2 {
	max-width: 930px;
	font-size: clamp(50px, 6vw, 84px);
}

.contact-inner > p {
	max-width: 650px;
	margin: 28px 0 34px;
	color: #aebfbd;
	font-size: 17px;
	line-height: 1.7;
}

.contact-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.contact-actions > span {
	color: #839895;
	font-size: 12px;
}

.site-footer {
	padding: 72px 0 25px;
	background: #071719;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 0.65fr 0.65fr;
	gap: 80px;
	padding-bottom: 65px;
}

.brand-footer .brand-mark {
	background: var(--lime);
}

.brand-footer .brand-mark svg { fill: var(--ink); }
.brand-footer .brand-mark .brand-mark-accent { fill: #fff; }
.brand-footer .brand-copy span { color: var(--lime); }

.footer-grid > div:first-child > p {
	margin: 19px 0 0;
	color: #718582;
	font-size: 14px;
}

.footer-links {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	flex-direction: column;
}

.footer-links strong {
	margin-bottom: 8px;
	color: #657a77;
	font-size: 9px;
	letter-spacing: 0.15em;
}

.footer-links a {
	color: #b3c0be;
	font-size: 13px;
	transition: color 0.2s ease;
}

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

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 23px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #5f7471;
	font-size: 11px;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-short { transition-delay: 0.08s; }
.reveal-delay { transition-delay: 0.16s; }

@media (max-width: 1180px) {
	:root { --shell: min(100% - 40px, 1120px); }

	.hero-grid {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 35px;
	}

	.hero-product {
		width: 700px;
		margin-right: -220px;
	}

	.dashboard-body { grid-template-columns: 120px 1fr; }
	.dashboard-sidebar { padding-inline: 10px; }
	.dashboard-main { padding: 24px 22px; }

	.audience-list { gap: 14px; font-size: 13px; }
	.workflow-grid { gap: 70px; }
	.faq-grid { gap: 70px; }
}

@media (max-width: 960px) {
	.nav-shell {
		grid-template-columns: 1fr auto;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		display: flex;
		width: min(390px, 88vw);
		padding: 115px 38px 50px;
		background: var(--cream);
		box-shadow: -30px 0 60px rgba(10, 30, 33, 0.15);
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		transform: translateX(105%);
		transition: transform 0.3s ease;
	}

	.nav-links.open { transform: translateX(0); }
	.nav-links a { font-family: "Manrope", sans-serif; font-size: 23px; }

	.nav-actions { position: relative; z-index: 3; }
	.menu-button { display: block; }

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

	.hero::before { width: 100%; clip-path: polygon(42% 0, 100% 0, 100% 100%, 12% 100%); }

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

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

	.hero-product {
		width: 810px;
		margin: 45px 0 0;
		transform: none;
	}

	.audience-inner {
		padding: 26px 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.audience-list { flex-wrap: wrap; }

	.section-heading,
	.trust-heading {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bento-card { padding: 32px; }
	.customer-visual { right: 25px; left: 45px; }
	.kanban-mini { left: 20px; }

	.workflow-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 65px;
	}

	.workflow-copy,
	.faq-intro { position: static; }
	.workflow-copy { max-width: 680px; }

	.clarity-heading { grid-template-columns: 1fr; gap: 20px; }
	.clarity-heading .section-number { margin-top: 0; }

	.trust-grid { grid-template-columns: 1fr; }
	.trust-card { min-height: 0; }
	.trust-icon { margin-bottom: 38px; }

	.trust-banner { grid-template-columns: 60px 1fr; }
	.trust-banner > span { grid-column: 2; }
}

@media (max-width: 720px) {
	:root {
		--shell: calc(100vw - 30px);
		--radius-md: 18px;
	}

	.site-header { padding: 12px 0; }
	.brand-copy strong { font-size: 18px; }
	.brand-mark { width: 35px; height: 35px; }
	.brand-mark svg { width: 28px; height: 28px; }
	.nav-cta { display: none; }
	.nav-actions { gap: 13px; }

	.hero {
		padding: 124px 0 78px;
	}

	.hero h1 { font-size: clamp(50px, 15vw, 70px); }
	.hero-intro { font-size: 16px; }
	.hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
	.hero-proof { display: grid; grid-template-columns: 1fr 1fr; }

	.hero-product {
		width: 660px;
		margin-top: 28px;
		transform: scale(0.73);
		transform-origin: top left;
		margin-bottom: -125px;
	}

	.floating-note { display: none; }

	.audience-list i { display: none; }
	.audience-list { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }

	.section { padding: 90px 0; }
	.section-heading { margin-bottom: 40px; }
	.section-heading h2,
	.workflow-copy h2,
	.clarity-heading h2,
	.trust-heading h2,
	.faq-intro h2 { font-size: 43px; }

	.bento-grid { grid-template-columns: 1fr; }
	.bento-card { min-height: 575px; padding: 29px; }
	.bento-tasks,
	.bento-quotes { min-height: 460px; }
	.card-copy h3 { font-size: 27px; }
	.customer-visual { right: 20px; left: 29px; }
	.kanban-mini { right: -120px; left: 22px; }
	.reminder-card,
	.quote-paper { right: 28px; left: 28px; }
	.reminder-card { grid-template-columns: 44px 1fr; padding: 16px; }
	.reminder-icon { width: 44px; height: 44px; }

	.workflow-step { grid-template-columns: 38px 1fr; gap: 17px; padding: 30px 0; }
	.workflow-step > i { display: none; }

	.before-after { grid-template-columns: 1fr; }
	.before-panel,
	.after-panel { padding: 28px; }
	.after-panel { box-shadow: 0 -20px 50px rgba(16, 42, 46, 0.05); }

	.trust-heading { margin-bottom: 40px; }
	.trust-card { padding: 29px; }
	.trust-banner { grid-template-columns: 1fr; padding: 28px; }
	.trust-banner > span { grid-column: auto; }

	.faq-grid { gap: 46px; }
	.faq-item > button span { font-size: 17px; }
	.faq-answer p { padding-right: 10px; }

	.contact-section { padding: 92px 0; }
	.contact-inner h2 { font-size: 47px; }
	.contact-actions { align-items: flex-start; flex-direction: column; }

	.footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 35px; }
	.footer-grid > div:first-child { grid-column: 1 / -1; }

	.footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
	.hero-product {
		transform: scale(0.58);
		margin-bottom: -195px;
	}

	.hero-proof { grid-template-columns: 1fr; }
	.audience-list { grid-template-columns: 1fr; }
	.bento-card { min-height: 590px; }
	.bento-tasks,
	.bento-quotes { min-height: 480px; }
	.kanban-mini { right: -210px; }
	.quote-paper { bottom: -36px; }
	.reminder-card { bottom: 30px; }
	.before-panel,
	.after-panel { padding: 24px 21px; }
	.trust-banner-mark { width: 52px; height: 52px; }
}

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

	.reveal {
		opacity: 1;
		transform: none;
	}
}
