* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	letter-spacing: 0;
}

:root {
	--bg: #050609;
	--bg-2: #080a12;
	--surface: rgba(13, 16, 27, 0.88);
	--surface-2: rgba(18, 22, 36, 0.92);
	--surface-3: rgba(255, 255, 255, 0.055);
	--line: rgba(180, 198, 255, 0.14);
	--line-strong: rgba(86, 222, 255, 0.34);
	--text: #f8fbff;
	--muted: #a7afc4;
	--muted-2: #747e96;
	--cyan: #2ed9ff;
	--violet: #a94bff;
	--blue: #4c72ff;
	--green: #55f0a0;
	--amber: #ffc857;
	--red: #ff5f7a;
	--shadow: rgba(0, 0, 0, 0.42);
}

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		linear-gradient(180deg, rgba(46, 217, 255, 0.12), transparent 260px),
		linear-gradient(135deg, rgba(169, 75, 255, 0.14), transparent 420px),
		linear-gradient(90deg, #050609, #080a12 48%, #050609);
	color: var(--text);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(180, 198, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(180, 198, 255, 0.08) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 78%);
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(120deg, rgba(46, 217, 255, 0.07), transparent 26%, rgba(169, 75, 255, 0.08) 62%, transparent),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0, rgba(255, 255, 255, 0.026) 1px, transparent 1px, transparent 5px);
	opacity: 0.75;
	pointer-events: none;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
textarea {
	font: inherit;
}

.site-nav,
.console-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 6%;
	border-bottom: 1px solid var(--line);
	background: rgba(5, 6, 9, 0.82);
	backdrop-filter: blur(20px);
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.brand-icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	flex: 0 0 46px;
}

.brand-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 0 16px rgba(46, 217, 255, 0.26));
}

