/*!
  GPT Token — premium landing page design layer
  Loads AFTER style.css / theme.css and overrides them for the dark,
  glassmorphism-driven look. Do not edit style.css / theme.css for content
  changes — add new rules here instead.
*/

/* ============================================================
   00. Design tokens
   ============================================================ */
:root {
	--gpt-bg: #080808;
	--gpt-bg-alt: #0f0f0f;
	--gpt-bg-alt-2: #131313;
	--gpt-line: rgba(255, 255, 255, 0.08);
	--gpt-line-soft: rgba(255, 255, 255, 0.05);
	--gpt-text: #ffffff;
	--gpt-text-muted: #a6a6a6;
	--gpt-text-dim: #707070;
	--gpt-glass: rgba(255, 255, 255, 0.035);
	--gpt-glass-strong: rgba(255, 255, 255, 0.055);
	--gpt-accent: #ffffff;
	--gpt-accent-2: #ffffff;
	--gpt-accent-grad: linear-gradient(135deg, #ffffff 0%, #cfcfcf 100%);
	--gpt-radius: 16px;
}

/* ============================================================
   01. Base / global
   ============================================================ */
body.gpt-dark {
	background: var(--gpt-bg);
	color: var(--gpt-text-muted);
}
.gpt-dark .nk-wrap { background: var(--gpt-bg); overflow: hidden; }
.gpt-dark p { color: var(--gpt-text-muted); }
.gpt-dark .title,
.gpt-dark h1, .gpt-dark h2, .gpt-dark h3, .gpt-dark h4, .gpt-dark h5, .gpt-dark h6 {
	color: var(--gpt-text);
}
.gpt-dark .text-primary-alt { color: var(--gpt-accent-2) !important; }
.gpt-dark ::selection { background: var(--gpt-accent); color: #fff; }
.gpt-dark section.section { background: transparent; }
.gpt-dark p.gpt-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gpt-accent-2);
	margin-bottom: 14px;
}
.gpt-dark .section-head p { color: var(--gpt-text-muted); }

/* ============================================================
   02. Header / navigation
   ============================================================ */
.gpt-dark .header-main {
	background: rgba(5, 7, 13, 0.55);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: background .3s ease, border-color .3s ease;
}
.gpt-dark #header.is-shrink .header-main {
	background: rgba(5, 7, 13, 0.86);
	border-bottom-color: var(--gpt-line);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.gpt-dark .header-brand-name {
	font-family: 'Space Grotesk', 'Roboto', Arial, sans-serif;
	color: var(--gpt-text);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.01em;
	margin-left: 10px;
}
.gpt-dark .logo-link { display: flex; align-items: center; }
.gpt-dark .menu-link { color: var(--gpt-text-muted) !important; font-size: 14.5px; }
.gpt-dark .menu-link:hover, .gpt-dark .menu-item.current .menu-link { color: var(--gpt-text) !important; }
.gpt-dark .header-navbar::before { background: #0a0e18; }
.gpt-dark .header-navbar-overlay { background: rgba(0, 0, 0, 0.6); }
.gpt-dark .navbar-toggle .toggle-line span,
.gpt-dark .navbar-toggle .toggle-line:before,
.gpt-dark .navbar-toggle .toggle-line:after { background: var(--gpt-text); }
.gpt-header-actions { display: flex; align-items: center; gap: 10px; margin-left: 18px; }
@media (min-width: 992px) {
	.gpt-dark .menu { gap: 4px; }
	.gpt-dark .menu-item > .menu-link { padding: 8px 12px; }
}
@media (max-width: 991px) {
	.gpt-header-actions { margin: 18px 0 0; padding: 0 25px 20px; flex-direction: column; align-items: stretch; }
	.gpt-header-actions .btn { width: 100%; text-align: center; }
}

/* ============================================================
   03. Hero
   ============================================================ */
.gpt-hero {
	position: relative;
	background: radial-gradient(120% 100% at 85% 0%, #141a30 0%, var(--gpt-bg) 55%);
	overflow: hidden;
	padding-top: 170px;
	padding-bottom: 90px;
}
.gpt-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--gpt-line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--gpt-line-soft) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
	mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 75%);
	pointer-events: none;
}
.gpt-hero-title {
	font-size: 52px;
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gpt-text);
	margin-bottom: 22px;
}
.gpt-hero-title .gpt-grad-text {
	background: var(--gpt-accent-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.gpt-hero-sub {
	font-size: 18px;
	line-height: 1.7;
	color: var(--gpt-text-muted);
	max-width: 560px;
	margin-bottom: 34px;
}
.gpt-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.gpt-dark .btn-ghost {
	background: transparent !important;
	border: 1.5px solid var(--gpt-line) !important;
	color: var(--gpt-text) !important;
}
.gpt-dark .btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35) !important; transform: translateY(-2px); }

