:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-deep: #07111f;
  --panel: #111827;
  --panel-soft: #152033;
  --text: #ffffff;
  --muted: #b6c4d8;
  --line: rgba(148, 163, 184, 0.2);
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #ef4444;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(2, 8, 23, 0.42);
  --shadow-soft: 0 16px 44px rgba(2, 8, 23, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(59, 130, 246, 0.22), transparent 30rem),
    radial-gradient(circle at 14% 18%, rgba(96, 165, 250, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 44%, #0b1221 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-wake-state="active"] .power-button {
  box-shadow: 0 0 0 18px rgba(34, 197, 94, 0.12), 0 0 0 42px rgba(96, 165, 250, 0.09), 0 32px 84px rgba(34, 197, 94, 0.46);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent 42%);
  background-size: 92px 92px, 100% 100%;
  opacity: 0.34;
}

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

img,
svg {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 16px rgba(96, 165, 250, 0.45));
}

.brand span {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.brand strong,
.accent {
  color: #79e56b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  color: #e5eefb;
  font-weight: 650;
  font-size: 0.96rem;
}

.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #79e56b;
  border-color: #79e56b;
}

.nav-cta,
.button,
button {
  font: inherit;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.72);
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-cta:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

body[data-wake-state="active"] .nav-cta {
  border-color: rgba(34, 197, 94, 0.38);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.11);
}

.mobile-menu {
  display: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-card {
  position: relative;
}

.hero-card::before {
  position: absolute;
  inset: -2rem -1rem auto auto;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  color: #d7e8ff;
  background: rgba(59, 130, 246, 0.1);
  font-weight: 700;
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.05rem);
  font-weight: 900;
}

.hero p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #dbeafe;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 38px rgba(59, 130, 246, 0.35);
  font-weight: 850;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(59, 130, 246, 0.48);
}

.button.secondary {
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #eff6ff;
  background: rgba(17, 24, 39, 0.76);
  box-shadow: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.45rem;
  color: #eff6ff;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #86efac;
}

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

.phone-frame {
  width: min(310px, 76vw);
  aspect-ratio: 0.58;
  padding: 1rem;
  border: 3px solid rgba(96, 165, 250, 0.42);
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.7));
  box-shadow: 0 34px 90px rgba(2, 8, 23, 0.6), inset 0 0 28px rgba(96, 165, 250, 0.14);
  transform: rotate(7deg);
}

.floating-stat {
  position: absolute;
  right: 4%;
  bottom: 10%;
  display: grid;
  gap: 0.1rem;
  min-width: 156px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.floating-stat strong {
  color: #bfdbfe;
  font-size: 1.18rem;
}

.phone-screen {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 44%, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.08) 36%, #07111f 72%);
}

.phone-screen svg {
  width: 142px;
  color: #86efac;
  filter: drop-shadow(0 0 28px rgba(34, 197, 94, 0.75));
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.tool-section {
  margin-top: 1rem;
}

.tool-card,
.panel,
.feature-card,
.compat-card,
.faq-item,
.article-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
}

.tool-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
}

.tool-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.09), transparent 36%),
    radial-gradient(circle at 82% 30%, rgba(96, 165, 250, 0.22), transparent 28rem);
  pointer-events: none;
}

.tool-card > * {
  position: relative;
}

.tool-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.tool-metric {
  padding: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

.tool-metric strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.tool-metric span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.tool-copy h2,
.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.tool-copy p,
.section-heading p,
.panel p,
.feature-card p,
.compat-card p,
.article-card p,
.content-page p,
.content-page li {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  margin-top: 1.25rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.86);
  font-weight: 700;
}

.status-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.12);
}

.status-pill.active .status-dot {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.status-pill.error .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.14);
}

.control-panel {
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-height: 390px;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at 50% 34%, rgba(96, 165, 250, 0.24), transparent 48%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.live-meter {
  width: min(320px, 100%);
  padding: 0.9rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
}

.live-meter-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #dbeafe;
  font-size: 0.86rem;
  font-weight: 800;
}

