/*--------------------------------------------------------------
# Generic - Normalize
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	overflow-x: hidden;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Generic - Box Sizing
--------------------------------------------------------------*/

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/

:root {
	/* ─ Dark Navy + Neon Palette ─ */
	--color-navy: #07080D;
	--color-navy-light: #0E111A;
	--color-neon: #B6FF2E;
	--color-neon-dim: rgba(182, 255, 46, 0.18);
	--color-neon-hover: #c8ff5c;

	--color-primary: #B6FF2E;
	--color-primary-hover: #c8ff5c;
	--color-primary-light: rgba(182, 255, 46, 0.1);
	--color-primary-text: #B6FF2E;

	--color-text: #F4F6FF;
	--color-text-secondary: #A7B0C8;
	--color-text-muted: #6B7590;
	--color-text-light: #4A5268;

	--color-bg: #07080D;
	--color-white: #F4F6FF;
	--color-border: rgba(244, 246, 255, 0.08);
	--color-border-light: rgba(244, 246, 255, 0.04);

	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-heading: "Space Grotesk", var(--font-sans);
	--font-mono: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", monospace;

	--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
	--shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
	--shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.45);
	--shadow-glow: 0 0 40px rgba(182, 255, 46, 0.18);
	--shadow-glow-hover: 0 0 30px rgba(182, 255, 46, 0.3);

	--radius: 8px;
	--radius-lg: 14px;
	--radius-xl: 22px;
	--radius-2xl: 28px;

	--container: 1200px;
	--header-height: 64px;
	--transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: rgba(182, 255, 46, 0.3);
	color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 2.25rem;
	margin: 0 0 0.5em;
}

h2 {
	font-size: 1.5rem;
	margin: 0 0 0.5em;
}

h3 {
	font-size: 1.25rem;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 1.5em 0;
	padding: 1em 1.5em;
	border-left: 3px solid var(--color-neon);
	background: var(--color-navy-light);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--color-text-secondary);
}

blockquote p:last-child {
	margin-bottom: 0;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: var(--color-navy-light);
	color: var(--color-text-secondary);
	font-family: var(--font-mono);
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.5em;
	border-radius: var(--radius-lg);
}

code,
kbd,
tt,
var {
	font-family: var(--font-mono);
	font-size: 0.875em;
	background: var(--color-navy-light);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}

pre code {
	background: none;
	padding: 0;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-text-muted);
	cursor: help;
}

mark,
ins {
	background: rgba(182, 255, 46, 0.2);
	color: var(--color-neon);
	text-decoration: none;
	padding: 0.1em 0.3em;
	border-radius: 2px;
}

big {
	font-size: 125%;
}

hr {
	background-color: var(--color-border);
	border: 0;
	height: 1px;
	margin: 2em 0;
}

ul,
ol {
	margin: 0 0 1.5em 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 600;
}

dd {
	margin: 0 0 1.5em 1.5em;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1.5em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 0.75em 1em;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

th {
	font-weight: 600;
	color: var(--color-text-secondary);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Links */

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover,
a:focus {
	color: var(--color-primary-hover);
}

a:visited {
	color: var(--color-primary);
}

a:focus {
	outline: 2px solid var(--color-neon);
}

a:hover,
a:active {
	outline: 0;
}

/* Forms */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625em 1.25em;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-navy);
	background: var(--color-neon);
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all var(--transition-smooth);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: var(--color-neon-hover);
	box-shadow: var(--shadow-glow-hover);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	outline: 2px solid var(--color-neon);
	outline-offset: 2px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 0.625em 0.875em;
	width: 100%;
	font-size: 0.9375rem;
	transition: border-color var(--transition), box-shadow var(--transition);
	background: var(--color-navy-light);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: var(--color-neon);
	box-shadow: 0 0 0 3px rgba(182, 255, 46, 0.1);
	outline: none;
}

select {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 0.625em 0.875em;
	background: var(--color-navy-light);
	color: var(--color-text);
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.container {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.site-main {
	flex: 1;
}

/*--------------------------------------------------------------
# Header Structure
--------------------------------------------------------------*/

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: var(--header-height);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	justify-self: start;
}

.site-branding .custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-branding .custom-logo {
	width: auto;
}

.site-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-text);
	text-decoration: none;
	letter-spacing: -0.02em;
	margin: 0;
	padding: 0;
}

