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

:root {
  --black: #000;
  --white: #fff;
  --gray1: #0d0d0d;
  --gray2: #161616;
  --gray3: #282828;
  --gray4: #555;
  --gray5: #888;
  --gray6: #bbb;
  --gold: #c9a84c;
  --gold-d: #a07830;
  --stroke: 1px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: crosshair;
}

::selection {
  background: var(--gold);
  color: #000;
}

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

.cur {
  width: 10px;
  height: 10px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
  mix-blend-mode: difference;
}

.cur.big {
  width: 44px;
  height: 44px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 60px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.nav-back {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}

.nav-back:hover {
  color: var(--white);
}

.nav-back svg {
  width: 14px;
  height: 14px;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.nav-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.1);
}

.hero-left {
  padding: 100px 60px 60px;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* QR pattern bg */
.qr-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  opacity: 0.04;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  padding: 20px;
}

.qbg-sq {
  background: var(--white);
  border-radius: 1px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '//';
  color: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -1px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
  display: block;
}

.hero-title .shift {
  padding-left: clamp(20px, 4vw, 60px);
  display: block;
}

.hero-sub {
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray5);
  max-width: 400px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.hero-sub strong {
  color: var(--white);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-gold {
  padding: 13px 28px;
  background: var(--gold);
  color: var(--black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: var(--stroke) solid var(--gold);
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  color: var(--white);
}

.btn-line {
  padding: 13px 28px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray5);
  transition: border-color .2s, color .2s;
}

.btn-line:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Right hero panel — animated QR demo */
.hero-right {
  background: var(--gray1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.qr-demo-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray4);
}

.qr-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-big {
  width: 160px;
  height: 160px;
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
  padding: 10px;
  border-radius: 2px;
}

.qb {
  border-radius: 1px;
}

.qb.b {
  background: var(--black);
}

.qb.w {
  background: transparent;
}

.qr-scan-anim {
  width: 160px;
  position: relative;
  height: 2px;
  overflow: visible;
}

.qr-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px var(--gold);
  animation: qrScan 2s ease-in-out infinite;
}

@keyframes qrScan {
  0% {
    top: -80px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 80px;
    opacity: 0;
  }
}

.qr-phones {
  display: flex;
  gap: 16px;
  align-items: center;
}

.phone-mock {
  width: 60px;
  height: 104px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--gray2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 6px;
  border-radius: 1px;
}

.phone-screen {
  flex: 1;
  background: var(--gray3);
  margin: 0 4px 4px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.phone-mock.active {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.phone-arrow {
  font-size: 16px;
  color: var(--gold);
}

/* HERO right — manifesto text */
.hero-right-text {
  text-align: center;
}

.hrt-big {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  letter-spacing: 2px;
}

.hrt-small {
  font-size: 11px;
  color: var(--gray4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* TAGLINE STRIP */
.tagline-strip {
  background: var(--gold);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow: hidden;
}

.ts-text {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 2px;
  color: var(--black);
  white-space: nowrap;
}

.ts-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
}

/* HOW TO USE */
#how {
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
}

.how-header {
  padding: 80px 40px 64px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.how-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 1px;
}

.how-header h2 .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
  display: block;
}

.how-header p {
  font-size: 12px;
  color: var(--gray4);
  max-width: 260px;
  line-height: 1.8;
}

/* 3-col steps */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.how-step {
  padding: 60px 44px;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.how-step:last-child {
  border-right: none;
}

.how-step:hover {
  background: var(--gray1);
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.how-step:hover::before {
  transform: scaleX(1);
}

.hs-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  bottom: 12px;
  right: 16px;
  line-height: 1;
}

.hs-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s;
}

.how-step:hover .hs-icon {
  border-color: var(--gold);
}

.hs-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.hs-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hs-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray5);
}

/* FEATURES ROWS */
#features {
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  min-height: 400px;
}

.feature-row:nth-child(even) {
  direction: rtl;
}

.feature-row:nth-child(even)>* {
  direction: ltr;
}

.feature-row:last-child {
  border-bottom: none;
}

.fr-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
}

.feature-row:nth-child(even) .fr-text {
  border-right: none;
  border-left: var(--stroke) solid rgba(255, 255, 255, 0.06);
}

.fr-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fr-label::before {
  content: '//';
}

.fr-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.fr-sub {
  font-size: 13px;
  color: var(--gray5);
  line-height: 1.9;
  max-width: 420px;
}

.fr-quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.fr-quote p {
  font-size: 13px;
  color: var(--gray6);
  line-height: 1.7;
  font-style: italic;
}

.fr-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fr-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray5);
  line-height: 1.7;
}

.fr-list-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.fr-visual {
  background: var(--gray1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

/* Visual 1: phone with content types */
.vis-content-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}

.ct-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  transition: border-color .2s, transform .2s;
}

.ct-row:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.ct-icon {
  width: 28px;
  height: 28px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.ct-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray5);
}

