﻿:root {
  --bg: #edf3ff;
  --bg-soft: #f7faff;
  --surface: #ffffff;
  --surface-strong: #f4f8ff;
  --ink: #071329;
  --muted: #5b6b81;
  --line: rgba(7, 19, 41, 0.12);
  --line-strong: rgba(7, 19, 41, 0.2);
  --brand: #0d5eff;
  --brand-strong: #0a45cc;
  --aqua: #00b8c9;
  --sun: #ff8d43;
  --mint: #00c985;
  --shadow-soft: 0 12px 28px rgba(9, 19, 43, 0.09);
  --shadow-md: 0 22px 52px rgba(9, 19, 43, 0.14);
  --shadow-xl: 0 36px 86px rgba(9, 19, 43, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 14% -8%, #d4e8ff 0%, rgba(212, 232, 255, 0) 48%),
              radial-gradient(circle at 88% 10%, #d9fff8 0%, rgba(217, 255, 248, 0) 44%),
              linear-gradient(180deg, #eef4ff 0%, #f9fcff 52%, #f4f8ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

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

.lightbox-open,
.is-locked {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-pad.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(238, 247, 255, 0.9));
  border-top: 1px solid rgba(13, 94, 255, 0.08);
  border-bottom: 1px solid rgba(13, 94, 255, 0.08);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.mesh {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
  animation: meshFloat 18s ease-in-out infinite;
}

.mesh-a {
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  left: -8vw;
  top: -18vh;
  background: radial-gradient(circle, rgba(13, 94, 255, 0.5), rgba(13, 94, 255, 0));
}

.mesh-b {
  width: min(35vw, 460px);
  height: min(35vw, 460px);
  right: -6vw;
  top: 15vh;
  background: radial-gradient(circle, rgba(0, 184, 201, 0.44), rgba(0, 184, 201, 0));
  animation-delay: -6s;
}

.mesh-c {
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  right: 18vw;
  bottom: -20vh;
  background: radial-gradient(circle, rgba(255, 141, 67, 0.4), rgba(255, 141, 67, 0));
  animation-delay: -11s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13, 94, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(13, 94, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.45), transparent 76%);
}

@keyframes meshFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 22px, 0) scale(1.06);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.94), rgba(241, 247, 255, 0.86));
  border-bottom: 1px solid rgba(7, 19, 41, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

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

.brand-logo {
  height: clamp(46px, 6vw, 64px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(7, 19, 41, 0.78);
  position: relative;
  padding: 8px 2px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(13, 94, 255, 0.4);
  transform: translateY(-1px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease;
}

.nav-mobile.is-open {
  max-height: 78vh;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile-inner {
  display: grid;
  gap: 10px;
  padding: 0 0 18px;
}

.nav-mobile a {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand) 0%, #2d7bff 50%, #38a2ff 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 94, 255, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(13, 94, 255, 0.38);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(13, 94, 255, 0.4);
  color: var(--brand);
}

.btn-soft {
  background: linear-gradient(120deg, rgba(0, 184, 201, 0.16), rgba(13, 94, 255, 0.14));
  color: #035e6f;
  border-color: rgba(0, 184, 201, 0.28);
}

.btn-soft:hover {
  border-color: rgba(0, 184, 201, 0.45);
  color: #014f5c;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero {
  padding-top: 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(32px, 5.1vw, 62px);
  max-width: 16ch;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin-top: 18px;
  max-width: 58ch;
  font-size: clamp(15px, 1.65vw, 18px);
  color: var(--muted);
  line-height: 1.7;
}

.hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 19, 41, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.proof-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--aqua));
  box-shadow: 0 0 0 6px rgba(13, 94, 255, 0.11);
  flex: 0 0 auto;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 19, 41, 0.1);
  border-radius: 16px;
  padding: 14px 14px 13px;
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-family: "Sora", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(7, 19, 41, 0.72);
}

.hero-visual {
  position: relative;
}

.cockpit-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #102446 0%, #091428 100%);
  border: 1px solid rgba(132, 174, 255, 0.23);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cockpit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% -14%, rgba(13, 94, 255, 0.4), rgba(13, 94, 255, 0));
  pointer-events: none;
}

.cockpit-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  background: rgba(4, 11, 24, 0.55);
  border-bottom: 1px solid rgba(159, 190, 255, 0.2);
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.cockpit-head strong {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5eeff;
}

.cockpit-body {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mini-panel {
  border-radius: 16px;
  border: 1px solid rgba(145, 185, 255, 0.24);
  background: linear-gradient(140deg, rgba(8, 32, 68, 0.94), rgba(15, 53, 95, 0.74));
  padding: 14px;
  color: #def0ff;
}

.panel-main {
  background: linear-gradient(140deg, rgba(18, 54, 108, 0.92), rgba(10, 118, 125, 0.62));
}

.mini-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-wrap {
  margin-top: 10px;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(222, 240, 255, 0.9);
}

.progress-line {
  margin-top: 8px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(221, 239, 255, 0.2);
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #57c5ff, #18f0cf);
}

.chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
}

.signal-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.signal-list li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(226, 242, 255, 0.92);
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4be4ff;
}

.tool-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tool-grid span {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 13, 28, 0.44);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 7px 5px;
}

.floating-pill {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 41, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  animation: floatPill 4.6s ease-in-out infinite;
}

.pill-a {
  top: -14px;
  right: 70px;
  color: #0546cb;
}

