:root {
  --cream: #FAF9F6;
  --almond: #F3E9DC;
  --sand: #E5D3B3;
  --tan: #D2B48C;
  --copper: #A68A64;
  --coffee: #7E634E;
  --coffee-dk: #584433;
  --espresso: #3D3025;
  --green: #5A8D5A;
  --green-mid: #76A676;
  --green-pale: #E8F3E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  cursor: none;
}

canvas#ptc {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* CURSOR */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s, background .15s;
  mix-blend-mode: multiply;
}

#cur-r {
  position: fixed;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(176, 137, 104, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 245, 238, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(176, 137, 104, 0.15);
  transition: all .3s;
}

nav.scrolled {
  border-bottom-color: rgba(176, 137, 104, 0.3);
  background: rgba(250, 245, 238, 0.96);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--espresso);
  white-space: nowrap;
}

.nav-logo em {
  font-style: normal;
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coffee);
  opacity: .7;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-dl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border-radius: 100px;
  cursor: none;
  text-decoration: none;
  background: var(--green);
  color: white;
  transition: background .2s, transform .15s;
}

.nav-dl:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  height: 90vh;
  min-height: 620px;
  background: var(--almond);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(45deg, rgba(176, 137, 104, .05) 0, rgba(176, 137, 104, .05) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(-45deg, rgba(78, 154, 78, .03) 0, rgba(78, 154, 78, .03) 1px, transparent 1px, transparent 40px);
}

.hero-graffiti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

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

.hero-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 6vw 5rem 4vw;
}

.hero-meta {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}

.hero-meta span {
  color: var(--green);
}

.hero-lang-ticker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  opacity: 0;
}

.hlt-line {
  flex-shrink: 0;
  height: 1px;
  width: 36px;
  background: var(--tan);
}

.hlt-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  white-space: nowrap;
  flex-shrink: 0;
}

.hlt-arrow {
  color: var(--green);
  margin: 0 .25rem;
}

.hlt-scroll-wrap {
  flex: 1;
  overflow: hidden;
}

.hlt-inner {
  display: flex;
  gap: 1rem;
  animation: hltScroll 20s linear infinite;
  width: max-content;
}

@keyframes hltScroll {
  to {
    transform: translateX(-50%);
  }
}

.hlt-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--espresso);
  background: var(--sand);
  padding: .25rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6.5rem);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  opacity: 0;
}

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

.hero-body {
  font-size: .875rem;
  color: var(--coffee);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--green);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  cursor: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 8px 24px rgba(78, 154, 78, .3);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-secondary {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--coffee);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: none;
  transition: color .2s;
}

.btn-secondary:hover {
  color: var(--espresso);
}

.btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

/* HERO RIGHT — DUAL PHONES */
.hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.hero-dual-phones {
  position: relative;
  width: 30vw;
  height: 38vw;
  max-width: 520px;
  max-height: 650px;
  min-width: 320px;
}

.hero-dual-phones::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 154, 78, .15), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hdp-phone {
  position: absolute;
  background: #1a0d04;
  border-radius: 44px;
  padding: 11px;
  z-index: 2;
}

.hdp-phone-left {
  width: 14vw;
  max-width: 240px;
  left: 0;
  top: 5vw;
  transform: rotate(-7deg);
  box-shadow: 0 30px 60px rgba(58, 32, 14, .3), 0 0 0 1px rgba(176, 137, 104, .2);
  animation: floatL 5.5s ease-in-out infinite;
}

.hdp-phone-right {
  width: 15.5vw;
  max-width: 270px;
  right: 0;
  top: 0;
  transform: rotate(4deg);
  box-shadow: 0 50px 90px rgba(58, 32, 14, .4), 0 0 0 1px rgba(78, 154, 78, .2);
  animation: floatR 5.5s ease-in-out infinite;
}

@keyframes floatL {

  0%,
  100% {
    transform: rotate(-7deg) translateY(0)
  }

  50% {
    transform: rotate(-7deg) translateY(-14px)
  }
}

@keyframes floatR {

  0%,
  100% {
    transform: rotate(4deg) translateY(0)
  }

  50% {
    transform: rotate(4deg) translateY(-20px)
  }
}

