/*
	Theme Name: Dayzy Reflection
	Author: Evolved Designs
	Version: 0.0.0.4
*/

@font-face {
    font-family: 'Birds of Paradise';
    src: url('fonts/birds_of_paradise__commercial_version-webfont.woff') format('woff'),
         url('fonts/birds_of_paradise__commercial_version-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: fallback;
	size-adjust: 100%;
	ascent-override: 90%;
	descent-override: 24%;
	line-gap-override: 0%;

}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700; /* variable range */
    font-style: normal;
	font-display: fallback;
	size-adjust: 101%;
	ascent-override: 92%;
	descent-override: 24%;
	line-gap-override: 0%;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: fallback;
	size-adjust: 100%;
	ascent-override: 92%;
	descent-override: 24%;
	line-gap-override: 0%;
}
@font-face {
    font-family: 'Alex Brush';
    src: url('fonts/AlexBrush-Regular.ttf') format('truetype');
    font-weight: 400 700; /* variable range */
    font-style: normal;
	font-display: fallback;
	size-adjust: 100%;
	ascent-override: 90%;
	descent-override: 24%;
	line-gap-override: 0%;
}

@font-face {
	font-family: 'Poppins Fallback';
	src: local('Arial');
	size-adjust: 101%;
	ascent-override: 92%;
	descent-override: 24%;
	line-gap-override: 0%;
}

@font-face {
	font-family: 'Raleway Fallback';
	src: local('Arial');
	size-adjust: 99%;
	ascent-override: 92%;
	descent-override: 24%;
	line-gap-override: 0%;
}

@font-face {
	font-family: 'Moments Script Fallback';
	src: local('Georgia');
	size-adjust: 96%;
	ascent-override: 88%;
	descent-override: 24%;
	line-gap-override: 0%;
}

* {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #172033;
	background: #ffffff;
	font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

:root {
	--reflection-blue: #8b5cf6;
	--reflection-blue-2: #f15bb5;
	--reflection-navy: #2f1b45;
	--reflection-ink: #4d405f;
	--reflection-muted: #7a6f86;
	--reflection-soft: #fff1f6;
	--reflection-soft-2: #fbf7ff;
	--reflection-paper: #ffffff;
	--reflection-teal: #7c3aed;
	--reflection-mint: #f3e8ff;
	--reflection-line: rgba(47, 27, 69, 0.12);
	--reflection-shadow: 0 18px 44px rgba(139, 92, 246, 0.16);
}

.reflection-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.reflection-header {
	position: relative;
	top: 0;
	z-index: 60;
	border-bottom: 1px solid var(--reflection-line);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
}

.reflection-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
}

.reflection-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	color: var(--reflection-navy);
	text-decoration: none;
	white-space: nowrap;
}

.reflection-logo__main {
	color: var(--reflection-blue);
	font-family: 'Alex Brush', cursive;
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.reflection-logo__by {
	color: var(--reflection-muted);
	font-family: 'Raleway', 'Raleway Fallback', sans-serif;
	font-size: 13px;
	font-weight: 700;
}

.reflection-logo__dayzy {
	color: var(--reflection-navy);
	font-size: 18px;
	font-weight: 900;
}

.reflection-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.reflection-menu a {
	color: var(--reflection-ink);
	font-size: 15px;
	font-weight: 850;
	text-decoration: none;
}

.reflection-menu a:hover,
.reflection-menu a:focus {
	color: var(--reflection-blue);
}

.reflection-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reflection-button,
.reflection-header__cta,
.reflection-signin-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--reflection-blue);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.reflection-button--primary,
.reflection-header__cta {
	background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(1, 118, 211, 0.22);
}

.reflection-button--primary:hover,
.reflection-button--primary:focus,
.reflection-header__cta:hover,
.reflection-header__cta:focus {
	transform: translateY(-1px);
	box-shadow: 0 18px 38px rgba(1, 118, 211, 0.26);
}

.reflection-button--secondary,
.reflection-signin-button {
	background: #ffffff;
	color: var(--reflection-blue);
	box-shadow: none;
}

.reflection-button--secondary:hover,
.reflection-button--secondary:focus,
.reflection-signin-button:hover,
.reflection-signin-button:focus {
	background: var(--reflection-soft);
}

.reflection-button--danger {
	border-color: rgba(220, 38, 38, 0.28);
	background: #fff1f1;
	color: #b42318;
	box-shadow: none;
}

.reflection-account-menu {
	position: relative;
}

.reflection-account-menu summary {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(1, 118, 211, 0.24);
	border-radius: 50%;
	background: var(--reflection-soft);
	color: var(--reflection-navy);
	cursor: pointer;
	list-style: none;
	box-shadow: 0 12px 26px rgba(23, 32, 51, 0.1);
}

.reflection-account-menu summary::-webkit-details-marker {
	display: none;
}

.reflection-account-menu summary span {
	font-size: 14px;
	font-weight: 900;
}

.reflection-account-menu__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 90;
	min-width: 230px;
	padding: 12px;
	border: 1px solid var(--reflection-line);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 22px 50px rgba(23, 32, 51, 0.16);
}

.reflection-account-menu__dropdown strong,
.reflection-account-menu__dropdown a {
	display: block;
}

.reflection-account-menu__dropdown strong {
	padding: 8px 10px 12px;
	color: var(--reflection-navy);
	font-size: 14px;
}

.reflection-account-menu__dropdown a {
	padding: 10px;
	border-radius: 10px;
	color: var(--reflection-ink);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.reflection-account-menu__dropdown a:hover,
.reflection-account-menu__dropdown a:focus {
	background: var(--reflection-soft);
	color: var(--reflection-blue);
}

.reflection-page {
	overflow: hidden;
}

.reflection-home-hero {
	padding: 86px 0 72px;
	background:
		radial-gradient(circle at 88% 18%, rgba(203, 244, 240, 0.92), transparent 34%),
		radial-gradient(circle at 8% 92%, rgba(225, 236, 255, 0.92), transparent 38%),
		linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
	color: var(--reflection-navy);
}

.reflection-home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1fr);
	align-items: center;
	gap: 46px;
}

.reflection-home-copy h1 {
	margin: 0;
	color: #050505;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 64px;
	line-height: 1;
	font-weight: 900;
}

.reflection-home-copy p {
	margin: 20px 0 0;
	color: var(--reflection-ink);
	font-size: 18px;
	line-height: 1.7;
}

.reflection-home-copy .reflection-eyebrow {
	color: var(--reflection-blue);
}

.reflection-highlight {
	display: inline;
	padding: 0 12px 2px;
	border-radius: 999px;
	background: #c9f5f0;
	color: #050505;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

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

.reflection-home-hero .reflection-button--secondary {
	border-color: rgba(1, 118, 211, 0.22);
	background: #ffffff;
	color: var(--reflection-blue);
}

.reflection-home-hero .reflection-proof-row span {
	border-color: rgba(1, 118, 211, 0.15);
	background: #ffffff;
	color: var(--reflection-navy);
	box-shadow: 0 14px 34px rgba(16, 36, 60, 0.1);
}

.reflection-family-preview {
	position: relative;
	display: grid;
	grid-template-columns: minmax(220px, 0.72fr) minmax(240px, 0.82fr);
	gap: 18px;
	align-items: center;
}

.reflection-phone {
	border: 1px solid rgba(1, 118, 211, 0.1);
	border-radius: 36px;
	background: #ffffff;
	box-shadow: 0 26px 70px rgba(23, 32, 51, 0.14);
	color: var(--reflection-navy);
}

.reflection-phone--family {
	min-height: 520px;
	padding: 26px;
}

.reflection-phone--day {
	min-height: 560px;
	padding: 26px;
}

.reflection-phone--month {
	grid-column: 1 / -1;
	width: min(100%, 620px);
	margin: -18px auto 0;
	padding: 22px;
}

.reflection-phone-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: rgba(23, 32, 51, 0.48);
	font-size: 13px;
	font-weight: 800;
}

.reflection-circle-banner {
	display: grid;
	place-items: center;
	min-height: 112px;
	margin: 28px 0 24px;
	border-radius: 26px;
	background: #d7f3d9;
	font-size: 48px;
}

.reflection-phone label {
	display: block;
	color: var(--reflection-muted);
	font-size: 13px;
	font-weight: 900;
}

.reflection-phone--family > strong {
	display: block;
	margin: 9px 0 24px;
	padding: 14px 18px;
	border: 1px solid var(--reflection-line);
	border-radius: 999px;
	color: #050505;
	font-size: 28px;
	font-weight: 500;
}

.reflection-member-list {
	display: grid;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--reflection-line);
}

.reflection-member-list div,
.reflection-invite-row {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--reflection-ink);
	font-size: 20px;
}

.reflection-member-list span,
.reflection-invite-row b {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 3px solid #7f63dd;
	border-radius: 50%;
	background: #e9e4ff;
	color: #4d35a6;
	font-size: 15px;
	font-weight: 900;
}

.reflection-invite-row {
	margin-top: 18px;
	color: #6f86a6;
}

.reflection-invite-row b {
	border-color: #d9dff8;
	background: #ffffff;
	color: #7e8baa;
	font-size: 28px;
	line-height: 1;
}

.reflection-day-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 24px 0;
}

.reflection-day-tabs span {
	width: 28px;
	height: 24px;
	border-radius: 7px;
	border: 2px solid #b7c3cf;
}

.reflection-day-tabs b {
	padding: 13px 28px;
	border-radius: 12px;
	background: #dcebff;
	color: #315b86;
	font-size: 20px;
}

.reflection-day-agenda {
	display: grid;
	gap: 10px;
}

.reflection-day-agenda div,
.reflection-day-card > div:not(.reflection-day-card__top) {
	position: relative;
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 10px;
	min-height: 78px;
	padding: 14px;
	border-radius: 16px;
	color: #172033;
}

.reflection-day-agenda time,
.reflection-day-card time {
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 900;
}

.reflection-day-agenda strong,
.reflection-day-card strong {
	display: block;
	color: #111111;
	font-size: 21px;
}

.reflection-day-agenda span,
.reflection-day-card span {
	display: block;
	color: rgba(23, 32, 51, 0.58);
	font-size: 12px;
	font-weight: 900;
}

.is-pink {
	background: #ffe5ef;
}

.is-green {
	background: #dff4d8;
}

.is-yellow {
	background: #fff4bc;
}

.is-purple {
	background: #ddd9ff;
}

.is-blue {
	background: #dcebff;
}

.reflection-mini-month {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid #d9e1e9;
	border-radius: 18px;
}

.reflection-mini-month div {
	min-height: 70px;
	padding: 8px;
	border-right: 1px solid #d9e1e9;
	border-bottom: 1px solid #d9e1e9;
	background: #ffffff;
}

.reflection-mini-month span {
	display: block;
	color: #1f2937;
	font-size: 18px;
}

.reflection-mini-month b {
	display: block;
	margin-top: 5px;
	padding: 3px 5px;
	overflow: hidden;
	border-radius: 5px;
	background: #dcebff;
	color: #385575;
	font-size: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.reflection-mini-month .has-note:nth-child(3n) b {
	background: #ffe5ef;
}

.reflection-mini-month .has-note:nth-child(4n) b {
	background: #dff4d8;
}

.reflection-app-preview {
	display: grid;
	grid-template-columns: minmax(170px, 0.52fr) minmax(260px, 0.9fr) minmax(160px, 0.5fr);
	min-height: 570px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 80px rgba(7, 22, 40, 0.32);
	backdrop-filter: blur(16px);
}

.reflection-preview-sidebar,
.reflection-preview-hub {
	padding: 18px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--reflection-navy);
}

.reflection-preview-profile,
.reflection-preview-thread,
.reflection-preview-top,
.reflection-preview-compose {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reflection-preview-profile {
	margin-bottom: 18px;
}

.reflection-preview-profile span,
.reflection-preview-thread b,
.reflection-preview-call-grid span {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--reflection-blue);
	color: #ffffff;
	font-weight: 900;
}

.reflection-preview-profile strong,
.reflection-preview-thread strong,
.reflection-preview-top strong,
.reflection-preview-hub strong {
	display: block;
	color: var(--reflection-navy);
	font-size: 14px;
}

.reflection-preview-profile small,
.reflection-preview-thread small,
.reflection-preview-top small,
.reflection-preview-hub small {
	display: block;
	margin-top: 4px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 800;
}

.reflection-preview-thread {
	margin-top: 10px;
	padding: 12px;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(23, 32, 51, 0.08);
}

.reflection-preview-thread.is-active {
	background: var(--reflection-soft);
}

.reflection-preview-chat {
	display: flex;
	flex-direction: column;
	padding: 18px;
	background:
		radial-gradient(circle at 100% 0%, rgba(137, 216, 255, 0.22), transparent 30%),
		#f8fcff;
	color: var(--reflection-navy);
}

.reflection-preview-top {
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--reflection-line);
}

.reflection-preview-actions {
	display: flex;
	gap: 7px;
}

.reflection-preview-actions span {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--reflection-soft);
}

.reflection-preview-call {
	margin: 18px 0;
	padding: 16px;
	border-radius: 22px;
	background: linear-gradient(135deg, #10243c, #0176d3);
	color: #ffffff;
}

.reflection-preview-call-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.reflection-preview-call-grid span {
	width: 100%;
	height: 70px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.16);
}

.reflection-preview-call p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-weight: 900;
}

.reflection-preview-bubble {
	max-width: 82%;
	margin: 8px 0;
	padding: 13px 14px;
	border-radius: 18px 18px 18px 5px;
	background: #ffffff;
	color: var(--reflection-ink);
	box-shadow: 0 10px 22px rgba(23, 32, 51, 0.08);
	line-height: 1.5;
}

.reflection-preview-bubble.is-own {
	align-self: flex-end;
	border-radius: 18px 18px 5px 18px;
	background: var(--reflection-mint);
}

.reflection-preview-compose {
	justify-content: space-between;
	margin-top: auto;
	padding: 12px 14px;
	border: 1px solid var(--reflection-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-muted);
	font-weight: 800;
}

.reflection-preview-compose b {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--reflection-blue);
	color: #ffffff;
}

.reflection-preview-hub h2 {
	margin: 0 0 14px;
	color: var(--reflection-navy);
	font-size: 26px;
}

.reflection-preview-hub div {
	margin-top: 12px;
	padding: 13px;
	border: 1px solid var(--reflection-line);
	border-radius: 18px;
	background: #ffffff;
}

.reflection-preview-hub span {
	display: block;
	margin-bottom: 8px;
	color: var(--reflection-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-eyebrow {
	margin: 0 0 14px;
	color: var(--reflection-blue);
	font-family: 'Raleway', 'Raleway Fallback', sans-serif;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.reflection-signup-hero {
	padding: 84px 0 96px;
	background:
		radial-gradient(circle at 8% 8%, rgba(0, 161, 224, 0.16), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, var(--reflection-soft-2) 100%);
}

.reflection-signup-grid,
.reflection-dashboard-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	align-items: start;
	gap: 54px;
}

.reflection-signup-copy {
	padding-top: 36px;
}

.reflection-signup-copy h1,
.reflection-dashboard-hero h1 {
	margin: 0;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 60px;
	line-height: 1.02;
	font-weight: 900;
}

.reflection-signup-copy p,
.reflection-dashboard-hero p,
.reflection-section-heading p {
	margin: 18px 0 0;
	color: var(--reflection-muted);
	font-size: 18px;
	line-height: 1.7;
}

.reflection-proof-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.reflection-proof-row span {
	padding: 11px 14px;
	border: 1px solid rgba(1, 118, 211, 0.2);
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-navy);
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.08);
}

