:root {
	--color-bg: #090d10;
	--color-bg-2: #0e1518;
	--color-surface: #121a1f;
	--color-surface-2: #182228;
	--color-line: rgba(246, 248, 248, 0.13);
	--color-text: #f6f8f8;
	--color-muted: #a9b4b7;
	--color-dim: #778489;
	--color-cyan: #42d9ff;
	--color-green: #7dff9b;
	--color-amber: #ffbd6b;
	--shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.38);
	--radius: 8px;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

body.admin-bar .site-header {
	top: 32px;
}

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

a {
	color: inherit;
	text-decoration-color: rgba(66, 217, 255, 0.5);
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--color-cyan);
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.02;
}

h1 {
	font-size: clamp(3rem, 8vw, 7.6rem);
	margin-bottom: 1.1rem;
}

h2 {
	font-size: clamp(2rem, 4vw, 4rem);
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.25rem;
	margin-bottom: 0.7rem;
}

p {
	color: var(--color-muted);
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--color-text);
	color: var(--color-bg);
	clip: auto;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(9, 13, 16, 0.78);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(246, 248, 248, 0.08);
	transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(9, 13, 16, 0.93);
	border-color: var(--color-line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	font-weight: 760;
	text-decoration: none;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(66, 217, 255, 0.5);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(66, 217, 255, 0.22), rgba(125, 255, 155, 0.08)),
		#11191e;
	color: var(--color-cyan);
	box-shadow: 0 0 28px rgba(66, 217, 255, 0.18);
}

.site-brand__text {
	font-size: 1.05rem;
}

.site-nav__list,
.site-footer__links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	color: var(--color-muted);
	text-decoration: none;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
	background: rgba(246, 248, 248, 0.07);
	color: var(--color-text);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	background: rgba(246, 248, 248, 0.04);
	color: var(--color-text);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: auto;
	background: currentColor;
	content: "";
}

.menu-toggle__line::before {
	transform: translateY(-6px);
}

.menu-toggle__line::after {
	transform: translateY(4px);
}

.hero {
	position: relative;
	min-height: min(760px, calc(100vh - 34px));
	overflow: hidden;
	border-bottom: 1px solid var(--color-line);
}

.hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 13, 16, 0.96) 0%, rgba(9, 13, 16, 0.8) 32%, rgba(9, 13, 16, 0.2) 70%, rgba(9, 13, 16, 0.56) 100%),
		linear-gradient(180deg, rgba(9, 13, 16, 0) 72%, #090d10 100%),
		url("../images/photon-hero.png") center right / cover no-repeat;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: min(760px, calc(100vh - 34px));
	padding: 90px 0 112px;
}

.hero__content {
	max-width: 680px;
}

.hero__lead {
	max-width: 590px;
	margin-bottom: 2rem;
	font-size: clamp(1.1rem, 2.2vw, 1.45rem);
	color: #d5dcdd;
}

.eyebrow {
	margin-bottom: 1rem;
	color: var(--color-cyan);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero__actions,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: var(--color-text);
	color: var(--color-bg);
	font-weight: 760;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
}

.button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
	color: #071012;
	box-shadow: 0 16px 42px rgba(66, 217, 255, 0.2);
}

.button--ghost {
	border-color: var(--color-line);
	background: rgba(246, 248, 248, 0.05);
	color: var(--color-text);
}

.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .added_to_cart:hover {
	transform: translateY(-1px);
	color: #071012;
}

.button--ghost:hover {
	background: rgba(246, 248, 248, 0.1);
	color: var(--color-text);
}

.launch-panel {
	background: var(--color-bg);
}

.launch-panel__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
	gap: 40px;
	align-items: end;
	padding: 34px 0;
	border-bottom: 1px solid var(--color-line);
}

.launch-panel h2 {
	margin-bottom: 0;
	font-size: clamp(1.7rem, 3vw, 3rem);
}

.launch-panel p:last-child {
	max-width: 620px;
	margin-bottom: 0;
	color: #d5dcdd;
}

.section {
	padding: 96px 0;
}

.section--products {
	background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}

.section__header {
	max-width: 720px;
	margin-bottom: 34px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.feature-card {
	display: block;
	min-height: 260px;
	padding: 26px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(246, 248, 248, 0.06), rgba(246, 248, 248, 0.025));
	box-shadow: var(--shadow-soft);
	color: var(--color-text);
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
	border-color: rgba(66, 217, 255, 0.48);
	color: var(--color-text);
	transform: translateY(-2px);
}

