/*
 * FCT Core Styles
 * Seamless cinematic version.
 */

:root {
	--fct-shared-content-width: 1180px;

	--nsff-bg: #05080d;
	--nsff-bg-soft: #080d14;
	--nsff-surface: #0d1522;
	--nsff-surface-2: #111d2d;
	--nsff-surface-3: #162538;
	--nsff-text: #f8fafc;
	--nsff-text-soft: #dbeafe;
	--nsff-muted: #a9b7c9;
	--nsff-muted-2: #73839a;
	--nsff-ice: #d7ecfb;
	--nsff-ice-2: #a6c5e7;
	--nsff-blue: #60a5fa;
	--nsff-border: rgba(166, 197, 231, .18);
	--nsff-border-soft: rgba(166, 197, 231, .11);
	--nsff-border-strong: rgba(166, 197, 231, .32);
	--nsff-pending: #f59e0b;
	--nsff-done: #10b981;
	--nsff-expired: #ef4444;
	--nsff-radius: 16px;
	--nsff-radius-sm: 10px;
	--nsff-shadow: 0 28px 70px rgba(0, 0, 0, .42);
	--nsff-shadow-soft: 0 14px 34px rgba(0, 0, 0, .28);
	--nsff-hero-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=2000&q=80");

	--fct-black: var(--nsff-bg);
	--fct-black-2: var(--nsff-bg-soft);
	--fct-black-3: var(--nsff-surface);
	--fct-cream: var(--nsff-text-soft);
	--fct-white: var(--nsff-text);
	--fct-muted: var(--nsff-muted);
	--fct-muted-2: var(--nsff-muted-2);
	--fct-gold: var(--nsff-ice-2);
	--fct-gold-2: var(--nsff-ice);
	--fct-gold-dark: #5d7895;
	--fct-border: var(--nsff-border);
	--fct-border-soft: var(--nsff-border-soft);
	--fct-surface: var(--nsff-surface);
	--fct-surface-2: var(--nsff-surface-2);
	--fct-radius: var(--nsff-radius);
	--fct-radius-sm: var(--nsff-radius-sm);
	--fct-shadow: var(--nsff-shadow);
	--fct-shadow-soft: var(--nsff-shadow-soft);
}

.fct-wrapper,
.fct-panel,
.fct-card,
.fct-view-header,
.fct-directory,
.fct-directory-profile-form {
	box-sizing: border-box;
}

.fct-wrapper *,
.fct-panel *,
.fct-card *,
.fct-view-header *,
.fct-directory *,
.fct-directory-profile-form * {
	box-sizing: border-box;
}

.fct-seamless-cinematic {
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--fct-white);
	background: var(--fct-black);
}

.fct-seamless-cinematic a {
	color: inherit;
}

.fct-panel,
.fct-card {
	background: var(--fct-surface);
	border: 1px solid var(--fct-border);
	border-radius: var(--fct-radius);
	box-shadow: var(--fct-shadow-soft);
}

.fct-panel {
	padding: clamp(20px, 3vw, 34px);
	margin: 0 0 24px;
}

.fct-panel h3 {
	margin: 0 0 22px;
	color: var(--fct-cream);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.025em;
}

.fct-card {
	overflow: hidden;
}

.fct-muted {
	color: var(--fct-muted);
	font-size: 13px;
	line-height: 1.55;
}

.fct-notice {
	padding: 16px 18px;
	border-radius: 10px;
	margin: 0 0 24px;
	line-height: 1.65;
	font-size: 14px;
}

.fct-notice-muted {
	background: #0f0f10;
	border: 1px solid var(--fct-border);
	color: #c7c7c7;
}

.fct-input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 8px;
	background: #0b0b0c;
	color: var(--fct-white);
	font: inherit;
	outline: none;
	transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

textarea.fct-input {
	min-height: 140px;
	resize: vertical;
}

.fct-input::placeholder {
	color: #777;
}

.fct-input:hover {
	border-color: rgba(166, 197, 231, .45);
}

.fct-input:focus {
	border-color: var(--fct-gold);
	background: #080808;
	box-shadow: 0 0 0 3px rgba(166, 197, 231, .16);
}

.fct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 3px;
	border: 1px solid var(--fct-gold);
	background: var(--fct-gold);
	color: var(--nsff-bg);
	font-size: 13px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
	box-shadow: 0 12px 24px rgba(166, 197, 231, .15);
}

.fct-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(166, 197, 231, .22);
	background: var(--fct-gold-2);
	color: var(--nsff-bg);
}

.fct-btn:disabled {
	opacity: .65;
	cursor: wait;
	transform: none;
	box-shadow: none;
}

.fct-btn-secondary {
	background: transparent;
	color: var(--fct-cream);
	border-color: rgba(255,255,255,.24);
	box-shadow: none;
}

.fct-btn-secondary:hover {
	color: var(--fct-gold-2);
	background: rgba(255,255,255,.04);
	border-color: var(--fct-gold);
}

@media (max-width: 700px) {
	.fct-panel {
		border-radius: 14px;
		padding: 18px;
	}

	.fct-btn {
		width: 100%;
	}
}