.reflection-signup-card,
.reflection-dashboard-plan-card,
.reflection-dashboard-subscription,
.reflection-dashboard-card,
.reflection-next-panel,
.reflection-card,
.reflection-subscription-current,
.reflection-pricing-card {
	border: 1px solid var(--reflection-line);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.reflection-signup-card {
	padding: 28px;
}

.reflection-signup-card__top span,
.reflection-dashboard-plan-card span,
.reflection-dashboard-subscription__meta span,
.reflection-dashboard-card span,
.reflection-card span,
.reflection-subscription-current__meta span,
.reflection-pricing-card > span,
.reflection-billing-grid span {
	display: block;
	color: var(--reflection-blue);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-signup-card__top h2 {
	margin: 8px 0 0;
	color: var(--reflection-navy);
	font-size: 32px;
	line-height: 1.08;
}

.reflection-signup-card__top p,
.reflection-signin-note {
	margin: 10px 0 0;
	color: var(--reflection-muted);
	line-height: 1.55;
}

.reflection-form,
.reflection-auth-form.is-active {
	display: grid;
	gap: 16px;
}

.reflection-form {
	margin-top: 22px;
}

.reflection-form label,
.reflection-auth-form label {
	display: grid;
	gap: 8px;
	color: var(--reflection-navy);
	font-size: 13px;
	font-weight: 900;
}

.reflection-form input,
.reflection-auth-form input {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--reflection-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--reflection-navy);
	outline: none;
}

.reflection-form input:focus,
.reflection-auth-form input:focus {
	border-color: var(--reflection-blue);
	box-shadow: 0 0 0 4px rgba(1, 118, 211, 0.12);
}

.reflection-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.reflection-auth-check {
	display: flex !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px !important;
	color: var(--reflection-muted) !important;
	font-weight: 700 !important;
	line-height: 1.5;
}

.reflection-auth-check input {
	width: 18px;
	min-height: 18px;
	margin-top: 2px;
}

.reflection-auth-check a,
.reflection-signin-note button,
.reflection-auth-form a,
.reflection-auth-form p button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--reflection-blue);
	cursor: pointer;
	font-weight: 900;
	text-decoration: none;
}

.reflection-form-message {
	margin: 18px 0;
	padding: 13px 14px;
	border: 1px solid rgba(1, 118, 211, 0.24);
	border-radius: 12px;
	background: var(--reflection-soft);
	color: var(--reflection-navy);
	font-weight: 800;
	line-height: 1.5;
}

.reflection-form-message--success {
	border-color: rgba(15, 118, 110, 0.22);
	background: var(--reflection-mint);
	color: var(--reflection-teal);
}

.reflection-content-section,
.reflection-dashboard-content {
	padding: 72px 0;
	background: #ffffff;
}

.reflection-section-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.reflection-section-heading h2,
.reflection-dashboard-subscription h2,
.reflection-next-panel h2,
.reflection-subscription-current h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 40px;
	line-height: 1.08;
}

.reflection-card-grid,
.reflection-dashboard-grid,
.reflection-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.reflection-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reflection-card,
.reflection-dashboard-card {
	padding: 24px;
}

.reflection-card h3,
.reflection-dashboard-card strong {
	display: block;
	margin: 14px 0 0;
	color: var(--reflection-navy);
	font-size: 24px;
	line-height: 1.12;
}

.reflection-card p,
.reflection-dashboard-card p,
.reflection-next-panel p,
.reflection-subscription-current p,
.reflection-pricing-card p,
.reflection-pricing-card li {
	color: var(--reflection-muted);
	line-height: 1.65;
}

.reflection-dashboard-hero {
	padding: 74px 0;
	background:
		radial-gradient(circle at 88% 12%, rgba(0, 161, 224, 0.22), transparent 30%),
		linear-gradient(135deg, #10243c 0%, #0176d3 56%, #00a1e0 100%);
	color: #ffffff;
}

.reflection-product-hero {
	background:
		radial-gradient(circle at 88% 12%, rgba(0, 161, 224, 0.22), transparent 30%),
		linear-gradient(135deg, #10243c 0%, #0176d3 56%, #00a1e0 100%);
}

.reflection-dashboard-hero h1,
.reflection-dashboard-hero p,
.reflection-dashboard-hero .reflection-eyebrow {
	color: #ffffff;
}

.reflection-dashboard-hero p {
	max-width: 690px;
	color: rgba(255, 255, 255, 0.82);
}

.reflection-dashboard-plan-card {
	min-height: 150px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.reflection-dashboard-plan-card strong {
	color: var(--reflection-navy);
	font-size: 28px;
	line-height: 1.05;
}

.reflection-dashboard-plan-card em {
	width: fit-content;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--reflection-mint);
	color: var(--reflection-teal);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.reflection-dashboard-subscription {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr) auto;
	align-items: center;
	gap: 22px;
	margin-bottom: 28px;
	padding: 26px;
}

.reflection-dashboard-subscription p {
	margin: 12px 0 0;
	color: var(--reflection-muted);
	line-height: 1.6;
}

.reflection-dashboard-subscription__meta,
.reflection-subscription-current__meta,
.reflection-billing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.reflection-dashboard-subscription__meta div,
.reflection-subscription-current__meta div,
.reflection-billing-grid div {
	padding: 14px;
	border: 1px solid var(--reflection-line);
	border-radius: 14px;
	background: var(--reflection-soft-2);
}

.reflection-dashboard-subscription__meta strong,
.reflection-subscription-current__meta strong,
.reflection-billing-grid strong {
	display: block;
	margin-top: 8px;
	color: var(--reflection-navy);
	font-size: 15px;
	line-height: 1.4;
}

.reflection-dashboard-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reflection-dashboard-card {
	min-height: 210px;
}

.reflection-next-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding: 28px;
	background:
		radial-gradient(circle at 100% 100%, rgba(0, 161, 224, 0.18), transparent 42%),
		#ffffff;
}

.reflection-feature-band {
	background: linear-gradient(180deg, #ffffff 0%, var(--reflection-soft-2) 100%);
}

.reflection-split-section {
	background: #ffffff;
}

.reflection-split {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
	align-items: center;
	gap: 42px;
}

.reflection-split h2,
.reflection-launch-panel h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 44px;
	line-height: 1.05;
}

.reflection-split p,
.reflection-launch-panel p {
	color: var(--reflection-muted);
	font-size: 17px;
	line-height: 1.7;
}

.reflection-use-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.reflection-use-grid div {
	min-height: 140px;
	padding: 20px;
	border: 1px solid var(--reflection-line);
	border-radius: 22px;
	background: var(--reflection-soft-2);
}

.reflection-use-grid strong,
.reflection-use-grid span {
	display: block;
}

.reflection-use-grid strong {
	color: var(--reflection-navy);
	font-size: 20px;
}

.reflection-use-grid span {
	margin-top: 10px;
	color: var(--reflection-muted);
	line-height: 1.55;
}

.reflection-launch-section {
	padding: 74px 0;
	background: var(--reflection-soft-2);
}

.reflection-launch-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 34px;
	border: 1px solid rgba(1, 118, 211, 0.16);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: var(--reflection-shadow);
}

.reflection-app-shell {
	display: grid;
	grid-template-columns: minmax(250px, 0.58fr) minmax(420px, 1fr) minmax(300px, 0.64fr);
	gap: 18px;
	align-items: start;
}

.reflection-circle-rail,
.reflection-conversation-panel,
.reflection-right-rail > section,
.reflection-detail-hub {
	border: 1px solid var(--reflection-line);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.reflection-circle-rail,
.reflection-conversation-panel,
.reflection-right-rail > section,
.reflection-detail-hub {
	padding: 22px;
}

.reflection-rail-top h2,
.reflection-conversation-header h2,
.reflection-panel-heading h2,
.reflection-video-card h2,
.reflection-detail-copy h2 {
	margin: 0;
	color: var(--reflection-navy);
	line-height: 1.08;
}

.reflection-circle-list,
.reflection-chat-thread,
.reflection-reminder-list,
.reflection-detail-grid {
	display: grid;
	gap: 12px;
}

.reflection-circle-list {
	margin: 18px 0;
}

.reflection-circle-chip {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--reflection-line);
	border-radius: 20px;
	background: #ffffff;
}

.reflection-circle-chip.is-active {
	border-color: rgba(1, 118, 211, 0.26);
	background: var(--reflection-soft);
}

.reflection-circle-chip > span {
	display: grid;
	place-items: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--circle-color, var(--reflection-blue));
	color: #ffffff;
	font-weight: 900;
}

.reflection-circle-chip strong,
.reflection-circle-chip small {
	display: block;
}

.reflection-circle-chip strong {
	color: var(--reflection-navy);
}

.reflection-circle-chip small {
	margin-top: 4px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.reflection-mini-form,
.reflection-compose,
.reflection-detail-form {
	display: grid;
	gap: 12px;
}

.reflection-mini-form label,
.reflection-compose label,
.reflection-detail-form label {
	display: grid;
	gap: 7px;
	color: var(--reflection-navy);
	font-size: 12px;
	font-weight: 900;
}

.reflection-mini-form input,
.reflection-mini-form textarea,
.reflection-mini-form select,
.reflection-compose input,
.reflection-compose textarea,
.reflection-compose select,
.reflection-detail-form input,
.reflection-detail-form textarea,
.reflection-detail-form select,
.reflection-form select {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--reflection-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--reflection-navy);
	outline: none;
}

.reflection-mini-form textarea,
.reflection-compose textarea,
.reflection-detail-form textarea {
	resize: vertical;
}

.reflection-conversation-panel {
	min-height: 720px;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(circle at 100% 0%, rgba(0, 161, 224, 0.12), transparent 30%),
		var(--reflection-soft-2);
}

.reflection-conversation-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--reflection-line);
}

.reflection-conversation-header p {
	margin: 8px 0 0;
	color: var(--reflection-muted);
	line-height: 1.55;
}

.reflection-call-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.reflection-call-actions button {
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid rgba(1, 118, 211, 0.2);
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-blue);
	cursor: pointer;
	font-size: 12px;
	font-weight: 900;
}

.reflection-chat-thread {
	flex: 1;
	align-content: start;
	padding: 18px 0;
}

.reflection-message {
	width: min(86%, 560px);
	padding: 16px;
	border-radius: 22px 22px 22px 6px;
	background: #ffffff;
	box-shadow: 0 12px 26px rgba(23, 32, 51, 0.08);
}

.reflection-message.is-own {
	justify-self: end;
	border-radius: 22px 22px 6px 22px;
	background: var(--reflection-mint);
}

.reflection-message span,
.reflection-detail-grid span {
	display: block;
	color: var(--reflection-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-message h3,
.reflection-detail-grid h3 {
	margin: 8px 0 0;
	color: var(--reflection-navy);
	font-size: 18px;
	line-height: 1.18;
}

.reflection-message p,
.reflection-detail-grid p {
	margin: 9px 0 0;
	color: var(--reflection-ink);
	line-height: 1.55;
}

.reflection-message small {
	display: block;
	margin-top: 10px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 800;
}

.reflection-compose {
	margin-top: auto;
	padding: 16px;
	border: 1px solid var(--reflection-line);
	border-radius: 22px;
	background: #ffffff;
}

.reflection-right-rail {
	display: grid;
	gap: 18px;
}

.reflection-video-card {
	background:
		radial-gradient(circle at 100% 0%, rgba(0, 161, 224, 0.18), transparent 34%),
		#ffffff;
}

.reflection-video-card h2 {
	font-size: 26px;
}

.reflection-video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0;
}

.reflection-video-grid span {
	display: grid;
	place-items: center;
	min-height: 86px;
	border-radius: 20px;
	background: linear-gradient(135deg, #10243c, #0176d3);
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
}

.reflection-reminder-list div {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 10px;
	padding: 13px;
	border: 1px solid var(--reflection-line);
	border-radius: 18px;
	background: var(--reflection-soft-2);
}

.reflection-reminder-list time {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: #ffffff;
	color: var(--reflection-blue);
	font-size: 12px;
	font-weight: 900;
	text-align: center;
}

.reflection-reminder-list strong,
.reflection-reminder-list span {
	display: block;
}

.reflection-reminder-list strong {
	color: var(--reflection-navy);
}

.reflection-reminder-list span {
	margin-top: 5px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 800;
}

.reflection-reminder-card .reflection-mini-form {
	margin-top: 18px;
}

.reflection-calendar-board {
	display: grid;
	grid-template-columns: minmax(240px, 0.52fr) minmax(420px, 0.98fr) minmax(280px, 0.58fr);
	gap: 18px;
	align-items: stretch;
	margin: 28px 0;
}

.reflection-calendar-copy,
.reflection-month-card,
.reflection-day-card {
	border: 1px solid var(--reflection-line);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

.reflection-calendar-copy {
	padding: 26px;
	background:
		radial-gradient(circle at 0% 0%, rgba(203, 244, 240, 0.72), transparent 44%),
		#ffffff;
}

.reflection-calendar-copy h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	line-height: 1.08;
}

.reflection-calendar-copy p {
	color: var(--reflection-muted);
	line-height: 1.65;
}

.reflection-month-card {
	padding: 22px;
}

.reflection-month-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.reflection-month-top strong {
	color: var(--reflection-navy);
	font-size: 30px;
}

.reflection-month-top button {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--reflection-line);
	border-radius: 50%;
	background: #ffffff;
	color: var(--reflection-muted);
	cursor: pointer;
	font-size: 26px;
}

.reflection-month-days,
.reflection-month-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.reflection-month-days span {
	padding: 0 6px 8px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 900;
	text-align: center;
}

.reflection-month-grid {
	overflow: hidden;
	border: 1px solid #d9e1e9;
	border-radius: 18px;
}

.reflection-month-grid div {
	min-height: 88px;
	padding: 8px;
	border-right: 1px solid #d9e1e9;
	border-bottom: 1px solid #d9e1e9;
	background: #ffffff;
}

.reflection-month-grid span {
	display: block;
	color: #1f2937;
	font-size: 18px;
}

.reflection-month-grid b {
	display: block;
	margin-top: 6px;
	padding: 4px 5px;
	overflow: hidden;
	border-radius: 6px;
	background: #dcebff;
	color: #385575;
	font-size: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.reflection-month-grid .has-note:nth-child(3n) b {
	background: #ffe5ef;
}

.reflection-month-grid .has-note:nth-child(4n) b {
	background: #dff4d8;
}

.reflection-day-card {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.reflection-day-card__top {
	display: block !important;
	min-height: 0 !important;
	padding: 0 0 8px !important;
	background: transparent !important;
}

.reflection-day-card__top span {
	display: block;
	color: var(--reflection-blue);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-day-card__top strong {
	display: block;
	margin-top: 6px;
	color: var(--reflection-navy);
	font-size: 28px;
	line-height: 1.08;
}

.reflection-detail-hub {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr) minmax(280px, 0.72fr);
	gap: 20px;
	align-items: start;
	margin: 28px 0;
}

.reflection-detail-copy p {
	color: var(--reflection-muted);
	line-height: 1.7;
}

.reflection-detail-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reflection-detail-grid article {
	padding: 17px;
	border: 1px solid var(--reflection-line);
	border-radius: 20px;
	background: var(--reflection-soft-2);
}

.reflection-detail-form {
	padding: 18px;
	border: 1px solid var(--reflection-line);
	border-radius: 22px;
	background: #ffffff;
}

.reflection-subscription-notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(1, 118, 211, 0.24);
	border-radius: 12px;
	background: var(--reflection-soft);
	color: var(--reflection-navy);
	font-weight: 800;
	line-height: 1.5;
}

.reflection-subscription-notice--success {
	border-color: rgba(15, 118, 110, 0.22);
	background: var(--reflection-mint);
	color: var(--reflection-teal);
}

.reflection-subscription-notice--warning {
	border-color: rgba(1, 118, 211, 0.28);
	background: #eef8ff;
}

.reflection-subscription-notice--error {
	border-color: rgba(220, 38, 38, 0.26);
	background: #fff1f1;
	color: #b42318;
}

.reflection-subscription-current {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
	padding: 26px;
}

.reflection-subscription-badges,
.reflection-subscription-actions,
.reflection-pricing-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.reflection-subscription-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 11px;
	border: 1px solid var(--reflection-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 900;
}

.reflection-subscription-badges span.is-active {
	border-color: rgba(15, 118, 110, 0.22);
	background: var(--reflection-mint);
	color: var(--reflection-teal);
}

.reflection-subscription-badges span.is-paused {
	border-color: rgba(220, 38, 38, 0.22);
	background: #fff1f1;
	color: #b42318;
}

.reflection-subscription-actions {
	grid-column: 1 / -1;
	margin-top: 0;
}

.reflection-pricing-grid {
	margin-top: 18px;
}

.reflection-pricing-card {
	position: relative;
	display: flex;
	min-height: 510px;
	flex-direction: column;
	padding: 26px;
}

.reflection-pricing-card.is-featured {
	border-color: rgba(1, 118, 211, 0.44);
	box-shadow: 0 24px 58px rgba(1, 118, 211, 0.18);
	transform: translateY(-8px);
}

.reflection-pricing-card.is-selected {
	outline: 3px solid rgba(1, 118, 211, 0.14);
}

.reflection-pricing-card.is-current::after {
	content: "Current";
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--reflection-mint);
	color: var(--reflection-teal);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-pricing-card h3 {
	margin: 10px 0 0;
	color: var(--reflection-navy);
	font-size: 30px;
	line-height: 1.08;
}

.reflection-pricing-card > strong {
	display: block;
	margin-top: 18px;
	color: var(--reflection-navy);
	font-size: 42px;
	line-height: 1;
}

.reflection-pricing-card small {
	color: var(--reflection-muted);
	font-size: 14px;
	font-weight: 800;
}

.reflection-pricing-card ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 24px;
	padding: 0;
	list-style: none;
}

.reflection-pricing-card li {
	position: relative;
	padding-left: 24px;
}

.reflection-pricing-card li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
}