a.site-title:hover,
a.site-title:visited {
	color: var(--color-text);
}

.site-description {
	display: none;
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-self: center;
}

.nav-menu-wrapper {
	display: flex;
	align-items: center;
}

.nav-menu-wrapper ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.nav-menu-wrapper ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	min-width: 200px;
	padding: 8px;
	display: none;
	z-index: 99;
}

.nav-menu-wrapper ul li:hover > ul,
.nav-menu-wrapper ul li.focus > ul {
	display: block;
}

.nav-menu-wrapper ul ul ul {
	left: 100%;
	top: 0;
}

.nav-menu-wrapper ul ul a {
	padding: 8px 12px;
	border-radius: 6px;
}

.nav-menu-wrapper ul ul a:hover {
	background: rgba(244, 246, 255, 0.06);
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 6px 14px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-text-secondary);
	text-decoration: none;
	border-radius: 100px;
	transition: color var(--transition), background var(--transition);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.header-actions--desktop {
	justify-self: end;
}

.header-actions--mobile {
	display: none;
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--transition);
	cursor: pointer;
	border: 1px solid transparent;
	line-height: 1.5;
	white-space: nowrap;
}

.btn-primary {
	background: var(--color-neon);
	color: var(--color-navy);
	font-weight: 600;
}

.btn-primary:hover {
	background: var(--color-neon-hover);
	color: var(--color-navy);
	box-shadow: var(--shadow-glow-hover);
}

.btn-primary:visited {
	color: var(--color-navy);
}

.btn-dark {
	background: var(--color-neon);
	color: var(--color-navy);
	border: 1px solid var(--color-neon);
	font-weight: 600;
}

.btn-dark:hover {
	background: var(--color-neon-hover);
	color: var(--color-navy);
	box-shadow: var(--shadow-glow-hover);
}

.btn-dark:visited {
	color: var(--color-navy);
}

.btn-dark:hover:visited {
	color: var(--color-navy);
}

.btn-ghost {
	background: transparent;
	color: var(--color-text-secondary);
}

.btn-ghost:hover {
	color: var(--color-text);
}

.btn-ghost:visited {
	color: var(--color-text-secondary);
}

.menu-toggle {
	display: none;
}

.hamburger-line {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform var(--transition), opacity var(--transition);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background: var(--color-navy-light);
	border-bottom: 1px solid var(--color-border);
	padding: 48px 0;
	margin-bottom: 48px;
}

.page-header .page-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.03em;
}

.page-header .page-description,
.page-header .archive-description {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	margin: 8px 0 0;
	max-width: 600px;
}

.page-header .archive-description p {
	margin: 0;
}

/*--------------------------------------------------------------
# Blog Cards Grid
--------------------------------------------------------------*/

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 28px;
	padding-top: 40px;
	padding-bottom: 40px;
}

/* When there IS a page-header, reduce grid top padding */
.page-header + .container .posts-grid {
	padding-top: 0;
}

.post-card {
	background: var(--color-navy-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: box-shadow var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
	margin: 0;
}

.post-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

/* Card Thumbnail */

.post-card-thumbnail {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--color-border-light);
}

.post-card-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-card-thumbnail img {
	transform: scale(1.03);
}

.post-card-thumbnail--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

/* Card Content */

.post-card-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.post-card-meta-top {
	margin-bottom: 10px;
}

.post-card-category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-primary);
	background: var(--color-primary-light);
	padding: 3px 10px;
	border-radius: 20px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background var(--transition);
}

.post-card-category:hover {
	background: #ddd6fe;
	color: var(--color-primary-text);
}

.post-card-category:visited {
	color: var(--color-primary);
}

.post-card-title {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}

.post-card-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition);
}

.post-card-title a:hover {
	color: var(--color-primary);
}

.post-card-title a:visited {
	color: var(--color-text);
}

.post-card-excerpt {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin: 0 0 16px;
	flex: 1;
}

/* Card Footer */

.post-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid var(--color-border-light);
	margin-top: auto;
}

