/* ==========================================================================
   Studio Avelin — inner pages (About Me, etc.)
   Loaded in addition to style.css and home.css (shared chrome + tokens).
   ========================================================================== */

.sa-page-hero {
  overflow-x: clip;
}

/* Contact page */
.sa-contact-page {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
  padding-block: clamp(7.5rem, 13vw, 11rem) clamp(5rem, 9vw, 8rem);
}

.sa-contact-page__intro {
  max-width: 760px;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.sa-contact-page__intro h1 {
  margin: 0.8rem 0 1.5rem;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.sa-contact-page__intro p {
  max-width: 640px;
  margin: 0;
  color: var(--sa-muted, #6f7174);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.sa-contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.sa-contact-form {
  display: grid;
  gap: 1.5rem;
}

.sa-contact-form__row {
  display: grid;
  gap: 0.55rem;
}

.sa-contact-form label {
  color: var(--sa-ink, #151922);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sa-contact-form label span,
.sa-contact-form label small {
  color: var(--sa-muted, #6f7174);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
}

.sa-contact-form input:not([type="checkbox"]),
.sa-contact-form select,
.sa-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 25, 34, 0.2);
  border-radius: 0;
  background: #fff;
  color: var(--sa-ink, #151922);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.95rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.sa-contact-form input:focus,
.sa-contact-form select:focus,
.sa-contact-form textarea:focus {
  border-color: #151922;
  box-shadow: 0 0 0 3px rgba(190, 242, 0, 0.38);
  outline: 0;
}

.sa-contact-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.83rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.sa-contact-form__consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  accent-color: #151922;
}

.sa-contact-form__consent a,
.sa-contact-page__aside a {
  color: inherit;
  text-decoration-color: #bef200;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.sa-contact-form__submit {
  justify-self: start;
  border: 1px solid #bef200;
  background: #bef200;
  color: #151922;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 1.35rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sa-contact-form__submit:hover,
.sa-contact-form__submit:focus-visible {
  background: #d0ff22;
  border-color: #d0ff22;
  transform: translateY(-2px);
}

.sa-contact-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.sa-contact-page__aside {
  border-top: 2px solid #bef200;
  background: #25282d;
  color: #f5f5f3;
  padding: 1.75rem;
}

.sa-contact-page__aside .sa-about-eyebrow {
  color: #bef200;
}

.sa-contact-page__aside p {
  margin: 1.2rem 0 0.65rem;
  line-height: 1.6;
}

.sa-contact-page__aside a {
  color: #fff;
  overflow-wrap: anywhere;
}

.sa-contact-page__channels {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.sa-contact-page__channels a:last-child {
  color: #bef200;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.sa-contact-page__channels a:last-child:hover,
.sa-contact-page__channels a:last-child:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.sa-contact-page__response {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.sa-contact-notice {
  margin: -2rem 0 2.5rem;
  border-left: 4px solid #151922;
  background: rgba(21, 25, 34, 0.06);
  padding: 1rem 1.2rem;
  line-height: 1.55;
}

.sa-contact-notice--sent {
  border-left-color: #99c400;
  background: rgba(190, 242, 0, 0.14);
}

@media (max-width: 760px) {
  .sa-contact-page {
    width: min(100% - 2rem, 1120px);
    padding-top: 6.5rem;
  }

  .sa-contact-page__layout {
    grid-template-columns: 1fr;
  }

  .sa-contact-page__aside {
    padding: 1.4rem;
  }

  .sa-contact-form__submit {
    width: 100%;
  }
}

.sa-page-hero__inner {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  .sa-page-hero__inner {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}

.sa-page-section {
  border-top: 1px solid var(--sa-line-soft, rgba(21, 25, 34, 0.08));
  padding: 5rem 0;
}

@media (min-width: 900px) {
  .sa-page-section {
    padding: 8rem 0;
  }
}

/* ------------------------------------------------------- About: layout --- */

.sa-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sa-about-grid {
    /* ~40% portrait / ~60% text, mirroring the 5/12 + 7/12 React grid. */
    grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
    gap: 5rem;
  }
}

/* --------------------------------------------- About: portrait (4 / 5) --- */

.sa-about-grid__media {
  /* Keeps the portrait compact instead of filling the whole column. */
  width: 100%;
  max-width: min(100%, 440px);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .sa-about-grid__media {
    margin: 0;
  }
}

.sa-about-portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.sa-about-portrait__offset {
  position: absolute;
  inset: -0.5rem;
  border: 1px solid rgba(21, 25, 34, 0.2);
  transform: translate(0.5rem, 0.5rem);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

@media (min-width: 900px) {
  .sa-about-portrait__offset {
    inset: -1rem;
    transform: translate(1rem, 1rem);
  }
}

.sa-about-portrait:hover .sa-about-portrait__offset {
  transform: translate(0.5rem, 0.5rem);
}

.sa-about-portrait__frame {
  position: relative;
  overflow: hidden;
}

.sa-about-portrait__img,
.sa-about-portrait__placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 1400ms ease, filter 900ms ease;
  background: var(--sa-surface, #ececec);
}

.sa-about-portrait:hover .sa-about-portrait__img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.sa-about-portrait__caption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sa-bg, #f2f2f2);
  mix-blend-mode: difference;
  pointer-events: none;
}

.sa-about-portrait__dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sa-lime, #c7f000);
}

/* --------------------------------------------------------- About: text --- */

.sa-about-title {
  margin-top: 1.75rem;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.sa-about-lead {
  margin-top: 1.75rem;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(21, 25, 34, 0.8);
}

@media (min-width: 900px) {
  .sa-about-title {
    margin-top: 2.5rem;
  }

  .sa-about-lead {
    margin-top: 2rem;
    font-size: 1.1875rem;
  }
}

.sa-about-note {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--sa-muted, rgba(21, 25, 34, 0.6));
}

.sa-about-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .sa-about-actions {
    margin-top: 3.5rem;
  }
}

/* ---------------------------------------------------- About: interests --- */

.sa-about-interests {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .sa-about-interests {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 2.5rem 5rem;
  }
}

.sa-about-interests__title {
  margin-top: 1.5rem;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sa-about-interests__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .sa-about-interests__list {
    grid-template-columns: 1fr 1fr;
  }
}

.sa-about-interests__list li {
  border-top: 1px solid var(--sa-line, rgba(21, 25, 34, 0.12));
  padding-top: 1rem;
}

.sa-about-interests__key {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.sa-about-interests__val {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--sa-muted, rgba(21, 25, 34, 0.6));
}

/* -------------------------------------------------------- Legal Pages --- */

.sa-legal-hero {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sa-line, rgba(21, 25, 34, 0.12));
  margin-bottom: 2.5rem;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (min-width: 900px) {
  .sa-legal-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.sa-legal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sa-muted, rgba(21, 25, 34, 0.6));
  margin-bottom: 1rem;
}

.sa-legal-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sa-lime, #c7f000);
}

.sa-legal-hero__title {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--sa-ink, #151922);
  margin: 0 0 1.75rem 0;
}

.sa-legal-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(21, 25, 34, 0.04);
  border: 1px solid var(--sa-line, rgba(21, 25, 34, 0.12));
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--sa-muted, rgba(21, 25, 34, 0.7));
  margin-top: 0.5rem;
}

.sa-legal-card {
  background: var(--sa-surface, #ffffff);
  border: 1px solid var(--sa-line, rgba(21, 25, 34, 0.12));
  padding: 2.25rem 1.75rem;
  margin-bottom: 2.5rem;
  transition: border-color 300ms ease;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (min-width: 768px) {
  .sa-legal-card {
    padding: 3rem 2.75rem;
    margin-bottom: 3rem;
  }
}

.sa-legal-card:hover {
  border-color: rgba(21, 25, 34, 0.25);
}

.sa-legal-card__num {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sa-muted, rgba(21, 25, 34, 0.5));
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sa-legal-card__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sa-line, rgba(21, 25, 34, 0.12));
}

.sa-legal-card h2 {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--sa-ink, #151922);
  margin-top: 0;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.sa-legal-card h3 {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sa-ink, #151922);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.sa-legal-card p {
  font-size: 1.03125rem;
  line-height: 1.75;
  color: var(--sa-muted, rgba(21, 25, 34, 0.85));
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.sa-legal-card p:last-child {
  margin-bottom: 0;
}

.sa-legal-card strong {
  color: var(--sa-ink, #151922);
  font-weight: 600;
}

.sa-legal-card a {
  color: var(--sa-ink, #151922);
  text-decoration: none;
  border-bottom: 1px solid var(--sa-lime, #c7f000);
  transition: background 200ms ease;
  padding-bottom: 1px;
}

.sa-legal-card a:hover {
  background: rgba(199, 240, 0, 0.25);
}

.sa-legal-card ul {
  margin: 1.25rem 0;
  padding-left: 0;
  list-style: none;
}

.sa-legal-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.03125rem;
  line-height: 1.65;
  color: var(--sa-muted, rgba(21, 25, 34, 0.85));
}

.sa-legal-card ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sa-lime, #c7f000);
  border: 1px solid var(--sa-ink, #151922);
}

.sa-legal-box {
  background: rgba(21, 25, 34, 0.03);
  border: 1px solid var(--sa-line, rgba(21, 25, 34, 0.12));
  border-left: 4px solid var(--sa-lime, #c7f000);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.sa-legal-box p {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  letter-spacing: 0.02em;
  color: var(--sa-ink, #151922) !important;
  margin: 0 !important;
}

/* ==========================================================================
   Studio Avelin — About Me Specification Implementation
   Exact match for layout, typography, proportions, grid, colors & hierarchy.
   ========================================================================== */

body.sa-page--about {
  background-color: #F2F2F2 !important;
  color: #151922 !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.sa-about-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
  box-sizing: border-box;
}

/* ------------------------------------------------------------- Header --- */

.sa-about-header {
  height: 90px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(21, 25, 34, 0.15);
  background: #F2F2F2;
  position: relative;
  z-index: 10;
}

.sa-about-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sa-about-logo {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #151922;
  text-decoration: none;
}

.sa-about-logo__underline {
  border-bottom: 2px solid #151922;
  padding-bottom: 1px;
}

.sa-about-nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-about-nav__link {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #151922;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.sa-about-nav__link:hover {
  color: #151922;
  border-bottom-color: rgba(21, 25, 34, 0.4);
}

.sa-about-nav__link--active {
  border-bottom-color: #C7F000 !important;
}

/* ----------------------------------------------------------- Main Grid --- */

body.sa-page--about .sa-main {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

body.sa-page--work .sa-main,
body.sa-page--experiments .sa-main,
body.sa-page--services .sa-main {
  padding-top: 3.5rem;
}

/* ==========================================================================
   Studio Avelin — Services
   ========================================================================== */

body.sa-page--services {
  background-color: #F2F2F2 !important;
  color: #151922 !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sa-services-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

@media (min-width: 960px) {
  .sa-services-page-hero {
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 0.75fr);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: end;
  }
}

.sa-services-page-hero__intro {
  max-width: 43rem;
}

.sa-services-page-hero__intro p {
  margin: 0;
  color: #151922;
  font-size: 1.1rem;
  line-height: 1.65;
}

.sa-services-page-hero__intro p + p {
  margin-top: 1rem;
  color: #6F7174;
}

.sa-services-page-note {
  position: relative;
  padding: 1.5rem 0 0 1.5rem;
  border-top: 1px solid rgba(21, 25, 34, 0.14);
}

.sa-services-page-note__line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 4rem;
  height: 2px;
  background: #C7F000;
}

.sa-services-page-note p {
  margin: 0;
  color: #6F7174;
  font-size: 0.875rem;
  line-height: 1.8;
}

.sa-services-page-offers {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid rgba(21, 25, 34, 0.14);
}

.sa-services-page-section-head {
  max-width: 49rem;
}

.sa-services-page-section-head h2,
.sa-services-process h2,
.sa-services-fit h2,
.sa-services-contact h2 {
  margin: 0;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sa-services-page-list {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(21, 25, 34, 0.14);
}

.sa-services-page-service {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-block: 2.5rem;
  border-bottom: 1px solid rgba(21, 25, 34, 0.14);
}

.sa-services-page-service__number {
  color: #C7F000;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.sa-services-page-service__main h3 {
  margin: 0;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sa-services-page-service__main p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: #6F7174;
  font-size: 0.95rem;
  line-height: 1.65;
}

.sa-services-page-service__details {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sa-services-page-service__details li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(21, 25, 34, 0.09);
  color: #151922;
  font-size: 0.8rem;
  line-height: 1.5;
}

.sa-services-page-service__details li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: #C7F000;
  border-radius: 50%;
  content: "";
}

.sa-services-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  margin-block: clamp(4rem, 8vw, 7rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  background: #23262D;
  color: #FFFFFF;
}

@media (min-width: 960px) {
  .sa-services-process {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
}

.sa-services-process .sa-about-eyebrow,
.sa-services-process h2 {
  color: #FFFFFF;
}

.sa-services-process__intro p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sa-services-process__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.sa-services-process__steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(8rem, 0.55fr) 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding-block: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sa-services-process__steps span {
  color: #C7F000;
  font-family: monospace;
  font-size: 0.7rem;
}

.sa-services-process__steps strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.sa-services-process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.55;
}

.sa-services-fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  border-bottom: 1px solid rgba(21, 25, 34, 0.14);
}

@media (min-width: 900px) {
  .sa-services-fit {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(4rem, 9vw, 9rem);
  }
}

.sa-services-fit__body > p {
  margin: 0 0 1.5rem;
  color: #6F7174;
  font-size: 1rem;
  line-height: 1.65;
}

.sa-services-fit__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sa-services-fit__body li {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(21, 25, 34, 0.1);
  color: #151922;
  font-size: 0.875rem;
  line-height: 1.5;
}

.sa-services-contact {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.sa-services-contact p {
  max-width: 40rem;
  margin: 1.25rem 0 2rem;
  color: #6F7174;
  font-size: 1rem;
  line-height: 1.65;
}

.sa-services-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #C7F000;
  color: #151922;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease;
}

.sa-services-contact a:hover,
.sa-services-contact a:focus-visible {
  color: #6F7174;
  border-color: #151922;
}

@media (max-width: 720px) {
  .sa-services-page-service {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .sa-services-page-service__details {
    grid-column: 2;
  }

  .sa-services-process__steps li {
    grid-template-columns: 2rem 1fr;
  }

  .sa-services-process__steps p {
    grid-column: 2;
  }
}

.sa-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .sa-about-grid {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
    gap: 4.5rem;
  }
}

/* -------------------------------------------------------- Left Column --- */

.sa-about-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #151922;
  margin-bottom: 1.25rem;
}

.sa-about-hero-headline {
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #151922;
  margin: 0 0 2.25rem 0;
}

.sa-lime-text {
  color: #C7F000 !important;
  font-weight: 400;
}

.sa-about-intro {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.sa-about-intro p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #151922;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.sa-about-intro p:last-child {
  margin-bottom: 0;
}

/* Values Row */

.sa-about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  border-top: 1px solid rgba(21, 25, 34, 0.15);
  border-bottom: 1px solid rgba(21, 25, 34, 0.15);
  padding: 1.75rem 0;
  margin-bottom: 2.75rem;
}

@media (min-width: 640px) {
  .sa-about-values {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.sa-about-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .sa-about-value-item {
    border-right: 1px solid rgba(21, 25, 34, 0.15);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sa-about-value-item:first-child {
    padding-left: 0;
  }
  .sa-about-value-item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.sa-about-value-icon {
  width: 22px;
  height: 22px;
  color: #151922;
}

.sa-about-value-icon svg {
  width: 100%;
  height: 100%;
}

.sa-about-value-text {
  display: flex;
  flex-direction: column;
  font-size: 0.84375rem;
  line-height: 1.35;
  color: #151922;
  font-weight: 500;
}

/* Primary CTA Button */

.sa-about-cta-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 4rem;
}

.sa-page .sa-about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  height: 50px;
  padding: 0 1.5rem;
  background: #C7F000;
  color: #0A0A0B;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 300ms ease, box-shadow 400ms ease;
  box-sizing: border-box;
}

.sa-page .sa-about-cta-btn:hover,
.sa-page .sa-about-cta-btn:focus-visible {
  background: #D2FF00;
  color: #0A0A0B;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(21, 25, 34, 0.5);
}

.sa-about-cta-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sa-page .sa-about-cta-btn:hover .sa-about-cta-arrow,
.sa-page .sa-about-cta-btn:focus-visible .sa-about-cta-arrow {
  transform: translateX(6px);
}

.sa-about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #C7F000;
  color: #151922;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease;
}

.sa-about-cta-link:hover,
.sa-about-cta-link:focus-visible {
  color: #6F7174;
  border-color: #151922;
}

/* Skills & Tools Section */

.sa-about-skills-section {
  margin-top: 1rem;
}

.sa-about-skills-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #151922;
  margin-bottom: 1.75rem;
}

.sa-about-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  border-top: 1px solid rgba(21, 25, 34, 0.15);
  padding-top: 1.75rem;
}

@media (min-width: 640px) {
  .sa-about-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.sa-about-skills-col {
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .sa-about-skills-col {
    border-right: 1px solid rgba(21, 25, 34, 0.15);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sa-about-skills-col:first-child {
    padding-left: 0;
  }
  .sa-about-skills-col:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.sa-about-skills-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #151922;
  margin: 0 0 1rem 0;
}

.sa-about-skills-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-about-skills-col li {
  font-size: 0.90625rem;
  line-height: 1.8;
  color: #6F7174;
}

/* ------------------------------------------------------- Right Column --- */

.sa-about-col-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sa-about-portrait-wrapper {
  position: relative;
  width: 100%;
  display: flex;
}

.sa-about-portrait-box {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  background: #E5E5E5;
  border: 1px solid rgba(21, 25, 34, 0.14);
  overflow: hidden;
}

.sa-about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
}

.sa-about-portrait-box:hover .sa-about-portrait-img {
  transform: scale(1.025);
  filter: grayscale(85%);
}

.sa-about-portrait-placeholder {
  width: 100%;
  height: 100%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}

.sa-about-vertical-name {
  display: none;
}

@media (min-width: 1024px) {
  .sa-about-vertical-name {
    display: block;
    position: absolute;
    right: -2.25rem;
    top: 0;
    height: 100%;
    writing-mode: vertical-rl;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #151922;
  }
}

/* Dark Focus Panel */

.sa-about-focus-panel {
  background: #0A0A0B;
  color: #ffffff;
  padding: 2.25rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.sa-about-focus-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.sa-about-focus-star {
  width: 16px;
  height: 16px;
}

.sa-about-focus-header span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C7F000;
}

.sa-about-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sa-about-focus-list li {
  font-size: 1.03125rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sa-about-focus-list li:first-child {
  padding-top: 0;
}



/* ==========================================================================
   Studio Avelin — Experiments Specification Implementation
   Digital laboratory, sketchbook and archive of creative coding experiments.
   ========================================================================== */

.sa-exp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .sa-exp-hero {
    grid-template-columns: minmax(0, 68fr) minmax(0, 32fr);
    gap: 4rem;
    align-items: flex-end;
  }
}

.sa-exp-hero-note {
  border-left: 2px solid #C7F000;
  padding-left: 1.25rem;
}

.sa-exp-hero-note__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #151922;
  margin: 0;
  font-weight: 500;
}

.sa-exp-hero-note__sub {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6F7174;
  margin: 0.5rem 0 0 0;
}

/* Filters */

.sa-exp-filters-wrapper {
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  border-bottom: 1px solid rgba(21, 25, 34, 0.14);
  padding: 1.25rem 0;
  margin-bottom: 3rem;
}

.sa-exp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sa-exp-filter-btn {
  background: transparent;
  border: 1px solid rgba(21, 25, 34, 0.18);
  color: #151922;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  border-radius: 0;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.sa-exp-filter-btn.is-active {
  background: #0A0A0B !important;
  color: #FFFFFF !important;
  border-color: #0A0A0B !important;
}

.sa-exp-filter-btn:hover:not(.is-active) {
  border-color: #C7F000;
  color: #151922;
}

/* Grid & Cards */

.sa-exp-grid-section {
  margin-bottom: 5rem;
}

.sa-exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .sa-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sa-exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sa-exp-card {
  background: #FAFAFA;
  border: 1px solid rgba(21, 25, 34, 0.14);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 300ms ease;
  display: flex;
  flex-direction: column;
}

.sa-exp-card:hover:not(.sa-exp-card--disabled) {
  transform: translateY(-4px);
  border-color: #C7F000;
}

.sa-exp-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sa-exp-card__preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0A0A0B;
  overflow: hidden;
  position: relative;
}

.sa-exp-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sa-exp-card__preview--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11141B;
}

.sa-exp-cursor-anim {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: monospace;
  font-size: 0.8125rem;
  color: #C7F000;
  letter-spacing: 0.15em;
}

.sa-exp-cursor-dot {
  width: 8px;
  height: 8px;
  background: #C7F000;
  border-radius: 50%;
  animation: sa-pulse 1.5s ease-in-out infinite;
}

@keyframes sa-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.sa-exp-card__body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sa-exp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.sa-exp-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #C7F000;
  font-family: monospace;
  background: #0A0A0B;
  padding: 0.2rem 0.5rem;
}

.sa-exp-card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6F7174;
}