.reflection-pricing-card__actions {
	margin-top: auto;
}

.reflection-pricing-card__actions form,
.reflection-pricing-card__actions .reflection-button {
	width: 100%;
}

.reflection-subscription-billing {
	margin-top: 30px;
}

.reflection-billing-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reflection-footer {
	padding: 58px 0 26px;
	background: var(--reflection-navy);
	color: #ffffff;
}

.reflection-footer .reflection-logo__dayzy {
	color: #ffffff;
}

.reflection-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
	gap: 48px;
}

.reflection-footer__brand p {
	max-width: 420px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.65;
}

.reflection-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.reflection-footer__nav h2 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 14px;
	text-transform: uppercase;
}

.reflection-footer__nav a,
.reflection-footer-link-button {
	display: block;
	margin: 10px 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	text-align: left;
	text-decoration: none;
}

.reflection-footer__nav a:hover,
.reflection-footer__nav a:focus,
.reflection-footer-link-button:hover,
.reflection-footer-link-button:focus {
	color: #89d8ff;
}

.reflection-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reflection-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.dayzy-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.dayzy-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 12px;
	border: 1px solid rgba(7, 23, 53, 0.12);
	border-radius: 999px;
	background: #ffffff;
	color: #071735;
	font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.dayzy-footer-social a:hover,
.dayzy-footer-social a:focus {
	border-color: rgba(7, 23, 53, 0.28);
	background: #f5f8ff;
}

.reflection-modal-open {
	overflow: hidden;
}

.reflection-auth-modal[hidden],
.reflection-auth-form {
	display: none;
}

.reflection-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 24px;
}

.reflection-auth-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 36, 60, 0.68);
	backdrop-filter: blur(8px);
}

.reflection-auth-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 500px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 28px;
	border: 1px solid rgba(1, 118, 211, 0.2);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 30px 80px rgba(16, 36, 60, 0.32);
}

.reflection-auth-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--reflection-line);
	border-radius: 50%;
	background: #ffffff;
	color: var(--reflection-navy);
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

.reflection-auth-modal__header h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-size: 34px;
	line-height: 1.08;
}

.reflection-auth-modal__header p:last-child,
.reflection-auth-form p {
	margin: 12px 0 0;
	color: var(--reflection-muted);
	line-height: 1.6;
}

.reflection-auth-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin: 22px 0;
	padding: 6px;
	border-radius: 14px;
	background: var(--reflection-soft);
}

.reflection-auth-tabs button {
	min-height: 42px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--reflection-muted);
	cursor: pointer;
	font-size: 13px;
	font-weight: 900;
}

.reflection-auth-tabs button.is-active {
	background: #ffffff;
	color: var(--reflection-navy);
	box-shadow: 0 8px 18px rgba(23, 32, 51, 0.08);
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.aligncenter {
	text-align: center;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin: 0 0 1.5em;
	padding: 0 1em 0 0;
	width: 50%;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-caption {
	display: block;
	margin-bottom: 0;
}

@media (max-width: 1040px) {
	.reflection-header__inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 14px 24px 18px;
	}

	.reflection-nav {
		order: 3;
		width: 100%;
		overflow-x: auto;
	}

	.reflection-menu {
		justify-content: center;
		min-width: max-content;
	}

	.reflection-signup-grid,
	.reflection-home-hero__grid,
	.reflection-app-preview,
	.reflection-family-preview,
	.reflection-split,
	.reflection-app-shell,
	.reflection-calendar-board,
	.reflection-detail-hub,
	.reflection-dashboard-hero__inner,
	.reflection-dashboard-subscription,
	.reflection-subscription-current,
	.reflection-footer__grid {
		grid-template-columns: 1fr;
	}

	.reflection-dashboard-grid,
	.reflection-card-grid,
	.reflection-card-grid--four,
	.reflection-use-grid,
	.reflection-detail-grid,
	.reflection-pricing-grid,
	.reflection-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reflection-app-preview {
		min-height: auto;
	}

	.reflection-preview-sidebar,
	.reflection-preview-hub {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.reflection-preview-profile,
	.reflection-preview-hub h2 {
		grid-column: 1 / -1;
	}

	.reflection-phone--month {
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.reflection-container {
		padding: 0 18px;
	}

	.reflection-logo__main {
		font-size: 31px;
	}

	.reflection-menu {
		justify-content: flex-start;
		gap: 18px;
	}

	.reflection-header__actions {
		width: 100%;
		justify-content: center;
	}

	.reflection-signup-hero,
	.reflection-home-hero,
	.reflection-dashboard-hero,
	.reflection-content-section,
	.reflection-dashboard-content,
	.reflection-launch-section {
		padding: 56px 0;
	}

	.reflection-signup-copy {
		padding-top: 0;
	}

	.reflection-signup-copy h1,
	.reflection-home-copy h1,
	.reflection-dashboard-hero h1 {
		font-size: 44px;
		line-height: 1.02;
	}

	.reflection-section-heading h2,
	.reflection-dashboard-subscription h2,
	.reflection-next-panel h2,
	.reflection-subscription-current h2 {
		font-size: 32px;
	}

	.reflection-signup-copy p,
	.reflection-dashboard-hero p,
	.reflection-section-heading p {
		font-size: 16px;
	}

	.reflection-field-grid,
	.reflection-dashboard-grid,
	.reflection-card-grid,
	.reflection-card-grid--four,
	.reflection-use-grid,
	.reflection-detail-grid,
	.reflection-pricing-grid,
	.reflection-footer__nav,
	.reflection-dashboard-subscription__meta,
	.reflection-subscription-current__meta,
	.reflection-billing-grid {
		grid-template-columns: 1fr;
	}

	.reflection-signup-card,
	.reflection-auth-modal__dialog,
	.reflection-dashboard-subscription,
	.reflection-subscription-current,
	.reflection-pricing-card,
	.reflection-next-panel,
	.reflection-launch-panel,
	.reflection-circle-rail,
	.reflection-conversation-panel,
	.reflection-right-rail > section,
	.reflection-detail-hub {
		padding: 22px;
	}

	.reflection-next-panel,
	.reflection-launch-panel,
	.reflection-conversation-header,
	.reflection-footer__bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.reflection-preview-sidebar,
	.reflection-preview-hub {
		grid-template-columns: 1fr;
	}

	.reflection-preview-call-grid,
	.reflection-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reflection-phone--month {
		grid-column: 1 / -1;
	}

	.reflection-phone--family,
	.reflection-phone--day {
		min-height: auto;
	}

	.reflection-month-days,
	.reflection-month-grid,
	.reflection-mini-month {
		grid-template-columns: repeat(7, minmax(44px, 1fr));
		overflow-x: auto;
	}

	.reflection-message {
		width: 100%;
	}

	.reflection-button {
		width: 100%;
	}

	.reflection-pricing-card.is-featured {
		transform: none;
	}
}

/* Reflection journal treatment */
.reflection-logo__main {
	color: #2f1b45;
}

.reflection-logo__dayzy,
.reflection-eyebrow,
.reflection-menu a:hover,
.reflection-menu a:focus {
	color: #8b5cf6;
}

.reflection-button--primary,
.reflection-header__cta {
	background: linear-gradient(135deg, #8b5cf6, #f15bb5);
	box-shadow: 0 14px 30px rgba(139, 92, 246, 0.22);
}

.reflection-home-hero {
	background:
		radial-gradient(circle at 12% 18%, rgba(241, 91, 181, 0.16), transparent 32%),
		radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.18), transparent 34%),
		radial-gradient(circle at 58% 92%, rgba(255, 214, 238, 0.62), transparent 42%),
		linear-gradient(180deg, #fffdfb 0%, #fff4f8 52%, #f8f2ff 100%);
}

.reflection-home-copy h1,
.reflection-section-heading h2,
.reflection-split h2,
.reflection-launch-panel h2 {
	color: #2f1b45;
}

.reflection-highlight {
	display: inline;
	padding: 0.04em 0.2em;
	border-radius: 14px;
	background: linear-gradient(90deg, rgba(255, 214, 238, 0.92), rgba(235, 221, 255, 0.92));
	color: #2f1b45;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.reflection-journal-preview {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(220px, 0.7fr);
	gap: 18px;
	align-items: start;
}

.reflection-journal-card {
	position: relative;
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid rgba(139, 92, 246, 0.13);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	color: #2f1b45;
	box-shadow: 0 28px 70px rgba(47, 27, 69, 0.13);
}

.reflection-journal-card--entry {
	min-height: 390px;
}

.reflection-journal-card--prompts {
	margin-top: 44px;
}

.reflection-journal-card--journey,
.reflection-journal-card--insights {
	grid-column: 1 / -1;
}

.reflection-phone-status {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: #8d7d9c;
	font-size: 12px;
	font-weight: 900;
}

.reflection-journal-card h2 {
	margin: 0;
	color: #2f1b45;
	font-size: 30px;
	line-height: 1.08;
}

.reflection-journal-card p {
	margin: 0;
	color: #5b4a68;
	line-height: 1.65;
}

.reflection-mood-chips,
.reflection-tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.reflection-mood-chips span,
.reflection-tag-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff1f6;
	color: #5b315f;
	font-size: 12px;
	font-weight: 900;
}

.reflection-tag-row span {
	background: #f3e8ff;
	color: #6d28d9;
}

.reflection-prompt-stack {
	display: grid;
	gap: 12px;
}

.reflection-prompt-stack div,
.reflection-prompts-card div {
	padding: 16px;
	border: 1px solid rgba(139, 92, 246, 0.12);
	border-radius: 18px;
	background: #fffafd;
	color: #3d2c50;
	font-weight: 800;
	line-height: 1.45;
}

.reflection-journey-meter {
	height: 12px;
	overflow: hidden;
	border-radius: 999px;
	background: #f3e8ff;
}

.reflection-journey-meter span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #8b5cf6, #f15bb5);
}

.reflection-journal-card--insights ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.reflection-journal-card--insights li {
	padding: 14px 16px;
	border-radius: 18px;
	background: #fbf7ff;
	color: #3d2c50;
	font-weight: 800;
	line-height: 1.45;
}

.reflection-dashboard-hero {
	background:
		radial-gradient(circle at 12% 18%, rgba(241, 91, 181, 0.28), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(255, 214, 238, 0.18), transparent 34%),
		linear-gradient(135deg, #221233 0%, #4b256f 56%, #a43d94 100%);
}

.reflection-entry-count {
	display: grid;
	justify-items: center;
	gap: 2px;
	min-width: 104px;
	padding: 14px;
	border-radius: 18px;
	background: #fff1f6;
	color: #2f1b45;
}

.reflection-entry-count strong {
	font-size: 32px;
}

.reflection-entry-count span {
	color: #7a6f86;
	font-size: 12px;
	font-weight: 900;
}

.reflection-journal-thread {
	display: grid;
	gap: 14px;
}

.reflection-entry-item {
	display: grid;
	gap: 10px;
	padding: 18px;
	border: 1px solid rgba(139, 92, 246, 0.12);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(47, 27, 69, 0.07);
}

.reflection-entry-item.is-featured {
	background:
		radial-gradient(circle at 92% 8%, rgba(241, 91, 181, 0.12), transparent 28%),
		#fffafd;
	box-shadow: 0 18px 42px rgba(139, 92, 246, 0.14);
}

.reflection-entry-item span,
.reflection-insight-card span {
	color: #8b5cf6;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-entry-item h3,
.reflection-insight-card h3 {
	margin: 0;
	color: #2f1b45;
	font-size: 22px;
	line-height: 1.12;
}

.reflection-entry-item p,
.reflection-insight-card p {
	margin: 0;
	color: #5b4a68;
	line-height: 1.65;
}

.reflection-entry-item small {
	color: #8d7d9c;
	font-weight: 800;
}

.reflection-entry-form textarea,
.reflection-detail-form textarea,
.reflection-mini-form textarea {
	line-height: 1.55;
}

.reflection-mood-card {
	background:
		radial-gradient(circle at 88% 8%, rgba(241, 91, 181, 0.14), transparent 32%),
		#ffffff !important;
}

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

.reflection-mood-list > div {
	display: grid;
	gap: 6px;
	padding: 14px;
	border: 1px solid rgba(139, 92, 246, 0.12);
	border-radius: 18px;
	background: #fbf7ff;
}

.reflection-mood-list time {
	color: #8b5cf6;
	font-size: 12px;
	font-weight: 900;
}

.reflection-mood-list strong {
	color: #2f1b45;
	font-size: 18px;
}

.reflection-mood-list span {
	color: #7a6f86;
	font-size: 13px;
	font-weight: 800;
}

.reflection-prompts-card {
	display: grid;
	gap: 12px;
	background: #fffafd !important;
}

.reflection-growth-board {
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 214, 238, 0.5), transparent 34%),
		linear-gradient(135deg, rgba(255, 250, 253, 0.96), rgba(248, 242, 255, 0.98));
}

.reflection-growth-arc {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	align-content: center;
	padding: 24px;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 24px 54px rgba(47, 27, 69, 0.11);
}

.reflection-growth-arc div {
	display: grid;
	place-items: center;
	gap: 6px;
	min-height: 120px;
	border-radius: 22px;
	background: #fbf7ff;
}

.reflection-growth-arc strong {
	color: #8b5cf6;
	font-size: 44px;
}

.reflection-growth-arc span {
	color: #7a6f86;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-theme-card > div:not(.reflection-day-card__top) {
	margin-top: 12px;
	border-radius: 16px;
}

.reflection-insight-hub {
	background:
		radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.12), transparent 34%),
		#ffffff;
}

