:root {
 --navy-950:#061125;
 --navy-900:#081a33;
 --navy-850:#0a1c38;
 --navy-800:#0b213f;
 --bg:#ffffff;
 --muted:#f4f6fb;
 --muted-2:#eef2f7;
 --text:#ffffff;
 --text-muted:#6b7280;
 --orange:#f28c28;
 --orange-2:#ff9a3c;
 --card:#ffffff;
 --border:rgba(15, 23, 42, .08);
 --shadow:0 10px 30px rgba(2, 10, 25, .10);
 --shadow-soft:0 8px 24px rgba(2, 10, 25, .08);
 --radius:16px;
 --radius-sm:12px;
 --container:1180px;
}
* {
	box-sizing:border-box;
}
html {
	scroll-behavior:smooth;
}
body {
	margin:0;
	font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color:var(--text);
	background:var(--bg);
}
img {
	max-width:100%;
	display:block;
}
a {
	color:inherit;
	text-decoration:none;
}
.container {
	width:min(var(--container), calc(100% - 40px));
	margin-inline:auto;
}
/* ---------- NAV ---------- */
:root {
 --nav-bg: rgba(8, 20, 40, 0.96);
 --text: #ffffff;
 --muted: rgba(233, 238, 247, 0.75);
 --cta: #e37a2a;
 --cta-hover: #d56f22;
 --border: rgba(255, 255, 255, 0.10);
}
/* prevent background scroll when drawer open */
.no-scroll {
	overflow: hidden;
}
html.no-scroll, html.no-scroll body {
	height: 100%;
	overflow: hidden;
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(8, 20, 40, .35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 10px;
}
.brand {
	display:flex;
	align-items:center;
	gap:10px;
	min-width:220px;
}
.brand-mark {
	width:100px;
	height:38px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	line-height:1;
	font-weight:700;
}
.brand-mark .mark-top {
	font-size:12px;
	letter-spacing:.4px;
	color:#fff;
	opacity:.9;
}
.brand-mark .mark-bot {
	font-size:11px;
	letter-spacing:.2px;
	color:var(--orange);
	margin-top:1px;
}
.brand-text {
	display:flex;
	flex-direction:column;
	line-height:1.05;
}
.brand-name {
	font-weight:700;
	color:#fff;
	letter-spacing:.2px;
}
.brand-sub {
	font-size:11px;
	font-weight:700;
	letter-spacing:1.6px;
	text-transform:uppercase;
	color:rgba(255, 255, 255, .68);
	margin-top:3px;
}
/* Hamburger */
.nav-toggle {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	opacity: .95;
}
/* Desktop nav (optional) */
.nav-desktop {
	display: none;
	gap: 18px;
	align-items: center;
}
.nav-desktop a {
	color: var(--text);
	text-decoration: none;
	opacity: .9;
}
.btn-join {
	background: var(--cta);
	color: #111;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
}
/* Backdrop */
.nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1100;
}
/* Drawer */
.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100dvh;
	width: min(360px, 92vw);
	background: var(--nav-bg);
	z-index: 1200;
	transform: translateX(110%);
 transition: transform .25s ease;
	border-left: 1px solid var(--border);
	box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
}
.nav-drawer.is-open {
	transform: translateX(0);
}
.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 14px 10px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-logo {
	height: 34px;
	width: auto;
	display: block;
}
.drawer-close {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	opacity: .95;
}
.drawer-links {
	display: flex;
	flex-direction: column;
	padding: 14px;
	gap: 10px;
}
.drawer-link {
	display: block;
	padding: 10px 4px;
	color: var(--text);
	text-decoration: none;
	font-size: 18px;
	opacity: .95;
}
.drawer-link:hover {
	opacity: 1;
}
.drawer-cta {
	margin-top: 12px;
	display: block;
	text-align: center;
	padding: 14px 16px;
	border-radius: 10px;
	background: var(--cta);
	color: #111;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: .2px;
}
.drawer-cta:hover {
	background: var(--cta-hover);
}

