@font-face {
  font-family: "Neue Haas Text Pro Roman";
  src: url("https://cdn.prod.website-files.com/697a446b2478bad9e156e63b/697b2418006709291f7a29db_NeueHaasTextPro-Roman.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Display Pro Black";
  src: url("https://cdn.prod.website-files.com/697a446b2478bad9e156e63b/697b24b337609e725efd883a_NeueHaasDisplayPro-Black.woff2")
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #efe7da;
  --bg-deep: #e4d8c4;
  --surface: #f7f0e6;
  --surface-dark: #1a1712;
  --text: #181512;
  --text-soft: rgba(24, 21, 18, 0.62);
  --line: rgba(24, 21, 18, 0.1);
  --cream: #f5efe6;
  --sage: #8ea798;
  --rose: #b76376;
  --orange: #d9824f;
  --amber: #d7a44a;
  --teal: #5f9791;
  --copper: #b97852;
  --blue: #5d83d6;
  --dialer-start: #bdd0c6;
  --dialer-end: #a3b9af;
  --contact-start: #dbb1b9;
  --contact-end: #c8909d;
  --messages-start: #efbd9d;
  --messages-end: #e0a277;
  --notechat-start: #efd7a2;
  --notechat-end: #ddbe78;
  --display: "Neue Haas Display Pro Black", "Neue Haas Text Pro Roman", sans-serif;
  --body: "Neue Haas Text Pro Roman", "Neue Haas Display Pro Black", sans-serif;
  --page-pad: clamp(1.2rem, 3.4vw, 4rem);
  --content-max: 1320px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-bar-w: clamp(56px, 4.4vw, 78px);
  --nav-bar-w-hover: 230px;
  --sidebar-width: calc(var(--nav-bar-w) + var(--nav-bar-w) + var(--nav-bar-w) + var(--nav-bar-w) + var(--nav-bar-w));
  --menu-rail-w: clamp(42px, 3vw, 54px);
  --menu-blue: #1a1712;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #eadfcf 100%);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.apps-page {
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: geometricPrecision;
}

body.theme-dialer {
  background: linear-gradient(180deg, var(--dialer-start) 0%, var(--dialer-end) 100%);
}

body.theme-contact {
  background: linear-gradient(180deg, var(--contact-start) 0%, var(--contact-end) 100%);
}

body.theme-messages {
  background: linear-gradient(180deg, var(--messages-start) 0%, var(--messages-end) 100%);
}

body.theme-notechat {
  background: linear-gradient(180deg, var(--notechat-start) 0%, var(--notechat-end) 100%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: var(--cream);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: var(--sidebar-width);
    height: 100vh;
    overflow: hidden;
  }

  .nav-bar {
    position: relative;
    width: 100%;
    min-width: var(--nav-bar-w);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0.8rem;
    text-decoration: none;
    border-left: none;
    color: var(--cream);
    transition:
      filter 0.25s var(--ease);
    overflow: hidden;
  }

  .nav-bar:hover {
    filter: brightness(1.07);
  }

  .nav-bar:hover .nav-bar__index {
    transform: translateX(-50%) translateY(-2px);
  }

  .nav-bar.is-expanded,
  .nav-bar.active {
    width: 100%;
    min-width: var(--nav-bar-w);
  }

  .nav-bar__index {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .nav-bar__title {
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.55vw, 2.8rem);
    line-height: 0.94;
    letter-spacing: -0.022em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    transform-origin: center;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }

  .nav-bar__text {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.35;
    opacity: 0;
    transform: rotate(180deg) translateY(14px);
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform-origin: center;
    translate: -50% 0;
  }

  .nav-bar.is-expanded .nav-bar__text,
  .nav-bar.active .nav-bar__text {
    opacity: 0.84;
    transform: rotate(180deg) translateY(0);
  }

  .nav-bar.home {
    background: linear-gradient(180deg, #5f9791 0%, #406c67 100%);
  }

  .nav-bar.notechat {
    background: linear-gradient(180deg, #e1b560 0%, #be8d2d 100%);
  }

  .nav-bar.kpss {
    background: linear-gradient(180deg, #e09161 0%, #c76d39 100%);
  }

  .nav-bar.whoweare {
    background: linear-gradient(180deg, #9cb2a6 0%, #758f82 100%);
  }

  .nav-bar.gettouch {
    background: linear-gradient(180deg, #c17a8b 0%, #9f5163 100%);
  }

  .nav-bar.downloads {
    background: linear-gradient(180deg, #6e92df 0%, #456cc0 100%);
  }
}

.site-menu {
  position: relative;
  z-index: 1200;
}

.menu-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1300;
  width: var(--menu-rail-w);
  border: 0;
  padding: 0;
  background: var(--menu-blue);
  color: #fff;
  cursor: pointer;
}

.menu-rail span {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.menu-rail .menu-rail__page {
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 62vh;
  white-space: nowrap;
  text-align: center;
  font-size: 0.72rem;
  opacity: 0.92;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.3rem clamp(1.4rem, 5vw, 7rem) 1.6rem calc(var(--menu-rail-w) + clamp(1.4rem, 5vw, 7rem));
  background: var(--menu-blue);
  color: #fff;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s var(--ease),
    opacity 0.35s var(--ease);
}

.menu-overlay.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay a {
  color: inherit;
  text-decoration: none;
}

.menu-overlay__top,
.menu-overlay__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

.menu-close {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-overlay__grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(18rem, 1.2fr) minmax(17rem, 0.9fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  padding-top: clamp(4rem, 13vh, 8rem);
}

.menu-overlay__primary,
.menu-overlay__apps,
.menu-overlay__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-overlay__primary,
.menu-overlay__apps {
  gap: 0.22rem;
}

.menu-overlay__apps,
.menu-overlay__side > div {
  position: relative;
}

.menu-overlay__side > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-overlay__primary a,
.menu-overlay__apps a,
.menu-overlay__side a {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.menu-overlay__primary a {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
}

.menu-overlay__apps p,
.menu-overlay__side p {
  position: absolute;
  left: 0;
  top: -1.8rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.76;
}

.menu-overlay__apps a {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.menu-overlay__side {
  gap: clamp(4rem, 10vh, 8rem);
}

.menu-overlay__side a {
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
}

.menu-overlay__bottom {
  font-size: 0.78rem;
}

body.menu-open {
  overflow: hidden;
}

#main {
  padding-top: 0;
  margin-left: var(--menu-rail-w);
}

@media (min-width: 1024px) {
  #main {
    padding-right: 0;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 var(--page-pad) 2rem;
}

.hero-banner {
  width: calc(100% + (2 * var(--page-pad)));
  margin: 0 0 clamp(0.6rem, 1.2vw, 1rem);
  margin-left: calc(-1 * var(--page-pad));
  overflow: hidden;
  background: #000;
  padding-top: clamp(0.45rem, 0.9vw, 0.9rem);
  padding-bottom: clamp(0.45rem, 0.9vw, 0.9rem);
}

@media (min-width: 1024px) {
  .hero-banner {
    width: calc(100% + (2 * var(--page-pad)));
    margin-left: calc(-1 * var(--page-pad));
  }
}

.hero-banner__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.hero-banner__word {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.6vw, 7.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #efe7da;
  white-space: nowrap;
  padding-right: clamp(1.2rem, 3vw, 2.8rem);
  will-change: transform;
}

.hero-word {
  display: inline-block;
  margin-right: 0.28em;
}

.hero-word__initial {
  display: inline-block;
}

.hero-word__initial--sage {
  color: var(--sage);
}

.hero-word__initial--rose {
  color: var(--rose);
}

.hero-word__initial--orange {
  color: var(--orange);
}

.hero-word__initial--amber {
  color: var(--amber);
}

.hero-banner__word::after {
  content: "";
  display: inline-block;
  width: clamp(3rem, 4.75vw, 4.75rem);
  height: clamp(12px, 1.26vw, 21px);
  margin-left: clamp(1rem, 2vw, 1.8rem);
  margin-right: clamp(1rem, 2vw, 1.8rem);
  background: #efe7da;
  border-radius: clamp(0.8rem, 1.4vw, 1.6rem);
  vertical-align: middle;
  transform: translateY(-0.02em);
}

.hero__grid {
  max-width: none;
  margin: clamp(2.1rem, 4.2vw, 4.4rem) 0 0;
  width: 100%;
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.hero__copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero__eyebrow,
.section-heading__eyebrow,
.intro-band__label,
.downloads-block__eyebrow,
.showcase__kicker,
.hero-card__top {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.hero__title-wrap {
  position: relative;
  container-type: inline-size;
  --hero-title-gap: 0.08rem;
  --hero-block-gap: 2rem;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 19cqw, 13.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: none;
  will-change: transform;
}

.hero__line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  transform-origin: center left;
  padding-bottom: 0.06em;
}

.hero__title .hero__line:first-child {
  padding-bottom: 0;
}

.hero__line--sub {
  margin-top: -0.14em;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 12.3cqw, 8.75rem);
  letter-spacing: 0.01em;
  line-height: 0.88;
  color: #000;
  white-space: nowrap;
}

.hero__sub-art {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px #000;
}

.hero__sub-studio {
  display: inline-block;
  margin-top: 0;
}

.hero__letter {
  display: inline-block;
}

.hero__letter--1 {
  color: var(--sage);
}

.hero__letter--2 {
  color: var(--rose);
}

.hero__letter--3 {
  color: var(--orange);
}

.hero__letter--4 {
  color: var(--amber);
}

.hero__letter--5 {
  color: var(--teal);
}

.hero__letter--6 {
  color: var(--copper);
}

.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(24, 21, 18, 0.75);
}

.hero__drop-seq {
  display: inline-flex;
  gap: 0.01em;
}

.hero__drop-glyph {
  display: inline-block;
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.hero__pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem !important;
  padding-top: 0;
  border-top: none;
}

.hero__codeband {
  margin-top: 0.5rem;
  border-top: 2px solid rgba(24, 21, 18, 0.22);
  border-bottom: 2px solid rgba(24, 21, 18, 0.22);
  background: transparent;
  padding: 0.7rem 0;
  overflow: hidden;
}

.hero__codeband-head {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(24, 21, 18, 0.82);
}

.hero__codeband-body {
  margin: 0;
  padding: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.5;
  color: rgba(24, 21, 18, 0.9);
  overflow: hidden;
}

.hero__codeband-body code {
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  width: 0;
  max-width: 100%;
  box-sizing: content-box;
  animation: hero-code-typing 10.8s steps(90, end) 0.2s forwards;
}

.hero__codeband-body code::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  color: rgba(24, 21, 18, 0.55);
  animation: hero-code-caret 0.7s step-end infinite;
}

@keyframes hero-code-typing {
  0% {
    width: 0;
  }
  42% {
    width: 51%;
  }
  68% {
    width: 51%;
  }
  100% {
    width: 100%;
  }
}

@keyframes hero-code-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.tok-key {
  color: var(--rose);
}

.tok-fn {
  color: var(--orange);
}

.tok-class {
  color: var(--sage);
}

.tok-prop {
  color: var(--amber);
}

.tok-var {
  color: #1c1a17;
}

.tok-op,
.tok-par {
  color: #1c1a17;
}

.tok-sage {
  color: var(--sage);
}

.tok-rose {
  color: var(--rose);
}

.tok-orange {
  color: var(--orange);
}

.tok-amber {
  color: var(--amber);
}

.tok-teal {
  color: var(--teal);
}

.tok-copper {
  color: var(--copper);
}

.tok-blue {
  color: var(--blue);
}

.hero__pulse span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__pulse span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--pill-fill, rgba(255, 255, 255, 0.52));
  clip-path: inset(0 0 0 0);
}

.hero__pulse span:nth-child(1) {
  border-color: rgb(156, 178, 166);
  --pill-fill: rgba(156, 178, 166, 0.62);
  animation-delay: 0.05s;
}

.hero__pulse span:nth-child(2) {
  border-color: rgb(193, 122, 139);
  --pill-fill: rgba(193, 122, 139, 0.62);
  animation-delay: 0.16s;
}

.hero__pulse span:nth-child(3) {
  border-color: rgb(224, 145, 97);
  --pill-fill: rgba(224, 145, 97, 0.62);
  animation-delay: 0.27s;
}

.hero__pulse span:nth-child(4) {
  border-color: rgb(215, 164, 74);
  --pill-fill: rgba(215, 164, 74, 1);
  animation-delay: 0.38s;
}

.hero__pulse span:nth-child(5) {
  border-color: rgb(185, 120, 82);
  --pill-fill: rgba(185, 120, 82, 1);
  animation-delay: 0.49s;
}

.hero__pulse span:nth-child(1)::before {
}

.hero__pulse span:nth-child(2)::before {
}

.hero__pulse span:nth-child(3)::before {
}

.hero__pulse span:nth-child(4)::before {
}

.hero__pulse span:nth-child(5)::before {
}


.hero__lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: rgba(24, 21, 18, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero__quote {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  color: rgba(24, 21, 18, 0.68);
  font-style: italic;
}

.hero__quote span {
  font-style: normal;
  color: rgba(24, 21, 18, 0.82);
  font-weight: 700;
}

.hero__visual {
  margin: 0;
  width: min(100%, clamp(280px, 62cqw, 620px));
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  justify-self: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.8rem, 3vw, 4rem);
  }

  .hero__visual {
    width: min(100%, clamp(420px, 38vw, 860px));
    justify-self: center;
  }
}

.hero__illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.12));
  will-change: clip-path, opacity, transform, filter;
}

.hero-card {
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 50px rgba(34, 28, 20, 0.08);
  will-change: transform;
}

.hero-card h2 {
  margin: 0.5rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-card p,
.hero-card li,
.hero-card span {
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-card--dark {
  background: var(--surface-dark);
  color: var(--cream);
}

.hero-card--soft {
  background: rgba(255, 255, 255, 0.62);
}

.hero-card--accent {
  background: linear-gradient(135deg, #ccb89e 0%, #ead9bd 100%);
}

.hero-card__list,
.hero-card__meta {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__bottom {
  max-width: var(--content-max);
  width: 100%;
  margin: 1.8rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.hero__bottom p {
  margin: 0;
  color: var(--text-soft);
}

.hero__bottom a {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}

@media (min-width: 1680px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 3.2vw, 4.5rem);
  }

  .hero__visual {
    width: min(100%, clamp(620px, 38vw, 920px));
    overflow: visible;
    justify-self: center;
  }

  .hero__illustration {
    width: 100%;
    max-width: none;
    height: 100%;
    transform: none;
    object-position: center;
  }
}

.marquee {
  overflow: hidden;
  background: transparent;
  width: calc(100% + (2 * var(--page-pad)));
  margin-left: calc(-1 * var(--page-pad));
}

@media (min-width: 1024px) {
  .marquee {
    width: calc(100% + (2 * var(--page-pad)));
    margin-left: calc(-1 * var(--page-pad));
  }
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1rem 0;
  will-change: transform;
}

.marquee__track span {
  padding-right: 2.4rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #efe7da;
}

.marquee__track .marquee__italic {
  font-style: italic;
  color: #000;
}

.marquee__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35em;
  padding: 0.14em 0.42em;
  min-height: 1.05em;
  background: #000;
  color: #efe7da;
  line-height: 1;
  vertical-align: middle;
}

.intro-band {
  padding: 2.5rem var(--page-pad);
}

.intro-band__grid {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  gap: 1rem;
  padding: 1.4rem 0 0;
}

.intro-band__label {
  color: var(--text-soft);
}

.intro-band__text {
  max-width: 70rem;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.8;
}

.section-heading {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: none;
}

.section-heading h2 {
  margin: 0.6rem 0 0;
  max-width: 42rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.showcase {
  padding: clamp(3.5rem, 8vw, 6rem) var(--page-pad);
}

.showcase[data-theme="sage"] {
  --accent: var(--sage);
}

.showcase[data-theme="rose"] {
  --accent: var(--rose);
}

.showcase[data-theme="orange"] {
  --accent: var(--orange);
}

.showcase[data-theme="amber"] {
  --accent: var(--amber);
}

.showcase[data-theme="teal"] {
  --accent: var(--teal);
}

.showcase__grid {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  gap: clamp(1.35rem, 2.1vw, 2.35rem);
  align-items: center;
}

.code-divider {
  width: calc(100% - (2 * var(--page-pad)));
  margin: 0 var(--page-pad);
  padding: 0.28rem 0;
  overflow-x: hidden;
  white-space: nowrap;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.code-divider code {
  display: inline-block;
  min-width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.58rem, 0.72vw, 0.9rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #1a1712;
  will-change: transform;
  animation: code-stream-left 18s linear infinite;
}

@keyframes code-stream-left {
  0% {
    transform: translateX(4%);
  }
  100% {
    transform: translateX(-4%);
  }
}

@media (min-width: 920px) {
  .showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .showcase__grid--reverse .showcase__copy {
    order: 2;
    justify-self: end;
  }

  .showcase__grid--reverse .showcase__visual {
    order: 1;
    justify-self: start;
  }

  .showcase__copy {
    justify-self: start;
  }

  .showcase__visual {
    justify-self: end;
  }
}

.showcase__kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.showcase__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.showcase__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 15ch;
}

.showcase__body {
  max-width: 36rem;
  margin: 1.15rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.8;
  color: rgba(24, 21, 18, 0.78);
}

.showcase__copy {
  max-width: min(48rem, 100%);
}

.showcase__visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent;
  box-shadow: none;
  width: min(100%, clamp(280px, 44vw, 760px));
  aspect-ratio: 1 / 0.84;
  justify-self: center;
}

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

.btn,
.store-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  will-change: transform;
}

.btn--primary {
  background: var(--surface-dark);
  color: var(--cream);
}

.btn--ghost,
.store-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.btn--inline {
  margin-top: 1.6rem;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font-size: 0.74rem;
  color: var(--text);
  border-bottom: 2px solid var(--text);
}

.downloads-block {
  padding: clamp(4rem, 10vw, 6.5rem) var(--page-pad);
  background: transparent;
  border-top: none;
}

.downloads-block__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(24, 21, 18, 0.22);
  text-align: left;
}

.downloads-block__grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .downloads-block__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .downloads-block__right {
    justify-self: end;
    width: min(100%, 420px);
  }
}