.feature-card__icon {
	display: block;
	width: 44px;
	height: 44px;
	margin-bottom: 48px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, var(--color-cyan) 0 18%, transparent 19%),
		conic-gradient(from 120deg, var(--color-cyan), transparent, var(--color-green), transparent, var(--color-cyan));
	box-shadow: 0 0 36px rgba(66, 217, 255, 0.26);
}

.feature-card__icon--amber {
	background:
		radial-gradient(circle at 50% 50%, var(--color-amber) 0 18%, transparent 19%),
		conic-gradient(from 120deg, var(--color-amber), transparent, var(--color-cyan), transparent, var(--color-amber));
}

.feature-card__icon--green {
	background:
		radial-gradient(circle at 50% 50%, var(--color-green) 0 18%, transparent 19%),
		conic-gradient(from 120deg, var(--color-green), transparent, var(--color-amber), transparent, var(--color-green));
}

.feature-card p {
	margin-bottom: 0;
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-cyan);
	font-weight: 760;
	text-decoration: none;
}

.text-link:hover {
	color: var(--color-green);
}

.section--commerce {
	background: #edf2f0;
	color: #0f1517;
}

.section--commerce p {
	color: #4c5a5f;
}

.commerce-preview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: 56px;
	align-items: center;
}

.commerce-preview .eyebrow {
	color: #087a8e;
}

.commerce-preview__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(9, 13, 16, 0.12);
	border-radius: var(--radius);
	background: rgba(9, 13, 16, 0.12);
}

.commerce-preview__stats div {
	min-height: 134px;
	padding: 20px;
	background: #fff;
}

.commerce-preview__stats strong,
.commerce-preview__stats span {
	display: block;
}

.commerce-preview__stats strong {
	margin-bottom: 30px;
	font-size: 1.05rem;
}

.commerce-preview__stats span {
	color: #5f6f74;
	font-size: 0.86rem;
}

.content-shell {
	padding: 88px 0;
}

.content-shell--narrow {
	max-width: 820px;
}

.content-shell--home {
	padding: 0;
}

.entry,
.entry-card {
	max-width: 860px;
}

.entry__header,
.page-header {
	margin-bottom: 32px;
}

.entry__content > * {
	margin-bottom: 1.35rem;
}

.entry-card {
	padding: 28px 0;
	border-bottom: 1px solid var(--color-line);
}

.entry-card__title {
	font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.entry-card__title a {
	text-decoration: none;
}

.entry-card__meta {
	color: var(--color-dim);
	font-size: 0.92rem;
}

.post-list {
	display: grid;
	gap: 10px;
}

.site-footer {
	padding: 58px 0 28px;
	background: #070a0c;
	border-top: 1px solid var(--color-line);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) minmax(280px, 1fr);
	gap: 48px;
	align-items: start;
}

.site-brand--footer {
	margin-bottom: 18px;
}

.site-footer__brand p {
	max-width: 420px;
}

