@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;600;700&family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700&display=swap");

:root {
	color-scheme: light;
	--blue: #b9dbf2;
	--blue-strong: #5a8fb9;
	--smoke: #f5f5f5;
	--white: #ffffff;
	--orange: #e6a06a;
	--yellow: #f3c873;
	--ink: #0f1b2d;
	--ink-soft: #2a3b52;
	--line: #d7e2ed;
	--shadow: 0 18px 48px rgba(15, 27, 45, 0.16);
	--radius: 18px;
	--brand-candor: #7b3f22;
	--brand-lead: #4b7fa8;
	--brand-mark-size: 84px;
	--brand-name-size: 36px;
	--brand-lead-size: calc(var(--brand-name-size) * 0.5);
	--font-body: "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
	--font-display: "Comfortaa", "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
	--font-brand: "Comfortaa", "Fredoka", "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
	--font-lead: "Comfortaa", "Fredoka", "Nunito", "Trebuchet MS", "Gill Sans", "Optima", sans-serif;
	--logo-image: url("https://candor.you/files/img/logo/candor-mark.png?v=13");
	--logo-zoom: 100% 100%;
	--logo-glyph-opacity: 0;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font-body);
	color: var(--ink);
	background: radial-gradient(1200px 600px at 10% -10%, rgba(185, 219, 242, 0.7), transparent 60%),
		linear-gradient(180deg, #f8fbff 0%, #f5f5f5 55%, #fff6ee 100%);
}

body::before,
body::after {
	content: "";
	position: fixed;
	z-index: -1;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	opacity: 0.4;
	filter: blur(0);
}

body::before {
	top: -160px;
	right: -120px;
	background: radial-gradient(circle, rgba(243, 200, 115, 0.85), rgba(243, 200, 115, 0.2) 60%, transparent 70%);
}

body::after {
	bottom: -200px;
	left: -140px;
	background: radial-gradient(circle, rgba(230, 160, 106, 0.75), rgba(230, 160, 106, 0.2) 60%, transparent 70%);
}

