:root {
  --ink: #10151f;
  --muted: #647084;
  --soft: #eef2f7;
  --panel: #ffffff;
  --line: rgba(16, 21, 31, 0.12);
  --line-strong: rgba(16, 21, 31, 0.2);
  --night: #061020;
  --night-2: #141017;
  --blue: #246bfe;
  --cyan: #00c2ff;
  --orange: #ff5c35;
  --amber: #ffc44d;
  --green: #19c37d;
  --rose: #ff4f7b;
  --bg: #f5f7fb;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 21, 31, 0.14);
  --shadow-soft: 0 12px 34px rgba(16, 21, 31, 0.09);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

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

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

::selection {
  background: rgba(0, 194, 255, 0.28);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 0.8rem;
  box-shadow: var(--shadow);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.75rem);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 16, 32, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 15px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06), 0 18px 42px rgba(0, 194, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08), 0 20px 46px rgba(255, 92, 53, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  color: rgba(159, 239, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.site-nav a {
  position: relative;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 0.58rem 0.78rem;
  overflow: hidden;
  isolation: isolate;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 92, 53, 0.2), rgba(0, 194, 255, 0.16));
  opacity: 0;
  transform: translateX(-16%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: translateX(0);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-auth-state {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.2rem;
}

.nav-auth-state[hidden],
.auth-account-panel[hidden] {
  display: none;
}

.nav-account-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  max-width: 13.5rem;
  min-height: 2.65rem;
  border: 1px solid rgba(0, 215, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.16), rgba(92, 255, 170, 0.11)),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-account-pill:hover,
.nav-account-pill:focus-visible {
  border-color: rgba(0, 215, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.24), rgba(92, 255, 170, 0.16)),
    rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.nav-account-current:hover,
.nav-account-current:focus-visible {
  transform: none;
}

.nav-account-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #061020;
  font-size: 0.76rem;
  font-weight: 950;
}

.nav-account-label {
  display: grid;
  min-width: 0;
}

.nav-account-label span {
  color: rgba(159, 239, 255, 0.82);
  font-size: 0.68rem;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-account-label strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.62rem;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(0, 194, 255, 0.54);
  background: rgba(0, 194, 255, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: clamp(6rem, 10vw, 8.5rem) clamp(1rem, 5vw, 4.5rem) clamp(2.4rem, 6vw, 4.8rem);
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.94) 0%, rgba(3, 8, 18, 0.8) 36%, rgba(3, 8, 18, 0.36) 70%, rgba(3, 8, 18, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 8, 18, 0.9) 0%, rgba(3, 8, 18, 0.12) 56%, rgba(3, 8, 18, 0.36) 100%);
}

.hero::after {
  z-index: 1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 44%, rgba(0, 194, 255, 0.2) 45%, transparent 46% 100%),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 92, 53, 0.14) 59%, transparent 60% 100%);
  background-size: 5rem 5rem, 5rem 5rem, 30rem 30rem, 36rem 36rem;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 1.05rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 7px;
  font-weight: 850;
  padding: 0.78rem 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 46%, transparent 60% 100%);
  transform: translateX(-135%);
  transition: transform 360ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(135%);
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #180701;
  box-shadow: 0 16px 34px rgba(255, 92, 53, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 46px rgba(255, 92, 53, 0.34);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(0, 194, 255, 0.5);
  background: rgba(0, 194, 255, 0.14);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 16, 32, 0.46);
  padding: 0.42rem 0.68rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16, 21, 31, 0.12);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  position: relative;
  background: #fff;
  padding: clamp(1.05rem, 3vw, 1.65rem) clamp(1rem, 4vw, 3.75rem);
  overflow: hidden;
  backface-visibility: hidden;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.trust-item:hover {
  background: #fbfdff;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0.18);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.trust-item span {
  color: var(--muted);
  margin-top: 0.28rem;
  font-size: 0.94rem;
}

.section {
  padding: clamp(3.8rem, 8vw, 6.8rem) clamp(1rem, 5vw, 4.5rem);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 5vw, 3.6rem);
}

.section-heading.compact {
  display: block;
  max-width: min(760px, var(--max));
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.85rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.products-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 194, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(255, 79, 123, 0.22), transparent 28rem),
    linear-gradient(135deg, #07101f 0%, #0d2634 48%, #17101f 100%);
  color: #fff;
}

.products-section .section-heading {
  position: relative;
}

.products-section .section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1rem;
  width: min(18rem, 38vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.8), rgba(255, 92, 53, 0.7));
}

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

