:root {
	--bg: #f5f4f0;
	--surface: #ffffff;
	--surface-2: #eef1f7;
	--text: #0d1c3d;
	--muted: #5c6880;
	--line: rgba(13, 28, 61, .11);
	--navy: #0d1c3d;
	--r: #d62020;
	--o: #f07d22;
	--y: #f4d233;
	--g: #3aaa35;
	--bl: #2d8ae0;
	--bld: #1f66bf;
	--shadow-sm: 0 6px 20px rgba(13, 28, 61, .07);
	--shadow-lg: 0 20px 64px rgba(13, 28, 61, .11);
	--radius: 20px;
	--max: 1160px;
}

[data-theme="dark"] {
	--bg: #080f1d;
	--surface: #0c1528;
	--surface-2: #101d35;
	--text: #e4ecff;
	--muted: #8899bb;
	--line: rgba(255, 255, 255, .10);
	--shadow-sm: 0 6px 20px rgba(0, 0, 0, .25);
	--shadow-lg: 0 20px 64px rgba(0, 0, 0, .38);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body.digieki-theme {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
}

.digieki-theme :where(h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote) {
	margin: 0;
}

.digieki-theme a {
	color: inherit;
	text-decoration: none;
}

.digieki-theme img {
	max-width: 100%;
	display: block;
	height: auto;
}

.digieki-theme button,
.digieki-theme input,
.digieki-theme textarea,
.digieki-theme select {
	font: inherit;
}

.digieki-theme button {
	cursor: pointer;
	border: none;
	background: none;
}

.wrap {
	width: min(var(--max), calc(100% - 2.4rem));
	margin: 0 auto;
}

.skip {
	position: absolute;
	left: -999px;
	top: 1rem;
	background: var(--surface);
	color: var(--text);
	padding: .6rem 1rem;
	border-radius: 8px;
	z-index: 99;
}

.skip:focus {
	left: 1rem;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(18px);
	background: color-mix(in srgb, var(--bg) 84%, transparent);
	border-bottom: 1px solid var(--line);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.brand img,
.brand .custom-logo {
	height: 46px;
	width: auto;
	max-width: 150px;
	border-radius: 10px;
	object-fit: contain;
}

.brand-panel .brand {
	width: fit-content;
}

.brand-panel .brand img,
.brand-panel .brand .custom-logo {
	width: 160px;
	height: 80px;
	max-width: 160px;
	border-radius: 12px;
	object-fit: contain;
	background: white;
	padding: .5rem;
}

.site-nav .nav-links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.site-nav .nav-links ul,
.site-nav .nav-links li {
	display: contents;
	list-style: none;
}

.site-nav .nav-links a {
	font-size: .93rem;
	font-weight: 600;
	color: var(--muted);
	transition: color .18s;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a:focus-visible {
	color: var(--text);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.icon-btn {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--text);
	display: grid;
	place-items: center;
}

.hamburger {
	display: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .9rem 1.3rem;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: -.01em;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	border: 1px solid transparent;
	min-height: 44px;
}

.digieki-theme .btn-dark,
.digieki-theme a.btn-dark,
.digieki-theme a.btn-dark:visited {
	background: var(--navy);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.digieki-theme .btn-dark:hover,
.digieki-theme .btn-dark:focus-visible,
.digieki-theme a.btn-dark:hover,
.digieki-theme a.btn-dark:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.digieki-theme .btn-ghost,
.digieki-theme a.btn-ghost,
.digieki-theme a.btn-ghost:visited {
	border-color: var(--line);
	background: var(--surface);
	color: var(--text);
}

.digieki-theme .btn-ghost:hover,
.digieki-theme .btn-ghost:focus-visible,
.digieki-theme a.btn-ghost:hover,
.digieki-theme a.btn-ghost:focus-visible {
	color: var(--text);
	border-color: color-mix(in srgb, var(--text) 25%, transparent);
}

.digieki-theme .btn-light,
.digieki-theme a.btn-light,
.digieki-theme a.btn-light:visited {
	background: #fff;
	color: var(--navy);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
}

.digieki-theme .btn-light:hover,
.digieki-theme .btn-light:focus-visible,
.digieki-theme a.btn-light:hover,
.digieki-theme a.btn-light:focus-visible {
	color: var(--navy);
	transform: translateY(-2px);
}

.digieki-theme .btn-outline-light,
.digieki-theme a.btn-outline-light,
.digieki-theme a.btn-outline-light:visited {
	border-color: rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.digieki-theme .btn-outline-light:hover,
.digieki-theme .btn-outline-light:focus-visible,
.digieki-theme a.btn-outline-light:hover,
.digieki-theme a.btn-outline-light:focus-visible {
	color: #fff;
	border-color: rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .13);
}

.hero {
	padding: 5.5rem 0 3.5rem;
	background:
		radial-gradient(ellipse 70% 50% at 90% 0%, color-mix(in srgb, var(--bl) 9%, transparent), transparent),
		radial-gradient(ellipse 60% 40% at 10% 100%, color-mix(in srgb, var(--g) 7%, transparent), transparent),
		var(--bg);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 1.6rem;
	align-items: center;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .4rem .85rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: color-mix(in srgb, var(--surface) 85%, transparent);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	margin-bottom: 1.2rem;
}

.pill-dot {
	display: flex;
	gap: 2px;
}

.pill-dot span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.digieki-theme h1 {
	font-size: clamp(3rem, 6.5vw, 5.8rem);
	line-height: 1.02;
	letter-spacing: -.05em;
	max-width: 11ch;
	color: var(--text);
}

.serif {
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	font-style: italic;
}

.hero-sub {
	font-size: 1.06rem;
	color: var(--muted);
	max-width: 60ch;
	margin-top: 1.25rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	margin-top: 1.75rem;
}

.hero-panel {
	background: color-mix(in srgb, var(--surface) 88%, transparent);
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 1.3rem;
	box-shadow: var(--shadow-lg);
}

.tagline-strip {
	background: linear-gradient(135deg, #0d1c3d, #1a3266);
	color: #fff;
	border-radius: 18px;
	padding: 1.1rem 1.2rem;
	margin-bottom: 1rem;
}

.tagline-strip small {
	display: block;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: rgba(255, 255, 255, .65);
	font-weight: 700;
	margin-bottom: .5rem;
}

.tagline-strip strong {
	font-size: 1.05rem;
	line-height: 1.45;
}

.four-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .85rem;
}

.mini {
	padding: .95rem;
	border-radius: 16px;
	background: var(--surface-2);
	border: 1px solid var(--line);
}

.mini strong {
	display: block;
	font-size: .97rem;
	margin-bottom: .3rem;
}

.mini span {
	font-size: .86rem;
	color: var(--muted);
}

.band {
	border-block: 1px solid var(--line);
	padding: 1.3rem 0;
	background: color-mix(in srgb, var(--surface) 68%, transparent);
}

.band-row {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.band-item {
	font-size: .9rem;
	font-weight: 700;
	color: var(--muted);
}

.section {
	padding: 5rem 0;
}

.section--tinted {
	background: color-mix(in srgb, var(--surface) 72%, transparent);
	border-block: 1px solid var(--line);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .34rem .7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--bl) 9%, var(--surface));
	border: 1px solid var(--line);
	font-size: .77rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--text);
	margin-bottom: .9rem;
}

.section-label::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bl);
}