.sa-page .sa-exp-card__title {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #151922;
  margin: 0 0 1rem 0;
}

.sa-exp-card__desc {
  font-size: 0.90625rem;
  line-height: 1.55;
  color: #6F7174;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.sa-exp-card__foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(21, 25, 34, 0.1);
  padding-top: 1rem;
}

.sa-exp-card__meta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #6F7174;
  text-transform: uppercase;
}

.sa-exp-card__cta {
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #151922;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sa-exp-arrow {
  display: inline-block;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sa-exp-card:hover .sa-exp-arrow {
  transform: translateX(6px);
  color: #C7F000;
}

.sa-exp-card--disabled {
  background: rgba(21, 25, 34, 0.03);
}

.sa-exp-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6F7174;
  background: rgba(21, 25, 34, 0.08);
  padding: 0.35rem 0.75rem;
  width: fit-content;
}

/* Process Section */

.sa-exp-process-section {
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
}

.sa-exp-process-headline {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #151922;
  margin: 1rem 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.sa-proc-word {
  display: inline-block;
  transition: transform 250ms ease, letter-spacing 250ms ease;
  cursor: default;
}

.sa-proc-word:hover {
  transform: translateY(-2px);
  letter-spacing: 0.04em;
}

.sa-exp-process-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #6F7174;
  margin: 0;
}