.post-card-date {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

.post-card-read-more {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

.post-card-read-more:hover {
	color: var(--color-primary-hover);
}

.post-card-read-more:visited {
	color: var(--color-primary);
}

/* Responsive Grid */

@media screen and (max-width: 768px) {
	.posts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.page-header {
		padding: 32px 0;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*--------------------------------------------------------------
# Blog Pagination (paginate_links)
--------------------------------------------------------------*/

.blog-pagination {
	padding: 8px 0 40px;
}

.blog-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
	flex-wrap: wrap;
}

.blog-pagination li {
	margin: 0;
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 6px 12px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text-secondary);
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	text-decoration: none;
	transition: all var(--transition);
}

.blog-pagination a:hover {
	border-color: var(--color-neon);
	color: var(--color-neon);
	background: rgba(182, 255, 46, 0.06);
}

.blog-pagination .current {
	background: var(--color-neon);
	color: var(--color-navy);
	border-color: var(--color-neon);
	font-weight: 600;
}

.blog-pagination .dots {
	border: none;
	background: none;
	color: var(--color-text-muted);
	min-width: auto;
	padding: 6px 4px;
}

.blog-pagination .prev,
.blog-pagination .next {
	font-weight: 500;
}

/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/

.single .site-main,
.page .site-main {
	padding: 48px 0;
}

.page .site-main > article {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}
.single .site-main > article {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Single Post Header */

.single-post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.post-category-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-primary);
	background: var(--color-primary-light);
	padding: 4px 12px;
	border-radius: 20px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.post-category-badge:visited {
	color: var(--color-primary);
}

.single-post-meta .post-date {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

.single .entry-title,
.page .entry-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 20px;
}

.single-post-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.single-post-author img,
.single-post-author .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.single-post-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.single-post-author-info .author-name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
}

.single-post-author-info .reading-time {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* Post Thumbnail (singular) */

.post-thumbnail {
	margin-bottom: 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* Entry Content */

.entry-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--color-text-secondary);
	margin: 0;
}

.entry-content h2 {
	font-size: 1.625rem;
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.entry-content h3 {
	font-size: 1.25rem;
	margin-top: 1.75em;
	margin-bottom: 0.5em;
}

.entry-content a {
	color: var(--color-neon);
	text-decoration: underline;
	text-decoration-color: rgba(182, 255, 46, 0.3);
	text-underline-offset: 2px;
	transition: text-decoration-color var(--transition);
}

.entry-content a:hover {
	text-decoration-color: var(--color-neon);
}

.entry-content img {
	border-radius: var(--radius);
}

.entry-content ul,
.entry-content ol {
	margin-left: 1.25em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

/* Entry Footer */

.entry-footer {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.entry-footer .cat-links,
.entry-footer .tags-links {
	display: block;
	margin-bottom: 8px;
}

.entry-footer a {
	color: var(--color-primary);
}

.entry-footer .edit-link {
	display: inline-block;
	margin-top: 8px;
}

.page-links {
	clear: both;
	margin: 2em 0;
	font-weight: 500;
}

/* Responsive Single */

@media screen and (max-width: 768px) {
	.single .entry-title,
	.page .entry-title {
		font-size: 1.75rem;
	}

	.single .site-main,
	.page .site-main {
		padding: 24px 0;
	}
}

/*--------------------------------------------------------------
# Pagination & Post Navigation
--------------------------------------------------------------*/

.posts-navigation,
.post-navigation {
	margin: 0 0 40px;
	padding-top: 24px;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
	gap: 16px;
}

.posts-navigation .nav-previous a,
.posts-navigation .nav-next a,
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text-secondary);
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	text-decoration: none;
	transition: all var(--transition);
}

.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover,
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
	border-color: var(--color-neon);
	color: var(--color-neon);
	background: rgba(182, 255, 46, 0.06);
}

.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 auto;
}

.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 auto;
}

.post-navigation .nav-subtitle {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
	font-weight: 400;
	margin-bottom: 2px;
}

.post-navigation .nav-title {
	font-weight: 600;
}

.comment-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-area {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px 48px;
}

.comments-title {
	font-size: 1.375rem;
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .comment {
	border-bottom: 1px solid var(--color-border);
	padding: 24px 0;
}

.comment-list .children {
	list-style: none;
	margin-left: 32px;
	padding: 0;
}

.comment-meta {
	margin-bottom: 12px;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
}

.comment-author .avatar {
	border-radius: 50%;
}

.comment-author .fn {
	font-weight: 600;
	color: var(--color-text);
}

.comment-metadata {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	margin-top: 4px;
}

.comment-metadata a {
	color: var(--color-text-muted);
}

.comment-content {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text-secondary);
}

.comment-content a {
	word-wrap: break-word;
}