.pill-b {
  left: -36px;
  top: 42%;
  color: #056a78;
  animation-delay: -1.5s;
}

.pill-c {
  right: 24px;
  bottom: -18px;
  color: #9e4f16;
  animation-delay: -3s;
}

@keyframes floatPill {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(15px, 1.5vw, 18px);
}

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

.bento-card {
  grid-column: span 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
  border: 1px solid rgba(7, 19, 41, 0.09);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.bento-large {
  grid-column: span 8;
  background: linear-gradient(130deg, rgba(13, 94, 255, 0.1), rgba(0, 184, 201, 0.09), rgba(255, 255, 255, 0.97));
}

.bento-wide {
  grid-column: span 8;
}

.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(120deg, var(--brand), var(--aqua));
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.bento-card h3 {
  margin-top: 14px;
  font-size: clamp(18px, 1.85vw, 25px);
}

.bento-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(7, 19, 41, 0.76);
}

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

.module-card {
  background: #ffffff;
  border: 1px solid rgba(7, 19, 41, 0.1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 94, 255, 0.24);
}

.module-card h3 {
  font-size: 18px;
}

.module-card p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.ai-copy h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.ai-copy p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.ai-bullets {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.ai-bullets div {
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(13, 94, 255, 0.08);
  border: 1px solid rgba(13, 94, 255, 0.15);
  font-weight: 700;
  font-size: 14px;
  color: #0a4477;
}

.ai-console {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(74, 125, 222, 0.28);
  background: linear-gradient(180deg, #07122a 0%, #0d1d40 100%);
  box-shadow: var(--shadow-xl);
}

.ai-console-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(155, 190, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-console-head strong {
  color: #f3f7ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ai-console-head span {
  font-size: 12px;
  color: rgba(214, 229, 255, 0.8);
}

.ai-console-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.bubble {
  border-radius: 14px;
  padding: 12px 13px;
  line-height: 1.55;
  font-size: 13px;
}

.bubble.user {
  background: rgba(255, 255, 255, 0.09);
  color: #e9f2ff;
}

.bubble.bot {
  background: rgba(0, 184, 201, 0.17);
  border: 1px solid rgba(0, 184, 201, 0.3);
  color: #dbfdff;
}

.bubble.system {
  background: rgba(255, 141, 67, 0.18);
  border: 1px solid rgba(255, 141, 67, 0.36);
  color: #ffe3d3;
}

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

.admin-card {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  border: 1px solid rgba(7, 19, 41, 0.1);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.admin-card h3 {
  font-size: 19px;
}

.admin-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  background: #ffffff;
  border: 1px solid rgba(7, 19, 41, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
}

.faq-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.cta-panel {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4.5vw, 44px);
  background: linear-gradient(130deg, rgba(13, 94, 255, 0.18), rgba(0, 184, 201, 0.17), rgba(255, 141, 67, 0.18));
  border: 1px solid rgba(13, 94, 255, 0.2);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  margin-top: 8px;
  max-width: 18ch;
  font-size: clamp(27px, 3.2vw, 44px);
}

.cta-copy p {
  margin-top: 10px;
  max-width: 55ch;
  color: rgba(7, 19, 41, 0.78);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 52px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  gap: 18px;
  align-items: start;
}

.footer-note {
  margin-top: 12px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-weight: 700;
  color: rgba(7, 19, 41, 0.75);
}

.footer-links a:hover {
  color: var(--brand);
}

.level-check-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.level-check-modal.is-open {
  display: block;
}

.level-check-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 23, 0.76);
  backdrop-filter: blur(9px);
}

.level-check-dialog {
  position: relative;
  width: min(760px, 92vw);
  margin: 5vh auto;
  background: linear-gradient(180deg, #0a1c3e, #0f2958);
  color: #e8f2ff;
  border-radius: 24px;
  border: 1px solid rgba(165, 197, 255, 0.28);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  padding: 26px;
}

.level-check-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.level-check-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111, 173, 255, 0.2);
  color: #c5e2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.level-check-head h3 {
  margin-top: 11px;
  font-size: 30px;
  line-height: 1.2;
}

.level-check-head p {
  margin-top: 10px;
  color: rgba(228, 240, 255, 0.84);
}

.level-check-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

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

.level-check-grid label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(228, 240, 255, 0.92);
}

.level-check-grid input {
  width: 100%;
  border: 1px solid rgba(168, 200, 255, 0.24);
  border-radius: 11px;
  background: rgba(7, 16, 35, 0.62);
  color: #f3f8ff;
  padding: 12px 13px;
  font-size: 14px;
}

.level-check-grid input:focus {
  outline: none;
  border-color: rgba(0, 184, 201, 0.7);
  box-shadow: 0 0 0 2px rgba(0, 184, 201, 0.2);
}

.level-check-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.level-check-error {
  display: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #ffd6d6;
}

.level-check-error.is-visible {
  display: block;
}

.level-check-note {
  font-size: 12px;
  color: rgba(188, 212, 247, 0.8);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-actions .btn {
    padding-inline: 14px;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .bento-card {
    grid-column: span 6;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 12;
  }

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

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

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

@media (max-width: 980px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile {
    display: block;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .floating-pill {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 74px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .module-grid,
  .admin-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .nav-mobile-inner .btn {
    width: 100%;
  }

  .level-check-dialog {
    padding: 18px;
    margin-top: 8vh;
  }

  .level-check-head h3 {
    font-size: 24px;
  }

  .level-check-grid {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