.downloads-block__title {
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 18ch;
}

.downloads-block__text {
  margin: 1.1rem 0 0;
  max-width: 45rem;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(24, 21, 18, 0.74);
}

.downloads-block__contact {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(24, 21, 18, 0.22);
  background: linear-gradient(90deg, rgba(95, 151, 145, 0.22), rgba(224, 145, 97, 0.22));
}

.downloads-block__stores {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.downloads-block__tabbar {
  margin-top: clamp(1.7rem, 4vw, 2.8rem);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(24, 21, 18, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.downloads-block__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.86rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(24, 21, 18, 0.2);
  background: rgba(255, 255, 255, 0.46);
}

.downloads-block__tab:nth-child(1) {
  background: rgba(95, 151, 145, 0.2);
}

.downloads-block__tab:nth-child(2) {
  background: rgba(183, 99, 118, 0.2);
}

.downloads-block__tab:nth-child(3) {
  background: rgba(215, 164, 74, 0.22);
}

.downloads-block__tab:nth-child(4) {
  background: rgba(93, 131, 214, 0.2);
}

.contact-block {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  background:
    radial-gradient(circle at 12% 34%, rgba(95, 151, 145, 0.12), transparent 24%),
    radial-gradient(circle at 86% 26%, rgba(183, 99, 118, 0.12), transparent 25%),
    #f2ece1;
  overflow: hidden;
}

.contact-block__banner {
  margin: calc(var(--menu-rail-w) * -0.1) calc(var(--page-pad) * -1) clamp(3rem, 7vw, 5.5rem);
  min-height: clamp(4.6rem, 9vw, 7.4rem);
  padding: 0 var(--page-pad) 0 calc(var(--page-pad) + 0.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
  background: #050505;
  color: #efe7da;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.8vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.contact-block__banner b {
  color: var(--orange);
  font-weight: inherit;
}

.contact-block__banner span:nth-of-type(2) b {
  color: var(--sage);
}

.contact-block__banner span:nth-of-type(3) b {
  color: var(--rose);
}

.contact-block__banner i {
  flex: 0 0 clamp(2.2rem, 4vw, 4.6rem);
  height: clamp(0.55rem, 1vw, 0.9rem);
  border-radius: 999px;
  background: #efe7da;
}

.contact-block__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

@media (min-width: 980px) {
  .contact-block__grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.86fr);
  }
}

.contact-block__copy {
  max-width: 45rem;
}

.contact-block__title {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 12vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}

.contact-block__title span {
  display: block;
}

.contact-block__title span:first-child {
  color: var(--sage);
}

.contact-block__title span:last-child {
  color: var(--rose);
}

.contact-block__text {
  margin: clamp(1.4rem, 3vw, 2rem) 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.65;
  font-weight: 700;
}

.contact-block__chips,
.contact-block__actions,
.contact-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-block__chips {
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(24, 21, 18, 0.18);
}

.contact-block__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(95, 151, 145, 0.2);
  font-weight: 800;
}