.section-label--inverse {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .14);
	color: #fff;
}

.digieki-theme h2 {
	font-size: clamp(2rem, 3.8vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -.045em;
	max-width: 13ch;
	color: var(--text);
}

.section-intro {
	color: var(--muted);
	max-width: 56ch;
	margin-top: .6rem;
}

.contact-box .section-intro {
	margin-top: .75rem;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.split {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 1.15rem;
	align-items: stretch;
}

.statement-card {
	background: linear-gradient(155deg, #0a1a3a, #102e6a);
	color: #fff;
	border-radius: 28px;
	padding: 1.75rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
}

.statement-card::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 65%);
}

.statement-card h2 {
	color: #fff;
	max-width: 14ch;
	margin-top: .5rem;
}

.pullquote {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(1.4rem, 1.8vw, 1.85rem);
	line-height: 1.3;
	color: rgba(255, 255, 255, .92);
	margin-top: .5rem;
}

.statement-card p {
	color: rgba(255, 255, 255, .78);
	font-size: .98rem;
}

.who-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}

.who-card h3 {
	font-size: 1.3rem;
	letter-spacing: -.03em;
	margin-bottom: .3rem;
	color: var(--text);
}

.check-list {
	display: grid;
	gap: .8rem;
	margin-top: 1rem;
}