.hdp-notch {
  width: 72px;
  height: 18px;
  background: rgba(0, 0, 0, .8);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}

.hdp-screen {
  border-radius: 30px;
  overflow: hidden;
  background: var(--almond);
  aspect-ratio: 9/19.5;
}

.hdp-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* STATS STRIP */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 5rem;
  right: 5rem;
  z-index: 4;
  display: flex;
  border: 1px solid rgba(166, 138, 100, .2);
  border-bottom: none;
  background: rgba(250, 249, 246, .8);
  backdrop-filter: blur(12px);
  border-radius: 8px 8px 0 0;
}

.hero-stat {
  flex: 1;
  padding: 1.25rem 3.5rem;
  border-right: 1px solid rgba(176, 137, 104, .18);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

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

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: .05em;
}

.hs-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--espresso);
  letter-spacing: .08em;
  line-height: 1;
}

.hs-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.8;
}

/* MARQUEE */
.marquee {
  background: var(--sand);
  overflow: hidden;
  padding: .9rem 0;
  position: relative;
  z-index: 1;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: mq 22s linear infinite;
  width: max-content;
  white-space: nowrap;
}

@keyframes mq {
  to {
    transform: translateX(-50%);
  }
}

.mq-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mq-item::after {
  content: '◆';
  font-size: .5rem;
  opacity: .4;
  color: var(--green);
}

/* SECTION LABELS */
.s-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: .9;
  letter-spacing: .05em;
  color: var(--copper);
  transform-style: preserve-3d;
  perspective: 800px;
}

.s-title em {
  color: var(--green);
  font-style: normal;
  display: inline-block;
  transform: scale(1.1) translateZ(15px);
}

/* APP SHOWCASE */
.app-showcase {
  padding: 3rem 5rem;
  background: var(--cream);
  position: relative;
}

.app-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(221, 184, 146, .07) 0, rgba(221, 184, 146, .07) 1px, transparent 1px, transparent 16px);
}

.app-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.app-showcase-sub {
  font-size: .95rem;
  color: var(--coffee);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 1rem;
}

.app-phones-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: flex-end;
  margin: 2rem auto 0;
  max-width: 1200px;
}

.app-phone-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: scale(0.72);
  transition: transform .3s ease;
}

.app-phone-block.featured {
  transform: scale(0.88) translateY(-10px);
}

.apb-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.apb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--copper);
  opacity: 0.3;
  line-height: 1;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.apb-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}

.apb-desc {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper);
}

.apb-phone {
  background: #1a0d04;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(58, 32, 14, .2), 0 0 0 1px rgba(176, 137, 104, .2);
  transition: transform .4s cubic-bezier(.2, .8, .3, 1), box-shadow .4s;
  max-width: 220px;
  margin: 0 auto;
}

.app-phone-block:hover .apb-phone {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 60px 100px rgba(58, 32, 14, .3), 0 0 0 1px rgba(78, 154, 78, .25);
}

.app-phone-block.featured .apb-phone {
  box-shadow: 0 60px 100px rgba(58, 32, 14, .3), 0 0 0 1px rgba(78, 154, 78, .2), 0 0 60px rgba(78, 154, 78, .06);
}

.apb-notch {
  width: 90px;
  height: 22px;
  background: rgba(0, 0, 0, .7);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.apb-screen {
  border-radius: 32px;
  overflow: hidden;
  background: var(--almond);
  aspect-ratio: 9/19.5;
}

.apb-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.app-feature-tags {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 1.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(176, 137, 104, .15);
  max-width: 100%;
}

.aft {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--coffee);
  background: var(--almond);
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(176, 137, 104, .15);
  white-space: normal;
  text-align: center;
}

/* LANGUAGES GRID */
.langs-section {
  padding: 3rem 5rem 2.5rem;
  background: var(--almond);
  position: relative;
  z-index: 1;
}

.langs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.langs-filter-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.filter-btn {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--tan);
  background: transparent;
  color: var(--coffee);
  cursor: none;
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--coffee-dk);
  color: var(--cream);
  border-color: var(--coffee-dk);
}

.langs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.lang-card-v2 {
  background: var(--cream);
  border: 1px solid rgba(176, 137, 104, .28);
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

.lang-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(92, 58, 30, .12);
}