.reflection-insight-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reflection-insight-card {
	display: grid;
	gap: 12px;
	min-height: 190px;
	padding: 22px;
	border: 0;
	border-radius: 24px;
	color: #2f1b45;
	box-shadow: inset 0 0 0 1px rgba(47, 27, 69, 0.06), 0 14px 28px rgba(47, 27, 69, 0.08);
}

.is-purple {
	background: #f3e8ff !important;
}

.is-pink {
	background: #ffe4f1 !important;
}

.is-yellow {
	background: #fff4c7 !important;
}

.is-blue {
	background: #e7f0ff !important;
}

.is-mint {
	background: #edf8f4 !important;
}

.reflection-auth-modal__dialog,
.reflection-signup-card,
.reflection-subscription-current,
.reflection-pricing-card,
.reflection-dashboard-subscription {
	box-shadow: 0 24px 54px rgba(47, 27, 69, 0.13);
}

@media (max-width: 1040px) {
	.reflection-journal-preview,
	.reflection-insight-grid {
		grid-template-columns: 1fr;
	}

	.reflection-journal-card--prompts {
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.reflection-growth-arc {
		grid-template-columns: 1fr;
	}

	.reflection-journal-card {
		padding: 20px;
		border-radius: 22px;
	}
}

/* Reflection dashboard structure */
.reflection-header__inner {
	position: relative;
	flex-wrap: nowrap;
}

.reflection-header__panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	flex: 1 1 auto;
}

.reflection-header__mobile-controls {
	display: none;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.reflection-logo {
	gap: 6px;
}

.reflection-logo__main {
	color: var(--reflection-blue);
	font-family: 'Alex Brush', cursive;
	font-size: 64px;
	font-weight: 400;
	line-height: 0.8;
}

.reflection-logo__by {
	font-size: 14px;
	font-weight: 500;
}

.reflection-logo__dayzy {
	color: #7a5b86;
	font-family: "Birds of Paradise", cursive;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
}

.reflection-menu-toggle {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(139, 92, 246, 0.22);
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(47, 27, 69, 0.08);
}

.reflection-menu-toggle span {
	position: absolute;
	left: 50%;
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: var(--reflection-blue);
	transform: translateX(-50%);
	transition: top 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.reflection-menu-toggle span:nth-child(1) {
	top: 14px;
}

.reflection-menu-toggle span:nth-child(2) {
	top: 22px;
}

.reflection-menu-toggle span:nth-child(3) {
	top: 30px;
}

.reflection-menu-toggle.is-active span:nth-child(1) {
	top: 22px;
	transform: translateX(-50%) rotate(45deg);
}

.reflection-menu-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.reflection-menu-toggle.is-active span:nth-child(3) {
	top: 22px;
	transform: translateX(-50%) rotate(-45deg);
}

.reflection-account-menu--mobile {
	display: none;
}

.reflection-account-menu__dropdown a {
	display: flex;
	align-items: center;
	gap: 9px;
}

.reflection-account-menu__dropdown a i {
	width: 16px;
	color: var(--reflection-blue);
	text-align: center;
}

.reflection-dashboard-app {
	min-height: 100vh;
	background: #ffffff;
	color: var(--reflection-ink);
	overflow: visible;
}

.reflection-dashboard-shell {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	min-height: calc(100vh - 1px);
}

.reflection-dashboard-sidebar {
	position: sticky;
	top: 0;
	z-index: 30;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100vh;
	padding: 28px 24px;
	border-right: 1px solid rgba(139, 92, 246, 0.16);
	background: #ffffff;
}

.reflection-dashboard-nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: 0;
}

.reflection-dashboard-nav a {
	box-sizing: border-box;
	flex: 0 0 42px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	height: 42px;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 0;
	background: transparent;
	color: #695a74;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.reflection-dashboard-nav a:hover,
.reflection-dashboard-nav a:focus-visible,
.reflection-dashboard-nav a.is-active {
	background: var(--reflection-soft);
	color: var(--reflection-navy);
}

.reflection-dashboard-nav i {
	width: 18px;
	color: var(--reflection-blue);
	text-align: center;
}

.reflection-dashboard-drawer-head,
.reflection-dashboard-mobilebar,
.reflection-dashboard-sidebar-scrim {
	display: none;
}

.reflection-dashboard-main {
	min-width: 0;
	padding: 0 0 70px;
}

.reflection-dashboard-app .reflection-container {
	max-width: none;
	padding: 0 34px;
}

.reflection-member-hero {
	padding: 42px 0;
	background:
		radial-gradient(circle at 14% 15%, rgba(241, 91, 181, 0.2), transparent 30%),
		linear-gradient(135deg, #221233 0%, #4b256f 56%, #a43d94 100%);
}

.reflection-member-hero h1,
.reflection-member-hero p,
.reflection-member-hero .reflection-eyebrow {
	color: #ffffff;
}

.reflection-member-hero p {
	opacity: 0.9;
}

.reflection-dashboard-app .reflection-dashboard-hero__inner {
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 24px;
}

.reflection-dashboard-app .reflection-dashboard-content {
	padding: 34px 0 70px;
}

.reflection-dashboard-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.reflection-dashboard-stats .reflection-dashboard-card {
	min-height: 126px;
	padding: 16px;
	text-decoration: none;
}

.reflection-dashboard-stats .reflection-dashboard-card strong {
	font-size: 34px;
	line-height: 1;
}

.reflection-dashboard-stats .reflection-dashboard-card p {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.4;
}

.reflection-dashboard-stat-card {
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.reflection-dashboard-stat-card:hover,
.reflection-dashboard-stat-card:focus-visible {
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 16px 36px rgba(139, 92, 246, 0.12);
	transform: translateY(-1px);
}

.reflection-dashboard-quick-actions {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 22px;
}

.reflection-dashboard-quick-actions a {
	display: grid;
	gap: 7px;
	min-height: 132px;
	padding: 16px;
	border: 1px solid rgba(139, 92, 246, 0.14);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff, var(--reflection-soft-2));
	color: var(--reflection-navy);
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(47, 27, 69, 0.06);
}

.reflection-dashboard-quick-actions span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--reflection-soft);
	color: var(--reflection-blue);
	font-size: 12px;
	font-weight: 900;
}

.reflection-dashboard-quick-actions strong,
.reflection-dashboard-quick-actions small {
	display: block;
}

.reflection-dashboard-quick-actions strong {
	font-size: 15px;
	line-height: 1.2;
}

.reflection-dashboard-quick-actions small {
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
}

.reflection-dashboard-overview-grid,
.reflection-dashboard-two-column,
.reflection-settings-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
	gap: 18px;
	align-items: start;
}

.reflection-settings-grid {
	grid-template-columns: minmax(0, 760px);
}

.reflection-dashboard-panel,
.reflection-focus-panel,
.reflection-public-hero-card {
	min-width: 0;
	padding: 22px;
	border: 1px solid rgba(139, 92, 246, 0.13);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(47, 27, 69, 0.07);
}

.reflection-focus-panel {
	background:
		radial-gradient(circle at 100% 0%, rgba(241, 91, 181, 0.13), transparent 34%),
		#ffffff;
}

.reflection-panel-heading {
	margin-bottom: 18px;
}

.reflection-panel-heading h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-size: 30px;
	line-height: 1.1;
}

.reflection-panel-heading p:not(.reflection-eyebrow) {
	margin: 8px 0 0;
	color: var(--reflection-muted);
	line-height: 1.6;
}

.reflection-form select,
.reflection-form textarea,
.reflection-form input {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--reflection-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--reflection-navy);
	outline: none;
}

.reflection-form textarea {
	resize: vertical;
}

.reflection-form label,
.reflection-compact-form label {
	display: grid;
	gap: 8px;
	color: var(--reflection-ink);
	font-size: 13px;
	font-weight: 800;
}

.reflection-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.reflection-compact-form {
	display: grid;
	gap: 14px;
}

.reflection-entry-list,
.reflection-timeline-list,
.reflection-prompt-grid,
.reflection-mood-grid,
.reflection-insight-grid,
.reflection-journey-grid,
.reflection-feature-grid {
	display: grid;
	gap: 12px;
}

.reflection-entry-item,
.reflection-timeline-list article,
.reflection-prompt-grid article,
.reflection-mood-grid article,
.reflection-insight-grid article,
.reflection-journey-grid article,
.reflection-feature-grid article {
	padding: 16px;
	border: 1px solid rgba(139, 92, 246, 0.12);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(47, 27, 69, 0.05);
}

.reflection-entry-item span,
.reflection-prompt-grid span,
.reflection-insight-grid span,
.reflection-journey-grid small,
.reflection-timeline-list time {
	color: var(--reflection-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-entry-item h3,
.reflection-prompt-grid h3,
.reflection-mood-grid h3,
.reflection-insight-grid h3,
.reflection-journey-grid h3,
.reflection-feature-grid h3,
.reflection-timeline-list strong {
	display: block;
	margin: 5px 0 0;
	color: var(--reflection-navy);
	font-size: 18px;
	line-height: 1.2;
}

.reflection-entry-item p,
.reflection-prompt-grid p,
.reflection-mood-grid p,
.reflection-insight-grid p,
.reflection-journey-grid p,
.reflection-feature-grid p,
.reflection-timeline-list p {
	margin: 8px 0 0;
	color: var(--reflection-muted);
	line-height: 1.55;
}

.reflection-timeline-list {
	position: relative;
	padding-left: 18px;
}

.reflection-timeline-list::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 6px;
	width: 2px;
	border-radius: 999px;
	background: rgba(139, 92, 246, 0.18);
}

.reflection-timeline-list article {
	position: relative;
	border-left: 4px solid var(--timeline-color, var(--reflection-blue));
}

.reflection-timeline-list article::before {
	content: "";
	position: absolute;
	top: 18px;
	left: -25px;
	width: 12px;
	height: 12px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background: var(--timeline-color, var(--reflection-blue));
	box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.22);
}

.reflection-prompt-grid,
.reflection-mood-grid,
.reflection-insight-grid,
.reflection-feature-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.reflection-prompt-grid article,
.reflection-insight-grid article {
	background:
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.7), transparent 32%),
		var(--card-bg, #ffffff);
}

.reflection-prompt-grid .is-purple,
.reflection-insight-grid .is-purple {
	--card-bg: #f3e8ff;
}

.reflection-prompt-grid .is-pink,
.reflection-insight-grid .is-pink {
	--card-bg: #fff1f6;
}

.reflection-prompt-grid .is-yellow,
.reflection-insight-grid .is-yellow {
	--card-bg: #fff8df;
}

.reflection-prompt-grid .is-blue,
.reflection-insight-grid .is-blue {
	--card-bg: #eef2ff;
}

.reflection-prompt-grid .is-mint,
.reflection-insight-grid .is-mint {
	--card-bg: #edfdf6;
}

.reflection-prompt-grid .is-plum {
	--card-bg: #f7efff;
}

.reflection-mood-grid article {
	border-left: 5px solid var(--mood-color, var(--reflection-blue));
}

.reflection-mood-grid .is-purple {
	--mood-color: #8b5cf6;
}

.reflection-mood-grid .is-pink {
	--mood-color: #f15bb5;
}

.reflection-mood-grid .is-blue {
	--mood-color: #7c3aed;
}

.reflection-mood-grid .is-mint {
	--mood-color: #5bd0a6;
}

