@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");
:root {
	font-family: "DM Sans", sans-serif;
	color: #17232c;
	background: #f7f8f8;
	font-synthesis: none;
	--ink: #17232c;
	--muted: #78858d;
	--line: #e3e8e9;
	--mint: #b8e8d2;
	--mint-dark: #1c735b;
	--navy: #203746;
	--coral: #ef927a;
	--panel: #fff;
}

.team-invite {
	display: flex;
	align-items: end;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.team-invite label {
	display: grid;
	gap: 8px;
	flex: 1;
	font-size: 13px;
	font-weight: 700;
}
.team-invite input {
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--panel);
	color: var(--ink);
	font: inherit;
}
@media (max-width: 600px) {
	.team-invite {
		align-items: stretch;
		flex-direction: column;
	}
}
* {
	box-sizing: border-box;
}
:focus-visible {
	outline: 3px solid var(--mint-dark);
	outline-offset: 3px;
}
body {
	margin: 0;
	background: #f7f8f8;
}
.shell {
	display: flex;
	min-height: 100vh;
}
.sidebar {
	width: 244px;
	flex: 0 0 244px;
	background: #fff;
	border-right: 1px solid var(--line);
	padding: 28px 16px 18px;
	display: flex;
	flex-direction: column;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: Manrope, sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.05em;
	padding: 0 12px 29px;
}
.brand-mark {
	width: 29px;
	height: 29px;
	display: block;
	border-radius: 9px;
	transform: rotate(-5deg);
	object-fit: cover;
}
.workspace {
	display: flex;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 9px 8px;
	margin-bottom: 27px;
	color: var(--ink);
}
.workspace strong,
.profile strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
}
.icon {
	display: inline-flex;
	width: 17px;
	height: 17px;
	align-items: center;
	justify-content: center;
	flex: none;
}
.workspace small,
.profile small,
.author-row small,
.account-item small {
	display: block;
	color: var(--muted);
	font-size: 11px;
	margin-top: 2px;
}
.workspace > .icon,
.profile > .icon {
	margin-left: auto;
	width: 15px;
	color: #9aa5ab;
}
.avatar {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 700;
	flex: none;
}
.avatar-gold {
	background: #f3c67b;
	color: #66421f;
}
.avatar-navy {
	background: #264454;
	color: #d9f1e4;
}
.nav {
	display: grid;
	gap: 4px;
}
.nav a {
	color: #6b7981;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 11px;
	border-radius: 8px;
}
.nav a.active {
	background: #e7f7ee;
	color: var(--mint-dark);
}
.icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.nav-label {
	font-size: 10px;
	font-weight: 700;
	color: #a5afb3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-top: 1px solid var(--line);
	padding: 22px 12px 0;
	margin: 28px 0 8px;
}
.nav-count {
	margin-left: auto;
	background: #edf0f1;
	padding: 2px 6px;
	border-radius: 9px;
	font-size: 10px;
}
.nav-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--coral);
	margin-left: auto;
}
.sidebar-foot {
	margin-top: auto;
}
.help-card {
	background: #f4f7f5;
	border-radius: 11px;
	padding: 13px 9px;
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 2px 17px;
}
.help-orb {
	background: #d2eee0;
	color: #227358;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	font-weight: 700;
}
.help-card strong {
	display: block;
	font-size: 11px;
}
.help-card small {
	display: block;
	font-size: 10px;
	color: var(--muted);
	margin-top: 3px;
}
.profile {
	border-top: 1px solid var(--line);
	padding: 17px 8px 0;
	display: flex;
	align-items: center;
	gap: 9px;
}
.main {
	min-width: 0;
	flex: 1;
}
.topbar {
	height: 70px;
	border-bottom: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 46px;
	background: #fff;
}
.crumb {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #a0aaae;
	font-size: 12px;
}
.crumb strong {
	color: #53626a;
}
.top-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.icon-button {
	border: 0;
	background: none;
	color: #718087;
	font-size: 25px;
	cursor: pointer;
}
.bell {
	width: 18px;
	height: 18px;
	border: 1.5px solid currentColor;
	border-radius: 12px 12px 5px 5px;
	display: block;
	font-size: 0;
	position: relative;
}
.bell:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 5px;
	width: 6px;
	border-top: 1.5px solid currentColor;
}
.avatar-button {
	border: 2px solid #d7e9df;
	cursor: pointer;
}
.content {
	max-width: 1260px;
	margin: 0 auto;
	padding: 41px 46px 60px;
}
.page-view[hidden] {
	display: none;
}
.page-create {
	display: grid;
	grid-template-columns: minmax(420px, 1.27fr) minmax(320px, 0.73fr);
	gap: 28px;
	align-items: start;
}
.page-list {
	max-width: 960px;
}
.welcome {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 31px;
}
.welcome h1 {
	font-family: Manrope, sans-serif;
	margin: 0;
	font-size: 30px;
	letter-spacing: -0.045em;
	color: #172b35;
}
.welcome p {
	color: var(--muted);
	font-size: 13px;
	margin: 7px 0 0;
}
.sun {
	font-family: serif;
	color: #e4ab5d;
	font-size: 20px;
	margin-left: 10px;
	vertical-align: 4px;
}
.primary,
.publish-button {
	border: 0;
	background: var(--navy);
	color: white;
	border-radius: 8px;
	padding: 12px 16px;
	font-weight: 700;
	font-size: 12px;
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 3px 8px #00000012;
}
.publish-actions {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}
.publish-actions label {
	display: grid;
	gap: 4px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
}
.publish-actions input {
	border: 1px solid var(--line);
	border-radius: 7px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-weight: 500;
	padding: 8px;
}
.schedule-button {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font-size: 11px;
	font-weight: 700;
	padding: 10px 12px;
}
.primary .icon {
	width: 15px;
}
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 18px;
}
.stat {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 11px;
	padding: 18px 20px 17px;
}
.stat-label {
	color: #6e7c83;
	font-size: 12px;
	display: block;
	margin-bottom: 11px;
}
.stat strong {
	font-family: Manrope, sans-serif;
	font-size: 27px;
	letter-spacing: -0.04em;
}
.stat strong small {
	color: #aeb8bc;
	font-size: 15px;
}
.trend {
	display: block;
	font-size: 10px;
	margin-top: 8px;
}
.trend em {
	color: #99a3a8;
	font-style: normal;
	margin-left: 4px;
}
.trend.up {
	color: #2c9774;
}
.trend.neutral {
	color: #96a1a5;
}
.work-grid {
	display: grid;
	grid-template-columns: minmax(420px, 1.27fr) minmax(320px, 0.73fr);
	gap: 18px;
}
.panel {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
}
.panel-head {
	padding: 20px 22px 17px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.panel-head h2 {
	font-family: Manrope, sans-serif;
	font-size: 16px;
	letter-spacing: -0.035em;
	margin: 0;
	color: #1c313b;
}
.panel-head p {
	font-size: 11px;
	color: #8b989d;
	margin: 5px 0 0;
}
.draft-pill {
	font-size: 10px;
	color: #6a787e;
	background: #f3f6f5;
	border-radius: 12px;
	padding: 5px 9px;
}
.composer-body {
	padding: 0 22px 20px;
}
.author-row {
	display: flex;
	align-items: center;
	gap: 9px;
	border-top: 1px solid var(--line);
	padding: 17px 0 14px;
}
.author-row strong {
	font-size: 12px;
}
.author-row > .icon {
	margin-left: auto;
	color: #9aa7ab;
	width: 15px;
}
.composer textarea {
	resize: none;
	border: 0;
	outline: 0;
	background: #fbfcfc;
	border-radius: 8px;
	width: 100%;
	height: 94px;
	padding: 13px 14px;
	font:
		13px / 1.55 "DM Sans",
		sans-serif;
	color: var(--ink);
}
.composer textarea:focus {
	box-shadow: 0 0 0 2px #b8e8d2;
}
.composer-tools {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 0 17px;
}
.tool-button,
.channel-select {
	border: 1px solid #cfe9dc;
	background: #f0fbf5;
	color: #297a61;
	font-weight: 700;
	border-radius: 6px;
	padding: 7px 9px;
	font-size: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}
.tool-button .icon {
	width: 14px;
}
.tool-button:disabled {
	opacity: 0.6;
}
.tool-hint {
	font-size: 10px;
	color: #a0aaae;
}
.char-count {
	margin-left: auto;
	font-size: 10px;
	color: #a0aaae;
}
.char-count.over {
	color: var(--coral);
	font-weight: 700;
}
.media-drop {
	border: 1px dashed #c9d5d5;
	border-radius: 8px;
	min-height: 65px;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 13px;
	color: #78918a;
}
.media-drop > .icon {
	width: 21px;
	height: 21px;
}
.media-drop strong {
	font-size: 11px;
	color: #4e6266;
	display: block;
}
.media-drop small {
	font-size: 10px;
	color: #9da8ab;
	display: block;
	margin-top: 3px;
}
.text-button {
	border: 0;
	background: none;
	color: #278264;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	padding: 4px;
}
.media-drop .text-button {
	margin-left: auto;
}
.publish-row {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-top: 19px;
	gap: 12px;
}
.selected-networks {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}
.network-toggle {
	border: 1px solid var(--line);
	background: #fff;
	color: #617076;
	border-radius: 7px;
	padding: 6px 8px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	cursor: pointer;
}
.network-toggle.selected {
	border-color: #b9e5d0;
	background: #f3fbf6;
	color: #286d57;
}
.network-toggle.disabled {
	opacity: 0.5;
}
.network-toggle small {
	font-size: 9px;
	color: #a18151;
}
.network-mark {
	width: 19px;
	height: 19px;
	border-radius: 6px;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 800;
	color: white;
	background: #7a898c;
}
.network-mark.coral {
	background: #ef927a;
}
.network-mark.blue {
	background: #5588cb;
}
.network-mark.ink {
	background: #273b43;
}
.network-mark.aqua {
	background: #58aeb1;
}
.publish-button {
	white-space: nowrap;
	padding: 11px 13px;
	font-size: 11px;
}
.preview .panel-head {
	padding-bottom: 14px;
}
.channel-select {
	background: #fff;
	color: #617076;
	border-color: var(--line);
	font-weight: 600;
}
.channel-select .network-mark {
	width: 16px;
	height: 16px;
}
.phone {
	margin: 0 32px;
	border: 1px solid #dfe6e6;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 18px #0000000d;
}
.phone-head {
	height: 38px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 11px;
	font-size: 10px;
}
.preview-network-note {
	padding: 5px 11px;
	border-top: 1px solid #eef1f1;
	border-bottom: 1px solid #eef1f1;
	color: #96a1a3;
	font-size: 8px;
	letter-spacing: 0.04em;
}
.phone.preview-x .preview-network-note {
	color: #4b5559;
}
.phone.preview-tiktok .preview-network-note {
	color: #3b6d76;
}
.avatar-small {
	width: 20px;
	height: 20px;
	font-size: 7px;
}
.more {
	margin-left: auto;
	letter-spacing: 2px;
	font-size: 9px;
}
.post-image {
	height: 183px;
	background: linear-gradient(135deg, #dce8d9 0%, #f8e3ba 46%, #e9a383 100%);
	position: relative;
	overflow: hidden;
}
.post-image:before {
	content: "";
	position: absolute;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: #efad88;
	right: -42px;
	top: 32px;
	opacity: 0.65;
}
.post-image:after {
	content: "";
	position: absolute;
	width: 170px;
	height: 240px;
	background: #95b9ad;
	transform: rotate(30deg);
	left: 96px;
	top: -77px;
	opacity: 0.7;
}
.image-sun {
	position: absolute;
	z-index: 2;
	top: 20px;
	left: 20px;
	color: #fff3d2;
	font-size: 27px;
}
.image-copy {
	position: absolute;
	z-index: 3;
	left: 21px;
	bottom: 28px;
	font-family: Manrope, sans-serif;
	font-size: 22px;
	line-height: 1.03;
	letter-spacing: -0.06em;
	color: #1f4143;
}
.image-copy i {
	font-family: serif;
	font-weight: 400;
}
.image-tag {
	position: absolute;
	z-index: 4;
	right: 17px;
	bottom: 16px;
	font-size: 7px;
	letter-spacing: 0.16em;
	color: #446568;
}
.post-actions {
	display: flex;
	gap: 14px;
	padding: 10px 11px 3px;
	font-family: serif;
	font-size: 19px;
	color: #31484c;
}
.post-actions .save {
	margin-left: auto;
}
.preview-caption {
	font-size: 10px;
	line-height: 1.4;
	padding: 0 11px 13px;
	margin: 0;
	color: #6c797d;
}
.preview-caption strong {
	color: #2a3b40;
	margin-right: 4px;
}
.preview-tabs {
	display: flex;
	border-top: 1px solid var(--line);
	margin-top: 18px;
	padding: 0 22px;
}
.preview-tabs button {
	border: 0;
	background: none;
	padding: 12px 10px;
	color: #99a3a6;
	font-size: 10px;
	cursor: pointer;
}
.preview-tabs button.active {
	color: #286d57;
	border-bottom: 2px solid #4eaa84;
	font-weight: 700;
}
.lower-grid {
	display: grid;
	grid-template-columns: 1.27fr 0.73fr;
	gap: 18px;
	margin-top: 18px;
}
.activity-list {
	border-top: 1px solid var(--line);
	padding: 0 22px;
}
.activity-item {
	display: flex;
	align-items: center;
	gap: 11px;
	border-bottom: 1px solid #eef1f1;
	padding: 13px 0;
}
.activity-item:last-child {
	border: 0;
}
.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex: none;
}
.status-dot.published {
	background: #5eb68e;
}
.status-dot.scheduled {
	background: #dfb36e;
}
.status-dot.draft {
	background: #a8b4b7;
}
.status-dot.processing {
	background: #8b7ed8;
}
.status-dot.needs_attention,
.status-dot.failed {
	background: var(--coral);
}
.activity-item strong {
	display: block;
	font-size: 11px;
}
.activity-item small {
	font-size: 10px;
	color: #909da1;
	display: block;
	margin-top: 3px;
}
.activity-item time {
	margin-left: auto;
	color: #a5afb1;
	font-size: 10px;
	white-space: nowrap;
}
.account-list {
	border-top: 1px solid var(--line);
	padding: 0 22px;
}
.account-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 11px 0;
	border-bottom: 1px solid #eef1f1;
}
.account-item:last-child {
	border: 0;
}
.account-item strong {
	font-size: 11px;
	display: block;
}
.account-state {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
}
.account-state.disconnect-account {
	border: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
}
.account-state.ready {
	color: #33916c;
}
.account-state.connect {
	color: #c17d4e;
}
.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translate(-50%, 20px);
	opacity: 0;
	background: #203746;
	color: #fff;
	padding: 12px 18px;
	border-radius: 8px;
	font-size: 12px;
	transition: 0.25s ease;
	pointer-events: none;
	box-shadow: 0 5px 20px #00000024;
}
.toast.show {
	transform: translate(-50%, 0);
	opacity: 1;
}
@media (max-width: 1000px) {
	.sidebar {
		width: 205px;
		flex-basis: 205px;
	}
	.topbar {
		padding: 0 28px;
	}
	.content {
		padding-left: 28px;
		padding-right: 28px;
	}
	.work-grid,
	.lower-grid,
	.page-create {
		grid-template-columns: 1fr;
	}
	.page-create {
		gap: 24px;
	}
	.preview {
		max-width: 620px;
	}
	.phone {
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width: 680px) {
	.sidebar {
		display: none;
	}
	.topbar {
		height: 58px;
		padding: 0 18px;
	}
	.content {
		padding: 28px 16px 40px;
	}
	.welcome {
		align-items: flex-start;
		gap: 16px;
		flex-direction: column;
		margin-bottom: 24px;
	}
	.welcome h1 {
		font-size: 25px;
	}
	.stats {
		grid-template-columns: 1fr;
		gap: 9px;
	}
	.stat {
		padding: 14px 16px;
	}
	.stat strong {
		font-size: 23px;
	}
	.work-grid,
	.lower-grid,
	.page-create {
		gap: 12px;
	}
	.page-create {
		gap: 20px;
	}
	.panel-head {
		padding: 17px 16px 14px;
	}
	.composer-body {
		padding: 0 16px 17px;
	}
	.publish-row {
		align-items: stretch;
		flex-direction: column;
	}
	.publish-button {
		justify-content: center;
	}
	.publish-actions {
		flex-wrap: wrap;
	}
	.publish-actions label {
		flex: 1 1 160px;
	}
	.selected-networks {
		gap: 5px;
	}
	.network-toggle {
		flex: 1;
		justify-content: center;
	}
	.phone {
		margin: 0 19px;
	}
	.activity-list,
	.account-list {
		padding: 0 16px;
	}
	.activity-item time {
		display: none;
	}
	.top-actions {
		gap: 10px;
	}
}

.onboarding-shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	background: #f7f8f8;
}
.onboarding-art {
	background: #d8eee2;
	position: relative;
	overflow: hidden;
	padding: 33px 48px;
}
.onboarding-brand {
	padding: 0;
	color: #17313b;
}
.art-copy {
	position: relative;
	z-index: 2;
	margin: 25vh 0 0 10%;
	max-width: 430px;
}
.art-copy h1 {
	font-family: Manrope, sans-serif;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.99;
	letter-spacing: -0.07em;
	color: #17313b;
	margin: 0;
}
.art-copy h1 i {
	font-family: Georgia, serif;
	font-weight: 400;
	letter-spacing: -0.06em;
}
.art-copy p {
	color: #52746e;
	font-size: 15px;
	margin-top: 22px;
}
.orbit {
	position: absolute;
	border: 1px solid #8acdb3;
	border-radius: 50%;
	width: 540px;
	height: 540px;
	top: 22%;
	left: 3%;
	transform: rotate(-22deg);
}
.orbit-two {
	width: 730px;
	height: 730px;
	top: 9%;
	left: -11%;
	border-color: #b4dfc8;
}
.art-card {
	position: absolute;
	z-index: 3;
	background: #fff;
	border: 1px solid #d5e8df;
	border-radius: 10px;
	padding: 11px 13px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 5px 18px #0000000d;
	font-size: 11px;
}
.art-card-one {
	top: 25%;
	right: 17%;
	transform: rotate(4deg);
}
.art-card-two {
	top: 47%;
	right: 7%;
	transform: rotate(-5deg);
}
.art-card-three {
	bottom: 20%;
	left: 15%;
	transform: rotate(4deg);
}
.ready-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #6abd91;
	margin-left: 10px;
}
.onboarding-form {
	display: grid;
	place-items: center;
	padding: 40px;
}
.form-inner {
	width: min(390px, 100%);
}
.form-kicker {
	color: #32876b;
	font-size: 11px;
	font-weight: 700;
	margin: 0 0 18px;
}
.form-inner h2 {
	font-family: Manrope, sans-serif;
	color: #17313b;
	font-size: 37px;
	line-height: 1.04;
	letter-spacing: -0.06em;
	margin: 0;
}
.form-intro {
	color: #7d8b90;
	font-size: 13px;
	line-height: 1.55;
	margin: 15px 0 28px;
}
.login-options {
	display: grid;
	gap: 9px;
}
.auth-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0 15px;
	color: #9aa5ab;
	font-size: 11px;
}
.auth-divider::before,
.auth-divider::after {
	content: "";
	height: 1px;
	background: #dce5e5;
	flex: 1;
}
.email-auth-form {
	display: grid;
	gap: 12px;
}
.email-auth-form label {
	display: grid;
	gap: 6px;
	color: #34474e;
	font-size: 12px;
	font-weight: 700;
}
.email-auth-form label[hidden] {
	display: none;
}
.email-auth-form input {
	min-height: 44px;
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #dce5e5;
	border-radius: 7px;
	padding: 0 12px;
	background: #fff;
	color: #17313b;
	font: inherit;
	font-weight: 400;
}
.email-auth-form input:focus {
	border-color: #6abd91;
	outline: 3px solid #d8eee2;
}
.email-auth-submit {
	width: 100%;
	margin-top: 3px;
}
.email-auth-submit:disabled {
	opacity: 0.65;
	cursor: wait;
}
.auth-mode-toggle {
	border: 0;
	background: transparent;
	color: #32876b;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.auth-error {
	margin: 0;
	color: #b84a3a;
	font-size: 12px;
	line-height: 1.4;
}
.login-button,
.email-button {
	height: 48px;
	border: 1px solid #dce5e5;
	border-radius: 7px;
	background: #fff;
	color: #34474e;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}
.login-button:hover,
.email-button:hover {
	border-color: #aacfc0;
	background: #f7fbf8;
}
.provider-letter {
	width: 21px;
	height: 21px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	font-size: 12px;
}
.provider-letter.google {
	color: #4285f4;
	border: 1px solid #d8e2f5;
}
.provider-letter.facebook {
	color: #fff;
	background: #3b5998;
	font-family: system-ui, sans-serif;
}
.provider-letter.apple {
	color: #fff;
	background: #1b2b32;
	font-size: 8px;
}
.form-rule {
	display: flex;
	align-items: center;
	gap: 13px;
	color: #aab4b6;
	font-size: 10px;
	margin: 22px 0;
}
.form-rule:before,
.form-rule:after {
	content: "";
	height: 1px;
	background: #e2e8e8;
	flex: 1;
}
.email-button {
	width: 100%;
	background: #eff8f3;
	border-color: #cde7d9;
	color: #28785d;
}
.terms {
	color: #a0abad;
	font-size: 10px;
	text-align: center;
	margin: 22px 0 0;
}
.terms a {
	color: #578e7b;
}
.demo-login {
	display: block;
	text-align: center;
	color: #718087;
	font-size: 11px;
	text-decoration: underline;
	margin-top: 16px;
}
.ai-dialog {
	border: 0;
	border-radius: 18px;
	padding: 0;
	width: min(460px, calc(100vw - 32px));
	color: var(--ink);
	box-shadow: 0 24px 80px rgba(20, 39, 43, 0.22);
}
#publish-dialog {
	border: 0;
	border-radius: 18px;
	padding: 26px;
	width: min(420px, calc(100vw - 32px));
	color: var(--ink);
	box-shadow: 0 24px 80px rgba(20, 39, 43, 0.22);
}
#publish-dialog::backdrop {
	background: rgba(20, 39, 43, 0.28);
}
.publish-confirm h2 {
	margin: 4px 0 8px;
	font-size: 23px;
}
.publish-confirm p:not(.form-kicker) {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}
.ai-dialog::backdrop {
	background: rgba(20, 39, 43, 0.28);
}
#ai-form {
	padding: 26px;
}
.dialog-head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}
.dialog-head h2 {
	margin: 4px 0 7px;
	font-size: 23px;
}
.dialog-head p:last-child,
.dialog-note {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}
.dialog-close {
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 26px;
	line-height: 1;
	padding: 0 3px;
	align-self: flex-start;
}
.ai-dialog label {
	display: grid;
	gap: 7px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	margin-top: 15px;
}
.ai-dialog input,
.ai-dialog select {
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fbfcfc;
	color: var(--ink);
	font: inherit;
	font-weight: 500;
	padding: 11px 12px;
}
.dialog-note {
	margin-top: 14px;
}
.dialog-actions {
	display: flex;
	justify-content: flex-end;
	gap: 9px;
	margin-top: 22px;
}
.secondary {
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
}
.dialog-actions .primary,
.dialog-actions .secondary {
	border-radius: 9px;
	padding: 10px 14px;
}
@media (max-width: 760px) {
	.onboarding-shell {
		display: block;
	}
	.onboarding-art {
		min-height: 340px;
		padding: 25px 24px;
	}
	.art-copy {
		margin: 90px 0 0 6%;
	}
	.art-copy h1 {
		font-size: 45px;
	}
	.orbit {
		top: 25%;
		left: 31%;
		width: 350px;
		height: 350px;
	}
	.orbit-two {
		display: none;
	}
	.art-card-one {
		top: 22%;
		right: 8%;
	}
	.art-card-two {
		top: 55%;
		right: 8%;
	}
	.art-card-three {
		bottom: 12%;
		left: 9%;
	}
	.onboarding-form {
		padding: 43px 24px 60px;
	}
	.form-inner h2 {
		font-size: 32px;
	}
}
