/* ==========================================================
   Octopus Insights — Front Page
   ========================================================== */

/* Reset for this page */
body.oi-home,
body.oi-home * {
	box-sizing: border-box;
}

body.oi-home {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #1e543e;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

/* ----------------------------------------------------------
   Launch badge (top-left corner)
   ---------------------------------------------------------- */
.oi-launch-badge {
    position: fixed;
    top: 20px;
    left: 0;
    background-color: #2aa7a0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 22px;
    z-index: 200;
}

/* admin bar offset */
body.oi-home.admin-bar .oi-launch-badge {
	top: 52px;
}

/* ----------------------------------------------------------
   Main content wrapper
   ---------------------------------------------------------- */
.oi-main {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* ----------------------------------------------------------
   Hero / centred content block
   ---------------------------------------------------------- */
.oi-hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px 48px;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

/* ----------------------------------------------------------
   Logo
   ---------------------------------------------------------- */
.oi-logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 28px;
}

.oi-logo-img {
	max-width: 160px;
	height: auto;
}

/* ----------------------------------------------------------
   Headings & copy
   ---------------------------------------------------------- */
.oi-heading {
	font-size: 2.6rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 22px;
	line-height: 1.2;
}

.oi-desc {
	font-size: 1rem;
	line-height: 1.75;
	color: #fff;
	max-width: 680px;
	margin: 0 auto 18px;
	opacity: 0.95;
}

.oi-tagline {
	font-size: 1rem;
	color: #fff;
	margin: 0 0 38px;
}

/* ----------------------------------------------------------
   CTA button
   ---------------------------------------------------------- */
.oi-btn {
	display: inline-block;
	padding: 14px 38px;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.oi-btn:hover,
.oi-btn:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.8);
	color: #fff;
	text-decoration: none;
	outline: none;
}

/* ----------------------------------------------------------
   Key Areas bar
   ---------------------------------------------------------- */
.oi-key-areas {
	padding: 18px 24px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	width: 100%;
}

.oi-key-label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	opacity: 0.85;
	margin-bottom: 10px;
	text-align: center;
}

.oi-key-list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 0 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.oi-key-list li {
	font-size: 0.85rem;
	color: #fff;
	opacity: 0.9;
	position: relative;
	padding-left: 14px;
}

.oi-key-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.7;
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.oi-footer {
	padding: 16px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	font-size: 0.875rem;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 28px;
}

.oi-footer a {
	color: #fff;
	text-decoration: none;
}

.oi-footer a:hover {
	text-decoration: underline;
}

.oi-footer-sep {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.3);
	vertical-align: middle;
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 640px) {
	.oi-heading {
		font-size: 1.85rem;
	}

	.oi-key-list {
		flex-direction: column;
		gap: 6px 0;
	}

	.oi-footer {
		flex-direction: column;
		gap: 8px;
	}

	.oi-footer-sep {
		display: none;
	}
}