.reflection-journey-grid article {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
	border-color: color-mix(in srgb, var(--journey-color, #8b5cf6) 22%, transparent);
	background: color-mix(in srgb, var(--journey-color, #8b5cf6) 7%, #ffffff);
}

.reflection-journey-grid article > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--journey-color, var(--reflection-blue));
	color: #ffffff;
	font-weight: 900;
}

.reflection-tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.reflection-tag-row b,
.reflection-mini-moods b {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(139, 92, 246, 0.1);
	color: var(--reflection-navy);
	font-size: 11px;
	font-weight: 900;
}

.reflection-text-button {
	width: fit-content;
	margin-top: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #b4235e;
	cursor: pointer;
	font-size: 13px;
	font-weight: 900;
}

.reflection-public-page {
	background: #ffffff;
}

.reflection-public-hero {
	padding: 74px 0;
	background:
		radial-gradient(circle at 14% 16%, rgba(241, 91, 181, 0.2), transparent 31%),
		radial-gradient(circle at 84% 8%, rgba(139, 92, 246, 0.18), transparent 30%),
		linear-gradient(135deg, #fbf7ff 0%, #fff1f6 55%, #ffffff 100%);
}

.reflection-product-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
	gap: 34px;
	align-items: center;
}

.reflection-public-hero h1 {
	max-width: 760px;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.95;
}

.reflection-public-hero p {
	max-width: 680px;
	color: var(--reflection-ink);
	font-size: 19px;
	line-height: 1.6;
}

.reflection-hero-actions,
.reflection-mini-moods {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.reflection-public-section {
	padding: 70px 0;
}

.reflection-feature-grid article i {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
	color: #ffffff;
}

@media (max-width: 1120px) {
	.reflection-dashboard-stats,
	.reflection-dashboard-quick-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reflection-dashboard-overview-grid,
	.reflection-dashboard-two-column,
	.reflection-product-hero__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1020px) {
	body.reflection-menu-open {
		overflow: hidden;
	}

	.reflection-header__inner {
		justify-content: space-between;
		min-height: 76px;
		padding-top: 12px;
		padding-bottom: 12px;
		gap: 16px;
	}

	.reflection-logo__main {
		font-size: 50px;
	}

	.reflection-logo__dayzy {
		font-size: 18px;
	}

	.reflection-menu-toggle,
	.reflection-header__mobile-controls,
	.reflection-account-menu--mobile {
		display: flex;
	}

	.reflection-account-menu--desktop {
		display: none;
	}

	.reflection-header__panel {
		position: absolute;
		top: calc(100% + 10px);
		left: 24px;
		right: 24px;
		z-index: 80;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		width: auto;
		max-height: min(680px, calc(100dvh - 92px));
		padding: 16px;
		border: 1px solid rgba(139, 92, 246, 0.16);
		border-radius: 16px;
		background: #ffffff;
		box-shadow: 0 24px 58px rgba(47, 27, 69, 0.18);
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.reflection-header__panel.is-open,
	body.reflection-menu-open .reflection-header__panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.reflection-nav {
		width: 100%;
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(139, 92, 246, 0.12);
		overflow: visible;
	}

	.reflection-menu {
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
		gap: 4px;
		min-width: 0;
	}

	.reflection-menu li {
		width: 100%;
	}

	.reflection-menu a {
		display: block;
		width: 100%;
		padding: 11px 12px;
		border-radius: 10px;
		line-height: 1.35;
		white-space: normal;
	}

	.reflection-menu a:hover,
	.reflection-menu a:focus {
		background: var(--reflection-soft);
	}

	.reflection-header__actions {
		justify-content: flex-start;
		width: 100%;
	}
}

@media (max-width: 900px) {
	.reflection-dashboard-shell {
		display: block;
	}

	.reflection-dashboard-mobilebar {
		position: fixed;
		top: 50%;
		left: 0;
		z-index: 10010;
		display: block;
		width: 42px;
		height: 76px;
		padding: 0;
		transform: translateY(-50%);
		pointer-events: none;
		background: transparent;
	}

	.reflection-dashboard-sidebar-toggle,
	.reflection-dashboard-drawer-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 42px;
		border: 1px solid rgba(139, 92, 246, 0.18);
		border-radius: 7px;
		background: #ffffff;
		color: var(--reflection-blue);
		font: inherit;
		font-size: 13px;
		font-weight: 800;
		cursor: pointer;
		box-shadow: 0 8px 18px rgba(47, 27, 69, 0.06);
	}

	.reflection-dashboard-sidebar-toggle {
		width: 42px;
		height: 76px;
		min-height: 76px;
		padding: 0 5px 0 0;
		border-left: 0;
		border-radius: 0 999px 999px 0;
		font-size: 17px;
		box-shadow: 10px 12px 32px rgba(47, 27, 69, 0.16);
		pointer-events: auto;
	}

	.reflection-dashboard-drawer-close {
		width: 42px;
		height: 42px;
		min-height: 42px;
		padding: 0;
	}

	.reflection-dashboard-sidebar {
		position: fixed !important;
		top: 0;
		right: auto;
		bottom: 0;
		left: 0;
		z-index: 10020;
		width: min(326px, calc(100vw - 34px));
		height: 100dvh !important;
		min-height: 0;
		display: flex !important;
		flex-direction: column !important;
		gap: 8px !important;
		padding: 10px 18px 18px !important;
		border-right: 1px solid rgba(139, 92, 246, 0.18) !important;
		border-bottom: 0 !important;
		background: #ffffff !important;
		box-shadow: 24px 0 70px rgba(47, 27, 69, 0.22);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(-104%);
		transition: transform 0.22s ease;
	}

	.reflection-dashboard-nav {
		gap: 2px;
		margin-top: 0;
	}

	.reflection-dashboard-nav a {
		flex: 0 0 42px !important;
		width: 100%;
		height: 42px;
		min-height: 42px;
		padding: 0 12px;
		font-size: 15px;
	}

	.reflection-dashboard-sidebar.is-open {
		transform: translateX(0);
	}

	.reflection-dashboard-drawer-head {
		position: absolute;
		top: 10px;
		right: 14px;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: 0;
	}

	.reflection-dashboard-sidebar-scrim {
		position: fixed;
		inset: 0;
		z-index: 10015;
		display: block;
		background: rgba(47, 27, 69, 0.42);
		backdrop-filter: blur(4px);
	}

	.reflection-dashboard-sidebar-scrim[hidden] {
		display: none;
	}

	body.reflection-dashboard-sidebar-open {
		overflow: hidden;
	}
}

@media (max-width: 782px) {
	body.admin-bar .reflection-dashboard-sidebar-scrim {
		top: 46px;
	}

	body.admin-bar .reflection-dashboard-sidebar {
		top: 46px;
		height: calc(100dvh - 46px) !important;
	}
}

@media (max-width: 720px) {
	.reflection-dashboard-app .reflection-container {
		padding: 0 18px;
	}

	.reflection-dashboard-stats,
	.reflection-dashboard-quick-actions,
	.reflection-prompt-grid,
	.reflection-mood-grid,
	.reflection-insight-grid,
	.reflection-feature-grid,
	.reflection-form-grid {
		grid-template-columns: 1fr;
	}

	.reflection-public-hero {
		padding: 52px 0;
	}

	.reflection-public-hero h1 {
		font-size: 43px;
	}

	.reflection-journey-grid article {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.reflection-journey-grid form {
		grid-column: 2;
	}
}

@media (max-width: 520px) {
	.reflection-header__inner {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.reflection-logo__main {
		font-size: 44px;
	}

	.reflection-logo__by {
		font-size: 12px;
	}

	.reflection-logo__dayzy {
		font-size: 16px;
	}

	.reflection-account-menu summary,
	.reflection-menu-toggle {
		width: 42px;
		height: 42px;
	}

	.reflection-header__panel {
		left: 18px;
		right: 18px;
	}
}

/* Keep the Dayzy wordmark black across product branding. */
.reflection-logo__dayzy {
	color: #000000 !important;
}

.reflection-blog-hero,
.reflection-single-hero {
	padding: 86px 0;
	background:
		radial-gradient(circle at 18% 20%, rgba(241, 91, 181, 0.24), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(139, 92, 246, 0.28), transparent 28%),
		linear-gradient(135deg, #fff1f6 0%, #fbf7ff 48%, #ffffff 100%);
}

.reflection-blog-hero__inner,
.reflection-single-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
	align-items: center;
	gap: 38px;
}

.reflection-blog-hero h1,
.reflection-single-hero h1 {
	margin: 0;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 74px);
	line-height: 0.98;
}

.reflection-single-hero h1 {
	margin-top: 16px;
}

.reflection-blog-hero p,
.reflection-single-hero p {
	max-width: 700px;
	color: var(--reflection-ink);
	font-size: 20px;
	line-height: 1.58;
}

.reflection-blog-hero__panel {
	padding: 28px;
	border: 1px solid var(--reflection-line);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: var(--reflection-shadow);
}

.reflection-blog-hero__panel span,
.reflection-blog-card__meta span,
.reflection-single-meta,
.reflection-single-quick {
	color: var(--reflection-blue-2);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-blog-hero__panel strong {
	display: block;
	margin-top: 12px;
	color: var(--reflection-navy);
	font-size: 24px;
	line-height: 1.22;
}

.reflection-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.reflection-blog-card {
	overflow: hidden;
	border: 1px solid var(--reflection-line);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(139, 92, 246, 0.1);
}

.reflection-blog-card__media,
.reflection-blog-card__placeholder {
	display: block;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(circle at 24% 18%, rgba(241, 91, 181, 0.42), transparent 30%),
		linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
}

.reflection-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reflection-blog-card__body {
	padding: 22px;
}

.reflection-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}

.reflection-blog-card h3,
.reflection-blog-empty h2 {
	margin: 0;
	color: var(--reflection-navy);
	font-size: 24px;
	line-height: 1.15;
}

.reflection-blog-card p,
.reflection-blog-empty p {
	color: var(--reflection-muted);
	line-height: 1.6;
}

.reflection-blog-card__link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--reflection-blue);
	font-weight: 900;
	text-decoration: none;
}

.reflection-blog-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 36px;
}

.reflection-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--reflection-line);
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-navy);
	font-weight: 900;
	text-decoration: none;
}

.reflection-blog-pagination .current {
	background: var(--reflection-blue);
	color: #ffffff;
}

.reflection-blog-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 38px;
	border: 1px solid var(--reflection-line);
	border-radius: 28px;
	background: linear-gradient(135deg, #ffffff, var(--reflection-soft));
	text-align: center;
	box-shadow: var(--reflection-shadow);
}

.reflection-single-back {
	display: inline-flex;
	margin-bottom: 22px;
	color: var(--reflection-blue);
	font-weight: 900;
	text-decoration: none;
}

.reflection-single-meta,
.reflection-single-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.reflection-single-media {
	overflow: hidden;
	margin: 0;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: var(--reflection-shadow);
}

.reflection-single-media img,
.reflection-single-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.reflection-single-placeholder {
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 26% 18%, rgba(241, 91, 181, 0.42), transparent 30%),
		linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
	color: #ffffff;
	font-size: 28px;
	font-weight: 900;
}

.reflection-single-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: start;
	gap: 42px;
	padding: 76px 24px;
}

.reflection-single-rail > div {
	position: sticky;
	top: 112px;
	padding: 24px;
	border: 1px solid var(--reflection-line);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(139, 92, 246, 0.08);
}

.reflection-single-rail strong,
.reflection-single-share span {
	display: block;
	margin-bottom: 16px;
	color: var(--reflection-navy);
	font-size: 18px;
}

.reflection-single-rail dl {
	display: grid;
	gap: 16px;
	margin: 0 0 20px;
}