.site-footer__links {
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer__links a {
	color: var(--color-muted);
	text-decoration: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 34px;
	color: var(--color-dim);
	font-size: 0.9rem;
}

.commerce-main {
	background: #f3f5f3;
	color: #101719;
}

.commerce-shell {
	padding: 72px 0 96px;
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 24px;
	color: #657276;
}

.woocommerce .woocommerce-breadcrumb a {
	color: #273235;
}

.woocommerce-products-header,
.woocommerce div.product {
	margin-bottom: 34px;
}

body.woocommerce-shop > .page-title,
body.woocommerce-shop > .woocommerce-notices-wrapper,
body.woocommerce-shop > .woocommerce-result-count,
body.woocommerce-shop > .woocommerce-ordering,
body.woocommerce-shop > ul.products {
	width: min(calc(100% - 32px), var(--container));
	margin-right: auto !important;
	margin-left: auto !important;
}

body.woocommerce-shop > .page-title {
	margin-top: 72px;
	margin-bottom: 18px;
	font-size: clamp(3rem, 7vw, 6.4rem);
}

body.woocommerce-shop > .woocommerce-result-count {
	float: none;
	margin-bottom: 18px;
	color: var(--color-muted);
}

body.woocommerce-shop > .woocommerce-ordering {
	display: flex;
	justify-content: flex-end;
	float: none;
	margin-bottom: 24px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	clear: both;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 24px;
	margin: 28px 0 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	clear: none !important;
	display: flex;
	flex-direction: column;
	float: none;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 18px;
	border: 1px solid rgba(246, 248, 248, 0.12);
	border-radius: var(--radius);
	background: #161f24;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: var(--color-text);
	text-decoration: none;
}

.woocommerce ul.products li.product a img {
	width: 100% !important;
	max-width: none;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 6px;
	background: #222d33;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 12px 0 4px;
	color: var(--color-text);
	font-size: 1.15rem;
	line-height: 1.15;
}

.woocommerce ul.products li.product .price {
	display: block;
	margin-top: auto;
	color: var(--color-cyan);
	font-size: 1rem;
	font-weight: 800;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 14px;
	padding: 13px 18px 12px;
	border-color: rgba(224, 234, 237, 0.18);
	background: linear-gradient(180deg, #5f6a70 0%, #343f45 100%);
	color: #f4f8f9;
	box-shadow:
		0 0 0 1px rgba(66, 217, 255, 0.16),
		0 12px 28px rgba(66, 217, 255, 0.14);
	line-height: 1;
	text-align: center;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
	background: linear-gradient(180deg, #717d83 0%, #465158 100%);
	color: #ffffff;
	box-shadow:
		0 0 0 1px rgba(66, 217, 255, 0.3),
		0 16px 36px rgba(66, 217, 255, 0.22);
}

.woocommerce div.product .product_title {
	color: #0f1517;
	font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #087a8e;
	font-size: 1.45rem;
	font-weight: 800;
}

.woocommerce div.product div.images img {
	border-radius: var(--radius);
	background: #dce4e2;
}

.woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	color: #0f1517;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
	min-height: 46px;
	border: 1px solid rgba(9, 13, 16, 0.18);
	border-radius: 8px;
	background: #fff;
	color: #101719;
}

.woocommerce table.shop_table,
.woocommerce-checkout #payment,
.woocommerce .woocommerce-customer-details address {
	border-radius: var(--radius);
	background: #fff;
	color: #101719;
}

.woocommerce-cart .woocommerce {
	display: grid;
	gap: 24px;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
	border: 1px solid rgba(246, 248, 248, 0.1);
	border-radius: var(--radius);
	background: #151d22;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
	color: var(--color-text);
}

.woocommerce-cart .woocommerce-cart-form {
	overflow: hidden;
}

.woocommerce-cart table.cart {
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	background: transparent;
	color: var(--color-text);
}

.woocommerce-cart table.cart th {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(246, 248, 248, 0.14);
	background: #202a30;
	color: rgba(246, 248, 248, 0.72);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce-cart table.cart td {
	padding: 22px 20px;
	border-top: 1px solid rgba(246, 248, 248, 0.08);
	color: var(--color-text);
	vertical-align: middle;
}

.woocommerce-cart table.cart tbody tr:first-child td {
	border-top: 0;
}

.woocommerce-cart table.cart td.product-remove {
	width: 54px;
	text-align: center;
}

.woocommerce-cart table.cart a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(246, 248, 248, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(246, 248, 248, 0.82) !important;
	font-size: 1.15rem;
	line-height: 1;
}

.woocommerce-cart table.cart a.remove:hover {
	background: rgba(255, 91, 91, 0.14);
	color: #ffb4b4 !important;
}

.woocommerce-cart table.cart img {
	width: 84px;
	border-radius: 8px;
	background: #222d33;
}

.woocommerce-cart table.cart td.product-name a {
	color: var(--color-text);
	font-weight: 800;
}

.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal {
	color: var(--color-cyan);
	font-weight: 800;
}

.woocommerce-cart table.cart td.actions {
	padding: 20px;
	border-top: 1px solid rgba(246, 248, 248, 0.14);
	background: #11181d;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	min-width: min(280px, 100%);
	border-color: rgba(246, 248, 248, 0.16);
	background: #f6f8f8;
}

.woocommerce-cart table.cart td.actions .button {
	min-height: 46px;
}

.woocommerce-cart .cart-collaterals {
	margin-top: 24px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: min(480px, 100%);
	margin-left: auto;
	padding: 24px;
}

.woocommerce-cart .cart_totals h2 {
	margin: 0 0 16px;
	color: var(--color-text);
	font-size: 1.35rem;
}

.woocommerce-cart .cart_totals table.shop_table {
	margin: 0 0 20px;
	border: 1px solid rgba(246, 248, 248, 0.1);
	background: #10171b;
	color: var(--color-text);
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	padding: 16px;
	border-top: 1px solid rgba(246, 248, 248, 0.08);
	color: var(--color-text);
}

.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
	border-top: 0;
}

.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total th {
	color: var(--color-cyan);
	font-size: 1.08rem;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	margin: 0;
}

.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
	margin: 0;
	padding: 24px;
}

.empty-state {
	padding: 80px 0;
}

.product-hero {
	position: relative;
	overflow: hidden;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-line);
}