.contact-block__chips span:nth-child(2) {
  background: rgba(183, 99, 118, 0.2);
}

.contact-block__chips span:nth-child(3) {
  background: rgba(215, 164, 74, 0.24);
}

.contact-block__actions {
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.contact-block__button,
.contact-block__form button {
  min-height: 3.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(24, 21, 18, 0.16);
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.contact-block__button--primary,
.contact-block__form button {
  background: #050505;
  color: #fff;
}

.contact-block__button--ghost {
  background: rgba(255, 255, 255, 0.45);
  color: #1a1712;
}

.contact-block__meta {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(24, 21, 18, 0.2);
}

.contact-block__meta div {
  flex: 1 1 9.5rem;
  min-width: 0;
  padding-right: 1rem;
}

.contact-block__meta strong,
.contact-block__meta span {
  display: block;
}

.contact-block__meta strong {
  font-size: 0.96rem;
}

.contact-block__meta span {
  margin-top: 0.4rem;
  color: rgba(24, 21, 18, 0.62);
}

.contact-block__form {
  position: relative;
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(24, 21, 18, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 26px 60px rgba(24, 21, 18, 0.08);
  backdrop-filter: blur(10px);
}

.contact-block__form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 900;
}

.contact-block__form input,
.contact-block__form textarea {
  width: 100%;
  border: 1px solid rgba(24, 21, 18, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.34);
  color: #1a1712;
  font: inherit;
  padding: 1rem;
  outline: none;
}

.contact-block__form textarea {
  resize: vertical;
  min-height: 11rem;
}

.contact-block__form input:focus,
.contact-block__form textarea:focus {
  border-color: rgba(24, 21, 18, 0.48);
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 760px) {
  .contact-block__banner {
    justify-content: flex-start;
    overflow: hidden;
  }

  .contact-block__banner span:nth-of-type(3),
  .contact-block__banner i:nth-of-type(2) {
    display: none;
  }

}

@media (max-width: 767px) {
  .menu-overlay {
    overflow-y: auto;
    padding: 1rem 1.2rem 1.4rem calc(var(--menu-rail-w) + 1.2rem);
  }

  .menu-overlay__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-top: 2.6rem;
  }

  .menu-overlay__primary a {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .menu-overlay__apps a {
    font-size: clamp(2.7rem, 12vw, 4.6rem);
  }

  .menu-overlay__side {
    gap: 2rem;
  }

  .menu-overlay__side a {
    font-size: clamp(1.7rem, 8vw, 3rem);
  }

  .menu-overlay__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2.5rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-banner {
    width: 100vw;
    margin-bottom: 0.6rem;
  }

  .marquee {
    width: 100%;
    margin-left: 0;
  }

  .hero__title {
    font-size: clamp(3.6rem, 19vw, 6.2rem);
  }

  .hero__line--sub {
    font-size: clamp(2.35rem, 14.1cqw, 4rem);
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__illustration {
    max-height: 62vh;
  }

  .showcase__visual {
    aspect-ratio: 1 / 1.04;
  }
}

/* Destination pages themed by their sidebar color */
.page-view {
  min-height: 100vh;
  color: #f5efe6;
}

.page-view a {
  color: inherit;
}

.page-view main {
  max-width: 960px;
}

.page-view h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: none;
  margin-bottom: 0.8rem;
}

.page-view p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.page-view--dialer {
  background: linear-gradient(180deg, #c7d8d0 0%, #afc5bc 100%);
}

.page-view--contact {
  background: linear-gradient(180deg, #e2bdc7 0%, #d2a2af 100%);
}

.page-view--messages {
  background: linear-gradient(180deg, #f0c8ab 0%, #e4af89 100%);
}

.page-view--notechat {
  background: linear-gradient(180deg, #f0dfb4 0%, #e4cb91 100%);
}

.dialer-landing {
  min-height: 100vh;
  display: block;
  padding: 0;
}

.dialer-landing__hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(4.8rem, 9vh, 7rem) var(--page-pad) clamp(2rem, 5vh, 3.4rem);
}

.dialer-landing__brand {
  margin: 0;
  position: absolute;
  top: clamp(1.2rem, 2.2vw, 2rem);
  left: var(--page-pad);
  margin-left: -0.07em; /* F harfinin çizgi başlangıcına optik olarak tam hizalanması için */
  font-family: var(--body);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(24, 21, 18, 0.8);
}

.dialer-landing__title {
  margin: clamp(1.8rem, 3.6vh, 2.8rem) 0 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 15.8vw, 13.5rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
  color: #111;
  text-transform: none;
  margin-left: -0.04em; /* D harfinin dikey gövdesini tam çizgi hizasına çekmek için */
}

.dialer-landing__line {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: clamp(0.65rem, 1.35vw, 1.1rem);
  background: rgba(24, 21, 18, 0.92);
}

@media (max-width: 1023px) {
  .dialer-landing__hero {
    padding-top: clamp(5.2rem, 12vh, 7.2rem);
  }

  .dialer-landing__title {
    font-size: clamp(4rem, 18vw, 8rem);
    line-height: 0.86;
  }
}

/* Horizontal applications page */
.apps-page {
  background: #efede8;
  overflow: hidden;
  scrollbar-width: none;
}

.apps-page::-webkit-scrollbar {
  display: none;
}

.apps-main {
  height: 100vh;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .apps-main {
    padding-right: 0;
  }
}

.apps-track {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: visible;
  scroll-snap-type: none;
  scrollbar-width: none;
  background: #efede8;
  border-left: 1px solid rgba(24, 21, 18, 0.18);
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.apps-track::-webkit-scrollbar {
  display: none;
}

.apps-track.is-dragging {
  cursor: grabbing;
}

.apps-panel {
  position: relative;
  flex: 0 0 clamp(820px, 72vw, 1180px);
  min-width: 820px;
  height: 100vh;
  border-right: 1px solid rgba(24, 21, 18, 0.18);
  display: grid;
  grid-template-columns: 43% 57%;
  grid-template-rows: 38% 44% 18%;
  padding: 0;
  color: #22201d;
  background:
    linear-gradient(to right, transparent calc(43% - 0.5px), rgba(24, 21, 18, 0.18) calc(43% - 0.5px), rgba(24, 21, 18, 0.18) calc(43% + 0.5px), transparent calc(43% + 0.5px));
}

.apps-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent calc(38% - 0.5px), rgba(24, 21, 18, 0.18) calc(38% - 0.5px), rgba(24, 21, 18, 0.18) calc(38% + 0.5px), transparent calc(38% + 0.5px)),
    linear-gradient(to bottom, transparent calc(82% - 0.5px), rgba(24, 21, 18, 0.18) calc(82% - 0.5px), rgba(24, 21, 18, 0.18) calc(82% + 0.5px), transparent calc(82% + 0.5px));
}

.apps-panel--intro,
.apps-panel--copy {
  align-content: stretch;
  justify-items: stretch;
}

.apps-panel__eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  justify-self: center;
  align-self: start;
  padding-top: clamp(2rem, 7vh, 4.8rem);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(34, 32, 29, 0.62);
}

.apps-panel__chapter {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  align-self: center;
  justify-self: center;
  font-family: var(--display);
  font-size: clamp(9rem, 15vw, 17.5rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.apps-panel h1,
.apps-panel h2 {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  align-self: center;
  justify-self: center;
  padding: 0 clamp(1.4rem, 3vw, 3rem);
  font-family: var(--display);
  font-size: clamp(3rem, 4.2vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
}

.apps-panel > p:not(.apps-panel__eyebrow):not(.apps-panel__chapter) {
  grid-column: 1;
  grid-row: 2;
  width: min(72%, 28rem);
  margin: 0;
  align-self: center;
  justify-self: center;
  padding: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  text-align: center;
  color: rgba(34, 32, 29, 0.72);
}

.apps-panel > * {
  min-width: 0;
}

.apps-panel__media {
  grid-column: 2;
  grid-row: 1 / -1;
  margin: 0;
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  place-items: center;
  padding: clamp(2.2rem, 4vw, 5rem);
  overflow: hidden;
  position: relative;
}

.apps-panel__media img {
  width: min(86%, 680px);
  height: min(84vh, 820px);
  object-fit: cover;
  border-radius: clamp(0.8rem, 1.4vw, 1.6rem);
  box-shadow: none;
  transform: scale(1.16) translateZ(0);
  transition:
    transform 0.65s var(--ease),
    filter 0.65s var(--ease),
    border-radius 0.65s var(--ease);
  will-change: transform;
}

.apps-panel:hover .apps-panel__media img {
  border-radius: clamp(2.4rem, 5vw, 5.5rem);
  transform: scale(1.14) translateZ(0);
  filter: saturate(1.04) contrast(1.03);
}

.product-page .apps-panel__media img {
  --app-image-width: 370px;
  --app-image-hover-width: 430px;
  width: var(--app-image-width);
  max-width: min(100%, 520px);
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: calc(100vh - 1.4rem);
  display: block;
  object-fit: cover;
  image-rendering: auto;
  overflow: hidden;
  transform: none;
  filter: none;
  will-change: auto;
  border-radius: clamp(0.45rem, 0.65vw, 0.75rem);
  box-shadow: 0 0 0 1px rgba(24, 21, 18, 0.1);
  transition:
    width 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-page .apps-main {
  overflow: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  background: var(--bg);
}

.product-page .apps-panel {
  flex-basis: 920px;
  min-width: 920px;
  grid-template-columns: 396px 524px;
  grid-template-rows: 320px 1fr 320px;
  background:
    linear-gradient(to right, transparent 395px, rgba(24, 21, 18, 0.18) 395px, rgba(24, 21, 18, 0.18) 396px, transparent 396px),
    var(--bg);
}

.product-page .apps-panel::before {
  width: 396px;
  background:
    linear-gradient(to bottom, transparent 319px, rgba(24, 21, 18, 0.18) 319px, rgba(24, 21, 18, 0.18) 320px, transparent 320px),
    linear-gradient(to bottom, transparent calc(100% - 320px), rgba(24, 21, 18, 0.18) calc(100% - 320px), rgba(24, 21, 18, 0.18) calc(100% - 319px), transparent calc(100% - 319px));
}

.product-page .apps-panel__eyebrow {
  display: none;
}

.product-page .apps-panel__chapter {
  align-self: center;
  padding-bottom: 0;
  font-size: clamp(7.4rem, 11vw, 12.5rem);
}

.product-page .apps-panel h1,
.product-page .apps-panel h2 {
  align-self: center;
}

.product-page .apps-panel:nth-child(even) .apps-panel__chapter {
  grid-row: 3;
}

.product-page .apps-panel:nth-child(even) h1,
.product-page .apps-panel:nth-child(even) h2 {
  grid-row: 1;
}

@media (min-width: 1600px) and (min-height: 820px) {
  .product-page .apps-panel {
    flex-basis: 1080px;
    min-width: 1080px;
    grid-template-columns: 464px 616px;
    grid-template-rows: 320px 1fr 320px;
    background:
      linear-gradient(to right, transparent 463px, rgba(24, 21, 18, 0.18) 463px, rgba(24, 21, 18, 0.18) 464px, transparent 464px),
      var(--bg);
  }

  .product-page .apps-panel::before {
    width: 464px;
  }

  .product-page .apps-panel__media img {
    --app-image-width: 520px;
    --app-image-hover-width: 600px;
    max-width: min(100%, 600px);
  }
}

.product-page .apps-main::-webkit-scrollbar {
  display: none;
}

.product-page .apps-track {
  background: var(--bg);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.product-page .apps-panel__media {
  place-items: center;
  padding: 0;
}

.product-page .apps-panel:hover .apps-panel__media img {
  border-radius: clamp(0.45rem, 0.65vw, 0.75rem);
  transform: none;
  filter: none;
}

.product-page .apps-panel .apps-panel__media img:hover {
  width: var(--app-image-hover-width);
  border-radius: clamp(2.6rem, 4.2vw, 4.8rem);
}

.apps-scroll-cue {
  position: fixed;
  right: clamp(1.2rem, 3vw, 2.8rem);
  bottom: clamp(1.2rem, 3vw, 2.8rem);
  z-index: 8;
  width: clamp(5rem, 8vw, 7.4rem);
  height: clamp(5rem, 8vw, 7.4rem);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  isolation: isolate;
}

.apps-scroll-cue span {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #007216;
  transition: transform 0.4s var(--ease);
}

.apps-scroll-cue b {
  position: relative;
  display: block;
  font-size: 0.76rem;
}

.apps-scroll-cue:hover span {
  transform: scale(0.9);
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  padding-left: calc(var(--menu-rail-w) + 15px);
}

.legal-page #main {
  margin-left: 0;
}

.legal-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 0;
  padding: clamp(4.8rem, 8vw, 7.2rem) 0 clamp(3rem, 6vw, 5rem);
}

.legal-hero {
  border-bottom: 1px solid rgba(24, 21, 18, 0.16);
  padding-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.legal-hero p,
.legal-hero span {
  margin: 0;
  color: rgba(24, 21, 18, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 10ch;
  margin: 0.7rem 0 0.95rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.legal-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 4vw, 2.6rem) 0 0;
}

.legal-copy h2 {
  margin: 1.2rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0;
}

.legal-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(24, 21, 18, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}


.legal-copy ul {
  display: grid;
  gap: 0.45rem;
  max-width: 760px;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(24, 21, 18, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.legal-copy li::marker {
  color: rgba(24, 21, 18, 0.55);
}
.legal-copy a,
.legal-links a {
  color: inherit;
  font-weight: 800;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 5vw, 3.6rem);
}

.legal-links a {
  border: 1px solid rgba(24, 21, 18, 0.18);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  text-decoration: none;
}

@media (max-width: 767px) {
  .legal-shell {
    width: calc(100% - 1.2rem);
    margin: 0;
    padding-top: 4.2rem;
  }

  .legal-page {
    padding-left: calc(var(--menu-rail-w) + 15px);
  }

  .legal-hero h1 {
    font-size: clamp(2.45rem, 15vw, 4.2rem);
    line-height: 1;
  }

  .legal-hero p,
  .legal-hero span {
    font-size: 0.72rem;
  }
}

@media (max-width: 767px) {
  .apps-page {
    overflow: hidden;
  }

  .apps-main {
    height: 100vh;
    padding-right: 0;
    overflow: hidden;
  }

  .apps-track {
    height: 100vh;
    overflow: visible;
  }

  .apps-panel {
    flex-basis: 88vw;
    min-width: 88vw;
    height: 100vh;
    padding: 1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .apps-panel__eyebrow,
  .apps-panel__chapter,
  .apps-panel h1,
  .apps-panel h2,
  .apps-panel > p:not(.apps-panel__eyebrow):not(.apps-panel__chapter),
  .apps-panel__media {
    grid-column: 1;
    grid-row: auto;
  }

  .apps-panel__media {
    padding: 1.4rem 0 0;
  }

  .apps-panel__media img {
    width: 100%;
    height: 68vh;
  }

  .product-page .apps-panel__media img {
    width: min(100%, 68vw);
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: 64vh;
    object-fit: cover;
  }

  .apps-scroll-cue {
    display: none;
  }
}

/* Dynamic apps directory and admin */
.apps-index-page,
.admin-page {
  min-height: 100vh;
  background: var(--bg);
  color: #22201d;
}

.apps-directory,
.admin-shell {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.apps-directory__header,
.admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.apps-directory__header p,
.admin-header p {
  margin: 0 0 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(34, 32, 29, 0.58);
}

.apps-directory__header h1,
.admin-header h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.apps-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.apps-directory-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(24, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.2);
}

.apps-directory-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(24, 21, 18, 0.1);
}

.apps-directory-card h2,
.admin-card h2,
.admin-panel-row h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.apps-directory-card p {
  margin: 0;
  color: rgba(34, 32, 29, 0.72);
  line-height: 1.55;
}

.admin-header form {
  margin: 0;
}

.admin-card,
.admin-panel-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(24, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.26);
}

.admin-card label,
.admin-panel-row label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.admin-card input,
.admin-card textarea,
.admin-card button,
.admin-header button,
.admin-actions button {
  width: 100%;
  border: 1px solid rgba(24, 21, 18, 0.22);
  border-radius: 0;
  background: #fffaf0;
  color: #22201d;
  font: inherit;
  padding: 0.9rem 1rem;
}

.admin-card textarea {
  resize: vertical;
}

.admin-card button,
.admin-header button,
.admin-actions button {
  width: auto;
  justify-self: start;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  background: #22201d;
  color: #fffaf0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-alert {
  margin: 0 0 1rem;
  padding: 1rem;
  font-weight: 800;
}

.admin-alert--error {
  background: #ffe1dc;
}

.admin-alert--success {
  background: #e2f3d8;
}

.admin-apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-apps-list a {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(24, 21, 18, 0.18);
  font-weight: 800;
}

@media (max-width: 767px) {
  .apps-directory,
  .admin-shell {
    width: min(100% - 1.5rem, 1180px);
    padding: 4rem 0;
  }

  .apps-directory__header,
  .admin-header {
    display: grid;
    align-items: start;
  }
}

.admin-bulk-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(24, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.admin-bulk-tools label {
  max-width: 14rem;
}

.admin-panel-preview {
  width: min(100%, 180px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(24, 21, 18, 0.16);
  background: #fffaf0;
}

.admin-panel-row label span {
  font-weight: 600;
  color: rgba(34, 32, 29, 0.62);
}

.admin-apps-list button {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(24, 21, 18, 0.18);
  background: #22201d;
  color: #fffaf0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}