.reflection-single-rail dt {
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-single-rail dd {
	margin: 5px 0 0;
	color: var(--reflection-navy);
	font-weight: 850;
	line-height: 1.4;
}

.reflection-single-share {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding-top: 18px;
	border-top: 1px solid var(--reflection-line);
}

.reflection-single-share span {
	flex: 0 0 100%;
	margin-bottom: 2px;
}

.reflection-single-share a,
.reflection-single-tags a {
	display: inline-flex;
	padding: 9px 11px;
	border-radius: 999px;
	background: var(--reflection-mint);
	color: var(--reflection-blue);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.reflection-single-editor {
	color: var(--reflection-ink);
	font-size: 18px;
	line-height: 1.82;
}

.reflection-single-editor > *:first-child {
	margin-top: 0;
}

.reflection-single-editor h2,
.reflection-single-editor h3 {
	color: var(--reflection-navy);
	line-height: 1.12;
}

.reflection-single-editor img {
	border-radius: 22px;
	box-shadow: var(--reflection-shadow);
}

.reflection-single-tags,
.reflection-single-nav {
	margin-top: 36px;
}

.reflection-single-tags span {
	display: block;
	margin-bottom: 10px;
	color: var(--reflection-muted);
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-single-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.reflection-single-nav a {
	padding: 20px;
	border: 1px solid var(--reflection-line);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(139, 92, 246, 0.07);
	text-decoration: none;
}

.reflection-single-nav span {
	display: block;
	margin-bottom: 6px;
	color: var(--reflection-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-single-nav strong {
	color: var(--reflection-navy);
	line-height: 1.25;
}

.reflection-single-related {
	padding: 72px 0 88px;
	background: var(--reflection-soft-2);
}

.reflection-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
}

.reflection-footer__legal a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.reflection-footer__legal a:hover,
.reflection-footer__legal a:focus {
	color: #ffffff;
}

.reflection-support-page {
	background: linear-gradient(180deg, #ffffff 0%, var(--reflection-soft-2) 100%);
	color: var(--reflection-navy);
}

.reflection-support-hero {
	padding: 86px 0 58px;
	background:
		radial-gradient(circle at 86% 12%, rgba(241, 91, 181, 0.18), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, var(--reflection-soft) 100%);
}

.reflection-support-hero__inner {
	max-width: 860px;
}

.reflection-support-hero h1 {
	max-width: 820px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.98;
	letter-spacing: 0;
}

.reflection-support-hero p:not(.reflection-eyebrow) {
	max-width: 720px;
	margin: 20px 0 0;
	color: var(--reflection-ink);
	font-size: 20px;
	line-height: 1.65;
}

.reflection-support-section {
	padding: 54px 0;
}

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

.reflection-support-card,
.reflection-support-form-card {
	border: 1px solid var(--reflection-line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 44px rgba(47, 27, 69, 0.07);
}

.reflection-support-card {
	padding: 24px;
}

.reflection-support-card h2 {
	margin: 0 0 10px;
	color: var(--reflection-navy);
	font-size: 24px;
	line-height: 1.15;
}

.reflection-support-card p {
	margin: 0;
	color: var(--reflection-muted);
	font-size: 16px;
	line-height: 1.65;
}

.reflection-support-form-card {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 36px);
}

.reflection-support-form {
	display: grid;
	gap: 16px;
}

.reflection-support-form label {
	display: grid;
	gap: 8px;
	color: var(--reflection-navy);
	font-weight: 900;
}

.reflection-support-form input,
.reflection-support-form textarea {
	width: 100%;
	border: 1px solid var(--reflection-line);
	border-radius: 16px;
	background: #ffffff;
	color: var(--reflection-navy);
	font: inherit;
	padding: 13px 14px;
}

.reflection-support-alert {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	background: var(--reflection-soft);
	color: var(--reflection-navy);
	font-weight: 800;
}

.reflection-support-alert--success {
	background: var(--reflection-mint);
	color: var(--reflection-blue);
}

.reflection-support-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.reflection-support-link-row a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-blue);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(47, 27, 69, 0.07);
}

.reflection-cookie-consent {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: min(720px, calc(100% - 36px));
	padding: 18px;
	border: 1px solid rgba(139, 92, 246, 0.22);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 70px rgba(47, 27, 69, 0.16);
}

.reflection-cookie-consent[hidden] {
	display: none;
}

.reflection-cookie-consent strong {
	display: block;
	margin-bottom: 4px;
	color: var(--reflection-navy);
}

.reflection-cookie-consent p {
	margin: 0;
	color: var(--reflection-muted);
	font-size: 14px;
	line-height: 1.45;
}

.reflection-cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.reflection-cookie-consent__actions a,
.reflection-cookie-consent__actions button {
	border: 0;
	border-radius: 999px;
	background: var(--reflection-mint);
	color: var(--reflection-blue);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	padding: 10px 14px;
	text-decoration: none;
}

.reflection-cookie-consent__actions button {
	background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
	color: #ffffff;
}

@media (max-width: 900px) {
	.reflection-blog-hero__inner,
	.reflection-single-hero__inner,
	.reflection-blog-grid,
	.reflection-single-layout,
	.reflection-single-nav {
		grid-template-columns: 1fr;
	}

	.reflection-blog-hero,
	.reflection-single-hero {
		padding: 66px 0;
	}

	.reflection-single-layout {
		padding: 56px 24px;
	}

	.reflection-single-rail > div {
		position: static;
	}

	.reflection-support-grid,
	.reflection-cookie-consent {
		grid-template-columns: 1fr;
	}

	.reflection-cookie-consent__actions {
		justify-content: flex-start;
	}
}

/* Blog polish: reflective article reading, card polish, and boxed FAQ/fact content. */
.reflection-blog-card {
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reflection-blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(139, 92, 246, 0.28);
	box-shadow: 0 24px 58px rgba(139, 92, 246, 0.15);
}

.reflection-blog-card__media,
.reflection-blog-card__placeholder {
	aspect-ratio: 16 / 9;
	max-height: 224px;
}

.reflection-blog-card h3 a {
	color: inherit;
	text-decoration: none;
}

.reflection-single-hero__inner {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
}

.reflection-single-media {
	max-width: 500px;
	justify-self: end;
}

.reflection-single-media img,
.reflection-single-placeholder {
	aspect-ratio: 16 / 10;
	max-height: 350px;
}

.reflection-single-main {
	padding: clamp(24px, 4vw, 44px);
	border: 1px solid rgba(139, 92, 246, 0.15);
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0 22px 56px rgba(47, 27, 69, 0.07);
}

.reflection-single-editor {
	max-width: 790px;
	font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
	font-size: clamp(17px, 1.25vw, 19px);
	line-height: 1.84;
	letter-spacing: 0;
}

.reflection-single-editor p {
	margin: 0 0 1.35em;
}

.reflection-single-editor h2,
.reflection-single-editor h3,
.reflection-single-editor h4 {
	letter-spacing: 0;
}

.reflection-single-editor h2 {
	margin: 2.25em 0 0.72em;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.08;
}

.reflection-single-editor h3 {
	margin: 2em 0 0.65em;
	font-size: clamp(23px, 3vw, 31px);
	line-height: 1.16;
}

.reflection-single-editor h4 {
	margin: 1.8em 0 0.6em;
	font-size: clamp(19px, 2.2vw, 23px);
	line-height: 1.25;
	color: var(--reflection-blue);
}

.reflection-single-editor ul,
.reflection-single-editor ol {
	margin: 1.45em 0 2em;
	padding: 22px 24px 22px 48px;
	border: 1px solid rgba(139, 92, 246, 0.15);
	border-radius: 24px;
	background: linear-gradient(135deg, #ffffff, rgba(241, 91, 181, 0.09));
	box-shadow: 0 14px 34px rgba(47, 27, 69, 0.05);
}

.reflection-single-editor li {
	margin: 0.68em 0;
	padding-left: 0.15em;
}

.reflection-single-editor li::marker {
	color: var(--reflection-blue-2);
	font-weight: 900;
}

.reflection-single-editor blockquote,
.reflection-single-editor .dayzy-ai-blog-facts,
.reflection-single-editor .dayzy-ai-blog-fact,
.reflection-single-editor .dayzy-ai-blog-quick-facts {
	margin: 2.2em 0;
	padding: clamp(22px, 4vw, 32px);
	border: 1px solid rgba(139, 92, 246, 0.16);
	border-radius: 28px;
	background:
		radial-gradient(circle at 8% 0%, rgba(241, 91, 181, 0.14), transparent 34%),
		linear-gradient(135deg, #ffffff, var(--reflection-soft-2));
	box-shadow: 0 18px 44px rgba(47, 27, 69, 0.07);
}

.reflection-single-editor .dayzy-ai-blog-faq,
.reflection-single-editor .dayzy-ai-blog-cta {
	margin: clamp(42px, 7vw, 68px) 0 0;
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid rgba(139, 92, 246, 0.17);
	border-radius: 30px;
	background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.11));
	box-shadow: 0 22px 54px rgba(47, 27, 69, 0.07);
}

.reflection-single-editor .dayzy-ai-blog-faq h2,
.reflection-single-editor .dayzy-ai-blog-cta h2 {
	margin-top: 0;
}

.reflection-single-editor .dayzy-ai-blog-faq h3 {
	margin-top: 1.45em;
	padding-top: 1.25em;
	border-top: 1px solid rgba(139, 92, 246, 0.14);
}

.reflection-single-editor .dayzy-ai-blog-faq h3:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.reflection-single-editor .dayzy-ai-blog-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 6px;
	padding: 11px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.reflection-single-tags {
	align-items: flex-start;
	gap: 10px;
}

.reflection-single-tags span {
	flex: 0 0 100%;
	margin-bottom: 2px;
}

.reflection-single-tags a {
	margin: 0;
}

@media (max-width: 900px) {
	.reflection-single-hero__inner {
		grid-template-columns: 1fr;
	}

	.reflection-single-media {
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
	}

	.reflection-single-media img,
	.reflection-single-placeholder {
		max-height: 280px;
	}

	.reflection-single-main {
		padding: 24px;
		border-radius: 24px;
	}

	.reflection-single-editor ul,
	.reflection-single-editor ol {
		padding: 20px 20px 20px 36px;
	}

	.reflection-single-tags a {
		flex: 1 1 auto;
		justify-content: center;
		text-align: center;
	}
}

/* Dayzy family authenticated header alignment */
.reflection-header {
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(47, 27, 69, 0.05);
}

.reflection-header__inner {
	min-height: 76px;
}

.reflection-header__panel {
	gap: 18px;
}

.reflection-menu {
	gap: 18px;
}

.reflection-menu--authenticated {
	gap: 8px;
}

.reflection-menu--authenticated a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 10px;
	border-radius: 999px;
}

.reflection-menu--authenticated a:hover,
.reflection-menu--authenticated a:focus {
	background: var(--reflection-soft);
}

.reflection-header-icon,
.reflection-header-alert summary {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(139, 92, 246, 0.24);
	border-radius: 50%;
	background: #ffffff;
	color: var(--reflection-blue);
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(47, 27, 69, 0.08);
	cursor: pointer;
	list-style: none;
}

.reflection-header-alert {
	position: relative;
}

.reflection-header-alert summary::-webkit-details-marker {
	display: none;
}

.reflection-header-alert__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 90;
	width: 260px;
	padding: 16px;
	border: 1px solid var(--reflection-line);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 22px 50px rgba(47, 27, 69, 0.16);
}

.reflection-header-alert__dropdown strong {
	display: block;
	margin-bottom: 6px;
	color: var(--reflection-navy);
	font-size: 14px;
}

.reflection-header-alert__dropdown p {
	margin: 0;
	color: var(--reflection-ink);
	font-size: 13px;
	line-height: 1.4;
}

.reflection-header-icon--mobile,
.reflection-header-alert--mobile {
	display: none;
}

.reflection-account-menu summary {
	overflow: hidden;
	padding: 0;
}

.reflection-account-menu__avatar {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	border-radius: 50%;
	object-fit: cover;
}

@media (max-width: 1040px) {
	.reflection-header-icon--desktop,
	.reflection-header-alert--desktop {
		display: none;
	}

	.reflection-header-icon--mobile,
	.reflection-header-alert--mobile {
		display: inline-grid;
	}

	.reflection-header__mobile-controls {
		gap: 8px;
	}

	.reflection-header-icon,
	.reflection-header-alert summary,
	.reflection-account-menu summary,
	.reflection-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.reflection-header-alert--mobile .reflection-header-alert__dropdown {
		right: 0;
		width: min(260px, calc(100vw - 48px));
	}
}

/* Wider single-post reading layout with the article guide integrated into the hero. */
.reflection-single-hero__panel {
	display: grid;
	align-self: stretch;
	gap: 18px;
}

.reflection-single-hero__panel .reflection-single-media {
	width: 100%;
	max-width: none;
	justify-self: stretch;
}

.reflection-single-hero__panel .reflection-single-rail > div {
	position: static;
	top: auto;
	border-color: rgba(139, 92, 246, 0.2);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 24px 58px rgba(47, 27, 69, 0.15);
}

.reflection-single-hero__panel .reflection-single-rail dl {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.reflection-single-hero__panel .reflection-single-rail dl > div:last-child {
	grid-column: 1 / -1;
}

.reflection-single-layout {
	display: block;
	width: min(1120px, 100%);
	padding-top: clamp(64px, 8vw, 96px);
	padding-bottom: clamp(64px, 8vw, 96px);
}

.reflection-single-main {
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 58px);
}

.reflection-single-editor,
.reflection-single-tags,
.reflection-single-nav {
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
}

.reflection-single-editor li > ul,
.reflection-single-editor li > ol {
	margin: 0.72em 0 0.2em;
	padding: 0 0 0 1.15em !important;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.reflection-single-editor li > ul li > ul,
.reflection-single-editor li > ul li > ol,
.reflection-single-editor li > ol li > ul,
.reflection-single-editor li > ol li > ol {
	padding-left: 1.15em !important;
}

@media (max-width: 900px) {
	.reflection-single-hero__panel {
		gap: 16px;
	}

	.reflection-single-hero__panel .reflection-single-rail dl {
		grid-template-columns: 1fr;
	}

	.reflection-single-hero__panel .reflection-single-rail dl > div:last-child {
		grid-column: auto;
	}

	.reflection-single-main {
		padding: 22px;
	}
}

/* Homepage hero refresh: reflective note, not a dashboard mockup. */
.reflection-home-hero {
	padding: clamp(84px, 9vw, 118px) 0 clamp(74px, 8vw, 104px);
	background:
		radial-gradient(circle at 88% 18%, rgba(203, 244, 240, 0.84), transparent 34%),
		radial-gradient(circle at 8% 92%, rgba(241, 91, 181, 0.13), transparent 36%),
		linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
}

.reflection-home-hero__grid {
	grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.56fr);
	gap: clamp(34px, 6vw, 68px);
}

.reflection-hero-note {
	position: relative;
	display: grid;
	align-content: center;
	gap: 18px;
	min-height: 470px;
}

.reflection-hero-note::before {
	content: "";
	position: absolute;
	inset: 9% 4% 0 20%;
	border-radius: 44px;
	background:
		radial-gradient(circle at 90% 20%, rgba(241, 91, 181, 0.18), transparent 32%),
		radial-gradient(circle at 12% 80%, rgba(67, 209, 202, 0.18), transparent 36%);
	filter: blur(1px);
}

.reflection-note-paper {
	position: relative;
	z-index: 1;
	padding: clamp(30px, 5vw, 46px);
	border: 1px solid rgba(139, 92, 246, 0.14);
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
		repeating-linear-gradient(180deg, transparent 0 34px, rgba(139, 92, 246, 0.08) 35px 36px);
	box-shadow: 0 30px 80px rgba(47, 27, 69, 0.12);
	transform: rotate(-1.5deg);
}

.reflection-note-paper span {
	display: block;
	margin-bottom: 14px;
	color: var(--reflection-blue);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.reflection-note-paper strong {
	display: block;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.08;
}

.reflection-note-paper p {
	margin: 18px 0 0;
	color: var(--reflection-ink);
	font-size: 17px;
	line-height: 1.65;
}

.reflection-note-moods {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.reflection-note-moods span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 9px 14px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--reflection-blue);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(47, 27, 69, 0.09);
}

@media (max-width: 1040px) {
	.reflection-home-hero__grid {
		grid-template-columns: 1fr;
	}

	.reflection-hero-note {
		min-height: 0;
	}
}

@media (max-width: 620px) {
	.reflection-note-paper {
		transform: none;
	}

	.reflection-note-moods {
		justify-content: center;
	}
}

/* Unified authenticated mobile header */
.reflection-menu--authenticated {
	display: none;
}

.reflection-header-control__label,
.reflection-header-control__chevron {
	display: none;
}

.reflection-header-alert__badge {
	position: absolute;
	top: -4px;
	right: -4px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #f15ba8;
	color: #ffffff;
	font-size: 10px;
	line-height: 1;
}

.reflection-header-alert__list {
	display: grid;
	margin-top: 8px;
}

.reflection-header-alert__list a {
	display: flex;
	gap: 10px;
	padding: 11px 4px;
	border-top: 1px solid var(--reflection-line);
	color: var(--reflection-ink);
	text-decoration: none;
}

.reflection-header-alert__list a > i {
	width: 20px;
	margin-top: 2px;
	color: #f15ba8;
	text-align: center;
}

.reflection-header-alert__list span,
.reflection-header-alert__list b,
.reflection-header-alert__list small {
	display: block;
}

.reflection-header-alert__list b {
	font-size: 13px;
}

.reflection-header-alert__list small {
	margin-top: 4px;
	color: #75677d;
	font-size: 12px;
	line-height: 1.4;
}

@media (max-width: 1020px) {
	.reflection-header__mobile-controls {
		display: flex;
	}

	.reflection-menu--authenticated {
		display: flex;
	}

	.reflection-header__actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.reflection-header-alert,
	.reflection-header-icon,
	.reflection-account-menu--header {
		width: 100%;
	}

	.reflection-header-alert summary,
	.reflection-header-icon,
	.reflection-account-menu--header summary {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		width: 100%;
		height: auto;
		min-height: 46px;
		padding: 7px 12px;
		border: 1px solid rgba(79, 43, 74, 0.2);
		border-radius: 12px;
		background: #ffffff;
		color: #352334;
		box-shadow: none;
	}

	.reflection-header-alert summary:hover,
	.reflection-header-alert summary:focus-visible,
	.reflection-header-icon:hover,
	.reflection-header-icon:focus-visible,
	.reflection-account-menu--header summary:hover,
	.reflection-account-menu--header summary:focus-visible {
		border-color: #f15ba8;
		background: #fff4f8;
		color: #4f2b4a;
	}

	.reflection-header-control__label,
	.reflection-header-control__chevron,
	.reflection-account-menu--header .reflection-account-menu__welcome,
	.reflection-account-menu--header summary > i {
		display: inline-flex;
	}

	.reflection-header-control__label,
	.reflection-account-menu--header .reflection-account-menu__welcome {
		flex: 1;
		font-size: 13px;
		font-weight: 800;
	}

	.reflection-header-control__chevron,
	.reflection-account-menu--header summary > i {
		margin-left: auto;
		font-size: 11px;
	}

	.reflection-header-alert__badge {
		position: static;
		flex: 0 0 auto;
	}

	.reflection-header-alert__dropdown,
	.reflection-account-menu--header .reflection-account-menu__dropdown {
		position: static;
		width: 100%;
		min-width: 0;
		margin-top: 8px;
		border-radius: 12px;
		box-shadow: none;
	}

	.reflection-account-menu--header .reflection-account-menu__avatar {
		width: 32px;
		height: 32px;
	}
}

/* ------------------------------------------------------------------
   Settings shell (standardized across the Dayzy suite)
   ------------------------------------------------------------------ */

.reflection-settings-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
	padding: 6px;
	border: 1px solid var(--reflection-line);
	border-radius: 999px;
	background: var(--reflection-paper);
	box-shadow: var(--reflection-shadow);
	width: fit-content;
	max-width: 100%;
}

.reflection-settings-tabs a {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border-radius: 999px;
	color: var(--reflection-ink);
	font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.reflection-settings-tabs a:hover,
.reflection-settings-tabs a:focus {
	color: var(--reflection-teal);
	background: var(--reflection-mint);
}

.reflection-settings-tabs a.is-active {
	background: var(--reflection-blue);
	color: #ffffff;
}

.reflection-workspace-notice.is-warning {
	background: #fff7e6;
	border: 1px solid #f0d9a8;
	color: #7a5b1e;
}

.reflection-settings-row--toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid var(--reflection-line);
}

.reflection-settings-row--toggle > span {
	display: block;
	color: var(--reflection-navy);
	font-weight: 600;
	font-size: 15px;
}

.reflection-settings-row--toggle > span small {
	display: block;
	margin-top: 2px;
	color: var(--reflection-muted);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5;
}