.product-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
    rgba(3, 8, 18, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  padding: clamp(1.1rem, 3vw, 1.45rem);
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-card::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(0, 194, 255, 0.2) 46%, rgba(255, 92, 53, 0.16) 58%, transparent 72% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  transform: translateX(-48%);
  opacity: 0;
  transition: opacity 200ms ease, transform 260ms ease;
}

.product-card::after {
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0);
  transition: box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(0, 194, 255, 0.48);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(0, 194, 255, 0.14);
  transform: translateY(-7px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.product-card:hover::after,
.product-card:focus-within::after {
  box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0.24), inset 0 -5px 0 rgba(25, 195, 125, 0.56);
}

.product-code {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(2, 9, 20, 0.86);
  color: #fff;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.product-card:hover .product-code,
.product-card:focus-within .product-code {
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: #061020;
  transform: translateY(-2px) rotate(-3deg);
}

.product-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.product-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.38rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease;
}

.product-card:hover .product-meta,
.product-card:focus-within .product-meta,
.product-meta:focus-visible {
  border-color: rgba(0, 194, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.14);
}

.software-page {
  background: #050a14;
}

.software-page .site-header {
  background: rgba(6, 16, 32, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.software-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 16%, rgba(0, 215, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 86% 8%, rgba(255, 106, 42, 0.16), transparent 28rem),
    linear-gradient(135deg, #050a14 0%, #071827 54%, #090913 100%);
  color: #fff;
}

.software-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: clamp(1.6rem, 6vw, 5rem);
  align-items: end;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(2rem, 5vw, 3.6rem);
}

.software-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.software-hero p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.software-note {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
    rgba(3, 8, 18, 0.5);
  padding: clamp(1.1rem, 3vw, 1.35rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.software-note strong,
.software-note span {
  display: block;
}

.software-note span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.66);
}

.software-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(4rem, 8vw, 6.5rem);
}

.download-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 8.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(6, 16, 32, 0.68);
  padding: clamp(1rem, 3vw, 1.25rem);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(0, 215, 255, 0.18), rgba(255, 106, 42, 0.12), transparent);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 180ms ease, transform 260ms ease;
}

.download-card:hover,
.download-card:focus-within {
  border-color: rgba(0, 215, 255, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), 0 0 30px rgba(0, 215, 255, 0.1);
  transform: translateY(-4px);
}

.download-card:hover::before,
.download-card:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

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

.download-tag {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.download-card p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 8.7rem;
  min-height: 2.85rem;
  border-radius: 7px;
  background: linear-gradient(135deg, #00d7ff, #5cffaa);
  color: #061020;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.download-button:hover,
.download-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 215, 255, 0.24);
}

.auth-page {
  min-height: 100svh;
  background: #050a14;
}

.account-page {
  min-height: 100svh;
  background: #050a14;
}