.brand div:last-child {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.brand span {
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.brand small {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.site-links,
.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-links {
	gap: 28px;
}

.site-links a {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.site-links a:hover {
	color: var(--text);
}

.button,
.nav-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--text);
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button.primary,
.nav-button-primary {
	border-color: rgba(46, 217, 255, 0.44);
	background:
		linear-gradient(135deg, rgba(169, 75, 255, 0.95), rgba(46, 217, 255, 0.92)),
		#2ed9ff;
	color: #ffffff;
	box-shadow: 0 14px 40px rgba(46, 217, 255, 0.22);
}

.button.secondary {
	background: rgba(255, 255, 255, 0.045);
}

.button:hover,
.nav-button:hover {
	transform: translateY(-2px);
	border-color: var(--line-strong);
	background: rgba(255, 255, 255, 0.075);
}

.landing-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	gap: 58px;
	align-items: center;
	min-height: calc(100vh - 76px);
	padding: 56px 6% 42px;
	border-bottom: 1px solid var(--line);
}

.landing-hero::after {
	content: "";
	position: absolute;
	left: 6%;
	right: 6%;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(46, 217, 255, 0.7), rgba(169, 75, 255, 0.55), transparent);
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.eyebrow {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 11px;
	margin-bottom: 22px;
	border: 1px solid rgba(46, 217, 255, 0.34);
	border-radius: 8px;
	background: rgba(46, 217, 255, 0.08);
	color: var(--cyan);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.pulse {
	width: 8px;
	height: 8px;
	background: var(--green);
	box-shadow: 0 0 18px rgba(85, 240, 160, 0.75);
}

.hero-logo-mark {
	width: 148px;
	height: auto;
	display: block;
	margin: 0 0 18px -10px;
	filter: drop-shadow(0 20px 32px rgba(46, 217, 255, 0.22));
}

.landing-hero h1 {
	max-width: 760px;
	font-size: 80px;
	line-height: 0.94;
	font-weight: 950;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.landing-hero p {
	max-width: 690px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 760px;
	margin-top: 34px;
}

.hero-proof div,
.feature-card,
.setup-step,
details,
.command-panel,
.console-card,
.sidebar,
.panel,
.cta-section {
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
		var(--surface);
	box-shadow: 0 22px 60px var(--shadow);
}

.hero-proof div {
	padding: 16px;
}

.hero-proof strong {
	display: block;
	font-size: 17px;
	font-weight: 950;
	margin-bottom: 5px;
}

.hero-proof span {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

.hero-visual {
	position: relative;
	min-height: 520px;
	display: grid;
	place-items: center;
}

.console-preview {
	width: 100%;
	max-width: 560px;
	border: 1px solid rgba(46, 217, 255, 0.2);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(12, 16, 28, 0.96), rgba(8, 10, 18, 0.94)),
		var(--surface);
	box-shadow: 0 28px 85px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	padding: 20px;
}

.security-console {
	position: relative;
	overflow: hidden;
}

.security-console::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(46, 217, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46, 217, 255, 0.07) 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.45;
	pointer-events: none;
}

.security-console > * {
	position: relative;
	z-index: 1;
}

.terminal-bar {
	display: flex;
	gap: 7px;
	padding-bottom: 18px;
}

.terminal-bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
}

.terminal-bar span:nth-child(2) {
	background: var(--amber);
}

.terminal-bar span:nth-child(3) {
	background: var(--green);
}

.preview-header,
.command-panel-header,
.panel-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.preview-header {
	margin-bottom: 18px;
}

.preview-header h3,
.command-panel-header h3 {
	font-size: 22px;
	line-height: 1.15;
}

.preview-header p,
.command-panel-header p {
	color: var(--muted);
	font-size: 14px;
	margin-top: 5px;
	line-height: 1.5;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(85, 240, 160, 0.36);
	border-radius: 6px;
	background: rgba(85, 240, 160, 0.1);
	color: #a9ffd0;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

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

.preview-grid div {
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
}

.preview-grid span {
	display: block;
	color: var(--muted-2);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.preview-grid strong {
	font-size: 25px;
	line-height: 1;
}

.event-feed {
	margin-top: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.22);
}

.event {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.event:not(:last-child) {
	border-bottom: 1px solid var(--line);
}

.event span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.event.success span {
	background: var(--green);
}

.event.warning span {
	background: var(--amber);
}

.event.danger span {
	background: var(--red);
}

.event b {
	color: var(--text);
}

.floating-tag {
	position: absolute;
	z-index: 3;
	padding: 10px 12px;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background: rgba(5, 6, 9, 0.82);
	backdrop-filter: blur(16px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.tag-one {
	top: 64px;
	right: 6px;
}

.tag-two {
	left: 4px;
	bottom: 14px;
}

.trusted-strip {
	padding: 22px 6% 54px;
	text-align: center;
}

.trusted-strip p {
	color: var(--muted-2);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.trusted-strip div {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.trusted-strip span,
.command-panel-header span {
	padding: 9px 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--muted);
	font-size: 13px;
	font-weight: 850;
}

.landing-section {
	padding: 82px 6%;
}

.section-heading {
	max-width: 780px;
	margin: 0 auto 38px;
	text-align: center;
}

.section-heading > span,
.cta-section span {
	display: inline-flex;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-heading h2,
.cta-section h2 {
	font-size: 44px;
	line-height: 1.04;
	font-weight: 950;
	margin-bottom: 14px;
}

.section-heading p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.7;
}

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

.feature-card {
	min-height: 240px;
	padding: 24px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover,
.setup-step:hover {
	transform: translateY(-4px);
	border-color: rgba(46, 217, 255, 0.34);
}

.feature-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	margin-bottom: 20px;
	border: 1px solid rgba(46, 217, 255, 0.28);
	border-radius: 8px;
	background: rgba(46, 217, 255, 0.08);
	color: var(--cyan);
	font-size: 13px;
	font-weight: 950;
}

.feature-card h3,
.setup-step h3 {
	font-size: 21px;
	margin-bottom: 10px;
}

.feature-card p,
.setup-step p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.command-section {
	background: linear-gradient(180deg, transparent, rgba(46, 217, 255, 0.035), transparent);
}

.command-panel {
	max-width: 980px;
	margin: 0 auto;
	overflow: hidden;
}

.command-panel-header {
	padding: 22px;
	border-bottom: 1px solid var(--line);
}

.command-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.command-item {
	padding: 22px;
	border-bottom: 1px solid var(--line);
}

.command-item:nth-child(odd) {
	border-right: 1px solid var(--line);
}

.command-panel code,
.setup-step code,
.feature-card code {
	display: inline-block;
	padding: 5px 7px;
	border: 1px solid rgba(46, 217, 255, 0.22);
	border-radius: 6px;
	background: rgba(46, 217, 255, 0.08);
	color: var(--cyan);
	font-weight: 850;
}

.command-item code {
	margin-bottom: 10px;
}

.command-item p {
	color: var(--muted);
	line-height: 1.6;
	font-size: 14px;
}

.setup-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.setup-step {
	min-height: 220px;
	padding: 22px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.setup-step > span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border: 1px solid rgba(46, 217, 255, 0.32);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(169, 75, 255, 0.82), rgba(46, 217, 255, 0.82));
	font-weight: 950;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	gap: 10px;
}

details {
	padding: 18px 20px;
}

summary {
	cursor: pointer;
	list-style: none;
	font-weight: 900;
}

summary::-webkit-details-marker {
	display: none;
}

details p {
	color: var(--muted);
	line-height: 1.7;
	margin-top: 12px;
}

.cta-section {
	margin: 42px 6% 84px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	background:
		linear-gradient(110deg, rgba(169, 75, 255, 0.18), rgba(46, 217, 255, 0.13)),
		var(--surface-2);
}

.cta-section h2 {
	margin-bottom: 0;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 6%;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
}

.console-page {
	min-height: calc(100vh - 76px);
	display: grid;
	place-items: center;
	padding: 42px 6%;
}

.console-hero {
	width: min(820px, 100%);
}

.console-card {
	position: relative;
	overflow: hidden;
	padding: 36px;
}

.console-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(46, 217, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46, 217, 255, 0.07) 1px, transparent 1px);
	background-size: 38px 38px;
	opacity: 0.52;
	pointer-events: none;
}

.console-card > * {
	position: relative;
	z-index: 1;
}

.brand-row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.brand-row .brand-icon {
	width: 72px;
	height: 72px;
	flex-basis: 72px;
}

.brand-row h1 {
	font-size: 46px;
	line-height: 1;
	font-weight: 950;
	margin-bottom: 8px;
}

.brand-row p {
	max-width: 620px;
	color: var(--muted);
	line-height: 1.7;
	font-size: 16px;
}

.console-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.dashboard-layout {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: 20px;
	padding: 26px 6%;
}

.sidebar {
	position: sticky;
	top: 102px;
	align-self: start;
	min-height: calc(100vh - 130px);
	padding: 22px;
}

.sidebar h2 {
	font-size: 20px;
	margin-bottom: 16px;
}

.guild-list {
	display: grid;
	gap: 8px;
	max-height: calc(100vh - 220px);
	overflow-y: auto;
	padding-right: 4px;
}

.guild-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	color: var(--muted);
	transition: background 0.18s ease, border-color 0.18s ease;
}

.guild-item:hover,
.guild-item.active {
	border-color: rgba(46, 217, 255, 0.28);
	background: rgba(46, 217, 255, 0.07);
	color: var(--text);
}

.guild-avatar {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
	font-weight: 950;
}

.guild-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.guild-avatar span {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.guild-info {
	min-width: 0;
	display: grid;
	gap: 4px;
}

.guild-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--text);
	font-size: 15px;
	font-weight: 850;
}

.guild-info small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.guild-missing {
	color: var(--amber) !important;
}

.dashboard-main {
	min-width: 0;
}

.dashboard-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.dashboard-notice span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 28px;
	padding: 0 9px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.dashboard-notice p {
	color: var(--text);
	font-size: 14px;
	line-height: 1.45;
}

.dashboard-notice.success {
	border-color: rgba(85, 240, 160, 0.32);
	background: linear-gradient(90deg, rgba(85, 240, 160, 0.12), rgba(255, 255, 255, 0.04)), var(--surface);
}

.dashboard-notice.success span {
	background: rgba(85, 240, 160, 0.13);
	color: #a9ffd0;
}

.dashboard-notice.warning {
	border-color: rgba(255, 200, 87, 0.34);
	background: linear-gradient(90deg, rgba(255, 200, 87, 0.12), rgba(255, 255, 255, 0.04)), var(--surface);
}

.dashboard-notice.warning span {
	background: rgba(255, 200, 87, 0.13);
	color: #ffe2a0;
}

.dashboard-notice.error {
	border-color: rgba(255, 95, 122, 0.34);
	background: linear-gradient(90deg, rgba(255, 95, 122, 0.12), rgba(255, 255, 255, 0.04)), var(--surface);
}

.dashboard-notice.error span {
	background: rgba(255, 95, 122, 0.13);
	color: #ffbdc9;
}

.panel {
	min-height: 520px;
	padding: 28px;
}

.panel h1 {
	font-size: 42px;
	line-height: 1.05;
	margin-bottom: 8px;
}

.muted,
.panel p {
	color: var(--muted);
	line-height: 1.7;
}

.settings-form {
	display: grid;
	gap: 22px;
	margin-top: 24px;
}

.role-picker-section {
	display: grid;
	gap: 12px;
}

.role-picker-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.role-picker-heading span {
	display: block;
	font-weight: 950;
	margin-bottom: 5px;
}

.role-picker-heading small,
.settings-form small {
	color: var(--muted);
	line-height: 1.6;
}

.role-picker-heading strong {
	min-width: max-content;
	padding: 7px 9px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--cyan);
	font-size: 12px;
	text-transform: uppercase;
}

.role-picker-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	max-height: 360px;
	overflow-y: auto;
	padding-right: 4px;
}

