@font-face {
	font-family: 'IoskeleyMono';
	src: url('fonts/IoskeleyMono-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'IoskeleyMono';
	src: url('fonts/IoskeleyMono-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}

:root {
	--plum-dark: #4A2545;
	--plum-mid: #6B3560;
	--plum-light: #7E3F9E;
	--olive: #a4e022;
	--bg: #1C1622;
	--panel: rgb(43, 30, 55);
	--text: #F2EEF2;
	--text-muted: #B8AEB8;
	--border: rgba(255, 255, 255, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.5;
}

h1,
h2,
h3,
.logo-text,
.plum-accent,
.ai-accent,
.logo-you,
.logo-accent,
.credentials,
.footer-contact,
.form-note.success {
	font-family: 'IoskeleyMono', monospace;
}

.hero {
	text-align: center;
	padding: 120px 50px 35px;
	max-width: 900px;
	margin: 0 auto;
}

.facebook-icon svg {
	position: relative;
	right: 0.5px;
	top: 0.5px;
}

.logo-wrap {
	display: flex;
	align-items: center;
	padding: 8px 24px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	z-index: 100;
}

.logo-icon {
	width:  65px;
	height: 65px;
	object-fit: contain;
}

/* Hard Truths */
.truths-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 480px) {
	.truths-list {
		grid-template-columns: 1fr;
	}
}

.truth-item {
	display: flex;
	gap: 5px;
	align-items: flex-start;
}

.truth-number {
	font-size: 16px;
	font-weight: 700;
	color: var(--plum-light);
	min-width: 10px;
	margin-top: 2px;
}

.truth-item p {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
}

h1 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	white-space: nowrap;
}

h1 .accent {
	color: var(--olive);
}

.subtitle {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.01em;
	max-width: 310px;
	margin: 0 auto 32px;
}

.plum-accent {
	color: var(--plum-light);
}

.logo-block {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.logo-tagline {
	font-size: 9px;
	font-weight: 800px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-top: 2px;
	margin-left: 7px;
}

.logo-text {
	font-family: 'IoskeleyMono', monospace;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.logo-you {
	color: #7E3F9E;		/* numerology = 8 */
}

.logo-accent {
	color: var(--olive);
	font-weight: 800;
	font-size: 26px;
}

.ai-accent {
	color: var(--olive);
	font-size: 33px;
	font-weight: 800;
} 

@media (max-width: 480px) {
	.ai-accent {
		font-size: 26px;
	}
}

.waitlist-form {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	max-width: 420px;
	margin: 0 auto;
}

.waitlist-form input {
	box-shadow: 0 0 10px rgb(76, 49, 76);
	flex: 1;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 13px 16px;
	color: var(--text);
	font-size: 14px;
}

.waitlist-form input::placeholder {
	color: var(--text-muted);
}

.waitlist-form input:focus {
	outline: none;
	border-color: var(--plum-light);
}

.waitlist-form button {
	background: var(--plum-light);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 13px 22px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.tiktok-icon svg {
	position: relative;
	top: 2px;
}

@media (hover: hover) and (pointer: fine) {
	.waitlist-form button:hover {
		background: rgba(164, 224, 34, 0.55);
	}
}

.waitlist-form button:active {
	transform: scale(0.98);
}

.input-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.form-note {
	font-size: 12px;
	color: var(--text-muted);
	text-align: center;
}

.form-note.success {
	color: var(--olive);
}

.divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 0;
}

.section {
	max-width: 825px;
	margin: 0 auto;
	padding: 32px 24px;
}

.eyebrow {
	display: block;
	font-size: 20px;
	font-weight: 1000;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--plum-light);
	margin-bottom: 6px;
}

.problem-text {
	font-size: 17px;
	color: var(--text);
	line-height: 1.7;
}

.solution-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 768px) {
	.solution-list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.solution-list {
		grid-template-columns: 1fr;
	}
}

.solution-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.icon-box {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 8px;
	background: rgb(43, 30, 55);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.icon-box svg {
	display: block;
	
}

.olive-accent {
	color: var(--olive);
	font-size: 17px;
}

.solution-item h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}

.solution-item p {
	font-size: 14px;
	color: var(--text-muted);
}

.doctor-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.doctor-card:only-child {
	grid-column: 1 / -1;
	max-width: 400px;
	margin: 0 auto;
}

.doctor-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 24px 16px;
	text-align: center;
}

.credentials {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--plum-light);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--plum-light);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.avatar.placeholder-avatar {
	background: #3a3a3a;
	color: var(--text-muted);
}

.doctor-card h4 {
	font-size: 15px;
	margin-bottom: 4px;
}

.doctor-card p {
	font-size: 13px;
	color: var(--text-muted);
}

.footer {
	text-align: center;
	padding: 48px 24px 56px;
}

.social-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 18px 0 22px;
}

.social-icon {
	width: 38px;
	height: 38px;
	background: rgb(43, 30, 55);
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
	border-color: var(--plum-light);
	color: var(--text);
}

.footer-text {
	font-size: 13px;
	color: var(--text-muted);
}

@media (max-width: 480px) {
	.waitlist-form {
		flex-direction: column;
		align-items: stretch;
	}

	.input-wrap {
		width: 100%;
	}

	.waitlist-form button {
		width: 100%;
	}

	.subtitle {
		font-size: 20px;
		max-width: 260px;
	}

	.hero {
		padding: 120px 50px 35px;
	}
}