/* ==========================================================================
   Studio Avelin — Work Specification Implementation
   Product-focused and deliberate presentation of Studio Avelin's core projects.
   ========================================================================== */

.sa-work-index-bar {
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  border-bottom: 1px solid rgba(21, 25, 34, 0.14);
  padding: 1.25rem 0;
  margin-bottom: 3.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6F7174;
}

.sa-work-featured-section {
  margin-bottom: 5rem;
}

.sa-work-client-preview {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background: #23262D;
}

.sa-work-client-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center 24%;
}

.sa-work-client-preview__label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(35, 38, 45, 0.92);
  color: #FFFFFF;
}

.sa-work-client-preview__label span {
  color: #C7F000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sa-work-client-preview__label strong {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 767px) {
  .sa-work-client-preview,
  .sa-work-client-preview img {
    min-height: 20rem;
  }

  .sa-work-client-preview__label {
    align-items: flex-start;
    flex-direction: column;
  }

  .sa-work-client-preview__label strong {
    text-align: left;
  }
}

.sa-work-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sa-work-featured-grid {
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
    gap: 4rem;
  }
}

.sa-work-meta-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sa-work-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #C7F000;
  font-family: monospace;
  background: #0A0A0B;
  padding: 0.2rem 0.55rem;
}

.sa-work-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(21, 25, 34, 0.14);
  background: #FAFAFA;
}

