:root {
	--ink: #12171b;
	--ink-soft: #1c242a;
	--paper: #f3f5f6;
	--paper-warm: #eef1f2;
	--text: #57636c;
	--accent: #168ed0;
	--accent-bright: #4bb4ea;
	--line: rgba(18, 23, 27, 0.13);
}

html { scroll-behavior: smooth; }
body { background: var(--ink); }
a { border-bottom-color: rgba(22, 142, 208, 0.35); }

/* Brand/header */
#header { background: rgba(18, 23, 27, 0.96); }
#header.alt { background: transparent; }
#header > .logo.brand-lockup a {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	letter-spacing: 0.15em;
}
#header > .logo.brand-lockup img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}
#header > .logo.brand-lockup span { color: #fff; }
#header > a[href="#menu"] { border-radius: 999px; }

#menu { background-color: rgba(7, 11, 14, 0.92); }
#menu .inner { background: var(--ink-soft); }
#menu .links li a:hover { color: #fff; background: var(--accent); }

/* Hero */
#banner {
	background-image: linear-gradient(110deg, rgba(8, 12, 15, 0.91), rgba(8, 12, 15, 0.72)), url("../../images/hero-buildings.jpg");
	background-attachment: fixed;
	background-position: center 44%;
	padding: 14em 3em 12em;
	text-align: left;
}
#banner:after { background-color: var(--ink); }
#banner > .inner { max-width: 75em; margin: 0 auto; }
#banner .hero-mark { width: 5.25rem; height: 5.25rem; object-fit: contain; margin-bottom: 1.5rem; }
#banner .eyebrow, .eyebrow {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent-bright);
	margin-bottom: 1rem;
}
#banner h1 {
	font-size: clamp(3.1rem, 7vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: 0.015em;
	max-width: 10ch;
	margin-bottom: 0.45em;
}
#banner .hero-copy {
	font-size: 1.35rem;
	line-height: 1.65;
	max-width: 43rem;
	color: rgba(255,255,255,0.82);
	margin-bottom: 2.2rem;
}
#banner .actions.special { justify-content: flex-start; }
#banner .button.primary { background: var(--accent); color: #fff !important; box-shadow: none; }
#banner .button.primary:hover { background: var(--accent-bright); }

/* Section colors */
.wrapper.style1 { background-color: var(--ink-soft); }
.wrapper.style1:before, .wrapper.style1:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%231c242a%3B' /%3E%3C/svg%3E");
}
.wrapper.style2 { background-color: var(--paper); color: var(--text); }
.wrapper.style2 h1, .wrapper.style2 h2, .wrapper.style2 h3, .wrapper.style2 h4 { color: var(--ink); }
.wrapper.style2 header.major p, .wrapper.style2 a { color: var(--accent); }
.wrapper.style2:before, .wrapper.style2:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%23f3f5f6%3B' /%3E%3C/svg%3E");
}

.intro-heading { max-width: 56rem; margin-bottom: 3.25rem; }
.intro-heading h2, .centered-heading h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.08; }
.centered-heading { text-align: center; max-width: 50rem; margin-left: auto; margin-right: auto; }
.centered-heading p { color: var(--accent-bright) !important; }

.holding-story article { padding: 3.5em 3em; }
.holding-story article:nth-child(even) { transform: translateY(1.2rem); }
.holding-story article p { font-size: 1.02rem; }
.holding-story header.major p { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
.holding-story header.major h3 { font-size: 1.7rem; }

.approach-grid { margin-top: 3rem; }
.approach-grid li { border-color: rgba(255,255,255,.1); }
.approach-grid .icon { color: var(--accent-bright); }
.approach-grid h4 { letter-spacing: .08em; text-transform: uppercase; }

/* Ventures */
.ventures-wrapper { background: #fff; color: var(--text); padding-top: 7em; }
.ventures-wrapper:before, .ventures-wrapper:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%23ffffff%3B' /%3E%3C/svg%3E");
}
.ventures-wrapper h1, .ventures-wrapper h2, .ventures-wrapper h3 { color: var(--ink); }
.ventures-wrapper header.major p { color: var(--accent); }
.venture-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.35rem;
}
.venture-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 0.55rem;
	padding: 2.6rem;
	min-height: 22rem;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.venture-card:hover { transform: translateY(-4px); border-color: rgba(22,142,208,.34); box-shadow: 0 18px 45px rgba(18,23,27,.08); }