/* -- neural / node animation canvas -- */
.gpt-hero-visual {
	position: relative;
	height: 460px;
	border-radius: 24px;
	border: 1px solid var(--gpt-line);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	overflow: hidden;
}
.gpt-hero-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.gpt-hero-visual .gpt-token-mark {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 84px; height: 84px;
	filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.35));
}
@media (max-width: 991px) {
	.gpt-hero { padding-top: 140px; }
	.gpt-hero-title { font-size: 36px; }
	.gpt-hero-visual { height: 300px; margin-top: 40px; }
}
@media (max-width: 575px) {
	.gpt-hero-title { font-size: 30px; }
	.gpt-hero-sub { font-size: 16px; }
}

/* ============================================================
   04. Stats bar
   ============================================================ */
.gpt-stats {
	position: relative;
	z-index: 2;
	margin-top: -46px;
	margin-bottom: 40px;
}
.gpt-stats-inner {
	display: flex;
	flex-wrap: wrap;
	background: var(--gpt-glass-strong);
	border: 1px solid var(--gpt-line);
	border-radius: var(--gpt-radius);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.gpt-stat {
	flex: 1 1 20%;
	text-align: center;
	padding: 26px 18px;
	border-right: 1px solid var(--gpt-line);
}
.gpt-stat:last-child { border-right: none; }
.gpt-stat-value { font-size: 22px; font-weight: 700; color: var(--gpt-text); letter-spacing: -0.01em; }
.gpt-stat-label { font-size: 12.5px; color: var(--gpt-text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
@media (max-width: 767px) {
	.gpt-stat { flex: 1 1 50%; border-bottom: 1px solid var(--gpt-line); }
	.gpt-stat:nth-child(2n) { border-right: none; }
}

/* ============================================================
   05. Glass cards (shared by About / Utilities / Security)
   ============================================================ */
.gpt-card {
	background: var(--gpt-glass);
	border: 1px solid var(--gpt-line);
	border-radius: var(--gpt-radius);
	padding: 30px 26px;
	height: 100%;
	transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.gpt-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.18);
	background: var(--gpt-glass-strong);
}
.gpt-card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.gpt-card h4, .gpt-card h5 { color: var(--gpt-text); margin-bottom: 10px; }
.gpt-card p { margin-bottom: 0; font-size: 14.5px; }

/* ============================================================
   06. Problem / Solution
   ============================================================ */
.gpt-ps-col {
	background: var(--gpt-glass);
	border: 1px solid var(--gpt-line);
	border-radius: var(--gpt-radius);
	padding: 38px 34px;
	height: 100%;
}
.gpt-ps-col h3 { color: var(--gpt-text); font-size: 21px; margin-bottom: 22px; }
.gpt-ps-col ul { list-style: none; margin: 0; padding: 0; }
.gpt-ps-col li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid var(--gpt-line-soft);
	font-size: 15px;
	color: var(--gpt-text-muted);
}
.gpt-ps-col li:first-child { border-top: none; }
.gpt-ps-col.is-problem .gpt-ps-mark { color: var(--gpt-text-dim); }
.gpt-ps-col.is-solution .gpt-ps-mark { color: var(--gpt-text); }
.gpt-ps-mark { font-weight: 700; flex-shrink: 0; }

/* ============================================================
   07. Utilities grid
   ============================================================ */
.gpt-util-card { text-align: left; }

/* ============================================================
   08. Ecosystem diagram
   ============================================================ */
.gpt-ecosystem {
	display: grid;
	grid-template-columns: 1fr 220px 1fr;
	align-items: center;
	gap: 26px;
	max-width: 980px;
	margin: 0 auto;
}
.gpt-eco-col { display: flex; flex-direction: column; gap: 18px; }
.gpt-eco-node {
	position: relative;
	background: var(--gpt-glass);
	border: 1px solid var(--gpt-line);
	border-radius: 12px;
	padding: 16px 18px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--gpt-text);
	display: flex;
	align-items: center;
	gap: 10px;
}
.gpt-eco-node span.dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--gpt-accent-grad);
	flex-shrink: 0;
}
.gpt-eco-col.left .gpt-eco-node:before,
.gpt-eco-col.right .gpt-eco-node:before {
	content: '';
	position: absolute;
	top: 50%;
	height: 1px;
	width: 26px;
	background: linear-gradient(90deg, var(--gpt-accent), transparent);
}
.gpt-eco-col.left .gpt-eco-node:before { right: -26px; }
.gpt-eco-col.right .gpt-eco-node:before { left: -26px; background: linear-gradient(270deg, var(--gpt-accent), transparent); }
.gpt-eco-hub {
	position: relative;
	width: 190px; height: 190px;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), rgba(8, 8, 8, 0.4));
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
	text-align: center;
}
.gpt-eco-hub svg { width: 46px; height: 46px; margin-bottom: 8px; }
.gpt-eco-hub strong { color: var(--gpt-text); font-size: 15px; letter-spacing: 0.02em; }
@media (max-width: 991px) {
	.gpt-ecosystem { grid-template-columns: 1fr; }
	.gpt-eco-hub { order: -1; margin-bottom: 8px; }
	.gpt-eco-col.left .gpt-eco-node:before, .gpt-eco-col.right .gpt-eco-node:before { display: none; }
	.gpt-eco-col { flex-direction: row; flex-wrap: wrap; }
	.gpt-eco-node { flex: 1 1 calc(50% - 9px); }
}
@media (max-width: 480px) {
	.gpt-eco-node { flex: 1 1 100%; }
}

