:root {
  color-scheme: light;
  --ink: #14111f;
  --ink-soft: #5d566c;
  --ink-muted: #8a8098;
  --paper: #fbf9ff;
  --paper-strong: #ffffff;
  --wash: #f0ecff;
  --wash-deep: #e0e9ff;
  --brand: #3b0764;
  --brand-2: #a855f7;
  --brand-deep: #332073;
  --brand-ink: #ffffff;
  --line: rgba(51, 32, 115, 0.14);
  --shadow: 0 24px 80px rgba(51, 32, 115, 0.15);
  --radius: 8px;
  --radius-lg: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 249, 255, 0.96), rgba(244, 247, 255, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(49, 199, 216, 0.14), transparent 32%),
    radial-gradient(circle at 12% 68%, rgba(115, 87, 255, 0.11), transparent 30%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.svg-sprite {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(251, 249, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(51, 32, 115, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(51, 32, 115, 0.18);
}

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

.site-nav a {
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  padding: 8px 12px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(115, 87, 255, 0.08);
  color: var(--brand-deep);
}

.header-actions,
.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-link {
  width: 40px;
  height: 40px;
  color: var(--brand-deep);
  background: rgba(115, 87, 255, 0.07);
  border: 1px solid rgba(115, 87, 255, 0.11);
}

.icon-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.icon-link svg,
.button svg,
.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

#icon-github path,
#icon-telegram path,
#icon-twitter path {
  fill: currentColor;
  stroke: none;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(51, 32, 115, 0.12);
  border-radius: 8px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.language-toggle:hover {
  background: rgba(224, 233, 255, 0.9);
  box-shadow: 0 12px 28px rgba(51, 32, 115, 0.12);
  transform: translateY(-2px);
}

.language-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button {
  min-height: 46px;
  gap: 9px;
  padding: 0 18px;
  font-size: 14px;
}

.button-primary {
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 34px rgba(51, 32, 115, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(51, 32, 115, 0.28);
}

.button-soft,
.button-ghost {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(51, 32, 115, 0.12);
}

.button-soft:hover,
.button-ghost:hover,
.icon-link:hover {
  background: rgba(224, 233, 255, 0.9);
  box-shadow: 0 12px 28px rgba(51, 32, 115, 0.12);
}

.compact {
  width: 46px;
  padding: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(51, 32, 115, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--brand-deep);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(78px, 10vw, 126px) 0;
}

.features .section-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.features {
  padding-top: clamp(48px, 6vw, 82px);
  /* padding-bottom: clamp(48px, 6vw, 82px); */
}

.section-band {
  padding: clamp(54px, 7vw, 82px) 0;
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brand);
}

.section-heading h2,
.download-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.download-panel p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.center {
  text-align: center;
}

.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* min-height: 92vh; */
  padding: 132px clamp(20px, 6vw, 68px) 40px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    conic-gradient(from 235deg at 68% 42%, rgba(88, 28, 135, 0.16), rgba(45, 12, 83, 0.24), rgba(8, 3, 24, 0.78), rgba(76, 29, 149, 0.14), rgba(88, 28, 135, 0.16)),
    linear-gradient(135deg, #030107 0%, #07020f 24%, #120627 54%, #0a0218 78%, #030107 100%);
  background-position: center;
  background-size: 180% 180%, 140% 140%;
  animation: heroBaseFlow 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 1, 7, 0.28), rgba(8, 2, 20, 0.56) 58%, rgba(12, 4, 28, 0.86) 84%, rgba(22, 8, 50, 0.66) 92%, rgba(251, 249, 255, 0.95) 100%),
    linear-gradient(108deg, rgba(76, 29, 149, 0.26), rgba(88, 28, 135, 0.16) 44%, rgba(49, 46, 129, 0.18));
}

.hero-shade::before,
.hero-shade::after {
  content: "";
  position: absolute;
  inset: -28%;
  opacity: 0.72;
  will-change: transform, background-position;
}

.hero-shade::before {
  background:
    conic-gradient(from 225deg at 62% 44%, rgba(168, 85, 247, 0.12), rgba(91, 33, 182, 0.36), rgba(76, 29, 149, 0.3), rgba(126, 34, 206, 0.18), rgba(45, 12, 83, 0.42), rgba(168, 85, 247, 0.12)),
    linear-gradient(118deg, rgba(45, 12, 83, 0.42), rgba(76, 29, 149, 0.24), rgba(12, 4, 28, 0.54));
  filter: blur(34px) saturate(1.18) contrast(1.02);
  mix-blend-mode: screen;
  animation: heroAuroraDrift 9s ease-in-out infinite alternate;
}

.hero-shade::after {
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0) 0 64px, rgba(216, 180, 254, 0.085) 64px 66px, rgba(255, 255, 255, 0) 66px 138px),
    linear-gradient(92deg, rgba(91, 33, 182, 0.32), rgba(30, 8, 78, 0.16), rgba(126, 34, 206, 0.18));
  background-size: 260% 260%, 220% 220%;
  filter: blur(12px) saturate(1.05);
  mix-blend-mode: screen;
  animation: heroPrismSweep 8s linear infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-content {
  max-width: 780px;
  color: #fff;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  color: #fff;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-phone {
  display: grid;
  justify-items: center;
  gap: 18px;
  position: relative;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: 9% 3% 14%;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(190, 24, 93, 0.34), rgba(126, 34, 206, 0.2) 48%, rgba(88, 28, 135, 0.04) 72%);
  filter: blur(32px);
  z-index: -1;
}