.product-hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 13, 16, 0.96) 0%, rgba(9, 13, 16, 0.8) 38%, rgba(9, 13, 16, 0.36) 100%),
		linear-gradient(180deg, rgba(9, 13, 16, 0) 68%, var(--color-bg) 100%),
		url("../images/photon-hero.png") center right / cover no-repeat;
}

.product-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 680px;
	padding: 90px 0 104px;
}

.product-hero__copy {
	max-width: 760px;
}

.product-hero h1 {
	max-width: 780px;
	font-size: clamp(3rem, 7vw, 6.4rem);
}

.product-hero p:not(.eyebrow) {
	max-width: 720px;
	margin-bottom: 2rem;
	color: #d5dcdd;
	font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.product-summary {
	background: #edf2f0;
	color: #0f1517;
}

.product-summary p {
	color: #4c5a5f;
}

.product-summary .eyebrow {
	color: #087a8e;
}

.product-summary__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
	gap: 52px;
	align-items: end;
	padding: 68px 0;
}

.product-summary h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 4.4rem);
}

.photon-features {
	background:
		linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
}

.feature-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.feature-column {
	padding: 26px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(246, 248, 248, 0.06), rgba(246, 248, 248, 0.025));
	box-shadow: var(--shadow-soft);
}

.feature-column ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-column li {
	position: relative;
	padding-left: 22px;
	color: var(--color-muted);
}

.feature-column li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-cyan);
	box-shadow: 0 0 18px rgba(66, 217, 255, 0.46);
	content: "";
}

@media (max-width: 900px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.menu-toggle {
		display: grid;
		place-items: center;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		padding: 12px;
		border: 1px solid var(--color-line);
		border-radius: var(--radius);
		background: rgba(9, 13, 16, 0.98);
		box-shadow: var(--shadow-soft);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 4px;
	}

	.site-nav a {
		width: 100%;
		justify-content: flex-start;
	}

	.hero {
		min-height: 680px;
	}

	.hero__media {
		background:
			linear-gradient(180deg, rgba(9, 13, 16, 0.72) 0%, rgba(9, 13, 16, 0.95) 68%, #090d10 100%),
			url("../images/photon-hero.png") center top / cover no-repeat;
	}

	.hero__inner {
		align-items: flex-end;
		min-height: 680px;
		padding: 260px 0 64px;
	}

	.launch-panel__inner,
	.commerce-preview,
	.site-footer__inner,
	.product-summary__grid {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.feature-columns {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 72px 0;
	}

	.commerce-preview__stats {
		grid-template-columns: 1fr;
	}

	.commerce-preview__stats div {
		min-height: 106px;
	}

	.site-footer__links {
		justify-content: flex-start;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}

@media (min-width: 701px) and (max-width: 1080px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(240px, 1fr));
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header {
		top: 0;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.site-brand__text {
		font-size: 1rem;
	}

	.hero {
		min-height: 640px;
	}

	.hero__inner {
		min-height: 640px;
		padding-top: 220px;
	}

	.product-hero__inner {
		min-height: 620px;
		padding: 210px 0 62px;
	}

	.product-hero__media {
		background:
			linear-gradient(180deg, rgba(9, 13, 16, 0.68) 0%, rgba(9, 13, 16, 0.96) 64%, var(--color-bg) 100%),
			url("../images/photon-hero.png") center top / cover no-repeat;
	}

	.hero__actions {
		display: grid;
	}

	.button,
	.wp-block-button__link,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	.woocommerce .added_to_cart {
		width: 100%;
	}
}
