@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: 90px;
  --nav-bar-w-hover: 230px;
  --sidebar-width: calc(5 * var(--nav-bar-w));
}

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

html {
  scroll-behavior: smooth;
}

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.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: block;
    width: var(--sidebar-width);
    height: 100vh;
    overflow: hidden;
  }

  .nav-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--nav-bar-w);
    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:
      width 0.45s var(--ease),
      filter 0.25s var(--ease);
    overflow: hidden;
  }

  .nav-bar.home {
    left: 0;
  }

  .nav-bar.notechat {
    left: var(--nav-bar-w);
  }

  .nav-bar.kpss {
    left: calc(2 * var(--nav-bar-w));
  }

  .nav-bar.whoweare {
    left: calc(3 * var(--nav-bar-w));
  }

  .nav-bar.gettouch {
    left: calc(4 * var(--nav-bar-w));
  }

  .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: var(--nav-bar-w);
    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.7rem, 3.1vw, 3.7rem);
    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%);
  }
}

#main {
  padding-top: 0;
}

@media (min-width: 1024px) {
  #main {
    padding-right: calc(var(--sidebar-width) + clamp(1rem, 2.6vw, 2.8rem));
  }
}

.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% + var(--page-pad) + var(--sidebar-width));
    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, 8.8vw, 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: 0;
  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;
  --hero-title-gap: 0.08rem;
  --hero-block-gap: 2rem;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7.2rem, 20vw, 15.6rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: none;
  will-change: transform;
}

.hero__line {
  display: block;
  overflow: hidden;
  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(4.65rem, 12.6vw, 9.85rem);
  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;
}

.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: 100%;
  min-height: clamp(420px, 56vh, 720px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.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: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .hero__visual {
    overflow: visible;
  }

  .hero__illustration {
    width: 59%;
    max-width: 100%;
    height: auto;
    transform: translateX(-35%);
    object-position: right 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% + var(--page-pad) + var(--sidebar-width));
    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;
  aspect-ratio: 1 / 0.84;
}

.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);
}

@media (max-width: 767px) {
  .hero {
    padding-top: 2.5rem;
  }

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

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

  .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;
  }
}
