:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #9caec3;
  --dim: #6e8097;
  --bg: #020711;
  --bg-2: #07101f;
  --card: rgba(12, 24, 43, 0.78);
  --card-strong: #0a1527;
  --line: rgba(139, 181, 232, 0.16);
  --blue: #1685ff;
  --cyan: #22d3ee;
  --green: #35e49a;
  --amber: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius: 24px;
  --wrap: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(22, 133, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 96% 28%, rgba(34, 211, 238, 0.08), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #00101d;
  background: var(--cyan);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(2, 7, 17, 0.7);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(2, 7, 17, 0.92);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(22, 133, 255, 0.24);
}

.brand span span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c5d1df;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links > a:not(.button):hover {
  color: white;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: white;
  background: var(--card);
  padding: 9px 12px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, #0878ff, #149fff);
  box-shadow: 0 15px 36px rgba(9, 124, 255, 0.24);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(9, 124, 255, 0.32);
}

.button.small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.button.secondary {
  border-color: var(--line);
  color: #dce8f5;
  background: rgba(10, 22, 40, 0.72);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.2);
}

.app-store-button {
  min-height: 58px;
  padding-inline: 18px 22px;
  border-radius: 16px;
}

.apple-mark {
  font-size: 1.65rem;
  line-height: 1;
}

.app-store-button .store-label {
  display: grid;
  line-height: 1.08;
  text-align: left;
}

.app-store-button small {
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-store-button strong {
  font-size: 1.05rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: 40px;
  left: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 133, 255, 0.24), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  color: #a9f2ff;
  background: rgba(15, 91, 130, 0.15);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "SF Pro Rounded", Inter, ui-sans-serif, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  max-width: 730px;
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 900;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #ffffff 12%, #45d9ff 52%, #1685ff 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 690px;
  margin: 27px 0 30px;
  color: #b4c2d3;
  font-size: clamp(1.07rem, 1.8vw, 1.28rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 26px;
  color: #8fa3ba;
  font-size: 0.84rem;
  font-weight: 650;
}

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

.trust-row i {
  color: var(--green);
  font-style: normal;
}

.hero-device-stage {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(310px, 76vw);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48px;
  background: linear-gradient(145deg, #1f2b3d, #02050b);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.52), 0 0 80px rgba(22, 133, 255, 0.16);
}

.phone::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 86px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  z-index: 3;
}

.phone img {
  width: 100%;
  border-radius: 38px;
}

.web-app-button {
  border-color: rgba(34, 211, 238, 0.34);
  color: #dffbff;
  background: linear-gradient(135deg, rgba(9, 91, 126, 0.72), rgba(10, 45, 78, 0.82));
  box-shadow: 0 15px 36px rgba(5, 125, 155, 0.14);
  line-height: 1.25;
  text-align: center;
}

.web-app-button:hover {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 18px 42px rgba(5, 125, 155, 0.22);
}

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

.webapp-nav-link {
  max-width: 190px;
  color: #9cecff;
  line-height: 1.25;
  text-align: center;
}

.cross-platform-note {
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 16px;
  color: #bcd0e3;
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.9rem;
}

.cross-platform-note strong {
  display: block;
  margin-bottom: 3px;
  color: #dffbff;
}

.sidebar-card .button + .button {
  margin-top: 8px;
  margin-left: 6px;
}

.section {
  padding: 100px 0;
}

.section.compact {
  padding: 68px 0;
}

.section.alt {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 23, 42, 0.64), rgba(3, 9, 19, 0.5)),
    var(--bg-2);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  font-weight: 900;
}

h3 {
  font-size: 1.22rem;
  font-weight: 850;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 18, 34, 0.72);
  overflow: hidden;
}

.stat {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: white;
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.download-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.download-panel,
.platform-panel {
  min-height: 100%;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 36, 65, 0.86), rgba(7, 17, 32, 0.72));
  box-shadow: var(--shadow);
}

.download-panel {
  position: relative;
  overflow: hidden;
}

.download-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  filter: blur(12px);
}

.download-app {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.download-app img {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.download-app p,
.platform-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b7c6d6;
}

.mini-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.platform-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.platform-row:last-child {
  border-bottom: 0;
}

.platform-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: rgba(22, 133, 255, 0.16);
  font-size: 1.2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step,
.feature-card,
.guide-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.step:hover,
.feature-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 154, 255, 0.4);
  background: rgba(14, 30, 53, 0.9);
}