.phone-frame {
  position: relative;
  width: min(400px, 42vw);
  max-height: min(770px, 58vh);
  aspect-ratio: 9 / 19.5;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(207, 220, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 36px 90px rgba(5, 9, 26, 0.36);
  overflow: visible;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
  z-index: 4;
}

.phone-flap {
  position: absolute;
  right: -12%;
  bottom: -5%;
  z-index: 20;
  width: clamp(94px, 32%, 156px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(12, 4, 28, 0.42));
  pointer-events: none;
  transform: rotate(-7deg);
}

.phone-speaker {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 5;
  width: 82px;
  height: 20px;
  border-radius: 99px;
  background: rgba(9, 8, 22, 0.72);
  transform: translateX(-50%);
}

.phone-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #0c0a14;
}

.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 520ms ease;
}

.phone-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 26px;
  background: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px clamp(12px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.intro-text {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
}

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

.feature-card {
  min-height: 274px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(51, 32, 115, 0.08);
}

.feature-card h3,
.timeline-item h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--brand);
  background: var(--wash);
  border: 1px solid rgba(115, 87, 255, 0.12);
}

.workflow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 236, 255, 0.76));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skills {
  background:
    linear-gradient(180deg, rgba(251, 249, 255, 0.64), rgba(255, 255, 255, 0.72));
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.skill-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(51, 32, 115, 0.12);
  border-radius: 16px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(51, 32, 115, 0.07);
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 12px;
  font-weight: 850;
}

.skill-card h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.skill-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.58;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(51, 32, 115, 0.07);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-deep);
  font-size: 14px;
  font-weight: 850;
}

.timeline-item h3 {
  margin-top: 0;
}

.screens {
  overflow: hidden;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.screen-shot {
  margin: 0;
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.screen-shot img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(51, 32, 115, 0.12);
  background: var(--wash);
}

.screen-shot figcaption {
  padding-top: 12px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.download {
  padding-top: 34px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(30px, 6vw, 62px);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(51, 32, 115, 0.97), rgba(115, 87, 255, 0.9)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent);
  box-shadow: 0 34px 86px rgba(51, 32, 115, 0.26);
}

.download-panel h2,
.download-panel p:not(.eyebrow) {
  color: #fff;
}

.download-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.download-actions {
  justify-content: flex-end;
  max-width: 420px;
}

.download-actions .button-soft {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.download-actions .button-soft:hover {
  background: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 36px 0 44px;
  color: var(--ink-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes heroBaseFlow {
  0% {
    background-position: 0% 50%, 0% 50%;
  }
  50% {
    background-position: 80% 42%, 58% 60%;
  }
  100% {
    background-position: 100% 56%, 100% 44%;
  }
}

@keyframes heroAuroraDrift {
  0% {
    transform: translate3d(-7%, -4%, 0) rotate(-4deg) scale(1.06);
  }
  50% {
    transform: translate3d(7%, 5%, 0) rotate(10deg) scale(1.16);
  }
  100% {
    transform: translate3d(3%, -7%, 0) rotate(-8deg) scale(1.1);
  }
}

@keyframes heroPrismSweep {
  0% {
    background-position: 0% 50%, 0% 50%;
    transform: translate3d(-6%, 0, 0) rotate(-1deg);
  }
  100% {
    background-position: 200% 50%, 160% 50%;
    transform: translate3d(6%, 0, 0) rotate(2deg);
  }
}

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

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

  .hero-shade::before,
  .hero-shade::after,
  .hero-media {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 16px 16px 8px 8px;
  }

  .header-actions {
    top: 314px;
    justify-content: flex-start;
    padding: 12px;
    border-radius: 8px 8px 16px 16px;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    justify-items: center;
  }

  .hero-content {
    max-width: 760px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-frame {
    width: min(430px, 68vw);
    max-height: 500px;
  }

  .phone-flap {
    right: -10%;
    bottom: -4%;
    width: clamp(84px, 30%, 132px);
  }

  .intro-grid,
  .workflow-layout,
  .download-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .hero {
    min-height: 94vh;
    padding: 106px 16px 28px;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-content {
    text-align: left;
  }

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

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

  .phone-frame {
    width: min(360px, 92vw);
    max-height: 430px;
  }

  .phone-flap {
    right: -8%;
    bottom: -3%;
    width: clamp(72px, 28%, 112px);
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .hero-actions .compact {
    width: calc(50% - 5px);
  }

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

  .section-heading h2,
  .download-panel h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .feature-card,
  .timeline-item,
  .download-panel {
    border-radius: 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .screen-row {
    display: flex;
    gap: 14px;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

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

  .screen-shot {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner p {
    text-align: left;
  }
}