.reply a {
	font-size: 0.8125rem;
	font-weight: 500;
}

.comment-respond {
	margin-top: 32px;
}

.comment-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 4px;
	color: var(--color-text);
}

.comment-form .comment-form-comment,
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
	margin-bottom: 16px;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

.widget-title {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	margin-bottom: 12px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link {
	display: inline-block;
}

/* Captions */

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* Galleries */

.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

.gallery-item img {
	border-radius: var(--radius);
}

/*--------------------------------------------------------------
# Posts & Pages (legacy)
--------------------------------------------------------------*/

.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.entry-summary {
	margin: 1.5em 0 0;
}

/*--------------------------------------------------------------
# Content None
--------------------------------------------------------------*/

.no-results {
	max-width: 600px;
	margin: 0 auto;
	padding: 80px 24px;
	text-align: center;
}

.no-results .page-title {
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.no-results .page-content {
	color: var(--color-text-muted);
}

.no-results .search-form {
	display: flex;
	gap: 8px;
	max-width: 400px;
	margin: 24px auto 0;
}

.no-results .search-field {
	flex: 1;
}

.no-results .search-submit {
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/

.search-form {
	display: flex;
	gap: 8px;
}

.search-form .search-field {
	flex: 1;
}

.search-form .search-submit {
	flex-shrink: 0;
}

.search .page-header {
	background: var(--color-navy-light);
	border-bottom: 1px solid var(--color-border);
	padding: 48px 0;
	margin-bottom: 32px;
}

.search .page-title {
	font-size: 1.75rem;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/

.error-404 {
	max-width: 480px;
	margin: 0 auto;
	padding: 100px 24px;
	text-align: center;
}

.error-404-code {
	display: block;
	font-size: 5rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--color-border);
	margin-bottom: 16px;
}

.error-404-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.error-404-desc {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	margin: 0 0 28px;
	line-height: 1.6;
}

.error-404-actions {
	display: flex;
	justify-content: center;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--color-navy-light);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	clip: auto !important;
	clip-path: none;
	color: var(--color-neon);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments */

.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Landing Page Sections
--------------------------------------------------------------*/

/* ─── Full-width breakout for landing sections inside page template ─── */

.page .entry-content > [class*="lp-"] {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	position: relative;
}

.page .entry-content > [class*="lp-"] > .wp-block-group__inner-container,
.page .entry-content > [class*="lp-"] > * {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

/* Hide page title & entry footer when using landing sections */
.page:has(.entry-content [class*="lp-hero"]) .entry-header,
.page:has(.entry-content [class*="lp-hero"]) .entry-footer {
	display: none;
}

/* Remove default page padding when landing sections are present */
.page:has(.entry-content [class*="lp-hero"]) .site-main {
	padding: 0;
}

.page:has(.entry-content [class*="lp-hero"]) .site-main > article {
	max-width: 100%;
	padding: 0;
}

/* ─── Grain overlay ─── */
.page:has(.entry-content [class*="lp-hero"]) .site-main::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: 0.035;
	mix-blend-mode: overlay;
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Shared Section Styles ─── */

.lp-mono-label {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-neon);
	margin: 0 0 12px;
}

.lp-label {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-neon);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
}

.lp-section-header {
	margin-bottom: 56px;
}

.lp-section-title {
	font-size: clamp(2rem, 3.6vw, 2.75rem);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.95;
	color: var(--color-text);
	margin: 0 0 14px;
}

.lp-section-desc {
	font-size: 1.0625rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0;
}

/* ─── Hairline dividers ─── */

.lp-hairline {
	height: 1px;
	background: var(--color-border);
}

/* ─── Card base ─── */

.lp-card-dark {
	background: var(--color-navy-light);
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-lg);
}

/* ─── Hero ─── */

.lp-hero {
	padding: 80px 24px 0;
	background: var(--color-navy);
	overflow: hidden;
	position: relative;
}

.lp-hero::before {
	content: "";
	position: absolute;
	top: -30%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--color-neon-dim) 0%, transparent 70%);
	pointer-events: none;
}

.lp-hero__cols {
	display: flex;
	align-items: center;
	gap: 48px;
}

.lp-hero__left {
	flex: 1;
	position: relative;
	z-index: 1;
}

.lp-hero__right {
	flex: 1;
	position: relative;
	z-index: 1;
}

