/* ============================================================
   SCIP — custom layer on top of Story (HTML5 UP)
   Load AFTER assets/css/main.css
   ============================================================ */

:root {
	--scip-orange: #E85D26;
	--scip-orange-dark: #C74A18;
	--scip-charcoal: #2B3138;
	--scip-ink: #1b1f24;
}

/* ------------------------------------------------------------
   1. Fixed header / navigation
   ------------------------------------------------------------ */

#scip-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	height: 4.25rem;
	background-color: rgba(27, 31, 36, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

#scip-header.is-solid {
	background-color: rgba(27, 31, 36, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

#scip-header .logo {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0.28rem;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-bottom: none;
	white-space: nowrap;
}

#scip-header .logo:hover { color: var(--scip-orange); }

#scip-header .logo .dot {
	display: inline-block;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: var(--scip-orange);
	margin-left: 0.15rem;
	vertical-align: baseline;
}

#scip-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

#scip-nav li { padding: 0; }

#scip-nav a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	border-bottom: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18rem;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s ease;
}

#scip-nav a:hover { color: #fff; }

#scip-nav a.cta {
	background: var(--scip-orange);
	color: #fff;
	padding: 0.6rem 1.1rem;
	border-radius: 0.35rem;
}

#scip-nav a.cta:hover { background: var(--scip-orange-dark); }

/* Language toggle */

.lang-toggle {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 0.3rem;
	overflow: hidden;
}

.lang-toggle button {
	appearance: none;
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12rem;
	padding: 0.35rem 0.6rem;
	cursor: pointer;
	line-height: 1;
	height: auto;
	box-shadow: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle button:hover { color: #fff; }
.lang-toggle button[aria-pressed="true"] {
	background: var(--scip-orange);
	color: #fff;
}

/* Hamburger */

#scip-burger {
	display: none;
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	box-shadow: none;
	height: auto;
}

#scip-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	margin: 4px 0;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

#scip-header.nav-open #scip-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#scip-header.nav-open #scip-burger span:nth-child(2) { opacity: 0; }
#scip-header.nav-open #scip-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media screen and (max-width: 980px) {
	#scip-header { padding: 0 1.25rem; }
	#scip-burger { display: block; }
	#scip-nav {
		position: absolute;
		top: 4.25rem;
		left: 0;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #1b1f24;
		padding: 0.5rem 1.25rem 1.5rem 1.25rem;
		display: none;
	}
	#scip-header.nav-open #scip-nav { display: flex; }
	#scip-nav li { width: 100%; }
	#scip-nav a {
		display: block;
		padding: 0.9rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
	#scip-nav a.cta {
		text-align: center;
		margin-top: 1rem;
		border-bottom: none;
	}
	#scip-nav li.lang-item { margin-top: 1rem; }
}

/* ------------------------------------------------------------
   2. Hero
   ------------------------------------------------------------ */

#hero .content {
	background-color: rgba(27, 31, 36, 0.72) !important;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	color: #fff;
}

#hero .content h1,
#hero .content h2,
#hero .content p { color: #fff; }

#hero .content p.major { color: rgba(255, 255, 255, 0.9); }

.eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.28rem;
	text-transform: uppercase;
	color: var(--scip-orange);
	margin-bottom: 1rem;
}

#hero .image img { object-position: center 40%; }

/* ------------------------------------------------------------
   3. Pricing
   ------------------------------------------------------------ */

.pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 3rem 0 0 0;
	text-align: left;
}

.pricing .plan {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0.6rem;
	padding: 2.25rem 2rem;
	background: #fff;
}

.pricing .plan.featured {
	border-color: var(--scip-orange);
	border-width: 2px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
	position: relative;
}

.pricing .plan.featured::after {
	content: attr(data-badge);
	position: absolute;
	top: -0.85rem;
	left: 2rem;
	background: var(--scip-orange);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 0.25rem;
}

.pricing .plan h3 {
	font-size: 1rem;
	letter-spacing: 0.2rem;
	margin-bottom: 0.5rem;
}

.pricing .price {
	font-family: 'Roboto Slab', serif;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	color: var(--scip-ink);
	margin-bottom: 0.35rem;
}

.pricing .price small {
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
}

.pricing .price-note {
	font-size: 0.8rem;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 1.5rem;
}

.pricing ul.features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex-grow: 1;
}

.pricing ul.features li {
	padding: 0.5rem 0 0.5rem 1.6rem;
	position: relative;
	font-size: 0.92rem;
	line-height: 1.6;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.pricing ul.features li:first-child { border-top: 0; }

.pricing ul.features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.05rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--scip-orange);
}

.pricing .plan .button { width: 100%; }

@media screen and (max-width: 980px) {
	.pricing { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ------------------------------------------------------------
   4. Waitlist
   ------------------------------------------------------------ */

#waitlist { background-color: var(--scip-ink); }
#waitlist h2, #waitlist p { color: #fff; }
#waitlist p { color: rgba(255, 255, 255, 0.75); }

#waitlist input[type="email"],
#waitlist input[type="text"] {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

#waitlist input::placeholder { color: rgba(255, 255, 255, 0.4); }
#waitlist label { color: rgba(255, 255, 255, 0.75); }

.consent {
	font-size: 0.8rem;
	line-height: 1.6;
	text-align: left;
	margin: 1.5rem auto 0 auto;
	max-width: 34rem;
}

.consent a { color: var(--scip-orange); }

/* ------------------------------------------------------------
   5. Misc
   ------------------------------------------------------------ */

.disclaimer {
	font-size: 0.75rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.45);
	max-width: 46rem;
	margin: 2.5rem auto 0 auto;
}

footer .disclaimer { color: rgba(0, 0, 0, 0.45); }

.spec-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 2rem 0;
}

.spec-list li {
	padding: 0.45rem 0 0.45rem 1.5rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1.6;
}

.spec-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.95rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--scip-orange);
}

/* Keep anchor targets clear of the fixed header */
section[id], footer[id] { scroll-margin-top: 5rem; }

[hidden] { display: none !important; }

/* Gallery uses <span class="image"> here (no lightbox) */
.gallery article .image { display: block; }
.gallery article .image img { width: 100%; display: block; }

/* Consent checkbox on the dark waitlist panel */
#waitlist .consent label { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
#waitlist .consent input[type="checkbox"] + label:before { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }

/* Brand-orange primary buttons (Story defaults to black) */
.button.primary,
input[type="submit"].primary {
	background-color: var(--scip-orange) !important;
	color: #fff !important;
	box-shadow: none !important;
}

.button.primary:hover,
input[type="submit"].primary:hover {
	background-color: var(--scip-orange-dark) !important;
}

/* Uniform gallery tiles (source images have mixed aspect ratios) */
.gallery article .image img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	height: auto;
}