.role-option {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.role-option:hover {
	border-color: rgba(46, 217, 255, 0.3);
	background: rgba(46, 217, 255, 0.055);
	transform: translateY(-1px);
}

.role-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.role-check {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.22);
	position: relative;
}

.role-check::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.16s ease;
}

.role-option input:checked + .role-check {
	border-color: rgba(46, 217, 255, 0.72);
	background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.role-option input:checked + .role-check::after {
	transform: rotate(45deg) scale(1);
}

.role-option:has(input:checked) {
	border-color: rgba(46, 217, 255, 0.44);
	background: rgba(46, 217, 255, 0.08);
}

.role-swatch {
	width: 12px;
	height: 32px;
	border-radius: 999px;
	flex: 0 0 12px;
	box-shadow: 0 0 16px rgba(46, 217, 255, 0.12);
}

.role-label {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.role-label strong {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
}

.role-label small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--muted);
	font-size: 11px;
}

.settings-form .button {
	width: fit-content;
}

.selected-role-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.selected-role-summary h2 {
	font-size: 17px;
	margin-bottom: 10px;
}

.role-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.role-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	color: var(--text);
	font-size: 13px;
	font-weight: 800;
}

.role-chip i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex: 0 0 9px;
}

.empty-panel {
	display: grid;
	place-items: center;
	text-align: center;
}