/* ============================================================
   09. How it works
   ============================================================ */
.gpt-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: gpt-step;
}
.gpt-step { position: relative; background: var(--gpt-glass); border: 1px solid var(--gpt-line); border-radius: var(--gpt-radius); padding: 30px 24px; }
.gpt-step-num {
	font-size: 42px;
	font-weight: 800;
	background: var(--gpt-accent-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 14px;
}
.gpt-step-icon { width: 36px; height: 36px; margin-bottom: 14px; }
.gpt-step h5 { color: var(--gpt-text); margin-bottom: 8px; }
.gpt-step p { font-size: 14px; margin-bottom: 0; }
@media (max-width: 991px) {
	.gpt-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.gpt-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   10. Tokenomics
   ============================================================ */
.gpt-tokenomics { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: center; }
.gpt-donut-wrap { position: relative; width: 260px; height: 260px; flex-shrink: 0; }
.gpt-donut {
	width: 100%; height: 100%; border-radius: 50%;
	/* Edit percentages here — stops must total 100% */
	background: conic-gradient(
		#ffffff 0% 30%,
		#d9d9d9 30% 40%,
		#b3b3b3 40% 65%,
		#8a8a8a 65% 80%,
		#666666 80% 90%,
		#464646 90% 95%,
		#2b2b2b 95% 100%
	);
}
.gpt-donut-hole {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 66%; height: 66%; border-radius: 50%;
	background: var(--gpt-bg-alt);
	border: 1px solid var(--gpt-line);
	display: flex; align-items: center; justify-content: center; flex-direction: column;
	text-align: center;
}
.gpt-donut-hole strong { color: var(--gpt-text); font-size: 20px; }
.gpt-donut-hole span { font-size: 12px; color: var(--gpt-text-dim); text-transform: uppercase; letter-spacing: .06em; }
.gpt-legend { list-style: none; margin: 0; padding: 0; min-width: 280px; }
.gpt-legend li { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--gpt-line-soft); font-size: 14.5px; color: var(--gpt-text-muted); }
.gpt-legend li:first-child { border-top: none; }
.gpt-legend .swatch { width: 11px; height: 11px; border-radius: 3px; margin-right: 10px; flex-shrink: 0; }
.gpt-legend .label { display: flex; align-items: center; }
.gpt-legend .value { color: var(--gpt-text); font-weight: 700; }
.gpt-token-info { margin-top: 46px; }
.gpt-token-info dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; }
.gpt-token-info dt { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--gpt-text-dim); margin-bottom: 6px; }
.gpt-token-info dd { color: var(--gpt-text); font-weight: 600; font-size: 15px; margin: 0; }
@media (max-width: 767px) {
	.gpt-token-info dl { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   11. Roadmap
   ============================================================ */
.gpt-roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gpt-phase { background: var(--gpt-glass); border: 1px solid var(--gpt-line); border-radius: var(--gpt-radius); padding: 26px 24px; }
.gpt-phase-tag { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gpt-text); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 20px; padding: 4px 12px; margin-bottom: 14px; }
.gpt-phase h5 { color: var(--gpt-text); margin-bottom: 14px; font-size: 17px; }
.gpt-phase ul { list-style: none; margin: 0; padding: 0; }
.gpt-phase li { font-size: 14px; padding: 6px 0 6px 20px; position: relative; color: var(--gpt-text-muted); }
.gpt-phase li:before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--gpt-text-dim); }
@media (max-width: 991px) {
	.gpt-roadmap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.gpt-roadmap { grid-template-columns: 1fr; }
}