/* Show desktop nav on larger screens */
@media (min-width: 992px) {
 .nav-toggle {
display: none;
}
 .nav-desktop {
display: flex;
}
 .nav-backdrop, .nav-drawer {
display: none !important;
}
}
/* ---------- BUTTONS ---------- */
.btn {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:10px 20px;
	border-radius:5px;
	font-size:14px;
	font-weight:600;
	border:1px solid transparent;
	cursor:pointer;
 transition:transform .12s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
	user-select:none;
}
.btn:active {
	transform:translateY(1px);
}
.btn-primary {
	background:var(--orange);
	color:#fff;
	box-shadow:0 8px 18px rgba(242, 140, 40, .25);
}
.btn-primary:hover {
	background:var(--orange-2);
}
.btn-ghost {
	background:rgba(255, 255, 255, .06);
	border-color:rgba(255, 255, 255, .18);
	color:#fff;
}
.btn-ghost:hover {
	background:rgba(255, 255, 255, .10);
}
/* ---------- HERO ---------- */
.hero {
	position:relative;
	min-height:100vh;
	padding-top:86px; /* space for fixed nav */
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	overflow:hidden;
	color:#fff;
}
.hero-bg {
	position:absolute;
	inset:0;
	background:
 radial-gradient(1200px 650px at 20% 15%, rgba(255, 255, 255, .10), transparent 55%), linear-gradient(180deg, rgba(5, 12, 24, .20), rgba(5, 12, 24, .72)), url("../images/hero.jpg");
	background-size:cover;
	background-position:center;
	transform:scale(1.02);
}
.hero-overlay {
	position:absolute;
	inset:0;
	background:
 linear-gradient(180deg, rgba(6, 16, 34, .18) 0%, rgba(6, 16, 34, .55) 55%, rgba(6, 16, 34, .92) 100%);
}
.hero-inner {
	position:relative;
	z-index:2;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	padding:0 0 160px;
}
.hero-copy {
	max-width:720px;
}
.hero-title {
	font-family:"Playfair Display", serif;
	font-weight:700;
	font-size:64px;
	line-height:1.05;
	letter-spacing:-.5px;
	margin:0 0 18px;
}
.accent {
	color:var(--orange);
}
.accent-soft {
	color:rgba(242, 140, 40, .95);
	font-weight:600;
}
.hero-text {
	max-width:620px;
	font-size:14px;
	line-height:1.75;
	color:rgba(255, 255, 255, .78);
	margin:0 0 26px;
}
.hero-actions {
	display:flex;
	gap:12px;
}
/* ---------- IIT STRIP ---------- */
.iit-strip {
	position:relative;
	z-index:3;
	padding:14px 0 18px;
}
.iit-strip::before {
 content:"";
 position:absolute;
 left:0;
right:0;
 top:0;
 height:1px;
 background:rgba(255, 255, 255, .08);
}
/*  make strip a masked marquee container (no manual scroll) */
.iit-strip-inner {
	position: relative;
	overflow: hidden;
	padding: 10px 6px;
}

/* subtle fade on edges */
.iit-strip-inner::after {
 content:"";
 position:absolute;
 inset:0;
 pointer-events:none;
 background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 1) 100%);
 opacity:.25; /* adjust if your background is not black */
}
/* marquee wrapper */
.iit-marquee {
	width: 100%;
}
/* the moving track */
.iit-track {
	display:flex;
	align-items:center;
	gap:18px;
	width: max-content;
	animation: iitScroll 35s linear infinite;
	will-change: transform;
}
/* pause on hover (nice UX) */
.iit-strip:hover .iit-track {
	animation-play-state: paused;
}

