/* MyOtherDMs landing — dark / gold premium */

:root {
	--bg: #080808;
	--bg-elevated: #111111;
	--bg-card: #141414;
	--border: rgba(201, 169, 98, 0.18);
	--gold: #c9a962;
	--gold-light: #f0d78c;
	--gold-dark: #8b6914;
	--text: #f5f2eb;
	--text-muted: #9a958a;
	--text-dim: #6b665e;
	--radius: 14px;
	--radius-sm: 8px;
	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--max: 1120px;
	--header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	background-image:
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.08), transparent),
		radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 169, 98, 0.04), transparent);
	min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border);
	background: rgba(8, 8, 8, 0.85);
	backdrop-filter: blur(12px);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.brand img.brand-logo {
	width: auto;
	height: 36px;
	max-width: 200px;
	object-fit: contain;
}

.brand.brand--text-only span {
	display: none;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.35rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
	text-decoration: none;
	white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
	background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
	color: #1a1408;
	border-color: var(--gold);
	box-shadow: 0 4px 24px rgba(201, 169, 98, 0.25);
}

.btn-primary:hover {
	color: #1a1408;
	box-shadow: 0 6px 32px rgba(201, 169, 98, 0.35);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}

.btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}

/* Hero */
.hero {
	padding: 4rem 0 5rem;
	text-align: center;
}

.hero-logo {
	width: auto;
	max-width: min(420px, 88vw);
	height: auto;
	margin: 0 auto 1.75rem;
	display: block;
	filter: drop-shadow(0 8px 32px rgba(201, 169, 98, 0.25));
}

.hero-eyebrow {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 8vw, 4.5rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.hero-tagline {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3.5vw, 1.85rem);
	font-weight: 400;
	font-style: italic;
	color: var(--text-muted);
	margin: 0 0 1.75rem;
}

.hero-lead {
	max-width: 32rem;
	margin: 0 auto 1.25rem;
	font-size: 1.05rem;
	color: var(--text-muted);
}

.hero-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1rem;
	margin: 0 auto 2.25rem;
	max-width: 36rem;
}

.hero-pills span {
	font-size: 0.85rem;
	color: var(--text-dim);
}

.hero-pills span::before {
	content: "·";
	margin-right: 1rem;
	color: var(--gold-dark);
}

.hero-pills span:first-child::before { display: none; }

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

/* Sections */
.section {
	padding: 4.5rem 0;
	border-top: 1px solid var(--border);
}

.section-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 0.75rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.section-intro {
	max-width: 36rem;
	color: var(--text-muted);
	margin: 0 0 2.5rem;
	font-size: 1.05rem;
}

/* Feature grid */
.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
	.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem 1.35rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
	border-color: rgba(201, 169, 98, 0.35);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.feature-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(201, 169, 98, 0.1);
	color: var(--gold);
	font-size: 1.15rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
}

.feature-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.55;
}

/* Highlight band */
.highlight-band {
	background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.02));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
}

.highlight-band .section-title { margin-bottom: 0.75rem; }

.highlight-band p {
	max-width: 28rem;
	margin: 0 auto 1.5rem;
	color: var(--text-muted);
}

.fee-note {
	font-size: 0.8rem;
	color: var(--text-dim);
	margin-top: 1rem;
}

/* Creator cards placeholder */
.creator-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1rem;
}

.creator-card {
	aspect-ratio: 3 / 4;
	border-radius: var(--radius);
	border: 1px dashed var(--border);
	background: var(--bg-elevated);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: var(--text-dim);
	font-size: 0.85rem;
}

.creator-card .avatar-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(201, 169, 98, 0.12);
	border: 1px solid var(--border);
}

/* CTA block */
.cta-block {
	text-align: center;
	padding: 5rem 0;
	background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.04));
}

.cta-block .section-title { max-width: 20ch; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 2.5rem 0 2rem;
	background: var(--bg-elevated);
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand p {
	margin: 0.5rem 0 0;
	font-size: 0.88rem;
	color: var(--text-dim);
	max-width: 22rem;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.75rem;
}

.footer-links a {
	font-size: 0.88rem;
	color: var(--text-muted);
}

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

.footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	font-size: 0.8rem;
	color: var(--text-dim);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
}

.footer-bottom .age-notice {
	color: var(--text-muted);
}