/* ============================================================
   12. Security & transparency
   ============================================================ */
.gpt-sec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gpt-sec-item { display: flex; gap: 16px; background: var(--gpt-glass); border: 1px solid var(--gpt-line); border-radius: 14px; padding: 20px 22px; }
.gpt-sec-item svg { width: 30px; height: 30px; flex-shrink: 0; }
.gpt-sec-item h6 { color: var(--gpt-text); margin-bottom: 4px; font-size: 15px; }
.gpt-sec-item p { font-size: 13.5px; margin-bottom: 0; }
.gpt-sec-note {
	margin-top: 26px;
	border: 1px dashed var(--gpt-line);
	border-radius: 12px;
	padding: 16px 20px;
	font-size: 14px;
	color: var(--gpt-accent-2);
	text-align: center;
}
@media (max-width: 767px) {
	.gpt-sec-list { grid-template-columns: 1fr; }
}

/* ============================================================
   13. Community
   ============================================================ */
.gpt-community { text-align: center; max-width: 680px; margin: 0 auto; }
.gpt-community .btn-grp { justify-content: center; }

/* ============================================================
   14. FAQ (self-contained accordion, no external JS dependency)
   ============================================================ */
.gpt-faq { max-width: 820px; margin: 0 auto; }
.gpt-faq-item { border: 1px solid var(--gpt-line); border-radius: 12px; margin-bottom: 14px; background: var(--gpt-glass); overflow: hidden; }
.gpt-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: var(--gpt-text);
	cursor: pointer;
}
.gpt-faq-q .gpt-faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.gpt-faq-q .gpt-faq-icon:before, .gpt-faq-q .gpt-faq-icon:after {
	content: ''; position: absolute; top: 50%; left: 50%;
	background: var(--gpt-text-muted);
	transition: transform .25s ease;
}
.gpt-faq-q .gpt-faq-icon:before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.gpt-faq-q .gpt-faq-icon:after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.gpt-faq-item.is-open .gpt-faq-icon:after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.gpt-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.gpt-faq-a p { padding: 0 24px 22px; font-size: 14.5px; margin: 0; }


