@charset "UTF-8";
:root {
  --font-sans: "Inter", "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Manrope", "Inter", "Segoe UI", sans-serif;
  --color-background: #060b16;
  --color-surface: #0c1426;
  --color-surface-alt: #111c33;
  --color-card: #121e36;
  --color-muted: #94a3b8;
  --color-border: rgba(148, 163, 184, 0.2);
  --color-primary: #7b5cff;
  --color-primary-dark: #5a3cf0;
  --color-primary-soft: rgba(123, 92, 255, 0.15);
  --color-accent: #2dd4bf;
  --color-text: #f8fafc;
  --color-heading: #ffffff;
  --max-width: 1180px;
  --shadow-elevated: 0 25px 45px rgba(15, 23, 42, 0.35);
  --shadow-soft: 0 18px 36px rgba(15, 23, 42, 0.22);
  --shadow-card: 0 18px 32px rgba(15, 23, 42, 0.26);
  --nav-height: 76px;
  --safe-area-top: env(safe-area-inset-top, 0px);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--color-background);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: radial-gradient(circle at top left, rgba(123, 92, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.16), transparent 42%),
    var(--color-background);
}

body[data-menu-open="true"] {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  color: var(--color-heading);
}

p {
  margin: 0 0 1em;
  color: var(--color-muted);
  line-height: 1.7;
}

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

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(145deg, rgba(6, 11, 22, 0.95), rgba(9, 14, 28, 0.82));
  background-color: rgba(6, 11, 22, 0.95);
  border-bottom: 1px solid rgba(123, 92, 255, 0.15);
  box-shadow: 0 18px 36px rgba(8, 15, 30, 0.45);
  padding-top: var(--safe-area-top);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  gap: 1rem;
}

.nav__brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f8fafc;
}

.nav__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--color-primary), #2b81ff);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav__links a {
  white-space: nowrap;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #38bdf8);
  color: #0f172a;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(56, 189, 248, 0.22);
}

.nav__toggle {
  display: none;
  background: rgba(14, 22, 40, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.4rem 0.55rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__toggle:hover,
.nav__toggle[aria-expanded="true"] {
  background: rgba(20, 31, 56, 0.9);
  border-color: rgba(123, 92, 255, 0.6);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }
  .nav__menu {
    position: fixed;
    top: calc(var(--nav-height) + var(--safe-area-top));
    left: 0;
    right: 0;
    background: rgba(6, 11, 22, 0.96);
    border-bottom: 1px solid rgba(123, 92, 255, 0.12);
    box-shadow: 0 24px 48px rgba(6, 11, 22, 0.55);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - (var(--nav-height) + var(--safe-area-top)));
    overflow-y: auto;
  }
  .nav__menu[data-open="true"] {
    display: flex;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .nav__links a {
    width: 100%;
  }
  .nav__cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

.hero {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

body:not(#page-top) .hero__grid > div:last-child {
  display: flex;
  justify-content: flex-end;
}

body:not(#page-top) .hero__grid > div:last-child > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 680px;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: #cbd5f5;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(123, 92, 255, 0.2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.demo-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(123, 92, 255, 0.2);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  position: relative;
}

.demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(45, 212, 191, 0.24);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.demo-card:focus-within::after,
.demo-card:hover::after {
  opacity: 1;
}

.demo-card__label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #cbd5f5;
}

.demo-card__input {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: #f8fafc;
  font-family: var(--font-sans);
  font-size: 1rem;
  min-height: 130px;
  resize: vertical;
}

.demo-card__input::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.demo-card__actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-card__status {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.section {
  padding: 5rem 1.5rem;
}

.section--alt {
  background: rgba(12, 20, 38, 0.7);
}

.section--light {
  background: #f8faff;
  color: #0f172a;
}

.section--light p {
  color: #46536a;
}

.section--contrast {
  background: radial-gradient(circle at top, rgba(12, 21, 38, 0.88), rgba(5, 10, 22, 0.95));
  color: #f8fafc;
}

.section--contrast p {
  color: rgba(226, 232, 240, 0.82);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section__header--packs {
  margin-top: 3rem;
}

.section__header--packs .section__title {
  margin-bottom: 0.5rem;
}

.section__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
  color: inherit;
}

.section__subtitle {
  font-size: 1.05rem;
}

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

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  border-radius: 24px;
  padding: 2rem;
  background: rgba(12, 20, 38, 0.82);
  border: 1px solid rgba(123, 92, 255, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card--light {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  color: #0f172a;
}

.card--light p {
  color: #46536a;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(123, 92, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #dbeafe;
}

.card__title {
  font-size: 1.4rem;
}

.card__cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-accent);
}

.card__cta::after {
  content: " →";
  transition: transform 0.2s ease;
}

.card__cta:hover::after {
  transform: translateX(4px);
}

.announcement-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
}

.announcement-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.announcement-card p {
  color: rgba(226, 232, 240, 0.86);
}

.announcement-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--color-muted);
}