.lang-card-v2.featured {
  grid-column: span 1;
  grid-row: span 1;
}

.lc-img {
  height: 200px;
  background: var(--almond);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lang-card-v2.featured .lc-img {
  height: 200px;
}

.lc-img-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(221, 184, 146, .4) 0, rgba(221, 184, 146, .4) 1px, rgba(237, 224, 212, .6) 1px, rgba(237, 224, 212, .6) 10px);
}

.lc-img-label {
  position: relative;
  z-index: 2;
  font-family: monospace;
  font-size: .6rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.8;
}

.lc-img-graffiti {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lc-new {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--green);
  color: white;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 2px;
}

.lc-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.lc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--espresso);
  margin-bottom: .25rem;
}

.lang-card-v2.featured .lc-name {
  font-size: 2rem;
}

.lc-region {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--copper);
}

.lc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.lc-level {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coffee);
  background: var(--almond);
  padding: .3rem .7rem;
  border-radius: 100px;
}

.lc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--coffee-dk);
  transition: all .2s;
}

.lang-card-v2:hover .lc-arrow {
  background: var(--coffee-dk);
  color: var(--cream);
  border-color: var(--coffee-dk);
}

/* FEATURE CALLOUT */
.feat-callout {
  margin: 0 5rem 2.5rem;
  background: var(--sand);
  border-radius: 8px;
  overflow: hidden;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.feat-callout-left {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.feat-callout-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 1rem;
}

.feat-callout-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: .85;
  letter-spacing: .02em;
  color: var(--espresso);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.feat-callout-title sup {
  font-size: .3em;
  vertical-align: super;
  color: var(--green-mid);
}

.feat-callout-desc {
  font-size: .875rem;
  color: var(--coffee);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 1.5rem;
}

.feat-callout-tags {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feat-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--espresso);
  opacity: 0.6;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid rgba(176, 137, 104, .35);
}

.feat-callout-right {
  position: relative;
  overflow: hidden;
}

.feat-callout-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(166, 138, 100, .1) 0, rgba(166, 138, 100, .1) 1px, transparent 1px, transparent 12px);
  background-color: var(--tan);
}

.feat-graffiti-right {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.feat-stat-grid {
  position: relative;
  z-index: 3;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-content: center;
}

.fsi-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--cream);
  letter-spacing: .03em;
  line-height: 1;
}

.fsi-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: .25rem;
}

/* HOW IT WORKS */
.how-section {
  padding: 3rem 5rem;
  background: var(--tan);
  position: relative;
  z-index: 1;
  color: var(--espresso);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.how-header .filter-btn {
  background: var(--cream);
  border: 1px solid rgba(166, 138, 100, .15);
  color: var(--coffee);
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: all .2s;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--espresso);
}

.how-header .s-title {
  color: var(--espresso);
}

.how-header .s-label {
  color: var(--espresso);
  opacity: 0.6;
}

.how-num-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--espresso);
  text-align: right;
  opacity: 0.5;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(58, 32, 14, .1);
}

.how-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(58, 32, 14, .08);
}

.how-step:first-child {
  padding-left: 0;
}

.how-step:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2rem;
}

.hs-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(58, 32, 14, .08);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.hs-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}

.hs-desc {
  font-size: .83rem;
  color: var(--coffee);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  min-height: auto;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(126, 99, 78, .3) 0, rgba(126, 99, 78, .3) 1px, rgba(88, 68, 51, .5) 1px, rgba(88, 68, 51, .5) 14px);
}