/* ============================================================
   15. Risk disclosure banner
   ============================================================ */
.gpt-risk {
	border-top: 1px solid var(--gpt-line);
	border-bottom: 1px solid var(--gpt-line);
	background: var(--gpt-bg-alt);
	padding: 26px 0;
}
.gpt-risk p {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	font-size: 13px;
	line-height: 1.7;
	color: var(--gpt-text-dim);
}

/* ============================================================
   16. Footer
   ============================================================ */
.gpt-dark .nk-footer { background: var(--gpt-bg); }
.gpt-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 30px; }
.gpt-footer-brand p { font-size: 13.5px; max-width: 260px; }
.gpt-footer-col h6 { color: var(--gpt-text); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.gpt-footer-col ul { list-style: none; margin: 0; padding: 0; }
.gpt-footer-col li { margin-bottom: 10px; }
.gpt-footer-col a { color: var(--gpt-text-muted); font-size: 14px; transition: color .2s ease; }
.gpt-footer-col a:hover { color: var(--gpt-accent-2); }
.gpt-social { display: flex; gap: 10px; margin-top: 4px; }
.gpt-social a {
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid var(--gpt-line);
	display: flex; align-items: center; justify-content: center;
	color: var(--gpt-text-muted) !important;
	font-size: 14px;
}
.gpt-social a:hover { border-color: var(--gpt-accent-2); color: var(--gpt-accent-2) !important; }
.gpt-footer-bottom {
	border-top: 1px solid var(--gpt-line);
	margin-top: 40px;
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
	color: var(--gpt-text-dim);
}
@media (max-width: 991px) {
	.gpt-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.gpt-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   17. Section rhythm / dividers shared across new sections
   ============================================================ */
.gpt-section-alt { background: var(--gpt-bg-alt) !important; border-top: 1px solid var(--gpt-line); border-bottom: 1px solid var(--gpt-line); }

/* ============================================================
   18. Live pre-sale panel — figures come from the TokenLite
   admin panel (Tks project), not hardcoded marketing claims.
   Update these values in TokenLite > ICO Stage whenever the
   active stage changes, and mirror them here.
   ============================================================ */
.gpt-presale {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px 28px;
	margin-top: 34px;
	padding: 22px 26px;
	background: var(--gpt-glass-strong);
	border: 1px solid var(--gpt-line);
	border-radius: var(--gpt-radius);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.gpt-presale-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gpt-text);
}
.gpt-presale-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #ffffff; box-shadow: 0 0 0 rgba(255, 255, 255, 0.6); animation: gpt-pulse 1.8s infinite; }
@keyframes gpt-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
	70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.gpt-presale-price { font-size: 22px; font-weight: 700; color: var(--gpt-text); margin-top: 4px; }
.gpt-presale-price small { font-size: 13px; font-weight: 500; color: var(--gpt-text-dim); }
.gpt-presale-meta { font-size: 12px; color: var(--gpt-text-dim); margin-top: 2px; }
.gpt-presale-countdown { display: flex; flex-direction: column; align-items: center; justify-self: end; }
.gpt-presale-countdown .countdown-text { color: var(--gpt-text-dim); }
.gpt-presale-cta {
	grid-column: 1 / -1;
	margin-top: 2px;
	padding-top: 18px;
	border-top: 1px solid var(--gpt-line);
}
.gpt-presale-cta .btn { width: 100%; }
@media (max-width: 575px) {
	.gpt-presale { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.gpt-presale-countdown { justify-self: center; }
}
@media (prefers-reduced-motion: reduce) {
	.gpt-presale-live .dot { animation: none; }
}