body.is-do {
	background: radial-gradient(1100px 640px at 90% -10%, rgba(185, 219, 242, 0.8), transparent 55%),
		linear-gradient(180deg, #f7fbff 0%, #f5f5f5 50%, #fff5ea 100%);
}

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

.osEm {
	font-weight: 800;
	color: var(--ink);
	background-image: linear-gradient(90deg, rgba(243, 200, 115, 0.85), rgba(185, 219, 242, 0.85));
	background-size: 100% 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 2px;
}

body.is-landing .brand .meta .osEm {
	background-image: none;
	padding-bottom: 0;
	font-weight: 700;
	color: var(--ink);
}

.page {
	--page-gutter: clamp(14px, 2.6vw, 54px);
	--edge-pad: clamp(8px, calc(var(--page-gutter) * 0.35), 22px);
	width: 100%;
	max-width: none;
	margin: 0;
	padding: var(--edge-pad) var(--page-gutter);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

body.is-landing .page {
	padding-bottom: clamp(10px, calc(var(--page-gutter) * 0.4), 24px);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	letter-spacing: 1px;
}

.brandLink {
	text-decoration: none;
	color: inherit;
}

.brandTitle {
	position: relative;
}

.logo {
	width: var(--brand-mark-size);
	height: var(--brand-mark-size);
	aspect-ratio: 1 / 1;
	border-radius: 0;
	display: grid;
	place-items: center;
	background-color: transparent;
	background-image: var(--logo-image);
	background-size: var(--logo-zoom);
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	overflow: visible;
	position: relative;
	flex: 0 0 auto;
}

.logoGlyph {
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 24px;
	color: var(--ink);
	line-height: 1;
	opacity: var(--logo-glyph-opacity);
}

.brand .meta {
	font-size: 12px;
	text-transform: none;
	letter-spacing: 0.4px;
	color: var(--ink-soft);
	font-family: var(--font-body);
	position: absolute;
	bottom: 4px;
	left: 0;
	right: 0;
}

.brand .meta.minimal {
	text-transform: none;
	letter-spacing: 1.2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-weight: 600;
}

.brand .meta.minimal::before,
.brand .meta.minimal::after {
	content: "-";
}


.brandText {
	position: relative;
	height: var(--brand-mark-size);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: transform 0.16s ease;
	transform-origin: center;
}

.brandTitle {
	display: flex;
	align-items: baseline;
	gap: 0;
	justify-content: center;
}

.brandLead {
	font-size: var(--brand-lead-size);
	font-weight: 700;
	text-transform: lowercase;
	letter-spacing: 0.2px;
	color: var(--brand-lead);
	margin-right: 0;
	font-family: var(--font-brand);
	line-height: 1;
}

.brandName,
.brandLead {
	transition: text-shadow 0.16s ease;
}

.brandName {
	font-size: var(--brand-name-size);
	font-weight: 700;
	letter-spacing: 0.4px;
	color: var(--brand-candor);
	font-family: var(--font-brand);
	line-height: 1;
}

.brandLink:hover .brandText {
	transform: scale(1.03);
}

.brandLink:hover .brandName {
	text-shadow: 0 6px 16px rgba(123, 63, 34, 0.24);
}

.brandLink:hover .brandLead {
	text-shadow: 0 6px 16px rgba(75, 127, 168, 0.22);
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.welcome {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--ink-soft);
}

.accountLink {
	color: var(--ink);
	font-weight: 700;
	font-size: 19px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}

.accountLink:hover {
	border-bottom-color: var(--brand-candor);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.2px;
}

body.is-landing .btn {
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(15, 27, 45, 0.16);
	transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

body.is-landing .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(15, 27, 45, 0.22);
}

body.is-landing .btn:active {
	transform: translateY(0);
}

.btn.primary {
	background: var(--ink);
	color: var(--smoke);
	border-color: var(--ink);
}

.btn.accent {
	background: linear-gradient(135deg, var(--orange), var(--yellow));
	color: #2a1a0f;
	border-color: #e1a36d;
}

.btn.ghost {
	background: transparent;
}

.btn.slim {
	min-height: 30px;
	padding: 0 12px;
	font-size: 12px;
}

.hero {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 36px;
	align-items: center;
}

.hero h1 {
	margin: 0 0 16px;
	font-size: clamp(38px, 6vw, 72px);
	letter-spacing: -0.6px;
	font-family: var(--font-display);
}

.hero p {
	margin: 0 0 22px;
	font-size: 18px;
	color: var(--ink-soft);
	line-height: 1.7;
	max-width: 620px;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(185, 219, 242, 0.5);
	border: 1px solid rgba(185, 219, 242, 0.9);
	color: var(--ink);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}

body.is-landing .card,
body.is-landing .list li {
	position: relative;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

body.is-landing .card:hover {
	transform: translateY(-6px);
	border-color: rgba(90, 143, 185, 0.45);
	box-shadow: 0 22px 54px rgba(15, 27, 45, 0.24);
}

body.is-landing .list li:hover {
	transform: translateY(-3px);
	border-color: rgba(90, 143, 185, 0.65);
	background: rgba(185, 219, 242, 0.3);
	box-shadow: 0 16px 32px rgba(15, 27, 45, 0.18);
}

body.is-landing .card::after,
body.is-landing .list li::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -70%;
	width: 60%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
	opacity: 0;
	transform: rotate(14deg) translateX(-30%);
	transition: opacity 0.2s ease, transform 0.5s ease;
	pointer-events: none;
}

body.is-landing .card:hover::after,
body.is-landing .list li:hover::after {
	opacity: 0.6;
	transform: rotate(14deg) translateX(180%);
}

.card h3 {
	margin: 0 0 12px;
	font-size: 18px;
}

.card p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.6;
	font-size: 14px;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(243, 200, 115, 0.35);
	border: 1px solid rgba(230, 160, 106, 0.5);
	font-weight: 600;
	font-size: 12px;
	margin: -14px 0 8px -14px;
}

.chipTasks {
	background: rgba(185, 219, 242, 0.5);
	border-color: rgba(90, 143, 185, 0.55);
}

.chipNotes {
	background: rgba(243, 200, 115, 0.45);
	border-color: rgba(230, 160, 106, 0.55);
}

.chipPlanner {
	background: rgba(230, 160, 106, 0.28);
	border-color: rgba(230, 160, 106, 0.45);
}

.grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0;
}

.panel {
	display: grid;
	gap: 12px;
}

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

.list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(185, 219, 242, 0.2);
	border: 1px solid rgba(185, 219, 242, 0.6);
	font-size: 14px;
}

.subtle {
	color: var(--ink-soft);
	font-size: 13px;
}

.footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--ink-soft);
	padding-top: 28px;
	padding-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

.footLink {
	position: relative;
	color: inherit;
	text-decoration: none;
	padding-bottom: 2px;
	transition: transform 0.12s ease, color 0.12s ease;
}

.footLink::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--blue-strong), var(--yellow));
	opacity: 0;
	transform: scaleX(0.6);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.footLink:hover {
	color: var(--ink);
	transform: translateY(-1px);
}

.footLink:hover::after {
	opacity: 0.8;
	transform: scaleX(1);
}

.footStrong {
	font-weight: 600;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	animation: rise 700ms ease forwards;
	animation-delay: var(--d, 0ms);
}

@keyframes rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

@media (max-width: 720px) {
	.page {
		--page-gutter: 12px;
		padding: var(--edge-pad) var(--page-gutter);
		gap: 24px;
	}

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

	.actions {
		width: 100%;
		align-items: center;
	}

	.actions .btn {
		flex: 1 1 140px;
	}

	.cta-row .btn {
		flex: 1 1 160px;
	}

	.hero .panel {
		display: none;
	}

	.footer {
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		animation: none;
		opacity: 1;
		transform: none;
	}
}