.venture-card.featured-card { background: var(--ink); color: rgba(255,255,255,.72); }
.venture-card.featured-card h3 { color: #fff; }
.venture-card.development-card { background: #eaf4f9; }
.venture-card:nth-child(5) { grid-column: 1 / -1; min-height: 18rem; }
.venture-meta {
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.65rem;
}
.featured-card .venture-meta { color: var(--accent-bright); }
.venture-card h3 { font-size: 1.85rem; margin-bottom: 1rem; }
.venture-card p { line-height: 1.75; max-width: 40rem; }
.text-link {
	margin-top: auto;
	font-weight: 800;
	text-decoration: none;
	border: 0;
	color: var(--accent);
}
.featured-card .text-link { color: #fff; }
.status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: .45rem; box-shadow: 0 0 0 .25rem rgba(22,142,208,.12); }

/* Incubator */
.idea-section { background: var(--ink); padding-top: 6em; }
.idea-section:before, .idea-section:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%2312171b%3B' /%3E%3C/svg%3E");
}
.idea-panel {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	min-height: 34rem;
	background: var(--ink-soft);
	border-radius: .6rem;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(0,0,0,.25);
}
.idea-copy { padding: 5rem; align-self: center; color: rgba(255,255,255,.72); }
.idea-copy h2 { color: #fff; font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.05; }
.idea-copy p { font-size: 1.05rem; line-height: 1.8; }
.idea-copy .idea-note { font-size: .82rem; opacity: .65; }
.idea-copy .button.primary { background: var(--accent); color: #fff !important; box-shadow: none; }
.idea-image { background: linear-gradient(rgba(18,23,27,.08),rgba(18,23,27,.12)), url("../../images/opportunity.jpg") center center / cover no-repeat; }

/* Careers */
.compact-inner { max-width: 50rem !important; margin-left: calc((100% - min(75em, calc(100% - 4em))) / 2) !important; }
.careers-section p { font-size: 1.05rem; line-height: 1.75; }

/* Footer */
#footer { background: #0b0f12; color: rgba(255,255,255,.68); }
#footer > .inner.footer-inner {
	grid-template-columns: 1.1fr 1.2fr .8fr;
	gap: 4rem;
	align-items: start;
}
.footer-brand { display: flex; gap: 1.25rem; align-items: center; }
.footer-brand img { width: 4.25rem; height: 4.25rem; object-fit: contain; }
.footer-brand h3 { color: #fff; letter-spacing: .14em; margin: 0 0 .3rem; }
.footer-brand p { margin: 0; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
#footer .footer-contact { margin: 0; width: 100%; }
#footer .footer-contact li { width: 100%; padding-left: 3.4em; }
#footer .footer-contact a, #footer .footer-connect a { color: #fff; border-bottom-color: rgba(255,255,255,.25); }
#footer .footer-connect h4 { color: #fff; }
#footer .icons { display: flex; gap: .9rem; list-style: none; padding-left: 0; }
#footer .icons li { padding: 0; }
#footer .icons a { border: 0; font-size: 1.25rem; }
#footer .copyright { background: #070a0c; color: rgba(255,255,255,.45); }
#footer .copyright a { color: rgba(255,255,255,.82); }
.footer-divider { padding: 0 .5rem; }

@media screen and (max-width: 980px) {
	#banner { padding: 12em 2.5em 10em; background-attachment: scroll; }
	.venture-grid { grid-template-columns: 1fr; }
	.venture-card:nth-child(5) { grid-column: auto; }
	.idea-panel { grid-template-columns: 1fr; }
	.idea-copy { padding: 3.5rem; }
	.idea-image { min-height: 22rem; order: -1; }
	#footer > .inner.footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.compact-inner { margin: 0 auto !important; }
}

@media screen and (max-width: 736px) {
	#header > .logo.brand-lockup img { width: 1.75rem; height: 1.75rem; }
	#header > .logo.brand-lockup span { display: inline !important; font-size: .86rem; }
	#banner { padding: 10.5em 1.5em 8em; }
	#banner .hero-mark { width: 4rem; height: 4rem; }
	#banner .hero-copy { font-size: 1.08rem; }
	#banner .actions.special { display: block; }
	#banner .actions.special li { width: 100%; margin-bottom: .75rem; padding: 0; }
	#banner .actions.special .button { width: 100%; }
	.holding-story article:nth-child(even) { transform: none; }
	.venture-card { padding: 2rem; min-height: auto; }
	.idea-copy { padding: 2.6rem 2rem; }
	.idea-image { min-height: 16rem; }
	.footer-brand { align-items: flex-start; }
	.footer-divider { display: block; height: .5rem; font-size: 0; }
}

/* Footer refinements */
#footer { padding: 6em 0 2em; background-image: none; }
#footer > .inner.footer-inner { display: grid; }
#footer .footer-contact {
	background: transparent;
	color: rgba(255,255,255,.68);
	padding: .25rem 0 0;
}
#footer .footer-contact li {
	margin-bottom: 1.4rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
#footer .footer-contact li:last-child { border-bottom: 0; }
#footer .footer-contact li:after { display: none; }
#footer .footer-contact li strong { color: var(--accent-bright); }
#footer .footer-contact li.icon:before { color: rgba(255,255,255,.3); }

@media screen and (max-width: 736px) {
	#footer { padding-top: 4em; }
}