.lp-hero__right img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-lg);
}

.lp-hero__right .lp-hero__glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle, var(--color-neon-dim) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

.lp-hero__title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.95;
	color: var(--color-text);
	margin: 0 0 20px;
}

.lp-hero__desc {
	font-size: 1.0625rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0 0 32px;
	max-width: 480px;
}

.lp-hero__buttons {
	gap: 16px;
	margin-bottom: 0;
}

.lp-hero__buttons .wp-block-button__link {
	padding: 13px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius);
	transition: all var(--transition-smooth);
}

.lp-btn-neon .wp-block-button__link {
	background: var(--color-neon) !important;
	color: var(--color-navy) !important;
	border: none !important;
	box-shadow: var(--shadow-glow);
}

.lp-btn-neon .wp-block-button__link:hover {
	background: var(--color-neon-hover) !important;
	box-shadow: var(--shadow-glow-hover);
	transform: translateY(-1px);
}

.lp-btn-ghost-link .wp-block-button__link {
	background: transparent !important;
	color: var(--color-text-secondary) !important;
	border: none !important;
	padding-left: 0 !important;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: var(--color-text-light);
}

.lp-btn-ghost-link .wp-block-button__link:hover {
	color: var(--color-text) !important;
	text-decoration-color: var(--color-text);
}

/* ─── Results Grid (Showcase) ─── */

.lp-results {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-results__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.lp-results__item {
	background: var(--color-navy-light);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
	cursor: pointer;
	box-shadow: var(--shadow-lg);
}

.lp-results__item:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.lp-results__item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #fff;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-smooth);
}

.lp-results__item-name {
	padding: 14px 18px;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
}

/* ─── Features Grid ─── */

.lp-features {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-features__grid {
	gap: 20px;
	margin-bottom: 20px;
}

.lp-features__grid:last-child {
	margin-bottom: 0;
}

.lp-feature-card {
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 32px;
	transition: all var(--transition-smooth);
}

.lp-feature-card:hover {
	border-color: rgba(182, 255, 46, 0.2);
}

.lp-feature-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(182, 255, 46, 0.1);
	color: var(--color-neon);
	border-radius: var(--radius-lg);
	margin: 0 0 20px;
}

.lp-feature-card__icon svg {
	width: 24px;
	height: 24px;
}

.lp-feature-card__title {
	font-size: 1.125rem;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 8px;
}

.lp-feature-card__desc {
	font-size: 0.9375rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0;
}

/* ─── Use Cases ─── */

.lp-usecases {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-usecases__grid {
	gap: 20px;
}

.lp-usecase-card {
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	padding: 36px;
	transition: all var(--transition-smooth);
}

.lp-usecase-card:hover {
	border-color: rgba(182, 255, 46, 0.2);
}

.lp-usecase-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(182, 255, 46, 0.1);
	color: var(--color-neon);
	border-radius: var(--radius-lg);
	margin: 0 0 20px;
}

.lp-usecase-card__icon svg {
	width: 24px;
	height: 24px;
}

.lp-usecase-card__title {
	font-size: 1.25rem;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 10px;
}

.lp-usecase-card__desc {
	font-size: 0.9375rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0;
}

/* ─── Brand Context ─── */

.lp-context {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-context__images {
	display: flex;
	gap: 24px;
	margin-bottom: 48px;
}

.lp-context__image {
	flex: 1;
	overflow: hidden;
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-lg);
}

.lp-context__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lp-context__caption {
	max-width: 700px;
	margin: 0 auto;
}

/* ─── Testimonials ─── */

.lp-testimonials {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-testimonials__grid {
	gap: 20px;
}

.lp-testimonial-card {
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	padding: 36px;
	transition: all var(--transition-smooth);
}

.lp-testimonial-card:hover {
	border-color: rgba(182, 255, 46, 0.15);
}

.lp-testimonial-card__quote-icon {
	color: rgba(182, 255, 46, 0.4);
	font-size: 2rem;
	line-height: 1;
	margin: 0 0 16px;
}

.lp-testimonial-card__text {
	font-size: 1.0625rem;
	color: var(--color-text);
	line-height: 1.625;
	margin: 0 0 24px;
}

.lp-testimonial-card__author {
	gap: 12px;
}

.lp-testimonial-card__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: rgba(182, 255, 46, 0.1);
	color: var(--color-neon);
	font-weight: 700;
	font-size: 0.875rem;
	border-radius: 50%;
	margin: 0;
}