.missing-bot-card {
	max-width: 720px;
	display: grid;
	justify-items: center;
	gap: 16px;
}

.missing-icon {
	width: 66px;
	height: 66px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(46, 217, 255, 0.36);
	border-radius: 8px;
	background: linear-gradient(135deg, var(--violet), var(--cyan));
	font-size: 28px;
	font-weight: 950;
}

.missing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 8px;
}

@media (max-width: 1120px) {
	.landing-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-visual {
		min-height: auto;
	}

	.setup-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.site-nav,
	.console-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.dashboard-layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
		min-height: auto;
	}

	.guild-list {
		max-height: 330px;
	}

	.panel-header {
		flex-direction: column;
	}
}

@media (max-width: 820px) {
	.site-links {
		display: none;
	}

	.landing-hero {
		padding-top: 54px;
	}

	.landing-hero h1 {
		font-size: 54px;
	}

	.section-heading h2,
	.cta-section h2 {
		font-size: 34px;
	}

	.hero-proof,
	.feature-grid,
	.command-list,
	.setup-grid,
	.role-picker-grid,
	.selected-role-summary {
		grid-template-columns: 1fr;
	}

	.command-item:nth-child(odd) {
		border-right: none;
	}

	.cta-section,
	.footer,
	.dashboard-notice,
	.role-picker-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.floating-tag {
		display: none;
	}
}

@media (max-width: 560px) {
	.site-nav,
	.console-nav,
	.landing-hero,
	.landing-section,
	.console-page,
	.dashboard-layout {
		padding-left: 18px;
		padding-right: 18px;
	}

	.nav-actions,
	.hero-actions,
	.console-actions,
	.missing-actions {
		width: 100%;
		flex-direction: column;
	}

	.button,
	.nav-button {
		width: 100%;
	}

	.hero-logo-mark {
		width: 116px;
	}

	.landing-hero h1 {
		font-size: 44px;
	}

	.landing-hero p,
	.section-heading p {
		font-size: 16px;
	}

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

	.brand-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.console-card,
	.panel,
	.sidebar {
		padding: 20px;
	}

	.settings-form .button {
		width: 100%;
	}
}