.account-page .site-header,
.auth-page .site-header {
  background: rgba(6, 16, 32, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-main {
  min-height: calc(100svh - 4rem);
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 215, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(255, 106, 42, 0.14), transparent 30rem),
    linear-gradient(135deg, #050a14 0%, #071827 56%, #0a0913 100%);
  color: #fff;
}

.account-main {
  min-height: calc(100svh - 4rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 215, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(92, 255, 170, 0.11), transparent 28rem),
    linear-gradient(135deg, #050a14 0%, #071827 54%, #0a0913 100%);
  color: #fff;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.54fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: 7rem 0 3rem;
}

.account-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: 7rem 0 3rem;
}

.account-hero {
  display: grid;
  gap: 0.8rem;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.account-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.account-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.account-signed-out,
.account-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065)),
    rgba(5, 13, 26, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.account-signed-out {
  max-width: 560px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.account-signed-out h2,
.account-panel h2 {
  margin: 0;
}

.account-signed-out p {
  color: rgba(255, 255, 255, 0.68);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.account-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border-radius: 7px;
  background: linear-gradient(135deg, #00d7ff, #5cffaa);
  color: #061020;
  font-weight: 900;
  padding: 0.76rem 1rem;
}

.account-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.account-content[hidden],
.account-signed-out[hidden] {
  display: none;
}

.account-panel {
  padding: clamp(1.15rem, 3vw, 1.5rem);
}

.account-summary {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
}

.summary-list div {
  display: grid;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 0.7rem;
}

.summary-list span {
  color: rgba(159, 239, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-list strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.summary-logout {
  min-height: 2.8rem;
  border: 1px solid rgba(255, 92, 53, 0.36);
  border-radius: 7px;
  background: rgba(255, 92, 53, 0.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

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

.profile-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.profile-status {
  max-width: 320px;
  margin: 0;
  border: 1px solid rgba(255, 196, 77, 0.34);
  border-radius: 7px;
  background: rgba(255, 196, 77, 0.1);
  color: rgba(255, 255, 255, 0.82);
  padding: 0.7rem 0.8rem;
  font-size: 0.86rem;
}

.profile-status.is-error {
  border-color: rgba(255, 92, 53, 0.42);
  background: rgba(255, 92, 53, 0.12);
}

.profile-status.is-success {
  border-color: rgba(92, 255, 170, 0.4);
  background: rgba(92, 255, 170, 0.12);
}

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

.profile-wide {
  grid-column: 1 / -1;
}

.profile-submit {
  width: min(100%, 18rem);
}

.auth-copy h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 610px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.auth-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065)),
    rgba(5, 13, 26, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  padding: clamp(1.2rem, 3vw, 1.55rem);
}

.auth-card-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.auth-card-head p {
  margin: 0.35rem 0 1.15rem;
  color: rgba(255, 255, 255, 0.64);
}

.google-auth-button,
.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.google-auth-button {
  gap: 0.65rem;
  background: #fff;
  color: #111827;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.google-auth-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.google-auth-button:hover,
.google-auth-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.12);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin: 1.1rem 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.auth-status {
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 196, 77, 0.34);
  border-radius: 7px;
  background: rgba(255, 196, 77, 0.1);
  color: rgba(255, 255, 255, 0.82);
  padding: 0.78rem 0.85rem;
  font-size: 0.9rem;
}

.auth-status.is-error {
  border-color: rgba(255, 92, 53, 0.42);
  background: rgba(255, 92, 53, 0.12);
}

.auth-status.is-success {
  border-color: rgba(92, 255, 170, 0.4);
  background: rgba(92, 255, 170, 0.12);
}

.auth-account-panel {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(92, 255, 170, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 255, 170, 0.12), rgba(0, 194, 255, 0.09)),
    rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.auth-account-kicker {
  color: rgba(159, 239, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-account-panel strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 1.12rem;
}

.auth-account-panel > span:not(.auth-account-kicker) {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.auth-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.auth-account-actions a,
.auth-account-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  padding: 0.72rem 0.95rem;
}

.auth-account-actions a {
  background: linear-gradient(135deg, #00d7ff, #5cffaa);
  color: #061020;
}

.auth-account-actions button {
  border: 1px solid rgba(255, 92, 53, 0.36);
  background: rgba(255, 92, 53, 0.12);
  color: #fff;
  cursor: pointer;
}

.auth-card.is-signed-in .google-auth-button,
.auth-card.is-signed-in .auth-divider,
.auth-card.is-signed-in .auth-field,
.auth-card.is-signed-in .auth-row,
.auth-card.is-signed-in .terms-check,
.auth-card.is-signed-in .auth-submit,
.auth-card.is-signed-in .auth-switch {
  display: none;
}

.auth-field {
  display: block;
  margin-top: 0.85rem;
}

.auth-field span,
.auth-check span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-field input {
  display: block;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-field input:focus {
  border-color: rgba(0, 215, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 215, 255, 0.14);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.95rem 0 1.1rem;
}

.auth-row a,
.auth-switch a {
  color: var(--cyan);
  font-weight: 850;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.auth-check input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.14rem;
  accent-color: var(--cyan);
}

.terms-check {
  margin: 0.95rem 0 1.1rem;
}

.auth-submit {
  background: linear-gradient(135deg, #00d7ff, #5cffaa);
  color: #061020;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 215, 255, 0.2);
}

.auth-switch {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.compact-footer .footer-bottom {
  border-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(255, 92, 53, 0.14), transparent 28%),
    linear-gradient(225deg, rgba(0, 194, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #171017, #102029 54%, #132017);
  color: #fff;
}

.split-section > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.split-section .section-copy,
.split-section .solution-list span {
  color: rgba(255, 255, 255, 0.72);
}

.solution-list {
  display: grid;
  gap: 0.75rem;
}

.solution-list div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.solution-list div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 92, 53, 0.16), rgba(0, 194, 255, 0.1));
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.solution-list div:hover {
  border-color: rgba(0, 194, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 4px 0 0 rgba(255, 92, 53, 0.72);
  transform: translateX(6px);
}

.solution-list div:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.solution-list strong,
.solution-list span {
  display: block;
}

.solution-list span {
  position: relative;
  margin-top: 0.25rem;
}

.solution-list strong {
  position: relative;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(1.8rem, 5vw, 3.6rem) auto 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(36, 107, 254, 0.24), transparent 25rem),
    radial-gradient(circle at 92% 24%, rgba(25, 195, 125, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(0, 194, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #10151f 0%, #07101f 100%);
  color: #fff;
}

.process-section .section-heading.compact {
  margin-left: 0;
}

.process-section .eyebrow {
  color: var(--cyan);
}

.process-list li {
  position: relative;
  min-height: 210px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(0, 194, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(4, 19, 38, 0.5);
  padding: 1.2rem;
  overflow: hidden;
  backface-visibility: hidden;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.process-list li::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transition: width 180ms ease;
}

.process-list li:hover {
  background:
    linear-gradient(180deg, rgba(0, 194, 255, 0.22), rgba(25, 195, 125, 0.08)),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: inset 0 -4px 0 rgba(0, 194, 255, 0.52), 0 22px 48px rgba(0, 0, 0, 0.24);
}

.process-list li:hover::before {
  width: 3.4rem;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  font-size: 1.12rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.55rem;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(0, 194, 255, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(255, 92, 53, 0.15), transparent 34%),
    #07101f;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(1.6rem, 5vw, 4.5rem);
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.25rem) 0 2.2rem;
}

.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  display: inline-block;
  width: min(13.75rem, 74vw);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.social-link {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link.youtube svg path + path {
  fill: #07101f;
}

.social-link:hover,
.social-link:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.social-link.youtube:hover,
.social-link.youtube:focus-visible {
  background: #ff0033;
}

.social-link.facebook:hover,
.social-link.facebook:focus-visible {
  background: #246bfe;
}

.social-link.instagram:hover,
.social-link.instagram:focus-visible {
  background: #d62976;
}

.social-link.telegram:hover,
.social-link.telegram:focus-visible {
  background: #22a9e8;
}

.social-link.whatsapp:hover,
.social-link.whatsapp:focus-visible {
  background: #21c063;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-group h2 {
  position: relative;
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-group h2::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2px;
  margin-top: 0.52rem;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.footer-group a,
.footer-group address,
.footer-group p {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  margin: 0;
}

.footer-group a {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: #fff;
  outline: none;
  transform: translateX(4px);
}

.footer-contact a,
.footer-contact address,
.footer-contact p {
  width: 100%;
  max-width: 21rem;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom strong,
.footer-bottom a {
  color: #fff;
}

.floating-action {
  position: fixed;
  z-index: 12;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-action svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.floating-action:hover,
.floating-action:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.whatsapp-float {
  left: clamp(0.9rem, 3vw, 1.6rem);
  background: #21c063;
}

.top-float {
  right: clamp(0.9rem, 3vw, 1.6rem);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1040px) {
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .software-hero,
  .software-downloads,
  .account-content,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .account-summary {
    position: static;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.2rem);
    right: clamp(1rem, 4vw, 3.75rem);
    left: clamp(1rem, 4vw, 3.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(6, 16, 32, 0.97);
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.78rem 0.85rem;
  }

  .nav-auth-state {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
    margin-left: 0;
    padding-top: 0.4rem;
  }

  .nav-account-pill {
    justify-content: space-between;
    max-width: none;
    width: 100%;
  }

  .product-grid,
  .process-list,
  .section-heading,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
  }

  .product-card,
  .download-card,
  .process-list li {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-block: 0.72rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 5.45rem 1.25rem 1.35rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 8, 18, 0.93), rgba(3, 8, 18, 0.62)),
      linear-gradient(0deg, rgba(3, 8, 18, 0.92) 0%, rgba(3, 8, 18, 0.12) 58%, rgba(3, 8, 18, 0.44) 100%);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4rem);
  }

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

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    font-size: 0.78rem;
  }

  .hero-points span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    text-align: center;
    padding: 0.35rem 0.45rem;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.15rem 1.25rem;
  }

  .section h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .software-hero {
    padding-top: 6.4rem;
  }

  .software-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .download-card {
    display: block;
  }

  .download-button {
    width: 100%;
    margin-top: 1rem;
  }

  .auth-shell {
    min-height: auto;
    padding-top: 6.25rem;
  }

  .auth-copy h1 {
    font-size: clamp(2.3rem, 13vw, 3.55rem);
  }

  .auth-row {
    display: block;
  }

  .auth-row a {
    display: inline-block;
    margin-top: 0.65rem;
  }

  .account-shell {
    padding-top: 6.25rem;
  }

  .account-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .profile-form-head {
    display: grid;
  }

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

  .profile-submit {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 2.6rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    display: block;
    padding-bottom: 5.25rem;
  }

  .footer-bottom a {
    display: inline-block;
    margin-top: 0.4rem;
  }

  .floating-action {
    width: 2.85rem;
    height: 2.85rem;
  }

  .floating-action svg {
    width: 1.35rem;
    height: 1.35rem;
  }
}

@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;
  }

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