.reflection-settings-row--toggle > strong {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.reflection-notification-status {
	min-width: 26px;
	color: var(--reflection-muted);
	font-size: 12.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.reflection-notification-toggle {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 26px;
	cursor: pointer;
}

.reflection-notification-toggle input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.reflection-notification-toggle span {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: #ddd3ea;
	transition: background 160ms ease;
}

.reflection-notification-toggle span::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(47, 27, 69, 0.25);
	transition: transform 160ms ease;
}

.reflection-notification-toggle input:checked + span {
	background: var(--reflection-blue);
}

.reflection-notification-toggle input:checked + span::before {
	transform: translateX(20px);
}

.reflection-notification-toggle input:focus-visible + span {
	outline: 2px solid var(--reflection-teal);
	outline-offset: 2px;
}

.reflection-notification-recent {
	display: grid;
	gap: 6px;
	margin: 12px 0;
}

.reflection-notification-recent a {
	display: block;
	padding: 10px 12px;
	border: 1px solid var(--reflection-line);
	border-radius: 12px;
	background: var(--reflection-soft-2);
	text-decoration: none;
}

.reflection-notification-recent a b {
	display: block;
	color: var(--reflection-navy);
	font-size: 13.5px;
}

.reflection-notification-recent a span {
	display: block;
	margin-top: 2px;
	color: var(--reflection-ink);
	font-size: 12.5px;
	line-height: 1.5;
}

.reflection-dashboard-upgrade {
	border: 1px solid var(--reflection-line);
	background: linear-gradient(150deg, var(--reflection-soft-2) 0%, var(--reflection-mint) 100%);
}

.reflection-dashboard-upgrade .reflection-eyebrow i {
	margin-right: 4px;
	color: var(--reflection-blue);
}

.reflection-dashboard-upgrade .reflection-button {
	margin-top: 12px;
}

@media (max-width: 640px) {
	.reflection-settings-tabs {
		width: 100%;
		border-radius: 18px;
	}

	.reflection-settings-row--toggle {
		flex-direction: row;
		align-items: flex-start;
	}
}

/* ------------------------------------------------------------------
   Help Center / Contact / How It Works (standardized)
   ------------------------------------------------------------------ */

.reflection-help-hero {
	padding: 120px 0 72px;
	background:
		radial-gradient(circle at 14% 22%, rgba(241, 91, 181, 0.2), transparent 30%),
		linear-gradient(120deg, #2f1b45 0%, #4c2a6e 50%, #8b5cf6 100%);
	color: #ffffff;
}

.reflection-help-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 44px;
	align-items: center;
}

.reflection-help-hero__copy .reflection-eyebrow {
	color: #f3c9e4;
}

.reflection-help-hero__copy h1 {
	margin: 0 0 14px;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 4.4vw, 52px);
	line-height: 1.14;
}

.reflection-help-hero__copy > p {
	margin: 0 0 24px;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.65;
}

.reflection-help-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.reflection-help-hero__panel {
	padding: 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.reflection-help-hero__panel h2 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 18px;
}

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

.reflection-help-hero__panel li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14.5px;
	line-height: 1.5;
}

.reflection-help-hero__panel li i {
	margin-top: 3px;
	color: #f3c9e4;
}

.reflection-help-hero__panel a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.reflection-help-topic {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.reflection-help-topic__icon {
	margin-bottom: 12px;
	font-size: 22px;
	color: var(--reflection-blue);
}

.reflection-help-topic ul {
	margin: 10px 0 14px;
	padding: 0 0 0 18px;
	display: grid;
	gap: 6px;
	color: var(--reflection-ink);
	font-size: 14px;
	line-height: 1.55;
}

.reflection-help-topic > a {
	margin-top: auto;
	color: var(--reflection-teal);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.reflection-help-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
}

.reflection-help-step {
	padding: 24px 22px;
	border: 1px solid var(--reflection-line);
	border-radius: 20px;
	background: var(--reflection-paper);
	box-shadow: var(--reflection-shadow);
}

.reflection-help-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 12px;
	border-radius: 999px;
	background: var(--reflection-mint);
	color: var(--reflection-teal);
	font-weight: 700;
}

.reflection-help-step h3 {
	margin: 0 0 6px;
	color: var(--reflection-navy);
	font-size: 17px;
}

.reflection-help-step p {
	margin: 0;
	color: var(--reflection-ink);
	font-size: 14.5px;
	line-height: 1.6;
}

.reflection-help-faq__list {
	display: grid;
	gap: 12px;
	max-width: 820px;
}

.reflection-help-faq__item {
	border: 1px solid var(--reflection-line);
	border-radius: 16px;
	background: var(--reflection-paper);
	padding: 0 20px;
}

.reflection-help-faq__item summary {
	padding: 16px 0;
	color: var(--reflection-navy);
	cursor: pointer;
	font-weight: 600;
	font-size: 15.5px;
	list-style: none;
	position: relative;
	padding-right: 28px;
}

.reflection-help-faq__item summary::-webkit-details-marker {
	display: none;
}

.reflection-help-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--reflection-blue);
	font-size: 20px;
}

.reflection-help-faq__item[open] summary::after {
	content: "\2013";
}

.reflection-help-faq__item p {
	margin: 0;
	padding: 0 0 16px;
	color: var(--reflection-ink);
	font-size: 14.5px;
	line-height: 1.65;
}

.reflection-support-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.reflection-how-cta__inner {
	padding: 52px 6%;
	border: 1px solid var(--reflection-line);
	border-radius: 26px;
	background: linear-gradient(150deg, var(--reflection-soft-2) 0%, var(--reflection-mint) 100%);
	text-align: center;
}

.reflection-how-cta__inner h2 {
	margin: 0 0 8px;
	color: var(--reflection-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(26px, 3.2vw, 36px);
}

.reflection-how-cta__inner p {
	margin: 0 0 20px;
	color: var(--reflection-ink);
}

.reflection-how-cta__inner .reflection-help-hero__actions {
	justify-content: center;
}

@media (max-width: 880px) {
	.reflection-help-hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.reflection-help-hero {
		padding: 104px 0 56px;
	}
}

.reflection-header-action {
	display: inline-flex;
	align-items: center;
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid var(--reflection-line);
	background: var(--reflection-paper);
	color: var(--reflection-teal);
	font-family: 'Poppins', 'Poppins Fallback', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.reflection-header-action:hover,
.reflection-header-action:focus {
	background: var(--reflection-mint);
}

/* Keep the full Reflection by Dayzy logo visible in the header. */
.reflection-logo {
	display: inline-flex;
	align-items: baseline;
	flex: 0 0 auto;
	gap: 6px;
	min-width: 0;
	line-height: 1;
	overflow: visible;
	white-space: nowrap;
}

.reflection-logo__main {
	display: inline-block !important;
	flex: 0 0 auto;
	color: var(--reflection-blue);
	font-family: 'Alex Brush', cursive;
	font-size: 64px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	opacity: 1 !important;
	overflow: visible !important;
	position: static !important;
	visibility: visible !important;
}

.reflection-logo__by,
.reflection-logo__dayzy {
	clip: auto !important;
	clip-path: none !important;
	display: inline-block !important;
	flex: 0 0 auto;
	height: auto !important;
	max-width: none !important;
	opacity: 1 !important;
	overflow: visible !important;
	position: static !important;
	visibility: visible !important;
	width: auto !important;
	white-space: nowrap;
}

.reflection-logo__by {
	color: #7a6453;
	font-family: 'Raleway', 'Raleway Fallback', sans-serif;
	font-size: 14px;
	font-weight: 200;
	line-height: 1;
}

.reflection-logo__dayzy {
	color: #000000 !important;
	font-family: "Birds of Paradise", cursive;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
}

@media (max-width: 1020px) {
	.reflection-logo {
		gap: 4px;
	}

	.reflection-logo__main {
		font-size: 34px;
	}

	.reflection-logo__by {
		font-size: 11px;
	}

	.reflection-logo__dayzy {
		font-size: 14px;
		letter-spacing: 0.5px;
	}
}

@media (max-width: 520px) {
	.reflection-header__inner {
		gap: 12px;
	}

	.reflection-logo {
		gap: 3px;
	}

	.reflection-logo__main {
		font-size: 30px;
		letter-spacing: 0;
	}

	.reflection-logo__by {
		font-size: 10px;
	}

	.reflection-logo__dayzy {
		font-size: 13px;
	}
}

/* Dedicated authenticated mobile drawer: menu, account, notifications, help. */
.reflection-mobile-account,
.reflection-mobile-app-nav,
.reflection-mobile-notifications,
.reflection-mobile-secondary-actions {
	display: none;
}

.reflection-notification-empty {
	margin: 0;
	padding: 10px;
	color: var(--reflection-muted);
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 1020px) {
	.reflection-header__inner {
		min-height: 68px;
	}

	.reflection-header__mobile-controls {
		display: flex;
		flex: 0 0 42px;
		width: 42px;
	}

	.reflection-menu-toggle,
	.reflection-account-menu summary,
	.reflection-header-icon,
	.reflection-header-alert summary {
		width: 42px;
		min-width: 42px;
		max-width: 42px;
		height: 42px;
		padding: 0;
	}

	.reflection-menu-toggle {
		display: inline-flex;
		flex: 0 0 42px;
		border-color: rgba(139, 92, 246, 0.28);
		border-radius: 11px;
		background: #ffffff;
		box-shadow: none;
	}

	.reflection-menu-toggle span {
		width: 18px;
		height: 2px;
		background: #7c3aed;
	}

	.reflection-menu-toggle span:nth-child(1) {
		top: 14px;
	}

	.reflection-menu-toggle span:nth-child(2) {
		top: 20px;
	}

	.reflection-menu-toggle span:nth-child(3) {
		top: 26px;
	}

	.reflection-menu-toggle.is-active span:nth-child(1),
	.reflection-menu-toggle.is-active span:nth-child(3) {
		top: 20px;
	}

	.reflection-header__panel {
		top: 100%;
		left: 0;
		right: 0;
		display: grid;
		align-content: start;
		gap: 16px;
		width: 100%;
		max-width: none;
		max-height: calc(100vh - 68px);
		max-height: calc(100dvh - 68px);
		padding: 18px clamp(16px, 5vw, 28px) 28px;
		border-width: 1px 0 0;
		border-radius: 0 0 20px 20px;
		overflow-y: auto;
		background: #ffffff;
		box-shadow: 0 24px 50px rgba(47, 27, 69, 0.18);
		transform: translateY(-6px);
	}

	.reflection-header__panel.is-open {
		transform: translateY(0);
	}

	body.logged-in .reflection-header__panel .reflection-nav {
		display: none;
	}

	.reflection-mobile-app-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
	}

	.reflection-mobile-app-nav a,
	.reflection-mobile-account-menu a {
		display: flex;
		align-items: center;
		min-height: 42px;
		padding: 10px 12px;
		border-radius: 11px;
		color: var(--reflection-ink);
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
	}

	.reflection-mobile-app-nav a {
		background: #fbf7ff;
	}

	.reflection-mobile-app-nav a:hover,
	.reflection-mobile-app-nav a:focus-visible,
	.reflection-mobile-account-menu a:hover,
	.reflection-mobile-account-menu a:focus-visible {
		background: var(--reflection-soft);
		color: #7c3aed;
		outline: 2px solid rgba(139, 92, 246, 0.25);
	}

	.reflection-mobile-account {
		display: block;
		padding-bottom: 14px;
		border-bottom: 1px solid var(--reflection-line);
	}

	.reflection-mobile-account summary {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		min-height: 58px;
		padding: 7px 12px 7px 7px;
		border: 1px solid rgba(139, 92, 246, 0.24);
		border-radius: 14px;
		background: #fbf7ff;
		cursor: pointer;
		list-style: none;
	}

	.reflection-mobile-account summary::-webkit-details-marker,
	.reflection-mobile-notifications summary::-webkit-details-marker {
		display: none;
	}

	.reflection-mobile-account[open] summary,
	.reflection-mobile-notifications[open] summary {
		border-color: rgba(139, 92, 246, 0.38);
		background: var(--reflection-soft);
	}

	.reflection-mobile-account img {
		width: 44px;
		height: 44px;
		border: 2px solid #efe6ff;
		border-radius: 50%;
		object-fit: cover;
	}

	.reflection-mobile-account summary > div {
		display: grid;
		gap: 3px;
		min-width: 0;
	}

	.reflection-mobile-account summary > div span {
		color: var(--reflection-muted);
		font-size: 11px;
		font-weight: 800;
		letter-spacing: 0;
		text-transform: uppercase;
	}

	.reflection-mobile-account summary > div strong {
		min-width: 0;
		overflow: hidden;
		color: var(--reflection-navy);
		font-size: 15px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.reflection-mobile-dropdown-caret {
		display: block;
		width: 8px;
		height: 8px;
		margin-right: 3px;
		border-right: 2px solid #7c3aed;
		border-bottom: 2px solid #7c3aed;
		transform: translateY(-2px) rotate(45deg);
		transition: transform 0.2s ease;
	}

	.reflection-mobile-account[open] .reflection-mobile-dropdown-caret,
	.reflection-mobile-notifications[open] .reflection-mobile-dropdown-caret {
		transform: translateY(2px) rotate(225deg);
	}

	.reflection-mobile-account-menu {
		display: grid;
		gap: 3px;
		margin-top: 8px;
		padding: 6px;
		border: 1px solid var(--reflection-line);
		border-radius: 13px;
		background: #ffffff;
	}

	.reflection-mobile-secondary-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
		gap: 8px;
	}

	.reflection-mobile-notifications {
		display: block;
		width: 100%;
	}

	.reflection-mobile-notifications summary {
		position: relative;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 8px;
		width: 100%;
		min-height: 46px;
		padding: 9px 10px;
		border: 1px solid rgba(139, 92, 246, 0.24);
		border-radius: 12px;
		background: #ffffff;
		color: var(--reflection-navy);
		cursor: pointer;
		list-style: none;
	}

	.reflection-mobile-notifications summary i {
		color: #7c3aed;
		font-size: 18px;
	}

	.reflection-mobile-notifications summary strong {
		min-width: 0;
		overflow: hidden;
		font-size: 14px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.reflection-mobile-notification-count {
		position: absolute;
		top: 5px;
		left: 23px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 22px;
		height: 22px;
		padding: 0 6px;
		border-radius: 999px;
		background: #f15ba8;
		color: #ffffff;
		font-size: 11px;
		font-weight: 900;
	}

	.reflection-mobile-notification-panel {
		position: relative;
		z-index: 2;
		width: calc(200% + 8px);
		margin-top: 8px;
		padding: 6px;
		border: 1px solid var(--reflection-line);
		border-radius: 13px;
		background: #ffffff;
	}

	.reflection-mobile-section-heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 0 8px;
		color: var(--reflection-navy);
		font-size: 14px;
	}

	.reflection-mobile-section-heading span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 22px;
		height: 22px;
		padding: 0 6px;
		border-radius: 999px;
		background: #f15ba8;
		color: #ffffff;
		font-size: 11px;
		font-weight: 900;
	}

	.reflection-header-alert__list--mobile {
		max-height: 240px;
		overflow-y: auto;
	}

	.reflection-mobile-help-link {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 46px;
		padding: 9px 10px;
		gap: 10px;
		border: 1px solid rgba(139, 92, 246, 0.24);
		border-radius: 12px;
		background: #ffffff;
		color: var(--reflection-ink);
		font-size: 13px;
		font-weight: 800;
		text-decoration: none;
	}

	.reflection-mobile-help-link i {
		color: #7c3aed;
		font-size: 17px;
	}

	.reflection-mobile-help-link span {
		flex: 1;
	}

	.reflection-mobile-help-link .reflection-mobile-help-link__arrow {
		margin-left: auto;
		font-size: 12px;
	}

	body.logged-in .reflection-header__actions {
		display: none;
	}

	.reflection-account-menu--mobile,
	.reflection-header-icon--mobile,
	.reflection-header-alert--mobile {
		display: none !important;
	}
}