/*  seamless loop: move half width (because we duplicated items) */
@keyframes iitScroll {
 from {
transform: translateX(0);
}
to {
	transform: translateX(-50%);
}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
 .iit-track {
animation: none;
}
}
/* your chip styles (same as yours, kept) */
.iit-chip {
	display:flex;
	align-items:center;
	gap:10px;
	white-space:nowrap;
	padding:8px 12px;
	border-radius:999px;
	background:rgba(10, 26, 51, .45);
	border:1px solid rgba(255, 255, 255, .10);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.iit-name {
	font-size:12px;
	color:rgba(255, 255, 255, .78);
	font-weight:600;
}
/*  logo image inside chip */
.iit-logo {
	width:26px;
	height:26px;
	border-radius:999px;
	object-fit: cover;
	background: rgba(255, 255, 255, .08);
	border:1px solid rgba(255, 255, 255, .12);
}
/* ---------- SECTIONS ---------- */
.section {
	padding:92px 0;
}
.section-light {
	background:#fff;
}
.section-muted {
	background:var(--muted-2);
}
.section-head {
	text-align:center;
	margin-bottom:42px;
}
.eyebrow {
	display:inline-block;
	font-size:10px;
	font-weight:800;
	letter-spacing:2px;
	color:var(--orange);
	text-transform:uppercase;
	margin-bottom:10px;
}
.section-title {
	font-family:"Playfair Display", serif;
	font-size:44px;
	line-height:1.15;
	margin:0;
	color:#0b1220;
}
/* ---------- GRID & CARDS ---------- */
.grid {
	display:grid;
	gap:22px;
}
.grid-2 {
	grid-template-columns:repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns:repeat(3, minmax(0, 1fr));
}
.card {
	background:var(--card);
	border:1px solid var(--border);
	border-radius:var(--radius);
	box-shadow:var(--shadow-soft);
	padding:26px;
}
.card-lg {
	padding:28px;
	min-height:220px;
}
.card-icon {
	width:38px;
	height:38px;
	border-radius:12px;
	display:grid;
	place-items:center;
	background:rgba(242, 140, 40, .12);
	border:1px solid rgba(242, 140, 40, .18);
	color:var(--orange);
	margin-bottom:14px;
}
.card-title {
	font-size:20px;
	font-weight:700;
	margin:0 0 10px;
	color:#0b1220;
}
.card-text {
	margin:0;
	font-size:17px;
	line-height:1.7;
	color:var(--text-muted);
}
.subhead {
	font-size:22px;
	font-weight:700;
	color:#000;
	margin:10px 0 14px;
	text-align:left;
}
.subhead-gap {
	margin-top:28px;
}
.row {
	display:flex;
	gap:14px;
	align-items:flex-start;
}
.mini-icon {
	width:38px;
	height:38px;
	border-radius:12px;
	display:grid;
	place-items:center;
	background:rgba(242, 140, 40, .10);
	border:1px solid rgba(242, 140, 40, .16);
	color:var(--orange);
	flex:0 0 auto;
}
.row-main {
	flex:1;
}
.row-title {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:18px;
	margin-bottom:8px;
}
.card-title-sm {
	font-size:18px;
	font-weight:700;
	margin:0;
	color:#0b1220;
}
.card-text-sm {
	margin:0;
	font-size:16px;
	line-height:1.65;
	color:var(--text-muted);
}
/* center the pill inside card */
.pill.center {
	display: block;      /* or inline-block */
	width: fit-content;  /* better support than max-content */
	margin: 12px auto 0; /* centers horizontally */
	text-align: center;
}
.pill {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:6px 10px;
	border-radius:999px;
	font-size:14px;
	font-weight:700;
	border:1px solid transparent;
	width:max-content;
}
.pill-warm {
	background:rgba(242, 140, 40, .12);
	border-color:rgba(242, 140, 40, .20);
	color:var(--orange);
}
.pill-cool {
	background:rgba(99, 102, 241, .10);
	border-color:rgba(99, 102, 241, .18);
	color:#4f46e5;
	margin: 0 auto;
}
.pill-neutral {
	background:rgba(15, 23, 42, .06);
	border-color:rgba(15, 23, 42, .10);
	color:#0f172a;
}
.center {
	text-align:center;
}
.center-icon {
	width:44px;
	height:44px;
	border-radius:14px;
	display:grid;
	place-items:center;
	margin:0 auto 12px;
	background:rgba(242, 140, 40, .12);
	border:1px solid rgba(242, 140, 40, .18);
	color:var(--orange);
	font-size:16px;
}
/* ---------- PHOTOS ---------- */
.photo-grid {
	display:grid;
	grid-template-columns:repeat(4, minmax(0, 1fr));
	gap:20px;
	margin-top:34px;
}
.photo-tile {
	margin:0;
	border-radius:14px;
	overflow:hidden;
	box-shadow:var(--shadow);
	background:#ddd;
}
.photo-tile img {
	width:100%;
	height:250px;
	object-fit:cover;
}
/* ---------- FOOTER ---------- */
.footer {
	background:linear-gradient(180deg, var(--navy-900), var(--navy-950));
	color:#fff;
	padding:74px 0 22px;
}
.footer-cta {
	text-align:center;
	max-width:820px;
}
.footer-icon {
	width:44px;
	height:44px;
	border-radius:14px;
	display:grid;
	place-items:center;
	margin:0 auto 14px;
	background:rgba(255, 255, 255, .06);
	border:1px solid rgba(255, 255, 255, .10);
	color:rgba(255, 255, 255, .90);
}
.footer-title {
	font-family:"Playfair Display", serif;
	font-size:34px;
	margin:0 0 10px;
}
.footer-text {
	margin:0 auto 18px;
	max-width:620px;
	color:rgba(255, 255, 255, .74);
	font-size:16px;
	line-height:1.75;
}
.footer-bottom {
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:12px;
	margin-top:44px;
	padding-top:18px;
	border-top:1px solid rgba(255, 255, 255, .10);
	font-size:14px;
	color:rgba(255, 255, 255, .68);
}
.footer-right {
	white-space:nowrap;
}
.heart {
	color:var(--orange);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
 .hero-title {
font-size:52px;
}
 .grid-3 {
grid-template-columns:repeat(2, minmax(0, 1fr));
}
 .photo-grid {
grid-template-columns:repeat(2, minmax(0, 1fr));
}
}
 @media (max-width: 760px) {
 .nav-toggle {
display:inline-flex;
align-items:center;
justify-content:center;
}
 .nav {
 position:fixed;
 top:72px;
 right:20px;
 left:20px;
 background:rgba(8, 20, 40, .92);
 border:1px solid rgba(255, 255, 255, .10);
 border-radius:16px;
 padding:12px;
 display:none;
 flex-direction:column;
 align-items:stretch;
 gap:6px;
 box-shadow:0 18px 40px rgba(0, 0, 0, .35);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
}
 .nav.open {
display:flex;
}
 .nav-link {
padding:12px 12px;
border-radius:12px;
}
 .nav-link:hover {
background:rgba(255, 255, 255, .06);
}
 .nav-cta {
width:100%;
justify-content:center;
margin:6px 0 0;
}
 .hero-inner {
padding:72px 0 72px;
}
 .hero-title {
font-size:42px;
}
 .hero-text {
font-size:13px;
}
 .grid-2 {
grid-template-columns:1fr;
}
 .grid-3 {
grid-template-columns:1fr;
}
 .photo-grid {
grid-template-columns:1fr;
}
 .footer-bottom {
flex-direction:column;
text-align:center;
}
}