.ct-dot {
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

/* Visual 2: panel/dashboard mockup */
.vis-panel {
  width: 280px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.1);
  background: var(--gray2);
  border-radius: 4px;
  overflow: hidden;
}

.vp-bar {
  padding: 8px 14px;
  background: var(--gray3);
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.vp-title {
  font-size: 10px;
  color: var(--gray5);
  letter-spacing: 1px;
  margin-left: 4px;
}

.vp-row {
  padding: 10px 14px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vp-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vp-row-text {
  font-size: 10px;
  color: var(--gray5);
  flex: 1;
}

.vp-row-action {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 1px;
}

.vp-update-btn {
  margin: 12px 14px;
  padding: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  animation: updatePulse 2.5s ease-in-out infinite;
}

@keyframes updatePulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

/* Visual 3: language/content grid */
.vis-langs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 220px;
}

.lang-card {
  padding: 16px;
  background: var(--gray2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  transition: border-color .25s;
}

.lang-card:hover {
  border-color: var(--gold);
}

.lang-code {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.lang-name {
  font-size: 10px;
  color: var(--gray4);
  letter-spacing: 1px;
}

.lang-bar {
  height: 2px;
  background: var(--gray3);
  margin-top: 10px;
  border-radius: 1px;
  overflow: hidden;
}

.lang-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
}

/* GALLERY */
#gallery {
  padding: 100px 40px 110px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.gallery-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 1px;
}

.gallery-header h2 .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
  display: block;
}

.gallery-header p {
  font-size: 12px;
  color: var(--gray4);
  max-width: 300px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 16px;
  background: var(--gray1);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  transition: border-color .25s, transform .25s;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.gallery-num {
  align-self: flex-start;
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.2);
  transition: color .25s;
}

.gallery-item:hover .gallery-num {
  color: var(--gold);
}

.gallery-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray5);
  text-align: center;
}

.phone-mock.lg {
  width: clamp(120px, 9vw, 150px);
  height: clamp(240px, 18vw, 300px);
  border-radius: 16px;
  border-width: 2px;
}

.phone-mock.lg .phone-bar {
  height: 10px;
  margin: 10px 10px 6px;
  position: relative;
}

.phone-mock.lg .phone-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.phone-mock.lg .phone-screen {
  margin: 0 6px 6px;
  border-radius: 8px;
  overflow: hidden;
}

.phone-mock.lg .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MANIFESTO */
#manifesto {
  padding: 120px 40px;
  text-align: center;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.04), transparent);
  pointer-events: none;
}

.manifesto-quote {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.manifesto-quote .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  color: transparent;
}

.manifesto-quote .gold {
  color: var(--gold);
}

.manifesto-sub {
  font-size: 14px;
  color: var(--gray5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

/* STATS */
#stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--stroke) solid rgba(255, 255, 255, 0.08);
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
}

.stat-cell {
  padding: 60px 40px;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
  transition: background .25s;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--gray1);
}

.stat-big {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-big em {
  font-style: normal;
  color: var(--gold);
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray4);
}

/* CTA */
#cta {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -1px;
}

.cta-title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
  display: block;
}

.cta-title .gold {
  color: var(--gold);
}

.cta-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray4);
  margin-bottom: 36px;
  max-width: 360px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-url {
  font-size: 11px;
  color: var(--gray4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-url a {
  color: var(--gray6);
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}

/* FOOTER */
footer {
  background: var(--gray1);
  padding: 48px 40px 32px;
  border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 3px;
}

.footer-mid {
  font-size: 11px;
  color: var(--gray4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-right {
  font-size: 11px;
  color: var(--gray4);
}

.footer-right a {
  color: var(--gray5);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-left.in {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-right.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  nav {
    grid-template-columns: auto 1fr;
    padding: 0 20px;
  }

  .nav-right {
    display: none;
  }

  .nav-logo {
    text-align: left;
  }

  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 360px;
    padding: 60px 24px;
  }

  .hero-left {
    padding: 80px 24px 48px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-step {
    border-right: none;
    border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  }

  .how-step:last-child {
    border-bottom: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-row:nth-child(even) {
    direction: ltr;
  }

  .fr-text {
    border-right: none !important;
    border-left: none !important;
    border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
  }

  .fr-visual {
    min-height: 280px;
  }

  #stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(3) {
    border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
    border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
  }

  .stat-cell:nth-child(4) {
    border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
    border-right: none;
  }

  #cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 20px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 36px 20px;
  }

  .how-header {
    flex-direction: column;
    padding: 60px 20px 48px;
  }

  #gallery {
    padding: 70px 20px 80px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }

  #manifesto {
    padding: 80px 20px;
  }
}

@media (max-width: 640px) {
  .tagline-strip {
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px;
  }

  .ts-dot {
    display: none;
  }

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

  #stats {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none;
    border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  }
}