@media (max-width: 380px) {
	.reflection-logo__main {
		font-size: 26px;
	}

	.reflection-logo__by {
		font-size: 9px;
	}

	.reflection-logo__dayzy {
		font-size: 12px;
	}

	.reflection-mobile-app-nav {
		grid-template-columns: 1fr;
	}
}

/* Final mobile ordering override for the authenticated header drawer. */
@media (max-width: 1040px) {
	.reflection-header--authenticated .reflection-header__panel {
		display: grid !important;
		grid-template-columns: 1fr;
		align-items: stretch;
		align-content: start;
		justify-content: stretch;
		gap: 16px;
	}

	.reflection-header--authenticated .reflection-header__panel > .reflection-nav,
	.reflection-header--authenticated .reflection-header__actions {
		display: none !important;
	}

	.reflection-header--authenticated .reflection-mobile-app-nav {
		order: 1;
		display: grid !important;
	}

	.reflection-header--authenticated .reflection-mobile-account {
		order: 2;
		display: block !important;
	}

	.reflection-header--authenticated .reflection-mobile-secondary-actions {
		order: 3;
		display: grid !important;
	}

	.reflection-header--public .reflection-header__panel {
		display: grid !important;
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 14px;
	}

	.reflection-header--public .reflection-nav {
		order: 1;
		width: 100%;
	}

	.reflection-header--public .reflection-header__actions {
		order: 2;
		display: grid;
		grid-template-columns: 1fr;
		align-items: stretch;
		width: 100%;
	}

	.reflection-header--public .reflection-signin-button,
	.reflection-header--public .reflection-header__cta {
		justify-content: center;
		width: 100%;
	}
}

/* Match mobile header controls to the Reflection product palette. */
@media (max-width: 1040px) {
	.reflection-menu-toggle {
		border-color: rgba(139, 92, 246, 0.24);
		background: linear-gradient(135deg, var(--reflection-soft-2), #ffffff);
		color: var(--reflection-blue);
		box-shadow: 0 10px 24px rgba(139, 92, 246, 0.12);
	}

	.reflection-menu-toggle:hover,
	.reflection-menu-toggle:focus-visible,
	.reflection-menu-toggle.is-active {
		border-color: rgba(241, 91, 181, 0.42);
		background: linear-gradient(135deg, var(--reflection-blue), var(--reflection-blue-2));
		color: #ffffff;
		outline: 3px solid rgba(241, 91, 181, 0.2);
		outline-offset: 2px;
	}

	.reflection-menu-toggle span {
		background: currentColor;
	}

	.reflection-header__panel {
		border-color: rgba(139, 92, 246, 0.16);
		background: linear-gradient(180deg, #ffffff 0%, var(--reflection-soft-2) 100%);
		box-shadow: 0 24px 50px rgba(47, 27, 69, 0.16);
	}

	.reflection-header--public .reflection-menu a,
	.reflection-mobile-app-nav a,
	.reflection-mobile-account-menu a,
	.reflection-mobile-help-link,
	.reflection-mobile-notifications summary {
		border: 1px solid rgba(139, 92, 246, 0.16);
		background: rgba(255, 255, 255, 0.82);
		color: var(--reflection-navy);
		box-shadow: 0 10px 22px rgba(139, 92, 246, 0.07);
	}

	.reflection-header--public .reflection-menu a:hover,
	.reflection-header--public .reflection-menu a:focus-visible,
	.reflection-mobile-app-nav a:hover,
	.reflection-mobile-app-nav a:focus-visible,
	.reflection-mobile-account-menu a:hover,
	.reflection-mobile-account-menu a:focus-visible,
	.reflection-mobile-help-link:hover,
	.reflection-mobile-help-link:focus-visible,
	.reflection-mobile-notifications summary:hover,
	.reflection-mobile-notifications summary:focus-visible,
	.reflection-mobile-notifications[open] summary {
		border-color: rgba(241, 91, 181, 0.38);
		background: var(--reflection-soft);
		color: var(--reflection-blue);
		outline: 2px solid rgba(241, 91, 181, 0.18);
	}

	.reflection-mobile-account summary {
		border-color: rgba(139, 92, 246, 0.18);
		background: linear-gradient(135deg, var(--reflection-soft-2), var(--reflection-soft));
		color: var(--reflection-navy);
		box-shadow: 0 12px 28px rgba(139, 92, 246, 0.09);
	}

	.reflection-mobile-account[open] summary {
		border-color: rgba(241, 91, 181, 0.38);
		background: var(--reflection-soft);
	}

	.reflection-mobile-account img {
		border-color: rgba(139, 92, 246, 0.26);
	}

	.reflection-mobile-dropdown-caret,
	.reflection-mobile-notifications summary i,
	.reflection-mobile-help-link i {
		color: var(--reflection-blue);
	}

	.reflection-mobile-dropdown-caret {
		border-color: currentColor;
	}

	.reflection-mobile-notification-count,
	.reflection-mobile-section-heading span {
		background: var(--reflection-blue-2);
	}

	.reflection-mobile-notification-panel,
	.reflection-mobile-account-menu {
		border-color: rgba(139, 92, 246, 0.16);
		background: #ffffff;
		box-shadow: 0 16px 34px rgba(47, 27, 69, 0.12);
	}
}

/* Moments-style desktop header alignment for Reflection. */
@media (min-width: 1041px) {
	.reflection-header__inner {
		width: 100%;
		max-width: none;
		min-height: 76px;
		padding: 10px 5%;
	}

	.reflection-header__panel {
		position: static;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 5%;
		margin-left: auto;
	}

	.reflection-header__mobile-controls,
	.reflection-mobile-app-nav,
	.reflection-mobile-account,
	.reflection-mobile-secondary-actions {
		display: none !important;
	}

	.reflection-nav {
		margin-top: 10px;
	}

	.reflection-menu,
	.reflection-menu--authenticated {
		display: flex !important;
		align-items: center;
		gap: 40px;
		margin: 0;
		padding: 0;
		list-style: none;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 1px;
	}

	.reflection-menu li {
		white-space: nowrap;
	}

	.reflection-menu a,
	.reflection-menu--authenticated a {
		display: inline;
		min-height: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: #000000;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 1px;
		text-decoration: none;
	}

	.reflection-menu a:hover,
	.reflection-menu a:focus,
	.reflection-menu--authenticated a:hover,
	.reflection-menu--authenticated a:focus {
		background: transparent;
		color: var(--reflection-blue);
	}

	.reflection-header__actions {
		display: flex !important;
		align-items: center;
		gap: 20px;
		margin-top: 10px;
	}

	.reflection-signin-button,
	.reflection-header__cta,
	.reflection-header-action {
		min-height: 0;
		padding: 8px 18px;
		border-radius: 6px;
		box-shadow: none;
		font-family: "Raleway", "Raleway Fallback", sans-serif;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
	}

	.reflection-signin-button,
	.reflection-header-action {
		border: 1px solid var(--reflection-blue);
		background: #ffffff;
		color: var(--reflection-blue);
	}

	.reflection-header__cta {
		border: 1px solid var(--reflection-blue);
		background: var(--reflection-blue);
		color: #ffffff;
	}

	.reflection-signin-button:hover,
	.reflection-signin-button:focus,
	.reflection-header-action:hover,
	.reflection-header-action:focus {
		background: var(--reflection-soft);
		box-shadow: none;
		transform: none;
	}

	.reflection-header__cta:hover,
	.reflection-header__cta:focus {
		background: var(--reflection-blue);
		box-shadow: none;
		transform: none;
	}

	.reflection-header__actions > .reflection-header-icon,
	.reflection-header-alert--desktop > summary {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 38px;
		width: 38px;
		min-width: 38px;
		height: 38px;
		min-height: 38px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #ffffff;
		color: #5f5852;
		box-shadow: none;
		font-size: 16px;
		line-height: 1;
		text-decoration: none;
		cursor: pointer;
		list-style: none;
	}

	.reflection-header-alert--desktop > summary::marker,
	.reflection-header-alert--desktop > summary::-webkit-details-marker {
		display: none;
		content: "";
	}

	.reflection-header__actions > .reflection-header-icon {
		margin-left: -10px;
	}

	.reflection-header__actions > .reflection-header-icon:hover,
	.reflection-header__actions > .reflection-header-icon:focus,
	.reflection-header-alert--desktop > summary:hover,
	.reflection-header-alert--desktop > summary:focus {
		background: #f7f3ef;
		color: var(--reflection-blue);
	}

	.reflection-header__actions > .reflection-header-icon > .fa-circle-question,
	.reflection-header-alert--desktop > summary > .fa-bell {
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		color: currentColor;
		font-size: 20px;
		line-height: 1;
	}

	.reflection-header__actions .reflection-header-control__label,
	.reflection-header__actions .reflection-header-control__chevron {
		display: none !important;
	}

	.reflection-account-menu--desktop {
		display: block;
	}

	.reflection-account-menu summary {
		display: flex;
		align-items: center;
		gap: 10px;
		width: auto;
		min-width: 0;
		height: auto;
		padding: 6px 12px;
		overflow: visible;
		border: 1px solid #e4d8cc;
		border-radius: 999px;
		background: #ffffff;
		color: #2e2a26;
		box-shadow: none;
		cursor: pointer;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 14px;
		font-weight: 400;
	}

	.reflection-account-menu summary .reflection-account-menu__avatar,
	.reflection-account-menu__avatar {
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
		border: 0;
		border-radius: 50%;
		object-fit: cover;
	}

	.reflection-account-menu__welcome {
		display: inline-flex;
		color: #2e2a26;
		font-size: 14px;
		font-weight: 400;
		white-space: nowrap;
	}

	.reflection-account-menu summary > i {
		display: inline-flex;
		margin-left: 0;
		color: #7a6453;
		font-size: 12px;
	}

	.reflection-account-menu__dropdown {
		top: 110%;
		right: auto;
		left: 0;
		min-width: 100%;
		width: max-content;
		padding: 0;
		overflow: hidden;
		border: 1px solid rgba(0, 0, 0, 0.2);
		border-radius: 10px;
		background: #ffffff;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.45);
	}

	.reflection-account-menu__dropdown strong {
		display: none;
	}

	.reflection-account-menu__dropdown a {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 12px 14px;
		border-radius: 0;
		color: #5f5852;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 13px;
		font-weight: 400;
		text-decoration: none;
		transition: background 0.2s ease, color 0.2s ease;
	}

	.reflection-account-menu__dropdown a i {
		display: none;
	}

	.reflection-account-menu__dropdown a:hover,
	.reflection-account-menu__dropdown a:focus {
		background: #f7f3ef;
		color: var(--reflection-blue);
	}

	.reflection-header-alert__dropdown {
		top: 110%;
		right: 0;
		width: min(330px, calc(100vw - 30px));
		padding: 0;
		overflow: hidden;
		border: 1px solid rgba(0, 0, 0, 0.16);
		border-radius: 10px;
		background: #ffffff;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	}

	.reflection-header-alert__badge {
		position: absolute;
		top: 0;
		right: 0;
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		border: 0;
		border-radius: 999px;
		background: var(--reflection-blue);
		color: #ffffff;
		font-size: 10px;
		font-weight: 700;
		line-height: 16px;
		text-align: center;
		transform: translate(25%, -20%);
	}

	.reflection-header-alert__dropdown > strong {
		display: block;
		margin: 0;
		padding: 14px 16px 12px;
		border-bottom: 1px solid #eee8e0;
		color: #2e2a26;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 13px;
		font-weight: 600;
	}

	.reflection-header-alert__list {
		display: grid;
		max-height: 320px;
		margin-top: 0;
		overflow-y: auto;
	}

	.reflection-header-alert__list a {
		padding: 12px 16px;
		border-top: 0;
		border-bottom: 1px solid #f1ece6;
		color: #5f5852;
		font-family: "Poppins", "Poppins Fallback", Arial, sans-serif;
		font-size: 13px;
		font-weight: 400;
	}

	.reflection-header-alert__list a:hover,
	.reflection-header-alert__list a:focus {
		background: #f7f3ef;
		color: var(--reflection-blue);
	}
}

/* Dayzy product header and sign-in standard — final cascade. */
.reflection-header {
	position: relative !important;
	inset: auto !important;
	top: auto !important;
}

.reflection-auth-modal__dialog {
	width: min(520px, calc(100% - 32px));
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	padding: 34px;
	border-radius: 26px;
}

.reflection-auth-modal__header {
	margin-bottom: 22px;
	text-align: left;
}

.reflection-auth-modal__header h2 {
	margin: 0 0 8px;
}

.reflection-auth-modal__header p:last-child {
	margin: 0;
}

.reflection-social-login-group {
	margin: 0 0 18px;
}

.reflection-social-login-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 54px;
	padding: 12px 18px;
	border: 1px solid rgba(77, 64, 95, 0.2);
	border-radius: 14px;
	background: #fff;
	color: var(--reflection-navy);
	font-weight: 700;
	text-decoration: none;
}

.reflection-google-login-button__icon,
.reflection-google-login-button__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.reflection-login-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: var(--reflection-muted);
	font-size: 12px;
	text-align: center;
}

.reflection-login-divider::before,
.reflection-login-divider::after {
	content: "";
	height: 1px;
	flex: 1;
	background: var(--reflection-line);
}

@media (min-width: 1041px) {
	.reflection-header__inner {
		width: 100%;
		max-width: none;
		padding: 10px 5%;
	}

	.reflection-header__panel {
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		justify-content: flex-end;
		gap: 5%;
		margin-left: 0;
	}

	.reflection-nav,
	.reflection-header__actions {
		margin-top: 10px;
	}

	.reflection-menu,
	.reflection-menu--authenticated {
		display: flex;
		align-items: center;
		gap: 40px;
	}

	.reflection-menu a,
	.reflection-menu--authenticated a {
		min-height: auto;
		padding: 0;
		border-radius: 0;
		background: transparent;
		font: 400 16px/1.3 "Poppins", Arial, sans-serif;
		letter-spacing: 1px;
	}

	.reflection-header__actions {
		gap: 20px;
	}
}

@media (max-width: 560px) {
	.reflection-auth-modal__dialog {
		width: calc(100% - 24px);
		padding: 26px 20px;
		border-radius: 22px;
	}
}

@media (min-width: 901px) {
	.reflection-dashboard-shell {
		grid-template-columns: 236px minmax(0, 1fr) !important;
	}
}