.footer-text a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-text a:hover {
	color: var(--plum-light);
}

.footer-contact {
	margin-top: 50px;
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--olive);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact:hover {
	color: var(--olive);
}

.section,
.doctor-cards,
.truths-list {
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.fade-init,
.doctor-cards.fade-init,
.truths-list.fade-init {
	opacity: 0;
	transform: translateY(20px);
}

.section.visible,
.doctor-cards.visible,
.truths-list.visible {
	opacity: 1;
	transform: translateY(0);
}

.waitlist-form input[type="date"] {
	color-scheme: dark;
}

.date-field-wrap {
	position: relative;
}

.custom-calendar {
	position: absolute;
	z-index: 50;
	width: 300px;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.5);
	padding: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
	pointer-events: none;
}

.custom-calendar.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.cal-header {
	display: grid;
	grid-template-columns: 1fr auto; 
	align-items: center;
	margin-bottom: 12px;
}

.cal-title-btn {
	background: none;
	border: none;
	color: var(--text);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cal-chevron {
	color: var(--olive);
	display: inline-flex;
	transition: transform 0.15s ease;
}

.cal-chevron.open {
	transform: rotate(90deg);
}

.cal-nav {
	display: flex;
	gap: 6px;
	margin-left: auto;
}

.cal-nav button {
	background: rgba(255,255,255,0.06);
	border: none;
	border-radius: 10px;
	width: 34px;
	height: 34px;
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cal-nav button:hover { background: rgba(255,255,255,0.12); }

.cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	text-align: center;
}

.cal-weekdays span {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	padding-bottom: 6px;
}

.cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	height: 220px; /* fixed total height — never changes between months */
	gap: 2px 2;
}

.cal-days button,
.cal-days span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
}

.cal-days button {
	background: none;
	border: none;
	color: var(--text);
	font-size: 16px;
	border-radius: 50%;
	cursor: pointer;
	width: 32px;
	height: 32px;
	margin: auto; /* centers the fixed-size button inside its grid cell */
	transition: transform 0.15s ease, background 0.15s ease;
}

.cal-days button:hover {
	background: rgba(143, 199, 30, 0.5);
	transform: scale(1.15);
}

.cal-days button.selected:hover {
	transform: scale(1.1);
}

.cal-days button.selected {
	background: #4b5f25;
	color: var(--olive);
	font-weight: 700;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin: auto;
	transition: transform 0.15s ease, background 0.15s ease;
}

.cal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
}

.cal-reset {
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.cal-reset:hover {
	background: rgba(255,255,255,0.12);
	color: var(--text);
}

.cal-confirm {
	background: #7fb326;
	color: #eafccb;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.15s ease;
}

.cal-confirm:active {
	transform: scale(1.15);
}

.cal-confirm[disabled] {
	background: rgba(255,255,255,0.1);
	color: var(--text-muted);
	cursor: not-allowed;
}

.cal-picker {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 8;
	height: 244px; /* matches .cal-days so both views are identical total height */
}

.wheel-col {
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	scrollbar-width: none;
	width: 120px;
}

.wheel-col::-webkit-scrollbar { display: none; }

.wheel-item {
	height: 34px;
	line-height: 34px;
	text-align: center;
	scroll-snap-align: center;
	font-size: 17px;
	color: var(--text-muted);
	cursor: pointer;
}

.wheel-item.active {
	color: var(--olive);
	font-weight: 800;
}

.wheel-highlight {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 34px;
	transform: translateY(-50%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	pointer-events: none;
}

#dobInput {
	text-align: left;
}

#dobInput:not(:placeholder-shown) {
	text-align: center;
}

@media (min-width: 481px) {
	.subtitle {
		max-width: 460px;
		white-space: nowrap;
	}
}

.password-field-wrap {
	position: relative;
}

.password-field-wrap input {
	width: 100%;
	padding-right: 44px;
}

.password-field-wrap button.password-toggle {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(calc(-50% - 5px));
	background: none;
	border: none;
	padding: 0;
	width: auto;
	border-radius: 0;
	cursor: pointer;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.password-field-wrap button.password-toggle:hover {
	background: none;
	color: var(--text);
}

.password-field-wrap button.password-toggle:active {
	transform: translateY(calc(-50% - 3px)) scale(0.95);
}

.input-wrap input.error {
  border-color: #ff5a5a;
}



.password-wrap {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 26px;
}

.pw-strength-container {
    position: absolute;
    top: calc(100% - 18px);
    left: 0;
    right: 0;
}

.pw-strength {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2px;
    visibility: hidden;
}

.pw-strength.visible {
    visibility: visible;
}

#pwStrengthLabel {
    visibility: hidden;
}

#pwStrengthLabel.visible {
    visibility: visible;
}

.pw-strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.2s ease, background 0.2s ease;
    background: #ff5a5a;
}

.pw-strength-bar.weak   { background: #ff5a5a; }
.pw-strength-bar.fair   { background: #e0a022; }
.pw-strength-bar.good   { background: #d4e022; }
.pw-strength-bar.strong { background: var(--olive); }

.logo-wrap {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}