.check-row {
	display: flex;
	gap: .8rem;
	align-items: flex-start;
	padding-bottom: .8rem;
	border-bottom: 1px solid var(--line);
}

.check-row:last-child {
	border: none;
	padding-bottom: 0;
}

.tick {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--g), var(--bl));
	color: #fff;
	display: grid;
	place-items: center;
	font-size: .78rem;
	font-weight: 800;
	flex: 0 0 26px;
}

.check-row strong {
	display: block;
	margin-bottom: .2rem;
	color: var(--text);
}

.check-row span {
	font-size: .88rem;
	color: var(--muted);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
}

.academy-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 20%, rgba(246, 210, 51, .18), transparent 30%),
		radial-gradient(circle at 88% 12%, rgba(45, 138, 224, .22), transparent 32%),
		linear-gradient(145deg, #081329, #102f69 62%, #0b1832);
	color: #fff;
}

.academy-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
	pointer-events: none;
}

.academy-wrap {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 1.2rem;
	align-items: stretch;
}

.academy-hero-card {
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 28px;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: rgba(255, 255, 255, .08);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
	backdrop-filter: blur(16px);
}

.academy-hero-card h2 {
	color: #fff;
	max-width: 12ch;
}

.academy-hero-card p {
	color: rgba(255, 255, 255, .78);
	margin-top: 1rem;
}

.academy-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 1.4rem;
}

.academy-courses {
	display: grid;
	gap: .9rem;
}

.course-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1.1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, .94);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, .22);
	box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.course-code {
	width: 46px;
	height: 46px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--navy), #1f66bf);
	color: #fff;
	font-weight: 800;
	letter-spacing: -.02em;
}

.course-card h3 {
	font-size: 1.15rem;
	letter-spacing: -.03em;
	margin-bottom: .35rem;
	color: var(--text);
}

.course-card p {
	color: var(--muted);
	font-size: .92rem;
}

.course-card > span {
	grid-column: 2;
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: color-mix(in srgb, var(--bld) 80%, var(--text));
}

.academy-page-hero {
	padding: 5.5rem 0 4rem;
	background:
		radial-gradient(ellipse 70% 50% at 88% 0%, color-mix(in srgb, var(--bl) 12%, transparent), transparent),
		radial-gradient(ellipse 60% 40% at 8% 100%, color-mix(in srgb, var(--y) 10%, transparent), transparent),
		var(--bg);
}

.academy-page-grid {
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	gap: 1.5rem;
	align-items: center;
}

.academy-stat-panel {
	display: grid;
	gap: 1rem;
	background: linear-gradient(155deg, #0a1a3a, #102e6a);
	border-radius: 28px;
	padding: 1.4rem;
	color: #fff;
	box-shadow: var(--shadow-lg);
}

.academy-stat-panel div {
	padding: 1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .08);
}

.academy-stat-panel strong {
	display: block;
	font-size: clamp(1.55rem, 3vw, 2.6rem);
	line-height: 1;
	letter-spacing: -.04em;
	margin-bottom: .35rem;
}

.academy-stat-panel span {
	color: rgba(255, 255, 255, .74);
}

.academy-track-grid,
.academy-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
}

.track-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.3rem;
	box-shadow: var(--shadow-sm);
}

.track-kicker {
	display: inline-flex;
	padding: .32rem .65rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--bl) 9%, var(--surface));
	color: color-mix(in srgb, var(--bld) 84%, var(--text));
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: .85rem;
}

.track-card h3 {
	font-size: 1.35rem;
	letter-spacing: -.035em;
	margin-bottom: .6rem;
	color: var(--text);
}

.track-card p,
.track-card li {
	color: var(--muted);
	font-size: .93rem;
}

.track-card ul {
	margin: 1rem 0 0;
	padding-left: 1.1rem;
}

.track-card li + li {
	margin-top: .45rem;
}

.svc,
.step,
.why-card,
.post-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.3rem;
	box-shadow: var(--shadow-sm);
}

.svc {
	transition: transform .2s, box-shadow .2s;
}

.svc:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.svc-icon {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	margin-bottom: 1rem;
	border: 1px solid var(--line);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: .8rem;
	color: var(--text);
	background: var(--surface-2);
}

.svc h3,
.step h3,
.why-card h3 {
	font-size: 1.15rem;
	letter-spacing: -.03em;
	margin-bottom: .65rem;
	color: var(--text);
}