.meter-track {
  height: 8px;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.meter-fill {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--success));
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.6);
}

body[data-wake-state="active"] .meter-fill {
  width: 100%;
}

.wake-orb {
  --ring-progress: 0deg;
  display: grid;
  place-items: center;
  width: clamp(182px, 28vw, 242px);
  aspect-ratio: 1;
  padding: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.96) 0 56%, transparent 57%),
    conic-gradient(from -90deg, var(--success) var(--ring-progress), rgba(96, 165, 250, 0.18) 0);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.18),
    inset 0 0 34px rgba(96, 165, 250, 0.08),
    0 28px 74px rgba(2, 8, 23, 0.38);
}

body[data-wake-state="active"] .wake-orb {
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.94) 0 56%, transparent 57%),
    conic-gradient(from -90deg, #22c55e var(--ring-progress), rgba(96, 165, 250, 0.18) 0);
}

body[data-wake-state="error"] .wake-orb {
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.94) 0 56%, transparent 57%),
    conic-gradient(from -90deg, #ef4444 84deg, rgba(96, 165, 250, 0.18) 0);
}

.power-button {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(145deg, #29c85d, #15803d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 44px rgba(34, 197, 94, 0.28);
}

.power-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(0.45);
  opacity: 0.7;
}

.power-button svg {
  width: 58%;
}

.control-panel strong {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1;
}

.control-panel span {
  color: var(--muted);
  font-weight: 700;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.stop-button {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(239, 68, 68, 0.38);
  border-radius: 14px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.26);
  cursor: pointer;
  font-weight: 800;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 14px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.1);
  font-weight: 800;
}

.stop-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  inset: auto 1rem 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.38);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--accent-2);
  background: rgba(59, 130, 246, 0.14);
}

.icon-badge.green {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

.icon-badge.gold {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.13);
}

.icon-badge.purple {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.14);
}

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

.compat-card {
  position: relative;
  padding: 1.4rem;
  text-align: left;
  overflow: hidden;
}

.compat-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 80% 0%, rgba(96, 165, 250, 0.12), transparent 42%);
  pointer-events: none;
}

.browser-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 0 1rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18), 0 16px 36px rgba(2, 8, 23, 0.28);
}

.browser-mark svg {
  width: 44px;
  height: 44px;
}

.compat-card h3,
.compat-card h2 {
  margin-bottom: 0.4rem;
}

.compat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.support {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.13);
  font-size: 0.86rem;
  font-weight: 800;
}

.support.secure {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.14);
}

.support.limited {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.13);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent-2);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
}

.advanced-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.advanced-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.workflow-card,
.trust-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.workflow-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--muted);
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.trust-tile {
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

.trust-tile strong {
  display: block;
}

.trust-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.content-page {
  padding-bottom: 5rem;
}

.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.panel + .panel {
  margin-top: 1rem;
}

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

.article-card {
  padding: 1.35rem;
}

.article-card h3 {
  font-size: 1.25rem;
}

.article-card a {
  color: #bfdbfe;
  font-weight: 850;
}

.article-body {
  display: grid;
  gap: 1rem;
}

.article-body .panel h2 {
  margin-bottom: 0.75rem;
}

.article-body .panel h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.1rem;
}

.article-body a,
.panel a {
  color: #bfdbfe;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.5);
  text-underline-offset: 0.2em;
}

.post-meta {
  color: var(--muted);
  font-weight: 750;
}

.link-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: #e5eefb;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.86);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  color: #dbeafe;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-2);
}

:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.8);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

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

  .hero-phone {
    min-height: 330px;
  }

  .features-grid,
  .compat-grid,
  .article-grid,
  .advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 0.85rem 1rem;
  }

  .brand svg {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    display: inline-flex;
    min-width: 44px;
    padding-inline: 0.85rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .features-grid,
  .compat-grid,
  .article-grid,
  .advanced-grid,
  .tool-metrics,
  .trust-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .control-panel {
    border-radius: 18px;
  }

  .floating-stat {
    position: static;
    margin-top: -1rem;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .power-button,
  .feature-card {
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  }
}