.sa-work-status-tag--live {
  color: #151922;
  border-color: rgba(199, 240, 0, 0.6);
}

.sa-work-status-tag--dev {
  color: #6F7174;
}

.sa-work-status-tag--concept {
  color: #6F7174;
}

.sa-work-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C7F000;
  border: 1px solid #151922;
  display: inline-block;
}

.sa-work-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  color: #151922;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sa-work-fullname {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6F7174;
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
}

.sa-page .sa-work-tagline {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #151922;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.sa-work-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6F7174;
  margin: 0 0 1.75rem 0;
}

.sa-work-details-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(21, 25, 34, 0.1);
  border-bottom: 1px solid rgba(21, 25, 34, 0.1);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.sa-work-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78125rem;
}

.sa-work-detail-label {
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #6F7174;
  text-transform: uppercase;
}

.sa-work-detail-val {
  color: #151922;
  font-weight: 500;
}

/* STAN Mockup */

.sa-work-browser-frame {
  background: #0A0A0B;
  border: 1px solid rgba(21, 25, 34, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.sa-work-browser-bar {
  background: #151922;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sa-work-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.sa-work-browser-url {
  margin-left: auto;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.sa-work-app-ui {
  display: grid;
  grid-template-columns: 170px 1fr;
  background: #F8F9FA;
  min-height: 380px;
  text-align: left;
}

@media (max-width: 640px) {
  .sa-work-app-ui {
    grid-template-columns: 1fr;
  }
  .sa-work-app-sidebar {
    display: none;
  }
}

.sa-work-app-sidebar {
  background: #11141B;
  padding: 1.25rem 1rem;
  color: #FFFFFF;
}

.sa-work-app-brand {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #C7F000;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.sa-work-app-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.sa-work-app-menu span.is-active {
  color: #FFFFFF;
  font-weight: 600;
}

.sa-work-app-main {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sa-work-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.75rem;
}

.sa-work-app-search {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: monospace;
}

.sa-work-app-btn {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0A0A0B;
  background: #C7F000;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.sa-work-app-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sa-work-note-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
  border-radius: 4px;
}

.sa-work-note-card.is-active {
  border-left: 3px solid #C7F000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sa-work-note-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #151922;
  margin: 0 0 0.35rem 0;
}

.sa-work-note-card p {
  font-size: 0.78125rem;
  color: #6F7174;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.sa-work-note-tag {
  font-size: 0.6875rem;
  font-family: monospace;
  color: #6F7174;
  font-weight: 600;
}

.sa-work-divider {
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  margin: 5rem 0;
}

/* Secondary Projects (02 + 03) */

.sa-work-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .sa-work-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sa-work-sec-card {
  background: #FAFAFA;
  border: 1px solid rgba(21, 25, 34, 0.14);
  display: flex;
  flex-direction: column;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 300ms ease;
}

.sa-work-sec-card:hover {
  transform: translateY(-4px);
  border-color: #C7F000;
}

.sa-work-sec-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sa-work-sec-preview--dark {
  background: #0A0A0B;
  color: #FFFFFF;
}

.sa-work-sec-preview--light {
  background: #E8ECEF;
  color: #151922;
}

.sa-work-stat-mockup {
  width: 100%;
  font-family: sans-serif;
  text-align: left;
}

.sa-work-stat-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.5rem;
}

.sa-work-stat-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sa-work-stat-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-left: 2px solid #C7F000;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sa-work-stat-stat span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.sa-work-stat-stat strong {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-family: monospace;
}

.sa-work-stau-mockup {
  width: 100%;
  background: #FFFFFF;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.sa-work-stau-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #6F7174;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.35rem;
}

.sa-work-stau-body h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #151922;
  margin: 0 0 0.35rem 0;
}