.step {
  padding: 30px;
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 12px;
  color: #a7f3ff;
  background: rgba(34, 211, 238, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.step p,
.feature-card p,
.guide-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.feature-card {
  min-height: 218px;
  padding: 26px;
}

.feature-card .icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 14px;
  color: #7ee8ff;
  background: linear-gradient(145deg, rgba(22, 133, 255, 0.2), rgba(34, 211, 238, 0.08));
  font-size: 1.2rem;
}

.coverage-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  color: #c8d3df;
  background: rgba(251, 191, 36, 0.05);
  font-size: 0.88rem;
}

.coverage-note strong {
  color: #fde68a;
}

.screens-shell {
  position: relative;
}

.screens {
  display: grid;
  grid-auto-columns: minmax(245px, 290px);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(79, 146, 226, 0.5) transparent;
}

.screen-card {
  scroll-snap-align: start;
}

.screen-card figure {
  margin: 0;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 300 / 650;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.34);
}

.screen-card figcaption {
  padding: 16px 4px 0;
}

.screen-card strong {
  display: block;
}

.screen-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.screen-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.screen-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: var(--card);
  cursor: pointer;
}

.screen-control:hover {
  border-color: rgba(34, 211, 238, 0.44);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.guide-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 24px;
}

.guide-label {
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card .learn {
  margin-top: auto;
  padding-top: 24px;
  color: #7ddcff;
  font-size: 0.86rem;
  font-weight: 800;
}

.guide-card:hover .learn {
  color: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
}

.faq-sticky {
  align-self: start;
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: #eef6ff;
  font-size: 1.02rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 34px 26px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0 0 12px;
}

.text-link {
  color: #77dcff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(119, 220, 255, 0.36);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: white;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid rgba(49, 153, 255, 0.26);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 14%, rgba(34, 211, 238, 0.18), transparent 22rem),
    linear-gradient(135deg, #0a2140, #081527 56%, #07101d);
  box-shadow: var(--shadow);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -250px;
  border: 60px solid rgba(22, 133, 255, 0.12);
  border-radius: 50%;
}

.cta-box h2 {
  max-width: 750px;
}

.cta-box p {
  max-width: 650px;
  margin: 20px 0 28px;
  color: #b3c4d8;
  font-size: 1.05rem;
}

.site-footer {
  padding: 54px 0 36px;
  border-top: 1px solid var(--line);
  color: #8ca0b8;
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 44px;
}

.footer-copy {
  max-width: 430px;
  margin-top: 16px;
}

.footer-title {
  margin-bottom: 13px;
  color: white;
  font-weight: 800;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-note {
  color: var(--dim);
  font-size: 0.76rem;
}

/* Guide pages */
.guide-hero {
  padding: 84px 0 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--dim);
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  color: white;
}

.guide-hero h1 {
  max-width: 930px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.guide-deck {
  max-width: 780px;
  margin: 24px 0 0;
  color: #afbed0;
  font-size: 1.15rem;
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 70px;
  align-items: start;
}

.article {
  color: #c2cedc;
  font-size: 1.02rem;
}

.article h2 {
  margin: 64px 0 20px;
  color: white;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.article h3 {
  margin: 34px 0 12px;
  color: white;
  letter-spacing: -0.025em;
}

.article p,
.article ul,
.article ol {
  margin: 0 0 22px;
}

.article li {
  margin-bottom: 10px;
}

.article a {
  color: #71dbff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 18px;
  color: #cce9f2;
  background: rgba(34, 211, 238, 0.06);
}

.article-callout.warning {
  border-color: rgba(251, 191, 36, 0.22);
  color: #e8ddbf;
  background: rgba(251, 191, 36, 0.055);
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}

.sidebar-card h2 {
  font-size: 1.25rem;
}

.sidebar-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.toc {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: #9fb2c8;
  font-size: 0.84rem;
}

.toc a:hover {
  color: white;
}

.related-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-guides .guide-card {
  min-height: 190px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 12, 24, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .hero-grid,
  .download-grid,
  .faq-layout,
  .article-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-device-stage {
    min-height: 610px;
  }

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

  .stats .stat:nth-child(2) {
    border-right: 0;
  }

  .stats .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .step {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
  }

  .step-number {
    grid-row: span 2;
    margin-bottom: 0;
  }

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

  .faq-sticky,
  .article-sidebar {
    position: static;
  }

  .article-sidebar {
    grid-row: 1;
  }

  .related-guides {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(100% - 28px, 1160px);
    --radius: 20px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 68px 0 50px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-device-stage {
    min-height: 540px;
  }

  .section {
    padding: 74px 0;
  }

  .section.compact {
    padding: 48px 0;
  }

  .stats,
  .feature-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .stats .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats .stat:last-child {
    border-bottom: 0;
  }

  .download-app {
    align-items: flex-start;
  }

  .download-app img {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .screen-controls {
    display: none;
  }

  .guide-card {
    min-height: 205px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .article {
    font-size: 0.97rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