.manifesto-graffiti {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.manifesto-content {
  position: relative;
  z-index: 2;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .9;
  letter-spacing: .02em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.manifesto-title .green {
  color: var(--green-mid);
}

.manifesto-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.manifesto-desc {
  font-size: .85rem;
  color: var(--tan);
  line-height: 1.7;
  max-width: 340px;
}

.manifesto-dl {
  display: flex;
  gap: 1rem;
}

/* FOOTER */
footer {
  background: var(--espresso);
  padding: 3rem 5rem 2rem;
  position: relative;
  z-index: 1;
  color: #fff;
  border-top: 1px solid rgba(210, 180, 140, 0.15); /* Beige border */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(210, 180, 140, .15);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: .08em;
  color: var(--almond);
  line-height: 1;
}

.footer-logo em {
  font-style: normal;
  color: var(--green-mid);
}

.footer-tagline {
  font-size: .72rem;
  color: var(--tan);
  margin-top: .5rem;
  letter-spacing: .06em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-col-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(176, 137, 104, .15);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-copy {
  font-size: .6rem;
  color: var(--copper);
  letter-spacing: .08em;
  opacity: 0.8;
}

/* SCROLL REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
}

@media(max-width:1100px) {
  .hero-stats-strip .hero-stat {
    padding: 1rem 1.5rem;
  }

  .app-phones-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .langs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }

  .hdp-phone-left {
    display: none;
  }

  .hero-dual-phones {
    width: 200px;
    height: 400px;
    margin: 0 auto;
  }

  .hdp-phone-right {
    width: 180px;
    position: relative;
    top: 0;
    left: 10px; /* Centering tweak */
    right: auto;
    transform: none;
    animation: floatR 5.5s ease-in-out infinite;
  }

  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-left {
    padding: 100px 1.5rem 5rem;
    align-items: center;
    text-align: center;
  }

  .hero-meta {
    display: none !important;
  }

  .hero-title {
    margin-left: 0 !important;
    text-align: center;
    font-size: clamp(2.2rem, 8vw, 3.8rem);
  }

  .hero-body {
    margin-left: 0 !important;
    text-align: center;
    max-width: 100%;
    font-size: .85rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    margin-left: 0 !important;
    justify-content: center;
    align-items: center;
  }

  .hero-stats-strip {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    background: repeating-linear-gradient(-45deg, rgba(88, 68, 51, .9) 0, rgba(88, 68, 51, .9) 1px, rgba(61, 48, 37, 1) 1px, rgba(61, 48, 37, 1) 12px);
    border: none;
    border-radius: 0;
    backdrop-filter: none;
  }

  .hero-stat {
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(243, 233, 220, 0.1);
    border-bottom: 1px solid rgba(243, 233, 220, 0.1);
    gap: 0.5rem;
    text-align: center;
  }

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

  .hs-label {
    font-size: 2.2rem !important;
    color: var(--cream) !important;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
  }

  .hs-val {
    font-size: 0.65rem !important;
    color: var(--tan) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
  }

  .langs-section,
  .app-showcase,
  .how-section,
  .manifesto,
  .feat-callout+* {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .feat-callout {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 2rem;
  }

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

  .how-step {
    border-right: none;
    border-bottom: 1px solid rgba(176, 137, 104, .18);
    padding: 2rem 0 !important;
  }

  .manifesto-bottom {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .langs-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .app-showcase-header {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .app-phones-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0 3rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    scrollbar-width: none; /* Firefox */
  }

  .app-phones-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .app-phone-block {
    flex: 0 0 240px;
    scroll-snap-align: center;
    transform: scale(0.9) !important;
  }

  .app-phone-block.featured {
    transform: scale(1) translateY(0) !important;
  }

  .feat-callout {
    margin: 0 0 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

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

@media(max-width:600px) {
  .nav-dl {
    padding: .5rem 1rem;
    font-size: .6rem;
  }

  .app-phones-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0 3rem;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    scrollbar-width: none;
  }

  .app-feature-tags {
    padding: 2rem 1rem 0;
    gap: .5rem;
  }

  .aft {
    font-size: .6rem;
    padding: .4rem .8rem;
  }

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

  .hero-stats-strip {
    position: static;
    flex-direction: column;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(166, 138, 100, 0.15);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .s-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    margin-left: 0;
  }

  .hero-left {
    padding: 80px 1.5rem 4rem;
    align-items: center;
    text-align: center;
  }
}

.lc-img img,
.lc-img-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-callout-title.alt {
  color: var(--espresso);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.how-step.indent {
  padding-left: 2rem;
}

.btn-secondary-alt {
  background: var(--tan);
  color: var(--espresso);
  box-shadow: 0 8px 24px rgba(221, 184, 146, .3);
}

.footer-copy.accent {
  color: var(--green-mid);
}

/* LEGAL MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  color: #000;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 0.9rem;
}

.modal-body h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}

.modal-body p {
  margin-bottom: 1rem;
  color: #333;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