.sa-work-stau-body p {
  font-size: 0.8125rem;
  color: #6F7174;
  margin: 0 0 1rem 0;
}

.sa-work-stau-tags {
  display: flex;
  gap: 0.5rem;
}

.sa-work-stau-tags span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #151922;
  background: rgba(199, 240, 0, 0.3);
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.1em;
}

.sa-work-sec-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sa-work-sec-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #151922;
  margin: 0;
  line-height: 1;
}

.sa-work-sec-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(21, 25, 34, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

/* Process Steps */

.sa-work-process-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.sa-work-step {
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #151922;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sa-work-step span {
  color: #C7F000;
  font-family: monospace;
  font-weight: 700;
  background: #0A0A0B;
  padding: 0.15rem 0.4rem;
}

.sa-work-step-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(21, 25, 34, 0.15);
  min-width: 20px;
}

/* Final Contact */

.sa-work-contact-section {
  border-top: 1px solid rgba(21, 25, 34, 0.14);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
  text-align: left;
}

.sa-work-contact-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #151922;
  margin: 0.75rem 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.sa-work-contact-sub {
  font-size: 1.2rem;
  color: #6F7174;
  margin: 0 0 2rem 0;
}

.sa-work-contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.sa-work-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #151922;
  text-decoration: none;
  border-bottom: 2px solid #C7F000;
  padding-bottom: 0.35rem;
  transition: color 200ms ease, border-color 200ms ease;
}