.lp-testimonial-card__info {
	gap: 0 !important;
}

.lp-testimonial-card__name {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
}

.lp-testimonial-card__role {
	font-size: 0.8125rem;
	color: var(--color-text-secondary);
	margin: 0;
}

/* ─── FAQ ─── */

.lp-faq {
	padding: 104px 24px;
	background: var(--color-navy);
}

.lp-faq__list {
	margin: 0 auto;
}

.lp-faq__item {
	background: var(--color-navy-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	margin-bottom: 10px;
	overflow: hidden;
	transition: border-color var(--transition-smooth);
}

.lp-faq__item:hover {
	border-color: rgba(244, 246, 255, 0.12);
}

.lp-faq__item[open] {
	border-color: rgba(182, 255, 46, 0.15);
}

.lp-faq__item summary {
	padding: 20px 24px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--color-text);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.25s ease;
}

.lp-faq__item summary::-webkit-details-marker {
	display: none;
}

.lp-faq__item summary::after {
	content: "+";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--color-text-muted);
	flex-shrink: 0;
	margin-left: 16px;
	background: rgba(244, 246, 255, 0.05);
	border-radius: 50%;
	transition: all 0.25s ease;
}

.lp-faq__item[open] summary::after {
	content: "−";
	background: rgba(182, 255, 46, 0.1);
	color: var(--color-neon);
}

.lp-faq__item summary:hover {
	background: transparent;
}

.lp-faq__item summary:hover::after {
	background: rgba(182, 255, 46, 0.1);
	color: var(--color-neon);
}

.lp-faq__item p {
	padding: 0 24px 20px;
	font-size: 0.9375rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0;
}

/* ─── CTA Section ─── */

.lp-cta {
	padding: 104px 24px;
	background: var(--color-navy-light);
	position: relative;
	overflow: hidden;
}

.lp-cta::before {
	content: "";
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--color-neon-dim) 0%, transparent 70%);
	pointer-events: none;
}

.lp-cta__inner {
	position: relative;
	z-index: 1;
}

.lp-cta__title {
	font-size: clamp(2rem, 3.6vw, 2.75rem);
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-text) !important;
	letter-spacing: -0.02em;
	line-height: 0.95;
	margin: 0 0 16px;
}

.lp-cta__desc {
	font-size: 1.0625rem;
	color: var(--color-text-secondary);
	line-height: 1.625;
	margin: 0 0 36px;
}

.lp-cta__note {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	margin: 16px 0 0;
}

.lp-cta__buttons .wp-block-button__link {
	padding: 13px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius);
	transition: all var(--transition-smooth);
}

/* ─── Shared button variants ─── */

.lp-btn-neon .wp-block-button__link,
.lp-btn-white .wp-block-button__link {
	background: var(--color-neon) !important;
	color: var(--color-navy) !important;
	border: none !important;
	box-shadow: var(--shadow-glow);
}

.lp-btn-neon .wp-block-button__link:hover,
.lp-btn-white .wp-block-button__link:hover {
	background: var(--color-neon-hover) !important;
	box-shadow: var(--shadow-glow-hover);
	transform: translateY(-1px);
}

/* ─── Text gradient utility ─── */

.lp-text-gradient {
	background: linear-gradient(135deg, #B6FF2E 0%, #D4FF7A 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── Landing Sections Responsive ─── */

@media screen and (max-width: 768px) {
	.lp-hero {
		padding: 48px 16px 0;
	}

	.lp-hero__cols {
		flex-direction: column;
		gap: 40px;
	}

	.lp-hero__title {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.lp-hero__desc {
		font-size: 1rem;
	}

	.lp-section-title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.lp-features,
	.lp-usecases,
	.lp-results,
	.lp-context,
	.lp-testimonials,
	.lp-faq,
	.lp-cta {
		padding: 64px 16px;
	}

	.lp-features__grid,
	.lp-usecases__grid,
	.lp-testimonials__grid {
		flex-direction: column;
	}

	.lp-results__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.lp-context__images {
		flex-direction: column;
	}

	.lp-cta__title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.lp-hero__title {
		font-size: clamp(2rem, 4vw, 3rem);
	}

	.lp-results__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.lp-features__grid .wp-block-column {
		flex-basis: calc(50% - 10px) !important;
	}
}
