:root {
  --bg-main: #fff7f2;
  --bg-soft: #fffdfa;
  --bg-dark: #3f1819;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(84, 34, 31, 0.1);
  --line-strong: rgba(84, 34, 31, 0.18);

  --text-main: #261515;
  --text-soft: #705858;
  --text-dim: #9d8a8a;

  --red: #d83839;
  --red-deep: #a9272a;
  --orange: #f3a100;
  --gold: #efc339;
  --cream: #fff5ea;
  --green: #64a743;
  --white: #ffffff;

  --shadow-soft: 0 14px 34px rgba(72, 28, 26, 0.08);
  --shadow-main: 0 22px 56px rgba(72, 28, 26, 0.14);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;

  --header-height: 84px;
  --container: 1180px;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at top right,
      rgba(239, 195, 57, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at left center,
      rgba(216, 56, 57, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #fffdfa 0%, #fff7f2 100%);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 196, 0, 0.08),
      transparent 24%
    ),
    radial-gradient(circle at 80% 0%, rgba(216, 56, 57, 0.08), transparent 26%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 245, 238, 0.92)
    );
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(239, 195, 57, 0.18),
    transparent 68%
  );
  filter: blur(24px);
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

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

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 249, 0.72);
  border-bottom: 1px solid rgba(84, 34, 31, 0.08);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.header.is-scrolled {
  background: rgba(255, 252, 249, 0.96);
  box-shadow: 0 10px 24px rgba(72, 28, 26, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo__badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red-deep), var(--orange));
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(169, 39, 42, 0.2);
}

.logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text-main);
}

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

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(216, 56, 57, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(216, 56, 57, 0.26);
}

.burger {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text-main);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 86px 0 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 16%,
      rgba(255, 204, 0, 0.14),
      transparent 25%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 247, 242, 0.7));
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  z-index: 0;
  background-image:
    linear-gradient(rgba(80, 31, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 31, 28, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero__content h1 span {
  display: inline-block;
  color: var(--red);
  position: relative;
}

.hero__content h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 14px;
  background: rgba(243, 161, 0, 0.2);
  border-radius: 999px;
  z-index: -1;
}

.hero__content p {
  margin: 0 0 28px;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.82;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(216, 56, 57, 0.22);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(216, 56, 57, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-main);
  border: 1px solid var(--line);
}

.btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

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

.stat-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--red);
}

.stat-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.hero__visual {
  position: relative;
}

.device-cluster {
  position: relative;
  min-height: 720px;
}

