:root {
  --page-width: 1440;
  --page-height: 2257;
  --wide-gutter: max(0px, calc((100vw - 1440px) / 2));
  --hero-height: 681px;
  --middle-height: 681px;
  --bottom-height: 895px;
  --hero-offset: 0px;
  --middle-offset: 0px;
  --bottom-offset: 0px;
  --text: #fefdff;
  --muted: #eceaef;
  --panel: rgba(255, 255, 255, 0.19);
  --border: rgba(233, 232, 234, 1);
  --primary: #bb00d9;
  --glass-shadow:
    0 4px 16px rgba(200, 89, 247, 0.16),
    -23px 48px 15px rgba(138, 138, 138, 0),
    -15px 31px 14px rgba(138, 138, 138, 0.01),
    -8px 17px 12px rgba(138, 138, 138, 0.05),
    -4px 8px 9px rgba(138, 138, 138, 0.09),
    -1px 2px 5px rgba(138, 138, 138, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #070707;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  overscroll-behavior-y: none;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #070707;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

#page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

#design-page {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(var(--page-width) * 1px);
  height: calc(var(--page-height) * 1px);
  transform-origin: top center;
  transform: translateX(-50%) scale(var(--page-scale, 1));
  overflow: visible;
  background: #000;
}

.section-scene {
  position: relative;
  width: 1440px;
}

.scene-hero {
  z-index: 1;
  height: calc(var(--hero-height) + var(--middle-height));
}

.scene-middle {
  z-index: 2;
  height: calc(var(--middle-height) + var(--bottom-height));
  margin-top: calc(-1 * var(--middle-height));
}

.scene-bottom {
  z-index: 3;
  height: var(--bottom-height);
  margin-top: calc(-1 * var(--bottom-height));
}

.section-layer {
  position: sticky;
  top: 0;
  left: 0;
  width: 1440px;
  contain: layout;
  isolation: isolate;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.section-hero {
  height: var(--hero-height);
}

.section-middle {
  height: var(--middle-height);
}

.section-bottom {
  height: var(--bottom-height);
}

.section-hud {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: var(--hero-height);
  z-index: 8;
  pointer-events: none;
  backface-visibility: hidden;
}

.global-section-hud {
  position: sticky;
  top: 0;
  left: 0;
  width: 1440px;
  height: 0;
  z-index: 20;
  pointer-events: none;
  overflow: visible;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.global-section-hud .hero-dots,
.global-section-hud .scroll-indicator {
  pointer-events: auto;
}

.section-layer > .section-hud {
  display: none;
}

.background-band {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * var(--wide-gutter));
  width: calc(100% + var(--wide-gutter) + var(--wide-gutter));
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    url("./Images/image%2012.png");
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

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

.band-middle {
  z-index: 0;
}

.band-bottom {
  z-index: 0;
}

.glass-nav {
  position: absolute;
  top: 31px;
  left: 100px;
  width: 1240px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  background:
    linear-gradient(90deg, rgba(60, 59, 59, 0.08), rgba(60, 59, 59, 0.08)),
    linear-gradient(160deg, rgba(241, 152, 255, 0.08), rgba(246, 187, 255, 0.08));
  z-index: 2;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.section-hero.is-menu-open .glass-nav {
  z-index: 6;
}

.icon-button,
.lang-button,
.pill-button,
.cta-button,
.scroll-indicator,
.tab,
.export-btn,
.mini-filter {
  border: 0;
  background: transparent;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
}

.icon-button img {
  width: 40px;
  height: 40px;
}

.nav-toggle {
  position: relative;
  z-index: 1;
}

.nav-logo {
  width: 45px;
  height: 60px;
  object-fit: contain;
  display: block;
  transform: scale(2.18);
  transform-origin: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: #fefdff;
  font-size: 16px;
}

.lang-button img {
  width: 20px;
  height: 20px;
}

.pill-button {
  min-width: 82px;
  height: 44px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
}

.pill-button-light {
  background: #f6f6f6;
  color: #bb00d9;
  border: 1px solid #e9e8ea;
}

.pill-button-primary {
  background: #bb00d9;
  color: #f6f6f6;
}

.nav-menu-panel {
  position: absolute;
  top: 112px;
  left: 88px;
  width: 790px;
  height: 456px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 40px 30px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(31, 18, 48, 0.97), rgba(24, 13, 35, 0.98)),
    rgba(27, 17, 40, 0.98);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 0s linear 240ms;
  will-change: transform, opacity;
}

.nav-menu-panel::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 30px;
  height: 20px;
  background: rgba(31, 18, 48, 0.98);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.section-hero.is-menu-open .nav-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.nav-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 78px;
}

.nav-menu-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.nav-menu-column-right {
  gap: 28px;
}

.nav-menu-link {
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fefdff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.65px;
  text-align: left;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.nav-menu-link:hover {
  opacity: 0.82;
}

.nav-install-row {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
}

.nav-install-card {
  width: 345px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 2px solid rgba(105, 102, 105, 0.9);
  border-radius: 18px;
  background: #020202;
  color: #fefdff;
  box-shadow: none;
  text-align: left;
}

.nav-install-card img {
  width: 38px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-install-card span:last-child {
  max-width: 200px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.42px;
}

.hero-block,
.contribution-block,
.insights-block {
  position: absolute;
  display: flex;
  align-items: flex-start;
}

.hero-block {
  top: calc(199px + var(--hero-offset));
  left: 149px;
  gap: 48px;
  z-index: 2;
}

.copy-block h1,
.copy-block h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.copy-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--muted);
}

.hero-copy {
  width: 548px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy p + p,
.contribution-copy p + p,
.insights-copy p + p {
  margin-top: 10px;
}

.cta-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #fefdff;
  box-shadow: var(--glass-shadow);
}

.cta-button img {
  width: 24px;
  height: 24px;
}

.hero-preview-shell {
  position: relative;
  width: 168px;
  aspect-ratio: 464 / 832;
}

.preview-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.hero-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 15px;
  background: #000;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 15px;
  background: #000;
}

.hero-audio-toggle {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(14, 11, 18, 0.58);
  color: #fff;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.video-audio-toggle {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(14, 11, 18, 0.58);
  color: #fff;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.hero-audio-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.hero-audio-icon svg {
  width: 100%;
  height: 100%;
}

.hero-audio-icon-unmuted {
  display: none;
}

.hero-audio-toggle.is-muted .hero-audio-icon-muted {
  display: inline-flex;
}

.hero-audio-toggle.is-muted .hero-audio-icon-unmuted {
  display: none;
}

.hero-audio-toggle:not(.is-muted) .hero-audio-icon-muted {
  display: none;
}

.hero-audio-toggle:not(.is-muted) .hero-audio-icon-unmuted {
  display: inline-flex;
}

.video-audio-toggle.is-muted .hero-audio-icon-muted {
  display: inline-flex;
}

.video-audio-toggle.is-muted .hero-audio-icon-unmuted {
  display: none;
}

.video-audio-toggle:not(.is-muted) .hero-audio-icon-muted {
  display: none;
}

.video-audio-toggle:not(.is-muted) .hero-audio-icon-unmuted {
  display: inline-flex;
}

.hero-dots {
  position: absolute;
  top: calc(279px + var(--hero-offset));
  left: 1336px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.hero-dot {
  width: 20px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-dot::before {
  content: "";
  display: block;
  width: 4px;
  height: 16px;
  border-radius: 100px;
  background: #777678;
  transition: background-color 140ms ease;
}

.hero-dot.is-active::before {
  background: #fff;
}

.scroll-indicator {
  position: absolute;
  top: calc(576px + var(--hero-offset));
  left: 1304px;
  width: 64px;
  height: 64px;
  padding: 0;
  z-index: 1;
  transition: opacity 180ms ease;
}

.scroll-indicator img {
  width: 64px;
  height: 64px;
}

.global-section-hud.is-last .scroll-indicator {
  display: none;
}

.contribution-block {
  top: calc(79px + var(--middle-offset));
  left: 132px;
  gap: 48px;
}

.glass-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(3px);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.feed-card {
  width: 532px;
  padding: 16px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}

.feed-item {
  min-height: 67px;
  border-radius: 6px;
  background: #fff;
  display: flex;
  gap: 6px;
  padding: 6px;
  color: #15011e;
}

.feed-side {
  width: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.kebab {
  color: #6e6b7b;
  font-size: 12px;
  line-height: 1;
}

.avatar-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.avatar-soft { background: #f0c8aa; }
.avatar-green { background: #7ac56e; }
.avatar-blue { background: #5cb4ff; }
.avatar-gold { background: #ffb84d; }
.avatar-orange { background: #ff914d; }
.avatar-red { background: #f56a66; }
.avatar-pink { background: #d96cc6; }
.avatar-amber { background: #cc9a5d; }
.avatar-white { background: #d7dbe8; }
.avatar-lilac { background: #8d78f0; }

.feed-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feed-top,
.feed-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.feed-top strong {
  font-size: 8.4px;
  line-height: 1;
  font-weight: 500;
}

.feed-mark {
  color: #746b76;
  font-size: 9px;
}

.feed-meta span:first-child {
  font-size: 5.6px;
  color: #8c808f;
}

.tag {
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 5.6px;
  line-height: 1;
  white-space: nowrap;
}

.tag-purple {
  background: #f2e6ff;
  color: #7f00ff;
}

.tag-teal {
  background: #e9fff5;
  color: #14975a;
}

.tag-blue {
  background: #e6f9ff;
  color: #006bf6;
}

.tag-green {
  background: #e8f7f0;
  color: #14975a;
}

.tag-red {
  background: #feeceb;
  color: #f04438;
}

.feed-item p {
  margin: 0;
  color: #756b77;
  font-size: 7px;
  line-height: 1.25;
}

.feed-arrow {
  align-self: center;
  color: #8d8a91;
  font-size: 10px;
  line-height: 1;
}

.contribution-copy {
  width: 584px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-action-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: 4px;
}

.section-action-row .cta-button {
  margin-top: 0;
}

.section-preview-card {
  width: 148px;
  height: auto;
  aspect-ratio: 464 / 832;
  flex: 0 0 auto;
}

.section-preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.insights-block {
  top: calc(77px + var(--bottom-offset));
  left: 147px;
  gap: 48px;
}

.insights-copy {
  width: 579px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.analytics-card {
  width: 520px;
  padding: 16px;
}

.analytics-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.analytics-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #e9e6ea;
}

.tab {
  padding: 0 0 4px;
  color: #a597a8;
  font-size: 8px;
}

.tab.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.export-btn {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
  font-size: 8px;
  box-shadow:
    0 1.9px 1.3px -1.3px rgba(0, 0, 0, 0.06),
    0 3.2px 1.9px -1.3px rgba(0, 0, 0, 0.02);
}

.analytics-panel {
  background: #fff;
  border: 1px solid #f6f5f6;
  border-radius: 5px;
  padding: 13px;
  color: #15011e;
  box-shadow: -5px 2px 15px rgba(138, 138, 138, 0.05);
}

.metric-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.mini-filter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 5px;
  border: 1px solid #f6f5f6;
  background: #fff;
  color: #344054;
  font-size: 8px;
}

.metric-total {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.metric-total strong {
  font-size: 21px;
  line-height: 1;
  color: #f4f4f5;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
}

.metric-total span,
.stat-value span {
  font-size: 8px;
  color: #17b26a;
}

.metric-head small {
  font-size: 8px;
  color: #a597a8;
}

.chart-wrap {
  margin-top: 16px;
}

.chart-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.grid line {
  stroke: #ece9ef;
  stroke-width: 1;
}

.bubble rect {
  fill: #fff;
  stroke: #eaebec;
  stroke-width: 0.6;
}

.bubble text {
  fill: #26262a;
  font-family: "Poppins", sans-serif;
  font-size: 6px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.chart-line {
  fill: none;
  stroke: #d300ff;
  stroke-width: 2;
}

.chart-wrap circle {
  fill: #d300ff;
}

.chart-days {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: #26262a;
  font-size: 7px;
}

.stat-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-card {
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  background: #fafafa;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.02);
  padding: 8px;
}

.stat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #756b77;
  font-size: 8px;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 10px;
}

.icon-green {
  background: #e8f7f0;
  color: #14975a;
}

.icon-purple {
  background: #f2e6ff;
  color: #7f00ff;
}

.icon-red {
  background: #feeceb;
  color: #f04438;
}

.icon-dark {
  background: #f2f0f5;
  color: #756b77;
}

.stat-value {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.stat-value strong {
  color: #000;
  font-size: 13px;
  line-height: 1;
}

.stat-value .negative {
  color: #cc3a30;
}

.store-row {
  position: absolute;
  top: calc(696px + var(--bottom-offset));
  left: 449px;
  display: flex;
  gap: 8px;
  z-index: 6;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.store-badge {
  width: 171px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #5f5d5d;
  border-radius: 8px;
  background: #000;
  text-decoration: none;
}

.store-badge img {
  width: 32px;
  height: 38px;
  object-fit: contain;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge small {
  font-size: 12px;
}

.store-badge strong {
  font-size: 12px;
  font-weight: 500;
}

.footer-row {
  position: absolute;
  top: calc(791px + var(--bottom-offset));
  left: 100px;
  width: 1240px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 6;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-mark {
  position: relative;
  width: 72px;
  height: 86px;
  flex: 0 0 auto;
  overflow: hidden;
}

.footer-brand img {
  position: absolute;
  top: -18px;
  left: -11px;
  width: 94px;
  height: 125px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  padding-top: 0;
}

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

.footer-links a {
  color: #fefdff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
  body {
    background: #000;
    overscroll-behavior-y: auto;
  }

  #page-shell {
    min-height: 0;
  }

  #design-page {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none !important;
    transform-origin: top left;
  }

  .global-section-hud {
    display: none;
  }

  .section-scene,
  .section-layer {
    width: 100%;
  }

  .scene-hero,
  .scene-middle,
  .scene-bottom,
  .section-hero,
  .section-middle,
  .section-bottom {
    height: auto;
    min-height: 0;
    margin-top: 0;
  }

  .section-layer {
    position: relative;
    top: auto;
    left: auto;
    contain: none;
    isolation: auto;
    overflow: hidden;
  }

  .section-hero,
  .section-middle,
  .section-bottom {
    padding-bottom: 48px;
  }

  .section-hero {
    min-height: 100svh;
  }

  .glass-nav {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    min-height: 68px;
    margin: 18px clamp(16px, 4vw, 28px) 24px;
    padding: 12px 16px;
    gap: 12px;
  }

  .icon-button,
  .icon-button img {
    width: 34px;
    height: 34px;
  }

  .nav-logo {
    width: 46px;
    height: 62px;
    transform: scale(1.72);
  }

  .nav-actions {
    max-width: 58%;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 6px;
    gap: 6px;
  }

  .lang-button {
    gap: 6px;
    padding: 0 4px;
    font-size: 14px;
  }

  .lang-button img {
    width: 18px;
    height: 18px;
  }

  .pill-button {
    min-width: 0;
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .nav-menu-panel {
    top: 92px;
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    width: auto;
    height: auto;
    padding: 24px;
    border-radius: 26px;
  }

  .nav-menu-panel::before {
    left: 48px;
  }

  .nav-menu-grid {
    column-gap: 32px;
  }

  .nav-menu-column,
  .nav-menu-column-right {
    gap: 16px;
  }

  .nav-menu-link {
    font-size: 18px;
  }

  .nav-install-row {
    gap: 12px;
    margin-top: 18px;
  }

  .nav-install-card {
    width: 100%;
    min-height: 60px;
    padding: 10px 14px;
  }

  .nav-install-card img {
    width: 34px;
    height: 36px;
  }

  .nav-install-card span:last-child {
    max-width: none;
    font-size: 14px;
  }

  .hero-block,
  .contribution-block,
  .insights-block {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 0 clamp(16px, 4vw, 28px);
  }

  .contribution-block,
  .insights-block {
    padding-top: 40px;
  }

  .copy-block h1,
  .copy-block h2 {
    font-size: clamp(32px, 6vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.6px;
  }

  .copy-block p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-copy,
  .contribution-copy,
  .insights-copy {
    width: 100%;
    gap: 18px;
  }

  .contribution-copy {
    order: -1;
  }

  .cta-button {
    align-self: flex-start;
    min-height: 48px;
    padding: 11px 20px;
  }

  .hero-preview-shell,
  .section-preview-card {
    width: min(100%, 240px);
    height: auto;
    aspect-ratio: 464 / 832;
    align-self: center;
  }

  .feed-card,
  .analytics-card {
    width: 100%;
  }

  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feed-item {
    min-height: 112px;
    padding: 10px;
    gap: 10px;
  }

  .feed-side {
    width: 20px;
    padding-bottom: 0;
  }

  .kebab {
    font-size: 13px;
  }

  .avatar-dot {
    width: 12px;
    height: 12px;
  }

  .feed-top strong {
    font-size: 12px;
  }

  .feed-mark {
    font-size: 10px;
  }

  .feed-meta span:first-child {
    font-size: 9px;
  }

  .tag {
    padding: 3px 7px;
    font-size: 9px;
  }

  .feed-item p {
    font-size: 10px;
    line-height: 1.35;
  }

  .feed-arrow {
    font-size: 12px;
  }

  .section-action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .analytics-topbar {
    gap: 12px;
  }

  .analytics-tabs {
    gap: 12px;
    flex-wrap: wrap;
  }

  .tab {
    font-size: 12px;
  }

  .export-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .analytics-panel {
    padding: 16px;
  }

  .mini-filter {
    padding: 8px 10px;
    font-size: 12px;
  }

  .metric-total strong {
    font-size: 32px;
  }

  .metric-total span,
  .stat-value span {
    font-size: 11px;
  }

  .metric-head small {
    font-size: 11px;
  }

  .chart-wrap {
    margin-top: 18px;
  }

  .chart-wrap svg {
    min-height: 140px;
  }

  .bubble text {
    font-size: 9px;
  }

  .chart-days {
    gap: 6px;
    font-size: 10px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-label {
    font-size: 12px;
  }

  .icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .stat-value strong {
    font-size: 20px;
  }

  .store-row {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 clamp(16px, 4vw, 28px);
    margin: 0 0 28px;
  }

  .store-badge {
    width: auto;
    min-height: 60px;
    flex: 1 1 240px;
  }

  .footer-row {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 0 clamp(16px, 4vw, 28px) 40px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand-mark {
    width: 62px;
    height: 76px;
  }

  .footer-brand img {
    top: -16px;
    left: -10px;
    width: 84px;
    height: 112px;
  }

  .footer-brand p {
    padding-top: 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .glass-nav {
    margin-bottom: 18px;
    padding: 10px 12px;
  }

  .nav-logo {
    width: 40px;
    height: 56px;
    transform: scale(1.48);
  }

  .nav-actions {
    max-width: 64%;
    gap: 4px;
  }

  .lang-button {
    font-size: 13px;
  }

  .lang-button img {
    width: 16px;
    height: 16px;
  }

  .pill-button {
    height: 38px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .nav-menu-panel {
    top: 86px;
    padding: 22px 18px;
  }

  .nav-menu-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .nav-install-row {
    flex-direction: column;
  }

  .copy-block h1,
  .copy-block h2 {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .copy-block p {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .feed-item {
    min-height: 96px;
  }

  .feed-top strong {
    font-size: 13px;
  }

  .feed-item p {
    font-size: 11px;
  }

  .analytics-card {
    padding: 14px;
  }

  .analytics-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .analytics-tabs {
    justify-content: space-between;
  }

  .export-btn {
    align-self: flex-end;
  }

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

  .store-row {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
    flex-basis: auto;
  }
}