.sa-work-contact-link:hover {
  color: #0A0A0B;
  border-color: #151922;
}

.sa-work-services-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(21, 25, 34, 0.25);
  color: #6F7174;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease;
}

.sa-work-services-link:hover,
.sa-work-services-link:focus-visible {
  color: #151922;
  border-color: #C7F000;
}

/* Mobile rhythm: keep long project pages compact without changing desktop. */
@media (max-width: 767px) {
  .sa-work-featured-section,
  .sa-exp-grid-section {
    margin-bottom: 4rem;
  }

  .sa-work-divider {
    margin-block: 4rem;
  }

  .sa-exp-process-section {
    padding-top: 3rem;
  }
}

/* Shared subpage typography: one body face and one display face. */
body.sa-page--about .sa-main,
body.sa-page--work .sa-main,
body.sa-page--experiments .sa-main {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.sa-page--about .sa-about-hero-headline,
body.sa-page--work .sa-about-hero-headline,
body.sa-page--work .sa-work-title,
body.sa-page--work .sa-work-tagline,
body.sa-page--work .sa-work-sec-title,
body.sa-page--work .sa-exp-process-headline,
body.sa-page--work .sa-work-contact-title,
body.sa-page--experiments .sa-about-hero-headline,
body.sa-page--experiments .sa-exp-card__title,
body.sa-page--experiments .sa-exp-process-headline {
  font-family: var(--sa-font-display, "Poppins", sans-serif);
}

/* Experiment detail: align its rhythm and type with the Experiments index. */
.sa-exp-single {
  padding-block: 3.5rem 5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sa-exp-single__back {
  margin-bottom: 2rem;
}

.sa-exp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #151922;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), color 200ms ease;
}

.sa-exp-back-link:hover,
.sa-exp-back-link:focus-visible {
  color: #0A0A0B;
  transform: translateX(-4px);
}

.sa-exp-single__head {
  max-width: 43.75rem;
  margin-bottom: 2.5rem;
}

.sa-exp-single__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: #6F7174;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sa-page .sa-exp-single__title {
  margin: 0 0 1rem;
  color: #151922;
  font-family: var(--sa-font-display, "Poppins", sans-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.sa-exp-single__desc {
  margin: 0 0 1.25rem;
  color: #151922;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sa-exp-single__meta {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(21, 25, 34, 0.12);
  background: rgba(21, 25, 34, 0.05);
  color: var(--sa-muted, #6F7174);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sa-exp-stage {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(21, 25, 34, 0.15);
  background: #0A0A0B;
}

.sa-exp-single__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .sa-exp-single {
    padding-block: 3rem 4rem;
  }

  .sa-exp-single__back {
    margin-bottom: 1.75rem;
  }

  .sa-exp-single__head {
    margin-bottom: 2rem;
  }

  .sa-page .sa-exp-single__title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .sa-exp-single__desc {
    font-size: 1rem;
  }
}
