:root {
  --text: #0b0d17;
  --muted: #596074;
  --primary: #5b22ff;
  --primary-2: #7b3dff;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 40px rgba(20, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at left top, rgba(255, 225, 197, 0.38), transparent 28%),
    radial-gradient(circle at right 18%, rgba(130, 145, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, #faf8ff 100%);
}

img {
  max-width: 100%;
}

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

html:has(body) {
  scroll-behavior: smooth;
}

.page-shell {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 0 16px;
  margin-bottom: 16px;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

body.header-scrolled .site-header {
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(20, 24, 40, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text);
}

.brand-logo-icon {
  display: block;
  height: 34px;
  width: auto;
}

.brand-wordmark-text {
  display: inline-block;
  color: #111111;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.045em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.nav a,
.text-link,
.nav-dropdown-toggle {
  color: #232734;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav a:hover,
.text-link:hover,
.nav-dropdown-toggle:hover {
  color: #6f43ff;
}

.nav-redesigned {
  gap: 26px;
}

.nav-dropdown {
  position: relative;
  z-index: 60;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-toggle span {
  font-size: 11px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 216px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 54px rgba(20, 24, 40, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 999;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  white-space: nowrap;
  background: #ffffff;
}

.nav-dropdown-menu a:hover {
  background: rgba(111, 67, 255, 0.08);
  color: #6f43ff;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 13px 22px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 36px rgba(91, 34, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(91, 34, 255, 0.24);
  filter: saturate(1.05);
}

main {
  display: grid;
  gap: 36px;
}

.section-card,
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.eyebrow {
  margin: 0 0 8px;
  color: #6f43ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  overflow: hidden;
  padding: 28px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.story-copy h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.hero-text,
.story-copy p,
.product-card p,
.trust-card p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: clamp(16px, 1.9vw, 20px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.hero-media {
  margin-top: 28px;
}

.hero-media img {
  display: block;
  width: min(920px, 96%);
  margin: 0 auto;
  border-radius: 18px 18px 0 0;
}

.feature-suite {
  display: grid;
  gap: 18px;
}

.section-intro {
  display: grid;
  gap: 10px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.section-intro-slim {
  max-width: 560px;
}

.feature-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  border-radius: 26px;
}

.feature-card:hover,
.product-card:hover,
.trust-copy-card:hover,
.faq-item:hover,
.testimonial-card:hover,
.final-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(20, 24, 40, 0.12);
}

.hover-group > .feature-card,
.hover-group > .faq-item,
.hover-group > .trust-copy-card,
.hover-group .testimonials-track > .testimonial-card,
.hover-group > .feature-grid-two > .feature-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.28s ease, filter 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.hover-group:hover > .feature-card:not(:hover),
.hover-group:hover > .faq-item:not(:hover),
.hover-group:hover > .trust-copy-card:not(:hover),
.hover-group:hover .testimonials-track:hover > .testimonial-card:not(:hover),
.hover-group:hover > .feature-grid-two > .feature-card:not(:hover) {
  opacity: 0.7;
  filter: saturate(0.9);
}

.hover-group > .feature-card:hover,
.hover-group > .faq-item:hover,
.hover-group > .trust-copy-card:hover,
.hover-group .testimonials-track > .testimonial-card:hover,
.hover-group > .feature-grid-two > .feature-card:hover {
  border-color: rgba(111, 67, 255, 0.18);
  box-shadow: 0 28px 60px rgba(91, 34, 255, 0.14);
}

.hover-group > .feature-card:hover h3,
.hover-group > .faq-item:hover h3,
.hover-group > .trust-copy-card:hover h3,
.hover-group .testimonials-track > .testimonial-card:hover .testimonial-quote,
.hover-group .testimonials-track > .testimonial-card:hover strong,
.hover-group > .feature-grid-two > .feature-card:hover h3 {
  color: #6f43ff;
}

.feature-card-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 24px 24px 20px;
  align-items: start;
}

.feature-card-head h3,
.feature-card-copy h3,
.product-card h3,
.trust-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-card-head p,
.feature-card-copy p,
.product-card p,
.trust-card p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.feature-card-link-row {
  padding: 0 24px 18px;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}

.feature-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.feature-arrow-link span {
  font-size: 18px;
  line-height: 1;
}

.feature-card-media {
  padding: 12px 12px 0;
  overflow: hidden;
}

.feature-card-media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5f8fc 0%, #edf2f8 100%);
  transition: transform 0.45s ease;
}

.feature-card:hover .feature-card-media img,
.about-feature:hover .about-feature-visual img,
.about-team-module:hover .about-team-visual img,
.trust-media-card:hover img {
  transform: scale(1.02);
}

.feature-card-media-large {
  padding-top: 0;
}

.feature-card-media-large img {
  height: 320px;
  object-position: center center;
}

.feature-card-bottom .feature-card-media img {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f6f8fd 0%, #eef4fb 100%);
}

.feature-card-bottom .feature-card-media {
  padding-left: 6px;
  padding-right: 6px;
}

.feature-card-bottom .feature-card-media img {
  height: 360px;
}

.feature-card-copy.compact {
  padding: 18px 22px 20px;
}

.feature-card-copy.compact h3 {
  margin-bottom: 22px;
  font-size: 18px;
}

.tone-ai,
.tone-chat,
.feature-card-hero,
.feature-card-bottom {
  background: rgba(244, 248, 255, 0.72);
}

.about-feature {
  display: grid;
  gap: 16px;
}

.about-feature-visual img {
  display: block;
  width: 100%;
  border-radius: 28px;
  transition: transform 0.45s ease;
}

.about-feature-caption {
  display: flex;
  justify-content: flex-end;
}

.about-feature-caption p {
  width: min(460px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-feature-caption a {
  color: var(--text);
}

.final-cta h2 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.08;
}

.products-row-wrap {
  display: grid;
  gap: 18px;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card,
.trust-copy-card {
  border-radius: 24px;
  padding: 24px;
}


.accent-dark {
  color: #ffffff;
  background: linear-gradient(135deg, #181d2f 0%, #0c1020 100%);
}

.accent-dark p,
.accent-dark .eyebrow {
  color: rgba(255,255,255,0.78);
}

.trust-mosaic {
  display: grid;
}

.trust-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-media-card img {
  display: block;
  width: 100%;
  border-radius: 24px;
  transition: transform 0.45s ease;
}

.trust-copy-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(245, 248, 252, 0.92);
}

.feature-arrow-link,
.about-team-link {
  transition: color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.feature-arrow-link:hover,
.about-team-link:hover {
  color: #6f43ff;
}

.feature-arrow-link:hover span,
.about-team-link:hover span {
  transform: translateX(4px);
}

.feature-arrow-link span,
.about-team-link span {
  transition: transform 0.25s ease;
}

.trust-copy-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.trust-copy-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-team-module {
  display: grid;
  gap: 18px;
}

.faq-section {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.faq-heading {
  text-align: center;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
}

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

.faq-question-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
}

.faq-question-row h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1;
  color: #6f43ff;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-item[open] {
  border-color: rgba(111, 67, 255, 0.16);
}

.testimonials-section {
  display: grid;
  gap: 16px;
  width: 100vw;
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.testimonials-marquee.two-rows {
  display: grid;
  gap: 16px;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testimonial-scroll 55s linear infinite;
}

.track-row-b {
  animation-name: testimonial-scroll-reverse;
  animation-duration: 60s;
}

.testimonial-card {
  width: 320px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  flex: 0 0 auto;
}

.section-heading-left {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.section-heading-left h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.testimonial-stars {
  color: #ffb800;
  letter-spacing: 0.14em;
  font-size: 16px;
  line-height: 1;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(244, 239, 255, 0.98), rgba(255, 247, 252, 0.95));
}

.testimonial-quote {
  margin: 0;
  color: #1d2433;
  font-size: 16px;
  line-height: 1.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author > div {
  display: grid;
  gap: 6px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.testimonial-author strong {
  font-size: 14px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-team-visual {
  position: relative;
}

.about-team-visual img {
  display: block;
  width: 100%;
  border-radius: 30px;
  transition: transform 0.45s ease;
}

.about-team-overlay {
  position: absolute;
  left: 48px;
  top: 58px;
  color: #111827;
}

.about-team-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.about-team-label::before {
  content: "";
  width: 1px;
  height: 54px;
  background: #111827;
  display: inline-block;
}

.about-team-overlay h2 {
  margin: 180px 0 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.about-team-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
}

.about-team-content p {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-team-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.about-team-link span {
  font-size: 24px;
  line-height: 1;
}

.final-cta {
  padding-top: 24px;
}

.final-cta-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 28px;
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247, 243, 255, 0.84));
}

.final-cta-copy {
  max-width: 460px;
}

.final-cta-kicker {
  margin-bottom: 14px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.final-cta p {
  max-width: 460px;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.final-cta-button {
  margin: 0;
}

.final-cta-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.final-cta-text-link span {
  transition: transform 0.25s ease;
}

.final-cta-text-link:hover {
  color: #6f43ff;
}

.final-cta-text-link:hover span {
  transform: translateX(4px);
}

.final-cta-stage {
  position: relative;
  min-height: 320px;
}

.final-cta-stage img {
  display: block;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes testimonial-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 8px));
  }
  to {
    transform: translateX(0);
  }
}

@media (hover: hover) {
  .testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }

  .reveal,
  .hover-group > .feature-card,
  .hover-group > .faq-item,
  .hover-group .testimonials-track > .testimonial-card,
  .hover-group > .feature-grid-two > .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  .section-intro h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(6px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateX(0) translateY(0);
  }

  .feature-grid-two,
  .products-row,
  .trust-mosaic-grid,
  .faq-list,
  .feature-card-head,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 280px;
  }

  .about-team-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-feature-caption {
    justify-content: flex-start;
  }

  .final-cta-copy {
    max-width: none;
  }
}

.site-footer {
  margin-top: 56px;
  padding: 20px 0 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
}

.footer-brand-stack {
  display: grid;
  gap: 14px;
}

.footer-brand {
  justify-self: start;
}

.footer-brand .brand-logo-icon {
  height: 36px;
}

.footer-brand .brand-wordmark-text {
  font-size: 22px;
}

.footer-intro {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-utilities {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-lang-switcher {
  position: relative;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-lang:hover {
  color: #6f43ff;
}

.footer-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 120px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(20, 24, 40, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.footer-lang-menu a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-lang-menu a:hover {
  color: #6f43ff;
}

.footer-lang-switcher::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.footer-lang-switcher:hover .footer-lang-menu,
.footer-lang-switcher:focus-within .footer-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-socials a img {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-socials a:hover {
  border-color: rgba(111,67,255,0.22);
  background: rgba(255,255,255,0.96);
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.2fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #111827;
}

.footer-column a,
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-with-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #6f43ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}


@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1080px);
  }

  .footer-topbar,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-brand-stack {
    gap: 10px;
  }

  .footer-utilities,
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .site-header {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .feature-card-head,
  .feature-card-link-row,
  .feature-card-copy.compact,
  .story-copy,
  .product-card,
  .trust-copy-card,
  .testimonial-card,
  .faq-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonials-marquee {
    padding: 0 12px;
  }

  .section-heading-left {
    width: 100%;
    padding: 0 12px;
  }

  .about-team-overlay {
    left: 22px;
    top: 24px;
  }

  .about-team-label::before {
    height: 36px;
  }

  .about-team-overlay h2 {
    margin-top: 120px;
    font-size: 36px;
  }

  .final-cta-shell {
    padding: 24px 20px;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .final-cta-stage {
    min-height: auto;
  }

  .final-cta-stage img {
    max-width: 100%;
  }

  .feature-card-media {
    padding: 12px 12px 0;
  }

  .feature-card-media img,
  .feature-card-media-large img {
    height: 220px;
  }
}

.download-page-shell {
  width: min(1240px, calc(100% - 48px));
}

.download-page-shell > .site-header {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.download-main {
  display: grid;
  gap: 36px;
}

.download-page-shell .download-list-section {
  display: grid;
  gap: 22px;
}

.download-page-shell .download-list-title {
  text-align: center;
}

.download-page-shell .download-list-title h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.download-page-shell .download-list-shell {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.download-page-shell .download-list-topbar,
.download-page-shell .air-module-topbar,
.download-page-shell .gx-module-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.download-page-shell .download-list-topbar {
  margin: 0 0 18px;
}

.download-page-shell .download-list-brand,
.download-page-shell .air-module-brand,
.download-page-shell .gx-module-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.download-page-shell .download-list-brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.download-page-shell .air-module-brand-logo,
.download-page-shell .gx-module-brand-logo {
  width: 112px;
  height: auto;
  display: block;
  object-fit: contain;
}

.download-page-shell .download-list-accent,
.download-page-shell .air-module-accent,
.download-page-shell .gx-module-accent {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #8b5cff;
}

.download-page-shell .download-rows,
.download-page-shell .air-rows,
.download-page-shell .gx-rows {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e7edf5;
}

.download-page-shell .download-rows {
  border-radius: 32px;
}

.download-page-shell .download-row,
.download-page-shell .air-row,
.download-page-shell .gx-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px 30px;
  border-top: 1px solid #edf1f7;
}

.download-page-shell .download-row:first-child,
.download-page-shell .air-row:first-child,
.download-page-shell .gx-row:first-child {
  border-top: 0;
}

.download-page-shell .download-row-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-page-shell .air-row-main,
.download-page-shell .gx-row-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-page-shell .download-row-icon,
.download-page-shell .air-row-icon,
.download-page-shell .gx-row-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  flex: 0 0 24px;
}

.download-page-shell .download-row-main h3,
.download-page-shell .air-row-main h3,
.download-page-shell .gx-row-main h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.download-page-shell .download-row-main h3 span {
  color: #6f43ff;
  font-weight: 500;
}

.download-page-shell .air-row-main h3 span {
  color: #8f97a7;
  font-weight: 500;
}

.download-page-shell .gx-row-main h3 span {
  color: #e22969;
  font-weight: 500;
}

.download-page-shell .download-row-side,
.download-page-shell .air-row-side,
.download-page-shell .gx-row-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-page-shell .download-row-note,
.download-page-shell .air-row-note,
.download-page-shell .gx-row-note {
  padding: 12px 16px;
  border-radius: 15px;
  border: 1px solid #e6ebf3;
  background: #fff;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.download-page-shell .download-row-note {
  min-width: 178px;
}

.download-page-shell .air-row-note,
.download-page-shell .gx-row-note {
  min-width: 208px;
}

.download-page-shell .download-row-note a {
  color: #7b3dff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-page-shell .air-row-note a {
  color: #7e8797;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-page-shell .download-row-button {
  min-width: 212px;
  min-height: 54px;
  padding: 16px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(91, 34, 255, 0.2);
}

.download-page-shell .air-download-button,
.download-page-shell .gx-download-button {
  min-width: 212px;
  min-height: 54px;
  padding: 16px 26px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-page-shell .air-download-button {
  border-radius: 999px;
  background: linear-gradient(135deg, #748564, #667856);
  box-shadow: 0 10px 24px rgba(102, 120, 86, 0.18);
}

.download-page-shell .gx-download-button {
  border-radius: 0;
  background: #ff1f5a;
  box-shadow: 0 10px 24px rgba(255, 31, 90, 0.16);
}

.download-page-shell .store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  height: 50px;
  padding: 6px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
}

.download-page-shell .store-badge-small {
  font-size: 10px;
  opacity: 0.88;
}

.download-page-shell .store-badge-big {
  margin-top: 3px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.download-page-shell .store-badge-google {
  background: linear-gradient(180deg, #1c1c1c 0%, #0e0e0e 100%);
}

.download-page-shell .store-badge-dark {
  min-width: 132px;
}

.download-page-shell .store-badge-dark .store-badge-big {
  font-size: 18px;
}

.download-page-shell .qr-box {
  width: 86px;
  height: 86px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.download-page-shell .download-row-side-android .download-row-note {
  min-width: 185px;
}

.download-page-shell .air-module,
.download-page-shell .gx-module {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.download-page-shell .install-steps-module,
.download-page-shell .system-requirements-module,
.download-page-shell .download-faq-module,
.download-page-shell .download-bottom-cta {
  margin-top: 44px;
}

.download-page-shell .install-steps-module,
.download-page-shell .system-requirements-module,
.download-page-shell .download-faq-module {
  display: grid;
  gap: 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.download-page-shell .install-steps-heading,
.download-page-shell .system-requirements-heading,
.download-page-shell .download-faq-heading {
  text-align: center;
}

.download-page-shell .install-steps-heading h2,
.download-page-shell .system-requirements-heading h2,
.download-page-shell .download-faq-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.download-page-shell .system-requirements-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.download-page-shell .install-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-page-shell .install-step-card {
  padding: 28px 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e7edf5;
  box-shadow: 0 14px 30px rgba(20, 24, 40, 0.05);
}

.download-page-shell .install-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6f43ff;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.download-page-shell .install-step-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.download-page-shell .install-step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download-page-shell .system-requirements-table-wrap {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e7edf5;
  box-shadow: 0 14px 30px rgba(20, 24, 40, 0.05);
}

.download-page-shell .system-requirements-table {
  width: 100%;
  border-collapse: collapse;
}

.download-page-shell .system-requirements-table th,
.download-page-shell .system-requirements-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #edf1f7;
  font-size: 14px;
  line-height: 1.75;
}

.download-page-shell .system-requirements-table tr:first-child th,
.download-page-shell .system-requirements-table tr:first-child td {
  border-top: 0;
}

.download-page-shell .system-requirements-table th {
  width: 22%;
  background: #fbfcfe;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.download-page-shell .system-requirements-table td {
  color: var(--muted);
}

.download-page-shell .download-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-page-shell > .site-header {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.faq-main {
  display: grid;
  gap: 42px;
}

.faq-hero {
  display: grid;
  gap: 24px;
  padding-top: 18px;
}

.faq-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.faq-hero-copy p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.faq-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.faq-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: #111827;
  background: #eef2f7;
  font-size: 14px;
  font-weight: 700;
}

.faq-hero-stage {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f8f3ff 0%, #edf6ff 100%);
}

.faq-hero-stage img {
  display: block;
  width: min(1020px, 100%);
  margin: 0 auto;
  border-radius: 22px;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.faq-category-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: #f4f7fb;
}

.faq-category-card h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.faq-category-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.faq-section-block {
  display: grid;
  gap: 18px;
}

.faq-section-head {
  max-width: 820px;
}

.faq-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1024px) {
  .download-page-shell .download-row,
  .download-page-shell .air-row,
  .download-page-shell .gx-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .download-page-shell .download-row-side,
  .download-page-shell .air-row-side,
  .download-page-shell .gx-row-side {
    flex-wrap: wrap;
  }

  .download-page-shell .install-steps-grid,
  .download-page-shell .download-faq-list,
  .faq-category-grid,
  .faq-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .download-page-shell .download-list-shell {
    padding: 20px 20px 24px;
    border-radius: 26px;
  }

  .download-page-shell .download-row,
  .download-page-shell .air-row,
  .download-page-shell .gx-row {
    padding: 24px 20px;
  }

  .download-page-shell .download-row-main h3,
  .download-page-shell .air-row-main h3,
  .download-page-shell .gx-row-main h3 {
    font-size: 18px;
  }

  .download-page-shell .download-row-button,
  .download-page-shell .store-badge,
  .download-page-shell .download-row-note,
  .download-page-shell .air-row-note,
  .download-page-shell .air-download-button,
  .download-page-shell .gx-row-note,
  .download-page-shell .gx-download-button {
    min-width: 160px;
  }

  .download-page-shell .qr-box {
    width: 72px;
    height: 72px;
  }

  .download-page-shell .install-step-card {
    padding: 24px 20px;
  }

  .download-page-shell .system-requirements-table th,
  .download-page-shell .system-requirements-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .download-page-shell .system-requirements-table th {
    padding-bottom: 6px;
  }

  .download-page-shell .system-requirements-table td {
    padding-top: 0;
  }

  .faq-hero-copy h1 {
    font-size: 42px;
  }

  .faq-hero-copy p {
    font-size: 16px;
  }

  .faq-category-card {
    padding: 22px 20px;
  }
}
