@font-face {
  font-family: Sora;
  src: url("/fonts/sora.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "FOGETO Display";
  src: url("/fonts/fogeto-display.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --paper: #25292B;
  --ink: #F1EFE7;
  --mint: #A3AA6D;
  --lime: var(--mint);
  --muted: #ADB4AF;
  --line: #474E50;
  --surface: #303537;
  --font: Sora, system-ui, sans-serif;
  --display: "FOGETO Display", Sora, system-ui, sans-serif;
  --mono: ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
main {
  min-width: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 6px;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  color: var(--muted);
}
h1,
h2,
h3 {
  font-weight: 550;
  line-height: 1.13;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  font-kerning: none;
  font-feature-settings: "liga" 0;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.16;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
}
h3 {
  font-size: 25px;
}
::selection {
  background: var(--mint);
  color: var(--paper);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 25px;
}
.eyebrow .icon {
  width: 18px;
}
.skip {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 200;
  background: var(--mint);
  color: var(--paper);
  padding: 12px 20px;
}
.skip:focus {
  top: 10px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.text-link .icon:last-child {
  transition: transform 0.2s;
}
.text-link:hover .icon:last-child {
  transform: translate(3px, -2px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 17px 22px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s;
}
.button:hover {
  background: #B7BD88;
}
.button-small {
  padding: 11px 17px;
  font-size: 12px;
  gap: 18px;
}
.button-small .icon {
  width: 18px;
}
.status-point {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-block;
}
/* Shared navigation: one real wordmark at a readable size. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #25292Bf5;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #ffffff0c;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 96px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 206px;
  height: auto;
}
.header nav {
  display: flex;
  gap: 28px;
}
.header nav a {
  font-size: 12px;
  color: var(--muted);
  position: relative;
  padding: 12px 0;
}
.header nav a:hover,
.header nav a[aria-current="page"] {
  color: var(--mint);
}
.header nav a[aria-current="page"]:after {
  content: "";
  height: 2px;
  background: var(--mint);
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
}
.header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}
.language-switch .icon {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.menu-backdrop {
  position: fixed;
  inset: 72px 0 0;
  background: #151D20B3;
  z-index: 90;
}
.mobile-menu {
  padding: 18px 0 28px;
}
.mobile-navigation {
  display: grid;
}
.mobile-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  letter-spacing: -0.04em;
}
.mobile-navigation a[aria-current="page"] {
  color: var(--mint);
}
.mobile-menu-bottom {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.mobile-menu-bottom > span {
  font-size: 10px;
  color: var(--muted);
}
.menu-is-open {
  overflow: hidden;
}
/* Public hero and product layout. */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  min-height: 640px;
  padding-block: 80px 76px;
}
.hero h1 {
  font-size: clamp(60px, 7.3vw, 102px);
  font-weight: 550;
  line-height: 1.055;
  letter-spacing: -0.065em;
}
.hero h1 span {
  color: var(--mint);
}
.hero-intro {
  font-size: 17px;
  max-width: 510px;
  margin-top: 30px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}
.hero-actions .text-link {
  font-size: 12px;
}
.discipline-band {
  border-block: 1px solid var(--line);
}
.discipline-band > .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 23px;
}
.discipline-band span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.discipline-band .icon {
  color: var(--mint);
  width: 19px;
}
.discipline-band .discipline-signature {
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.work-section,
.services-section,
.process-section {
  padding-block: 108px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.9;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.work-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 365px;
  background: #303537;
  border: 1px solid #474E50;
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.work-card:hover {
  border-color: #A3AA6Da0;
  transform: translateY(-4px);
}
.work-card-copy {
  padding: 28px 0 30px 28px;
  display: flex;
  align-items: start;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.app-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 28px;
}
.app-badge img {
  width: 37px;
  height: 37px;
  border-radius: 10px;
}
.work-card h3 {
  font-size: 25px;
  max-width: 230px;
  line-height: 1.17;
}
.work-card p {
  font-size: 12px;
  margin: 13px 0 28px;
  max-width: 195px;
}
.work-action {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  font-size: 11px;
  color: var(--mint);
}
.work-action .icon {
  width: 18px;
}
.work-card-art {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  margin: 0 0 0 12px;
  background: radial-gradient(ellipse at 65% 40%, #A3AA6D18, transparent 70%);
}
.work-card-art img {
  position: absolute;
  left: 10%;
  top: 46px;
  width: 200px;
  max-width: none;
  border: 4px solid #2C3739;
  border-radius: 18px;
  transform: rotate(9deg);
  box-shadow: 0 12px 30px #1B252760;
  transition: transform 0.3s;
}
.work-card:hover .work-card-art img {
  transform: translateY(-8px) rotate(6deg);
}
.section-bottom {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin-top: 27px;
  align-items: start;
}
.section-bottom p,
.ownership-note {
  font-size: 11px;
  max-width: 730px;
  line-height: 1.8;
}
.section-bottom a {
  white-space: nowrap;
  font-size: 12px;
}
.ownership-note {
  margin-top: 28px;
}
.services-section {
  padding-top: 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.service-card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.service-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A3AA6D10;
  border: 1px solid #A3AA6D30;
  color: var(--mint);
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.service-card h3 {
  margin: 28px 0 18px;
  font-size: 24px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.85;
}
.service-card .service-scope {
  font-size: 11px;
  color: var(--mint);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.founder-section {
  background: #F1EFE7;
  color: #25292B;
  padding: 82px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
  align-items: center;
}
.founder-section .eyebrow {
  color: #ADB4AF;
}
.founder-section p {
  color: #ADB4AF;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 22px;
  max-width: 540px;
}
.founder-section h2 {
  font-size: clamp(32px, 3.8vw, 50px);
}
.founder-section .text-link {
  margin-top: 25px;
}
.founder-portrait {
  position: relative;
  max-width: 390px;
}
.founder-portrait > img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 10px 70px 10px 10px;
  filter: saturate(0.65);
}
.founder-portrait > div {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.founder-portrait strong {
  font-size: 17px;
  letter-spacing: -0.03em;
}
.founder-portrait span {
  font-size: 11px;
  color: #ADB4AF;
}
.profile-actions {
  display: flex;
  gap: 25px;
}
.process-section h2 {
  margin-bottom: 52px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  position: relative;
  padding-top: 34px;
}
.process-point {
  position: absolute;
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}
.process-grid h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 18px;
}
.process-grid p {
  font-size: 13px;
  line-height: 1.9;
}
.cta-section {
  border-top: 1px solid var(--line);
  padding-block: 85px 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-section h2 {
  font-size: clamp(42px, 5.5vw, 76px);
}
.cta-section p:not(.eyebrow) {
  margin-top: 26px;
  max-width: 520px;
  font-size: 14px;
}
.cta-arrow {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--mint);
  display: grid;
  place-items: center;
  color: var(--mint);
  transition:
    background 0.2s,
    color 0.2s;
}
.cta-arrow .icon {
  width: 52px;
  height: 52px;
}
.cta-arrow:hover {
  background: var(--mint);
  color: var(--paper);
}
.footer {
  background: #1F282A;
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer p {
  font-size: 12px;
  margin: 20px 0;
}
.footer .brand-logo {
  width: 220px;
}
.founder-link {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.founder-link .icon {
  width: 14px;
}
.footer-links {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.footer-links strong {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer-links a {
  display: flex;
  gap: 9px;
  align-items: center;
}
.footer-links .icon {
  width: 15px;
  height: 15px;
}
.footer a:hover {
  color: var(--mint);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--mint);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 40;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top .icon {
  width: 28px;
  height: 28px;
}
/* Shared inner pages and real product artwork. */
.page-section {
  padding-block: 65px 95px;
}
.page-heading {
  position: relative;
  padding: 34px 0 66px;
  isolation: isolate;
}
.page-heading h1 {
  font-size: clamp(44px, 5.5vw, 76px);
  max-width: 930px;
}
.page-lead,
.page-heading > p:last-child {
  max-width: 660px;
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.9;
}
.section-fold {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 280px;
  opacity: 0.055;
  pointer-events: none;
  overflow: hidden;
}
.section-fold img {
  width: 100%;
}
.compact-heading {
  padding-bottom: 10px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 75px;
}
.contact-primary {
  min-width: 0;
  padding-top: 24px;
}
.contact-email {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2.1vw, 27px);
  letter-spacing: -0.055em;
  line-height: 1.5;
  color: var(--mint);
}
.contact-primary > p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 22px;
}
.contact-profiles {
  margin-top: 52px;
}
.contact-profiles .text-link {
  margin-right: 22px;
}
.conversation-card {
  padding: 35px;
  background: #303537;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.conversation-card h2 {
  font-size: 25px;
  margin: 22px 0;
}
.conversation-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.conversation-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.conversation-card .icon {
  width: 17px;
}
.support-band {
  border-top: 1px solid var(--line);
  margin-top: 75px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.support-band h2 {
  font-size: 23px;
}
.support-band p {
  margin-top: 10px;
  font-size: 13px;
}
.prose {
  max-width: 760px;
}
.prose section {
  margin-bottom: 42px;
}
.prose h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.prose p {
  line-height: 1.9;
  font-size: 14px;
}
.brand-presentation {
  padding: 70px;
  background: #1F282A;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 30px;
}
.brand-presentation img {
  display: block;
  width: 850px;
  margin: auto;
}
.brand-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}
.brand-swatch {
  border: 1px solid #474E50;
  border-radius: 10px;
  text-align: left;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-swatch strong {
  font-size: 17px;
}
.brand-swatch span {
  font-family: var(--mono);
}
.swatch-0 {
  background: #25292B;
  color: #F1EFE7;
}
.swatch-1 {
  background: #A3AA6D;
  color: #25292B;
}
.swatch-2 {
  background: #F1EFE7;
  color: #25292B;
}
.copy-feedback {
  font-size: 12px;
  min-height: 20px;
  margin-bottom: 20px;
}
.back-link,
.public-back {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
.product-opening {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr;
  gap: 90px;
  align-items: center;
}
.app-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  font-size: 12px;
  color: var(--muted);
}
.app-identity > img {
  width: 56px;
  height: 56px;
  border-radius: 13px;
}
.app-identity small {
  display: block;
  font-size: 10px;
  margin-top: 4px;
}
.product-intro h1 {
  font-size: clamp(44px, 5vw, 68px);
}
.product-promise {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.035em;
  margin: 22px 0 16px;
}
.product-description {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 26px;
  max-width: 560px;
}
.product-poster {
  padding: 20px;
  border: 1px solid var(--line);
  background: #303537;
  border-radius: 20px;
  transform: rotate(3deg);
  max-width: 300px;
  justify-self: center;
}
.product-poster img {
  border-radius: 9px;
}
.product-gallery-link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  margin-top: 25px;
}
.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 100px 0 50px;
}
.product-story h2 {
  font-size: 42px;
}
.product-story p {
  line-height: 1.9;
  font-size: 15px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  border-block: 1px solid var(--line);
  padding: 35px 0;
  margin-bottom: 70px;
}
.benefit-grid h2 {
  font-size: 20px;
  line-height: 1.35;
  margin: 20px 0 13px;
}
.benefit-grid p {
  font-size: 12px;
  line-height: 1.9;
}
.gallery-section .section-heading {
  margin-bottom: 30px;
}
.gallery-section h2 {
  font-size: 38px;
}
.gallery-hint {
  font-size: 12px;
  color: var(--muted);
}
.aso-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  max-width: 920px;
  margin: auto;
}
.gallery-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.gallery-image img {
  width: 100%;
}
.aso-gallery figcaption {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  color: var(--muted);
}
.product-reassurance {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  margin: 35px 0;
}
.product-reassurance .icon {
  color: var(--mint);
}
.product-reassurance p,
.product-note {
  font-size: 13px;
}
.product-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 35px 0;
}
.product-resources > a {
  display: flex;
  gap: 17px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.product-resources strong {
  font-size: 15px;
}
.product-resources small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.product-resources > a > .icon {
  margin-left: auto;
}
.download-panel {
  padding: 38px;
  background: #303537;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}
.download-panel h2 {
  font-size: 35px;
}
.download-panel p {
  font-size: 13px;
  margin-top: 15px;
}
.download-panel .eyebrow {
  font-size: 10px;
}
.cross-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  margin-top: 35px;
}
/* Article templates use the same container, heading and navigation. */
.section-title-icon {
  display: none;
}
.journal-intro {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 35px;
}
.journal-intro .icon {
  width: 16px;
}
.blog-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.public-empty {
  grid-column: 1/-1;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #303537;
  max-width: 800px;
}
.public-empty h2 {
  font-size: 32px;
  margin: 24px 0 16px;
}
.public-empty p {
  font-size: 14px;
  max-width: 610px;
  margin-bottom: 26px;
}
.public-post-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.public-post-card > div {
  padding: 28px;
}
.post-cover {
  display: block;
  aspect-ratio: 1.6;
  overflow: hidden;
}
.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-post-card h2 {
  font-size: 27px;
  margin: 15px 0;
}
.public-post-card p {
  font-size: 13px;
}
.public-eyebrow {
  color: var(--mint);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.read-link {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--mint);
  font-size: 12px;
  margin-top: 23px;
}
.public-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  font-size: 12px;
}
.public-pagination .icon {
  width: 17px;
}
.public-pagination > span {
  color: var(--muted);
}
.public-article {
  width: min(820px, calc(100% - 96px));
  margin: auto;
  padding: 70px 0 95px;
}
.public-article > header {
  position: relative;
  isolation: isolate;
}
.public-article h1 {
  font-size: clamp(35px, 5vw, 64px);
  line-height: 1.18;
  margin: 22px 0;
}
.article-excerpt {
  font-size: 19px;
  line-height: 1.8;
}
.article-cover {
  border-radius: 12px;
  margin: 35px 0;
  width: 100%;
}
.article-body {
  font-size: 16px;
  line-height: 1.95;
  overflow-wrap: anywhere;
  min-width: 0;
}
.article-body p {
  margin: 22px 0;
}
.article-body h2 {
  font-size: 32px;
  margin: 45px 0 20px;
}
.article-body h3 {
  font-size: 25px;
  margin: 30px 0 16px;
}
.article-body a,
.article-source a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--mint);
}
.article-body pre {
  padding: 24px;
  background: #202426;
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 100%;
  overflow: auto;
  font-size: 13px;
  white-space: pre;
}
.article-body code {
  font-family: var(--mono);
}
.article-body img {
  max-width: 100%;
  height: auto;
}
.article-body table {
  display: block;
  overflow: auto;
  border-collapse: collapse;
}
.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
}
.article-body blockquote {
  margin: 25px 0;
  padding: 0 22px;
  border-left: 3px solid var(--mint);
}
.article-source {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  margin: 30px 0;
}
.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 12px;
}
.preview-banner {
  background: var(--mint);
  color: var(--paper);
  padding: 18px;
  text-align: center;
  font-size: 12px;
}
.preview-banner strong {
  margin-right: 20px;
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
  .menu-backdrop {
    display: none;
  }
}
@media (max-width: 1100px) {
  .header {
    gap: 20px;
  }
  .header nav {
    gap: 18px;
  }
  .brand-logo {
    width: 180px;
  }
  .header-actions {
    gap: 18px;
  }
  .hero {
    gap: 20px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero .button {
    gap: 12px;
  }
  .founder-grid {
    gap: 60px;
  }
  .work-card {
    grid-template-columns: 1.25fr 1fr;
  }
  .work-card-copy {
    padding-left: 22px;
  }
  .work-card h3 {
    font-size: 22px;
  }
  .work-card-art img {
    width: 180px;
  }
  .product-opening {
    gap: 45px;
  }
}
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .header {
    height: 74px;
  }
  .header nav,
  .header-actions {
    display: none;
  }
  .brand-logo {
    width: 183px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 0;
    padding-block: 55px 65px;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 23px;
  }
  .discipline-signature {
    display: none !important;
  }
  .work-section,
  .services-section,
  .process-section {
    padding-block: 70px;
  }
  .services-section {
    padding-top: 15px;
  }
  .work-card {
    min-height: 330px;
  }
  .work-card-art {
    margin-left: 0;
  }
  .work-card-art img {
    width: 160px;
  }
  .work-card h3 {
    font-size: 21px;
  }
  .app-badge {
    display: block;
  }
  .app-badge img {
    display: block;
    margin-bottom: 8px;
  }
  .services-grid {
    gap: 22px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 12px;
  }
  .founder-grid {
    gap: 42px;
  }
  .founder-section {
    padding-block: 60px;
  }
  .founder-section p {
    font-size: 13px;
  }
  .process-grid {
    gap: 25px;
  }
  .process-grid h3 {
    font-size: 20px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 12px;
  }
  .contact-layout {
    gap: 30px;
  }
  .contact-email {
    font-size: 19px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .download-panel {
    align-items: start;
    flex-direction: column;
  }
  .product-story {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
  }
  .footer .brand-logo {
    width: 180px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 72px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding-top: 46px;
    padding-bottom: 35px;
  }
  .hero h1 {
    font-size: clamp(57px, 14.5vw, 83px);
  }
  html[lang="tr"] .hero h1 {
    font-size: clamp(45px, 11.5vw, 64px);
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 23px;
  }
  .hero-intro {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 24px;
    max-width: 450px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 15px;
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .hero-actions .icon {
    width: 17px;
    height: 17px;
  }
  .discipline-band > .wrap {
    padding-block: 18px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .discipline-band span {
    font-size: 8px;
    gap: 6px;
  }
  .discipline-band .icon {
    width: 14px;
    height: 14px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading > p {
    max-width: 440px;
    margin-top: 20px;
    font-size: 13px;
  }
  .work-section,
  .services-section,
  .process-section {
    padding-block: 59px;
  }
  .services-section {
    padding-top: 4px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 36px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .work-card {
    min-height: 324px;
    grid-template-columns: 1.15fr 1fr;
  }
  .work-card-copy {
    padding: 23px 0 24px 22px;
  }
  .work-card h3 {
    font-size: 23px;
    max-width: 200px;
  }
  .app-badge {
    display: flex;
    margin-bottom: 24px;
    font-size: 8px;
    gap: 8px;
  }
  .app-badge img {
    margin: 0;
    width: 32px;
    height: 32px;
  }
  .work-card p {
    font-size: 11px;
    max-width: 165px;
  }
  .work-card-art img {
    width: 177px;
    top: 40px;
    left: 8px;
  }
  .section-bottom {
    display: block;
  }
  .section-bottom p {
    font-size: 10px;
  }
  .section-bottom > a {
    margin-top: 22px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
    padding-top: 24px;
  }
  .service-card .service-icon {
    grid-row: 1/4;
  }
  .service-card h3 {
    margin: 2px 0 14px;
    font-size: 23px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-card .service-scope {
    margin-top: 18px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-grid > div:last-child {
    order: -1;
  }
  .founder-section h2 {
    font-size: 34px;
  }
  .founder-section p {
    font-size: 13px;
  }
  .founder-portrait {
    max-width: 370px;
  }
  .founder-portrait > img {
    aspect-ratio: 1.35;
  }
  .founder-portrait strong {
    font-size: 16px;
  }
  .process-section h2 {
    margin-bottom: 34px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .process-grid article {
    padding-top: 24px;
  }
  .process-grid h3 {
    font-size: 23px;
    margin-bottom: 14px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .cta-section {
    padding-block: 50px 64px;
    gap: 20px;
  }
  .cta-section h2 {
    font-size: 40px;
  }
  .cta-section p:not(.eyebrow) {
    font-size: 12px;
  }
  .cta-arrow {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
  }
  .cta-arrow .icon {
    width: 31px;
    height: 31px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 8px;
    margin-top: 30px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer .brand-logo {
    width: 200px;
  }
  .footer-links {
    font-size: 11px;
  }
  .page-section {
    padding-block: 35px 65px;
  }
  .page-heading {
    padding: 18px 0 40px;
  }
  .page-heading h1 {
    font-size: 43px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }
  .page-heading p:last-child {
    font-size: 14px;
    margin-top: 22px;
  }
  .section-fold {
    width: 170px;
    right: 0;
    top: 5px;
  }
  .compact-heading {
    padding-bottom: 15px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-email {
    font-size: 21px;
  }
  .contact-primary {
    padding-top: 0;
  }
  .contact-profiles {
    margin-top: 32px;
  }
  .conversation-card {
    padding: 25px;
  }
  .conversation-card h2 {
    font-size: 24px;
  }
  .support-band {
    display: block;
    margin-top: 42px;
  }
  .support-band .text-link {
    margin-top: 20px;
  }
  .product-opening {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-intro h1 {
    font-size: 46px;
  }
  .product-promise {
    font-size: 21px;
  }
  .product-description {
    font-size: 13px;
  }
  .product-poster {
    max-width: 245px;
  }
  .product-story {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }
  .product-story h2 {
    font-size: 34px;
  }
  .product-story p {
    font-size: 13px;
  }
  .benefit-grid {
    gap: 28px 20px;
  }
  .benefit-grid h2 {
    font-size: 18px;
  }
  .benefit-grid p {
    font-size: 11px;
  }
  .gallery-section .section-heading {
    display: flex;
  }
  .gallery-section h2 {
    font-size: 29px;
  }
  .gallery-hint {
    display: none;
  }
  .aso-gallery {
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .aso-gallery figcaption {
    font-size: 9px;
  }
  .gallery-image {
    border-radius: 8px;
  }
  .product-resources {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-resources > a {
    padding: 18px;
  }
  .download-panel {
    padding: 25px;
  }
  .download-panel h2 {
    font-size: 31px;
  }
  .download-panel .button {
    font-size: 12px;
    gap: 13px;
  }
  .cross-navigation {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .brand-presentation {
    padding: 35px 18px;
  }
  .brand-swatches {
    gap: 9px;
  }
  .brand-swatch {
    padding: 16px 12px;
  }
  .brand-swatch strong,
  .brand-swatch span {
    font-size: 10px;
  }
  .brand-swatch .icon {
    width: 17px;
  }
  .prose p {
    font-size: 13px;
  }
  .blog-index {
    grid-template-columns: 1fr;
  }
  .journal-intro {
    flex-direction: column;
    gap: 10px;
  }
  .public-empty {
    padding: 28px;
  }
  .public-empty h2 {
    font-size: 28px;
  }
  .public-empty p {
    font-size: 13px;
  }
  .public-article {
    width: calc(100% - 40px);
    padding-top: 38px;
  }
  .public-article h1 {
    font-size: 36px;
  }
  .article-excerpt {
    font-size: 16px;
  }
  .article-body {
    font-size: 14px;
  }
  .article-body h2 {
    font-size: 28px;
  }
  .article-source {
    padding: 16px;
    font-size: 11px;
  }
  .article-footer {
    flex-wrap: wrap;
  }
  .back-to-top {
    right: 10px;
    bottom: 16px;
  }
  .public-eyebrow {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