.svc p,
.step p,
.why-card p {
	font-size: .93rem;
	color: var(--muted);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.1rem;
}

.step-no {
	font-family: 'Instrument Serif', serif;
	font-size: 2.6rem;
	line-height: 1;
	color: color-mix(in srgb, var(--bl) 55%, var(--text));
	margin-bottom: .7rem;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.1rem;
}

.contact-wrap {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 1.15rem;
	align-items: stretch;
}

.contact-box {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 1.6rem;
	box-shadow: var(--shadow-lg);
}

.contact-list {
	display: grid;
	gap: .9rem;
	margin: 1.3rem 0;
}

.contact-row {
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: 1rem;
	border-radius: 16px;
	background: var(--surface-2);
	border: 1px solid var(--line);
}

.contact-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--navy);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 1rem;
	flex: 0 0 40px;
}

[data-theme="dark"] .contact-icon {
	background: var(--text);
	color: var(--bg);
}

.contact-row strong {
	display: block;
	font-size: .87rem;
	color: var(--muted);
	margin-bottom: .2rem;
}

.contact-row a {
	font-weight: 700;
	color: var(--text);
}

.cta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
}

.brand-panel {
	background: linear-gradient(175deg, #0a1830, #0f2b5e);
	color: #fff;
	border-radius: 28px;
	padding: 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	box-shadow: var(--shadow-lg);
}

.brand-panel h3 {
	font-size: 1.35rem;
	letter-spacing: -.03em;
	color: #fff;
}

.brand-panel p {
	font-size: .93rem;
	color: rgba(255, 255, 255, .78);
}

.brand-panel .brand-note {
	font-size: .85rem;
	color: rgba(255, 255, 255, .6);
}

footer {
	padding: 2rem 0 3rem;
}

.footer-inner {
	border-top: 1px solid var(--line);
	padding-top: 1.4rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: .9rem;
}

.footer-inner a {
	color: var(--muted);
}

.page-hero {
	padding: 5rem 0;
	min-height: 62vh;
}

.page-shell,
.archive-header {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: clamp(1.5rem, 4vw, 3rem);
	box-shadow: var(--shadow-sm);
}

.page-shell h1,
.archive-header h1 {
	max-width: 13ch;
	margin-bottom: 1.5rem;
}

.prose {
	color: var(--muted);
	max-width: 72ch;
}

.prose > * + * {
	margin-top: 1rem;
}

.prose :where(h2, h3, h4) {
	color: var(--text);
	max-width: none;
	margin-top: 2rem;
}

.prose a {
	color: var(--bld);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.post-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.post-card {
	display: grid;
	grid-template-columns: .35fr .65fr;
	gap: 1rem;
	align-items: stretch;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	border-radius: 16px;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .8rem;
}

.post-card__meta {
	font-size: .8rem;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.post-card__title {
	font-size: clamp(1.5rem, 2.4vw, 2.3rem);
	max-width: 18ch;
}

.post-card__excerpt {
	color: var(--muted);
}

.navigation.pagination {
	margin-top: 2rem;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: .45rem .75rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
}

.empty-state {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 2rem;
	color: var(--muted);
	box-shadow: var(--shadow-sm);
}

.empty-state h2 {
	margin-bottom: .5rem;
}

@media (max-width: 960px) {
	.hero-grid,
	.split,
	.contact-wrap,
	.academy-wrap,
	.academy-page-grid,
	.services-grid,
	.why-grid,
	.process-grid,
	.academy-track-grid,
	.academy-feature-grid,
	.post-card {
		grid-template-columns: 1fr;
	}

	.section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: .75rem;
	}

	.digieki-theme h1 {
		max-width: 14ch;
	}
}

@media (max-width: 820px) {
	.hamburger {
		display: grid;
	}

	.site-nav .nav-links {
		display: none;
		position: absolute;
		left: .8rem;
		right: .8rem;
		top: calc(100% + .5rem);
		flex-direction: column;
		align-items: flex-start;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: 20px;
		padding: 1rem;
		box-shadow: var(--shadow-lg);
	}

	.site-nav .nav-links.open {
		display: flex;
	}

	.nav-right .btn-dark {
		display: none;
	}

	.four-grid {
		grid-template-columns: 1fr;
	}

	.course-card {
		grid-template-columns: 1fr;
	}

	.course-card > span {
		grid-column: auto;
	}
}