.device {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 36px 72px rgba(72, 28, 26, 0.15);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device--main {
  top: 20px;
  right: 10px;
  width: 360px;
  height: 680px;
  transform: rotate(3deg);
}

.device--top {
  left: 0;
  top: 0;
  width: 220px;
  height: 390px;
  transform: rotate(-10deg);
}

.device--bottom {
  left: 50px;
  bottom: 20px;
  width: 230px;
  height: 390px;
  transform: rotate(8deg);
  animation: floatCard 6s ease-in-out infinite;
}

.marquee {
  padding: 12px 0 8px;
}

.marquee__wrap {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.marquee__track {
  display: flex;
  gap: 34px;
  padding: 20px 24px;
  width: max-content;
  animation: marqueeRun 24s linear infinite;
}

.marquee__track span {
  position: relative;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.marquee__track span::after {
  content: '•';
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(216, 56, 57, 0.4);
}

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

.feature-card {
  min-height: 290px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-card--dark {
  color: var(--white);
  background: linear-gradient(
    145deg,
    rgba(129, 28, 31, 0.96),
    rgba(219, 72, 53, 0.92)
  );
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card--accent {
  background: linear-gradient(
    180deg,
    rgba(243, 161, 0, 0.18),
    rgba(255, 255, 255, 0.76)
  );
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 30px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.showcase__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.showcase__copy p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 17px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 600;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 0 0 4px rgba(216, 56, 57, 0.12);
}

.showcase__media {
  position: relative;
  min-height: 650px;
}

.floating-card {
  position: absolute;
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card--a {
  top: 0;
  left: 0;
  width: 250px;
  height: 500px;
  transform: rotate(-9deg);
}

.floating-card--b {
  top: 110px;
  right: 0;
  width: 290px;
  height: 520px;
  transform: rotate(6deg);
}

.floating-card--c {
  left: 120px;
  bottom: 0;
  width: 230px;
  height: 430px;
  transform: rotate(-2deg);
}

.tabs-box {
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(16px);
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.tab-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 243, 234, 0.9);
  color: var(--text-soft);
  font-weight: 800;
  transition: all var(--transition);
}

.tab-btn.is-active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(216, 56, 57, 0.22);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.tab-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.tab-copy p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 17px;
}

.mini-device {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-device img {
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
}

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

.screen-card {
  padding: 0;
  text-align: left;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 0.66;
  object-fit: cover;
}

.screen-card span {
  display: block;
  padding: 16px 16px 18px;
  font-size: 16px;
  font-weight: 800;
}

.benefits-panel {
  padding: 40px;
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    rgba(114, 25, 26, 0.96),
    rgba(229, 103, 44, 0.92)
  );
  color: var(--white);
  box-shadow: 0 30px 68px rgba(114, 25, 26, 0.24);
}

.benefits-panel__intro {
  max-width: 740px;
  margin-bottom: 26px;
}

.benefits-panel__intro h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.benefits-panel__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

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

.mini-benefit {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-benefit strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.mini-benefit span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 244, 236, 0.86)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
}

.cta-box__text h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.cta-box__text p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  padding: 28px 0 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(84, 34, 31, 0.12);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  max-width: 460px;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__links a {
  color: var(--text-soft);
  font-weight: 700;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgba(23, 8, 8, 0.36);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  width: min(100%, 360px);
  height: 100%;
  padding: 28px 20px 24px;
  background: rgba(255, 252, 249, 0.98);
  box-shadow: -20px 0 40px rgba(72, 28, 26, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 30px;
  line-height: 1;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.mobile-menu__panel a {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(84, 34, 31, 0.08);
  font-weight: 700;
}

.mobile-menu__download {
  margin-top: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 8, 8, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 520px);
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 30px 60px rgba(72, 28, 26, 0.18);
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-18px);
  }
}

@keyframes marqueeRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .feature-grid,
  .benefits-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .showcase__grid,
  .tab-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .device-cluster,
  .showcase__media {
    min-height: 620px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .nav,
  .download-btn {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__stats,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tabs-box {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 78px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .logo__text {
    max-width: 130px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero__content h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero__content p,
  .section-head p,
  .tab-copy p,
  .showcase__copy p {
    font-size: 16px;
  }

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

  .device-cluster {
    min-height: 500px;
  }

  .device--main {
    width: 270px;
    height: 470px;
  }

  .device--top {
    width: 170px;
    height: 300px;
  }

  .device--bottom {
    width: 180px;
    height: 300px;
    left: 34px;
  }

  .showcase__media {
    min-height: 560px;
  }

  .floating-card--a {
    width: 190px;
    height: 360px;
  }

  .floating-card--b {
    width: 210px;
    height: 390px;
  }

  .floating-card--c {
    width: 170px;
    height: 300px;
    left: 70px;
  }

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

@media (max-width: 520px) {
  .hero__actions,
  .cta-box__actions,
  .tabs-nav {
    flex-direction: column;
  }

  .btn,
  .tab-btn {
    width: 100%;
  }

  .feature-card,
  .tabs-box,
  .screen-card,
  .benefits-panel,
  .cta-box,
  .stat-card {
    border-radius: 24px;
  }

  .device-cluster {
    min-height: 430px;
  }

  .device--main {
    width: 225px;
    height: 390px;
  }

  .device--top {
    width: 130px;
    height: 230px;
  }

  .device--bottom {
    width: 146px;
    height: 250px;
    left: 24px;
  }

  .showcase__media {
    min-height: 480px;
  }

  .floating-card--a {
    width: 150px;
    height: 280px;
  }

  .floating-card--b {
    width: 170px;
    height: 320px;
  }

  .floating-card--c {
    width: 146px;
    height: 250px;
    left: 44px;
  }

  .section-head h2,
  .showcase__copy h2,
  .benefits-panel__intro h2,
  .cta-box__text h2 {
    font-size: 36px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