.feature-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.18);
  color: var(--color-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial__quote {
  font-size: 1.25rem;
  color: #e2e8f0;
}

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-item {
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(123, 92, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #cbd5f5;
}

.pricing {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pack-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.pack-card {
  background: rgba(12, 20, 38, 0.86);
  border: 1px solid rgba(123, 92, 255, 0.16);
  border-radius: 20px;
  padding: 1.4rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 22px 44px rgba(8, 14, 30, 0.18);
}

.pack-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f8fafc;
}

.pack-card__meta {
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.78);
}

.pack-card__note {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.78);
}

.pricing__card {
  position: relative;
}

.pricing__badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: rgba(45, 212, 191, 0.1);
  color: var(--color-accent);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pricing__price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-heading);
}

.pricing__period {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.95), rgba(56, 189, 248, 0.95));
  color: #0f172a;
  box-shadow: var(--shadow-elevated);
}

.cta-banner h2 {
  color: inherit;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 500;
}

.cta-banner .btn--ghost {
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

.blog-list {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.blog-card {
  background: rgba(12, 20, 38, 0.82);
  border: 1px solid rgba(123, 92, 255, 0.12);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.blog-card__meta {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card__title {
  font-size: 1.45rem;
}

.blog-card__excerpt {
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

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

.contact-form label {
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.78);
  padding: 0.9rem 1rem;
  color: #f8fafc;
  font-size: 1rem;
}

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

footer {
  background: #050913;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(123, 92, 255, 0.12);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.95rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__store {
  display: inline-flex;
  margin-top: 1.4rem;
}

.store-badge {
  height: 52px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.24);
}

.footer__store .store-badge {
  height: 46px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.2);
}

.footer__nav {
  display: grid;
  gap: 0.45rem;
}

.footer__nav a {
  color: rgba(203, 213, 225, 0.85);
}

.footer__credits {
  margin-top: 2rem;
  text-align: center;
  color: rgba(148, 163, 184, 0.6);
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(123, 92, 255, 0.22);
  color: #dbeafe;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.steps li {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(12, 20, 38, 0.82);
  border: 1px solid rgba(123, 92, 255, 0.12);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.steps__number {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(123, 92, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #dbeafe;
}

.howto__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(148, 163, 184, 0.75);
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1rem;
}

.table thead {
  background: rgba(123, 92, 255, 0.18);
}

.table th,
.table td {
  padding: 0.85rem 1rem;
  text-align: left;
  color: rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.table--light {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.table--light thead {
  background: rgba(79, 70, 229, 0.1);
}

.table--light th,
.table--light td {
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.table--light tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.04);
}

.table--light tbody tr:last-child td {
  border-bottom: none;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.meta-card {
  background: rgba(12, 20, 38, 0.82);
  border: 1px solid rgba(123, 92, 255, 0.12);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
}

.meta-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.list-inline li {
  background: rgba(123, 92, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: #dbeafe;
}

.bread {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: rgba(148, 163, 184, 0.75);
}

.bread span {
  opacity: 0.65;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148, 163, 184, 0.75);
}

.highlight {
  color: var(--color-accent);
}

blockquote {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(12, 20, 38, 0.82);
  border-radius: 16px;
  color: rgba(226, 232, 240, 0.92);
  font-size: 1.1rem;
}

code {
  font-family: "Source Code Pro", "SFMono-Regular", Consolas, monospace;
  background: rgba(148, 163, 184, 0.16);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  color: #f8fafc;
}

pre {
  padding: 1.35rem;
  background: rgba(12, 20, 38, 0.82);
  border-radius: 18px;
  overflow-x: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

table {
  width: 100%;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: transparent;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(123, 92, 255, 0.35);
  border-radius: 999px;
}

.table-wrapper table {
  min-width: 640px;
}

.media-note {
  border-radius: 18px;
  border: 1px dashed rgba(123, 92, 255, 0.4);
  padding: 1rem 1.2rem;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-store-badges img {
  width: 160px;
  height: auto;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.18);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body:not(#page-top) .hero__grid > div:last-child {
    justify-content: center;
    margin-top: 2rem;
  }
  .hero__actions {
    justify-content: center;
  }
  .demo-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-card__status {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + 2.5rem);
  }
  .section {
    padding: 4rem 1.2rem;
  }
  body:not(#page-top) .hero__grid > div:last-child > img {
    max-width: 260px;
    max-height: 200px;
  }
}

@media (max-width: 500px) {
  .nav {
    padding: 0 1.1rem;
  }
  .hero__title {
    font-size: 2.35rem;
  }
  .hero__subtitle {
    font-size: 1.05rem;
  }
  .btn {
    width: 100%;
  }
  .cta-banner {
    padding: 2.2rem;
  }
}

@media (max-width: 600px) {
  .table th,
  .table td {
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
  }
  .table-wrapper table {
    min-width: 520px;
  }
}

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