/* =====================================================
   BYTE SIZE STUDIO
   HOME PAGE
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {
  --paper: #f4f0f8;
  --paper-dark: #e8e0ef;

  --ink: #160521;
  --ink-soft: #271334;

  --purple: #6f35ff;
  --blue: #2865ff;
  --coral: #ff4e77;
  --pink: #ff70a5;

  --white: #ffffff;

  --line: rgba(22, 5, 33, 0.15);
  --line-light: rgba(255, 255, 255, 0.14);

  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;

  --page-padding: 34px;
}


/* =====================================================
   RESET
===================================================== */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  overflow-x: hidden;

  background: var(--paper);

  color: var(--ink);

  font-family: var(--body);
}


body.menu-open,
body.modal-open {
  overflow: hidden;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;
}


button,
input,
textarea,
select {
  font: inherit;
}


button {
  color: inherit;
}


::selection {
  background: var(--coral);

  color: var(--ink);
}


.section-shell {
  width:
    min(
      1540px,
      calc(100% - 68px)
    );

  margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;

  z-index: 1000;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;

  margin: 0;
  padding: 0;

  background:
    rgba(244, 240, 248, 0.96);

  border-bottom:
    1px solid var(--line);

  backdrop-filter:
    blur(14px);

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.site-header.scrolled {
  background:
    rgba(244, 240, 248, 0.985);

  box-shadow:
    0 7px 30px
    rgba(22, 5, 33, 0.035);
}


/* =====================================================
   HEADER INNER
===================================================== */

.header-inner {
  position: relative;

  width: 100%;
  height: 104px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  margin: 0;

  padding:
    0 var(--page-padding);
}


/* =====================================================
   LOGO
===================================================== */

.header-logo {
  position: relative;

  z-index: 2;

  flex: 0 0 auto;

  width: 195px;

  display: flex;

  align-items: center;

  margin: 0;
  padding: 0;
}


.header-logo img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;
}


/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {
  position: absolute;

  z-index: 1;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 38px;

  margin: 0;
  padding: 0;
}


.desktop-nav a {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin: 0;

  padding:
    10px 0;

  color:
    rgba(22, 5, 33, 0.56);

  font-size: 0.69rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.09em;

  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color 0.2s ease;
}


/* NAV UNDERLINE */

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 1px;

  width: 0;
  height: 3px;

  background: var(--ink);

  transition:
    width 0.25s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}


/* =====================================================
   START PROJECT BUTTON
===================================================== */

.header-project-link {
  position: relative;

  z-index: 2;

  flex: 0 0 auto;

  height: 58px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 22px;

  margin: 0;

  padding:
    0 24px;

  background: var(--ink);

  color: var(--white);

  font-size: 0.65rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  white-space: nowrap;
}


.header-project-link span {
  display: inline-block;

  color: var(--coral);

  font-size: 1rem;

  line-height: 1;
}


/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;

  width: 45px;
  height: 45px;

  margin: 0;
  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 27px;
  height: 2px;

  margin:
    6px auto;

  background: var(--ink);
}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {
  display: none;
}


/* =====================================================
   TABLET HEADER
===================================================== */

@media (max-width: 1100px) {

  .header-inner {
    height: 84px;

    padding:
      0 var(--page-padding);
  }


  .header-logo {
    width: 180px;
  }


  .desktop-nav {
    display: none;
  }


  .header-project-link {
    display: none;
  }


  .menu-toggle {
    display: block;

    margin-left: auto;
  }


  .mobile-nav {
    display: flex;

    flex-direction: column;

    max-height: 0;

    overflow: hidden;

    background: var(--paper);

    transition:
      max-height 0.35s ease;
  }


  .mobile-nav.open {
    max-height: 520px;

    border-top:
      1px solid var(--line);
  }


  .mobile-nav a {
    min-height: 58px;

    display: flex;

    align-items: center;

    padding:
      0 var(--page-padding);

    border-bottom:
      1px solid var(--line);

    color:
      rgba(22, 5, 33, 0.65);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
  }


  .mobile-nav-cta {
    color:
      var(--purple) !important;
  }

}


/* =====================================================
   MOBILE HEADER
===================================================== */

@media (max-width: 700px) {

  .header-inner {
    height: 72px;

    padding:
      0 17px;
  }


  .header-logo {
    width: 160px;
  }


  .mobile-nav a {
    min-height: 55px;

    padding:
      0 17px;
  }

}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 100svh;

  padding:
    122px var(--page-padding)
    34px;

  overflow: hidden;

  background: var(--paper);

  border-bottom:
    1px solid var(--line);
}


.hero-grid-lines {
  position: absolute;

  inset: 84px 0 0;

  z-index: 0;

  pointer-events: none;
}


.hero-grid-lines i {
  position: absolute;

  top: 0;
  bottom: 0;

  width: 1px;

  background:
    rgba(22, 5, 33, 0.075);
}


.hero-grid-lines i:nth-child(1) {
  left: 25%;
}


.hero-grid-lines i:nth-child(2) {
  left: 50%;
}


.hero-grid-lines i:nth-child(3) {
  left: 75%;
}


.hero-grid-lines i:nth-child(4) {
  right: 0;
}


/* =====================================================
   HERO TOP LINE
===================================================== */

.hero-topline {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1fr auto auto;

  align-items: center;

  gap: 50px;

  padding-bottom: 20px;

  border-bottom:
    1px solid var(--line);

  color:
    rgba(22, 5, 33, 0.48);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.hero-topline p {
  margin: 0;
}


.hero-availability {
  display: flex;

  align-items: center;

  gap: 9px;
}


.hero-availability span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #24d56b;

  box-shadow:
    0 0 0 5px
    rgba(36, 213, 107, 0.11);
}


/* =====================================================
   HERO MAIN
===================================================== */

.hero-main {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 380px);

  gap: 55px;

  align-items: end;

  min-height: 560px;

  padding:
    50px 0 35px;
}


.hero-copy {
  min-width: 0;
}


.hero-number {
  margin-bottom: 25px;

  color:
    rgba(22, 5, 33, 0.34);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.hero {
  position: relative;

  min-height: 100svh;

  padding:
    122px var(--page-padding)
    70px;

  /* Let the oversized type breathe */
  overflow: visible;

  background: var(--paper);

  border-bottom:
    1px solid var(--line);
}

.hero h1 {
  margin: 0;

  padding-bottom: 0.08em;

  font-family: var(--display);

  font-size:
    clamp(5rem, 10.7vw, 12rem);

  font-weight: 800;

  /* Slightly more breathing room */
  line-height: 0.76;

  letter-spacing:
    -0.085em;

  text-transform: uppercase;
}


.hero-word {
  display: block;
}


.hero-outline {
  color: transparent;

  -webkit-text-stroke:
    2px var(--ink);
}


.hero-gradient {
  width: max-content;

  max-width: 100%;

  padding-right: 0.08em;

  color: transparent;

  background:
    linear-gradient(
      90deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
}


/* =====================================================
   HERO CONSOLE
===================================================== */

.hero-console {
  align-self: center;

  border:
    1px solid var(--ink);

  background: var(--white);
}


.console-header {
  min-height: 47px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    0 16px;

  border-bottom:
    1px solid var(--ink);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.11em;
}


.console-status {
  color: var(--coral);
}


.console-display {
  min-height: 320px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 25px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #eee5f7
    );
}


.console-index {
  margin-bottom: auto;

  color: var(--purple);

  font-family: var(--display);

  font-size: 3rem;
  font-weight: 800;
}


.console-display h2 {
  margin:
    0 0 18px;

  font-family: var(--display);

  font-size:
    clamp(2.2rem, 3.5vw, 3.8rem);

  line-height: 0.88;

  letter-spacing:
    -0.06em;
}


.console-display p {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.56);

  font-size: 0.82rem;

  line-height: 1.55;
}


.console-tabs {
  display: grid;

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


.console-tab {
  height: 18px;

  padding: 0;

  border: 0;

  border-top:
    1px solid var(--ink);

  border-right:
    1px solid var(--ink);

  background: var(--white);

  cursor: pointer;
}


.console-tab:last-child {
  border-right: 0;
}


.console-tab.active {
  background:
    linear-gradient(
      90deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );
}


/* =====================================================
   HERO FOOTER
===================================================== */

.hero-footer {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(300px, 570px)
    auto;

  align-items: end;

  justify-content: space-between;

  gap: 40px;

  padding-top: 30px;

  border-top:
    1px solid var(--line);
}


.hero-description {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.56);

  font-size:
    clamp(1rem, 1.5vw, 1.25rem);

  line-height: 1.65;
}


.hero-actions {
  display: flex;

  align-items: center;

  gap: 22px;
}


.solid-button {
  min-height: 54px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding:
    0 20px;

  background:
    linear-gradient(
      110deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );

  color: var(--white);

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.arrow-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding-bottom: 5px;

  border-bottom:
    1px solid var(--ink);

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.09em;
}


.hero-corner-mark {
  position: absolute;

  z-index: 1;

  right: 4%;
  top: 20%;

  width: 330px;

  opacity: 0.025;

  transform:
    rotate(-8deg);

  pointer-events: none;
}


/* =====================================================
   PIXEL → LINE DIVIDER
===================================================== */

.pixel-divider,
.pixel-transition {
  position: relative;

  width: 100%;
  height: 220px;

  overflow: hidden;

  background: var(--paper);
}


.pixel-divider-inner {
  position: relative;

  width:
    min(
      1540px,
      calc(100% - 68px)
    );

  height: 100%;

  margin-inline: auto;
}


.pixel-field {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.pixel-stage {
  position: absolute;

  left: var(--page-padding);
  right: var(--page-padding);

  top: 50%;

  height: 150px;

  transform:
    translateY(-50%);

  overflow: hidden;

  pointer-events: none;
}


.pixel-particle {
  position: absolute;

  left: 0;
  top: 0;

  display: block;

  width: 10px;
  height: 10px;

  border-radius: 1px;

  transform-origin: center;

  will-change:
    transform,
    width,
    height,
    opacity;

  pointer-events: none;
}


.pixel-particle:nth-child(5n) {
  border-radius: 50%;
}


.pixel-target-line {
  position: absolute;

  z-index: 0;

  left: 0;
  right: 0;

  top: 50%;

  height: 1px;

  opacity: 0.08;

  transform:
    translateY(-50%);

  background: var(--ink);

  pointer-events: none;
}


.pixel-line-glow {
  position: absolute;

  left: 0;
  top: 50%;

  width: 100%;
  height: 30px;

  transform:
    translateY(-50%);

  opacity: 0.15;

  background:
    linear-gradient(
      90deg,
      rgba(255, 78, 119, 0.11),
      rgba(111, 53, 255, 0.14),
      rgba(40, 101, 255, 0.11)
    );

  filter:
    blur(18px);

  pointer-events: none;
}


/* =====================================================
   GLOBAL HEADINGS
===================================================== */

.eyebrow {
  display: block;

  margin-bottom: 22px;

  color: var(--purple);

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.editorial-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(270px, 0.45fr);

  align-items: end;

  gap: 70px;

  padding-bottom: 45px;

  border-bottom:
    1px solid var(--line);
}


.editorial-heading h2,
.services-heading h2,
.quote-heading h2,
.process-heading h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(3.5rem, 6.7vw, 7.5rem);

  font-weight: 800;

  line-height: 0.83;

  letter-spacing:
    -0.07em;
}


.editorial-heading h2 em,
.quote-heading h2 em,
.process-heading h2 em {
  color: transparent;

  font-style: normal;

  background:
    linear-gradient(
      90deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );

  -webkit-background-clip: text;
  background-clip: text;
}


.editorial-heading-side p {
  margin:
    0 0 23px;

  color:
    rgba(22, 5, 33, 0.55);

  line-height: 1.7;
}


.underline-link {
  display: inline-block;

  padding-bottom: 5px;

  border-bottom:
    1px solid var(--ink);

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


/* =====================================================
   01 / SELECTED WORK
===================================================== */

.work-section {
  padding:
    120px 0 135px;

  background: var(--paper-dark);
}


.work-feature {
  display: grid;

  grid-template-columns:
    minmax(410px, 0.56fr)
    minmax(0, 1fr);

  min-height: 650px;

  margin-top: 70px;

  border:
    1px solid var(--ink);

  transform-style:
    preserve-3d;

  transition:
    transform 0.18s ease;
}


.work-feature-copy {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 30px;

  overflow: hidden;

  border-right:
    1px solid var(--ink);
}


.work-feature-red
.work-feature-copy {
  background: #ff5d74;
}


.work-feature-orange
.work-feature-copy {
  background: #ff9348;
}


.work-feature-bee
.work-feature-copy {
  background: #f5c532;
}


.work-index-row {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.work-main-copy {
  min-width: 0;
}


.work-category {
  margin:
    0 0 15px;

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.11em;
}


.work-feature h3 {
  width: 100%;

  max-width: 100%;

  margin: 0;

  overflow: hidden;

  font-family: var(--display);

  font-size:
    clamp(2.55rem, 3.55vw, 4.55rem);

  font-weight: 800;

  line-height: 0.84;

  letter-spacing:
    -0.065em;

  text-transform: uppercase;
}


.work-feature h3 span {
  display: block;

  width: 100%;

  max-width: 100%;

  overflow: hidden;

  white-space: nowrap;
}


.work-description {
  max-width: 430px;

  margin:
    27px 0 0;

  font-size: 0.94rem;

  line-height: 1.65;
}


.work-open-button {
  width: 100%;

  min-height: 53px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    0 16px;

  border:
    1px solid var(--ink);

  background: transparent;

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.work-open-button:hover {
  background: var(--ink);

  color: var(--white);
}


/* =====================================================
   WORK IMAGE
===================================================== */

.work-image-stage {
  position: relative;

  min-width: 0;

  display: grid;

  place-items: center;

  padding:
    clamp(35px, 5vw, 80px);

  overflow: hidden;

  border: 0;

  background: #dad1e3;

  cursor: pointer;
}


.work-feature-orange
.work-image-stage {
  background: #171019;
}


.work-feature-bee
.work-image-stage {
  background: #111d2d;
}


.work-image-stage::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.25;

  background-image:
    linear-gradient(
      rgba(22, 5, 33, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(22, 5, 33, 0.12) 1px,
      transparent 1px
    );

  background-size:
    50px 50px;
}


.work-feature-orange
.work-image-stage::before,
.work-feature-bee
.work-image-stage::before {
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
}


.work-browser {
  position: relative;

  z-index: 2;

  width: 100%;

  overflow: hidden;

  border:
    1px solid var(--ink);

  background: var(--white);

  box-shadow:
    23px 25px 0
    rgba(22, 5, 33, 0.14);

  transition:
    transform 0.35s ease;
}


.work-image-stage:hover
.work-browser {
  transform:
    translate(-5px, -5px);
}


.work-browser-bar {
  height: 42px;

  display: flex;

  align-items: center;

  gap: 6px;

  padding:
    0 13px;

  border-bottom:
    1px solid var(--ink);
}


.work-browser-bar span {
  width: 7px;
  height: 7px;

  border:
    1px solid var(--ink);

  border-radius: 50%;
}


.work-browser-bar small {
  margin-left: auto;

  color:
    rgba(22, 5, 33, 0.45);

  font-size: 0.52rem;

  letter-spacing: 0.09em;
}


.work-browser img {
  width: 100%;

  aspect-ratio:
    16 / 9;

  object-fit: cover;

  object-position: top;
}


.stage-label {
  position: absolute;

  z-index: 3;

  display: grid;

  place-items: center;

  border:
    1px solid var(--ink);

  background: var(--white);

  color: var(--ink);

  font-size: 0.55rem;
  font-weight: 800;

  letter-spacing: 0.1em;

  pointer-events: none;
}


.stage-label-one {
  left: 4%;
  top: 11%;

  min-height: 35px;

  padding:
    0 12px;

  background: var(--blue);

  color: var(--white);
}


.work-feature-bee
.stage-label-one {
  background: #f5c532;

  color: var(--ink);
}


.stage-label-two {
  right: 3%;
  bottom: 10%;

  width: 72px;
  height: 72px;

  border-radius: 50%;

  background: var(--paper);
}


/* =====================================================
   REVERSE WORK CARD
===================================================== */

.work-feature-reverse {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(410px, 0.56fr);
}


.work-feature-reverse
.work-feature-copy {
  order: 2;

  border-right: 0;

  border-left:
    1px solid var(--ink);
}


.work-feature-reverse
.work-image-stage {
  order: 1;
}


/* =====================================================
   PORTFOLIO STRIP
===================================================== */

.portfolio-strip {
  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 40px;

  margin-top: 70px;

  padding:
    38px 0;

  border-top:
    1px solid var(--ink);

  border-bottom:
    1px solid var(--ink);
}


.portfolio-strip > div {
  display: flex;

  align-items: center;

  gap: 40px;
}


.portfolio-strip span {
  color:
    rgba(22, 5, 33, 0.42);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.portfolio-strip strong {
  font-family: var(--display);

  font-size:
    clamp(1.7rem, 3.2vw, 3.6rem);

  letter-spacing:
    -0.05em;
}


.portfolio-strip strong em {
  color: var(--purple);

  font-style: normal;
}


.circle-arrow-link {
  width: 90px;
  height: 90px;

  display: grid;

  place-items: center;

  flex: 0 0 auto;

  border:
    1px solid var(--ink);

  border-radius: 50%;

  background: var(--ink);

  color: var(--white);

  font-size: 1.7rem;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.circle-arrow-link:hover {
  background: var(--coral);

  color: var(--ink);
}


/* =====================================================
   02 / SERVICES
===================================================== */

.services-section {
  padding:
    135px 0;

  background: var(--ink);

  color: var(--white);
}


.services-heading {
  padding-bottom: 55px;
}


.services-heading
.eyebrow {
  color: var(--coral);
}


.services-heading > div {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.42fr);

  align-items: end;

  gap: 60px;
}


.services-heading h2 {
  color: var(--white);
}


.services-heading h2 span {
  color: transparent;

  -webkit-text-stroke:
    1.5px
    rgba(255, 255, 255, 0.65);
}


.services-heading p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.5);

  line-height: 1.7;
}


.service-stack {
  border-top:
    1px solid var(--line-light);
}


.service-band {
  display: grid;

  grid-template-columns:
    100px
    minmax(320px, 0.8fr)
    minmax(330px, 1fr);

  gap: 40px;

  padding:
    55px 0;

  border-bottom:
    1px solid var(--line-light);

  transition:
    padding 0.3s ease,
    background 0.3s ease;
}


.service-band:hover {
  padding-left: 20px;
  padding-right: 20px;

  background:
    rgba(255, 255, 255, 0.035);
}


.service-band-featured {
  position: relative;
}


.service-band-featured::before {
  content: "";

  position: absolute;

  left: -34px;
  top: 0;
  bottom: 0;

  width: 5px;

  background:
    linear-gradient(
      var(--coral),
      var(--purple),
      var(--blue)
    );
}


.service-band-number {
  color: var(--coral);

  font-family: var(--display);

  font-size: 1rem;
  font-weight: 800;
}


.service-mini-label {
  display: block;

  margin-bottom: 15px;

  color:
    rgba(255, 255, 255, 0.35);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.service-band h3 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(2.6rem, 4.5vw, 5rem);

  line-height: 0.82;

  letter-spacing:
    -0.06em;
}


.service-band-info {
  align-self: end;
}


.service-band-info > p {
  max-width: 550px;

  margin:
    0 0 25px;

  color:
    rgba(255, 255, 255, 0.5);

  line-height: 1.65;
}


.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 27px;
}


.service-tags span {
  padding:
    7px 10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.53rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}


.service-band-link {
  display: inline-block;

  padding-bottom: 5px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.45);

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.09em;
}


.services-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 45px;
}


.services-footer p {
  color:
    rgba(255, 255, 255, 0.42);
}


.solid-button-dark {
  background: var(--white);

  color: var(--ink);
}


/* =====================================================
   03 / APPROACH
===================================================== */

.approach-section {
  position: relative;

  padding:
    95px 0;

  overflow: hidden;

  background: var(--paper-dark);
}


.approach-section::after {
  content: "";

  position: absolute;

  right: -130px;
  top: -130px;

  width: 350px;
  height: 350px;

  border:
    1px solid
    rgba(111, 53, 255, 0.13);

  border-radius: 50%;

  pointer-events: none;
}


.approach-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.45fr);

  align-items: end;

  gap: 70px;

  padding-bottom: 42px;

  border-bottom:
    1px solid var(--ink);
}


.approach-heading h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(3rem, 5.4vw, 6rem);

  line-height: 0.84;

  letter-spacing:
    -0.065em;
}


.approach-heading h2 em {
  color: var(--purple);

  font-style: normal;
}


.approach-heading > p {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.55);

  line-height: 1.7;
}


.approach-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-bottom:
    1px solid var(--ink);
}


.approach-item {
  min-width: 0;

  display: grid;

  grid-template-columns:
    44px 1fr;

  gap: 20px;

  padding:
    36px 30px 40px 0;

  border-right:
    1px solid var(--line);
}


.approach-item:nth-child(2) {
  padding-left: 30px;
}


.approach-item:last-child {
  padding-left: 30px;
  padding-right: 0;

  border-right: 0;
}


.approach-number {
  color: var(--coral);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.approach-item h3 {
  margin:
    0 0 18px;

  font-family: var(--display);

  font-size:
    clamp(1.7rem, 2.8vw, 3rem);

  line-height: 0.88;

  letter-spacing:
    -0.05em;
}


.approach-item p {
  max-width: 390px;

  margin: 0;

  color:
    rgba(22, 5, 33, 0.5);

  font-size: 0.88rem;

  line-height: 1.65;
}


.approach-footer {
  display: grid;

  grid-template-columns:
    auto auto 1fr;

  align-items: center;

  gap: 25px;

  padding-top: 28px;
}


.approach-footer span {
  color: var(--purple);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.approach-footer strong {
  font-family: var(--display);

  font-size:
    clamp(1rem, 1.7vw, 1.45rem);
}


.approach-footer i {
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );
}


/* =====================================================
   04 / QUOTE
===================================================== */

.quote-section {
  padding:
    135px 0;

  background: var(--paper);
}


.quote-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.45fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 60px;
}


.quote-heading p {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.54);

  line-height: 1.7;
}


.quote-interface {
  display: grid;

  grid-template-columns:
    380px
    minmax(0, 1fr);

  border:
    1px solid var(--ink);

  background: var(--white);

  box-shadow:
    18px 18px 0
    var(--paper-dark);
}


/* =====================================================
   QUOTE NAV
===================================================== */

.quote-nav {
  background: var(--ink);

  color: var(--white);

  border-right:
    1px solid var(--ink);
}


.quote-nav-heading {
  padding: 24px;

  border-bottom:
    1px solid var(--line-light);
}


.quote-nav-heading span {
  display: block;

  margin-bottom: 7px;

  color: var(--coral);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.quote-nav-heading strong {
  font-family: var(--display);

  font-size: 1rem;
}


.quote-nav-option {
  width: 100%;

  min-height: 115px;

  display: grid;

  grid-template-columns:
    38px
    1fr
    auto;

  align-items: center;

  gap: 15px;

  padding:
    20px 24px;

  border: 0;

  border-bottom:
    1px solid var(--line-light);

  background: transparent;

  color: var(--white);

  text-align: left;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}


.quote-nav-option:hover {
  background:
    rgba(255, 255, 255, 0.055);
}


.quote-nav-option.active {
  background: var(--coral);

  color: var(--ink);
}


.quote-nav-option > span {
  font-size: 0.56rem;
  font-weight: 700;
}


.quote-nav-option strong {
  font-family: var(--display);

  font-size: 1.2rem;

  line-height: 1.05;
}


.quote-nav-option strong small {
  display: block;

  margin-top: 5px;

  font-family: var(--body);

  font-size: 0.55rem;

  letter-spacing: 0.08em;
}


.quote-nav-option i {
  font-style: normal;

  font-size: 1.2rem;
}


/* =====================================================
   QUOTE CONFIG
===================================================== */

.quote-config {
  padding: 38px;
}


.quote-config-top {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 40px;

  padding-bottom: 28px;

  border-bottom:
    1px solid var(--line);
}


.quote-config-top span {
  display: block;

  margin-bottom: 8px;

  color: var(--purple);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.13em;
}


.quote-config-top h3 {
  margin:
    0 0 10px;

  font-family: var(--display);

  font-size:
    clamp(2rem, 3.7vw, 4.4rem);

  line-height: 0.92;

  letter-spacing:
    -0.055em;
}


.quote-config-top p {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.48);
}


.quote-big-number {
  align-self: start;

  color:
    rgba(22, 5, 33, 0.08);

  font-family: var(--display);

  font-size:
    clamp(5rem, 10vw, 9rem);

  font-weight: 800;

  line-height: 0.75;
}


/* =====================================================
   QUOTE OPTIONS
===================================================== */

.quote-options {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  margin-top: 35px;

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}


.quote-option {
  min-height: 86px;

  display: grid;

  grid-template-columns:
    auto 1fr;

  align-items: center;

  gap: 14px;

  padding:
    15px 18px;

  border: 0;

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background: var(--white);

  color: var(--ink);

  text-align: left;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.quote-option:hover {
  background: #f5effa;
}


.quote-option.active {
  background: var(--purple);

  color: var(--white);
}


.quote-check {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border:
    1px solid currentColor;

  border-radius: 50%;

  font-size: 0.65rem;
}


.quote-option.active
.quote-check {
  background: var(--coral);

  color: var(--ink);

  border-color: var(--coral);
}


.quote-option-name {
  font-size: 0.75rem;
  font-weight: 700;
}


/* =====================================================
   QUOTE OUTPUT
===================================================== */

.quote-output {
  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: stretch;

  gap: 30px;

  margin-top: 35px;

  padding-top: 30px;

  border-top:
    1px solid var(--line);
}


.quote-output > div > span {
  display: block;

  margin-bottom: 7px;

  color:
    rgba(22, 5, 33, 0.38);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.quote-output strong {
  display: block;

  font-family: var(--display);

  font-size: 1.35rem;
}


.quote-output p {
  max-width: 600px;

  margin:
    7px 0 0;

  color:
    rgba(22, 5, 33, 0.52);

  font-size: 0.8rem;

  line-height: 1.55;
}


.quote-cta {
  min-width: 165px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 20px;

  background:
    linear-gradient(
      145deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );

  color: var(--white);

  font-family: var(--display);

  font-size: 1rem;
  font-weight: 800;

  line-height: 1.05;
}


.quote-cta span {
  align-self: flex-end;

  font-size: 1.4rem;
}


/* =====================================================
   05 / PROCESS
===================================================== */

.process-section {
  padding:
    130px 0 155px;

  background: var(--paper);
}


.process-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, 0.38fr);

  align-items: end;

  gap: 60px;

  margin-bottom: 100px;
}


.process-heading
.eyebrow {
  grid-column:
    1 / -1;

  margin-bottom: -20px;
}


.process-heading h2 {
  margin: 0;
}


.process-heading > p {
  margin: 0;

  color:
    rgba(22, 5, 33, 0.5);

  line-height: 1.65;
}


.process-timeline {
  position: relative;

  --process-progress: 0;
}


.timeline-line {
  position: absolute;

  z-index: 1;

  left: 0;
  right: 0;
  top: 14px;

  height: 3px;

  background:
    rgba(22, 5, 33, 0.14);
}


.timeline-progress {
  position: absolute;

  left: 0;
  top: 0;

  width:
    calc(
      var(--process-progress) * 100%
    );

  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );
}


.timeline-runner {
  position: absolute;

  z-index: 4;

  left:
    calc(
      var(--process-progress) * 100%
    );

  top: 50%;

  width: 27px;
  height: 27px;

  transform:
    translate(-50%, -50%);

  border:
    2px solid var(--ink);

  border-radius: 50%;

  background: var(--paper-dark);

  box-shadow:
    0 0 0 6px
    rgba(232, 224, 239, 0.8);
}


.timeline-runner span {
  position: absolute;

  inset: 6px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--coral),
      var(--purple),
      var(--blue)
    );
}


.timeline-steps {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 26px;
}


.timeline-step {
  position: relative;

  padding-top: 65px;

  opacity: 0.42;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}


.timeline-step.active {
  opacity: 1;

  transform:
    translateY(-5px);
}


.timeline-point {
  position: absolute;

  left: 0;
  top: 4px;

  width: 21px;
  height: 21px;

  border:
    2px solid var(--ink);

  border-radius: 50%;

  background: var(--paper-dark);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.timeline-step.active
.timeline-point {
  transform:
    scale(1.08);

  background: var(--coral);
}


.timeline-number {
  display: block;

  margin-bottom: 17px;

  color: var(--purple);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.timeline-step h3 {
  margin:
    0 0 17px;

  font-family: var(--display);

  font-size:
    clamp(1.7rem, 3vw, 3rem);

  line-height: 0.9;

  letter-spacing:
    -0.05em;
}


.timeline-step p {
  max-width: 250px;

  margin: 0;

  color:
    rgba(22, 5, 33, 0.54);

  font-size: 0.85rem;

  line-height: 1.6;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
  position: relative;

  min-height: 720px;

  display: grid;

  align-items: center;

  padding:
    90px var(--page-padding);

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #6f35ff,
      #3952ff 55%,
      #ff4e77
    );

  color: var(--white);
}


.final-cta-grid {
  position: absolute;

  inset: 0;

  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.22) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.22) 1px,
      transparent 1px
    );

  background-size:
    90px 90px;
}


.final-cta-content {
  position: relative;

  z-index: 2;

  max-width: 1200px;
}


.final-cta-content > span {
  display: block;

  margin-bottom: 20px;

  font-size: 0.63rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.final-cta h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(5rem, 11vw, 12rem);

  line-height: 0.73;

  letter-spacing:
    -0.085em;
}


.final-cta h2 em {
  color: var(--ink);

  font-style: normal;
}


.final-cta p {
  max-width: 470px;

  margin:
    40px 0;

  color:
    rgba(255, 255, 255, 0.75);

  line-height: 1.7;
}


.final-cta-link {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  min-height: 65px;

  padding:
    0 22px;

  background: var(--ink);

  color: var(--white);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.11em;
}


.final-logo-mark {
  position: absolute;

  right: -60px;
  bottom: -100px;

  width: 520px;

  opacity: 0.08;

  transform:
    rotate(-10deg);
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  position: relative;

  padding:
    80px 0 28px;

  background: #09010d;

  color: var(--white);
}


.footer-shell {
  width:
    min(
      1540px,
      calc(100% - 68px)
    );

  margin-inline: auto;
}



/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.85fr)
    minmax(520px, 1.15fr);

  align-items: start;

  gap:
    clamp(80px, 10vw, 180px);

  padding-bottom: 75px;
}



/* =====================================================
   BRAND
===================================================== */

.footer-brand {
  max-width: 330px;
}


.footer-logo {
  display: block;

  width: 180px;
}


.footer-logo img {
  display: block;

  width: 100%;
  height: auto;
}


.footer-brand p {
  max-width: 300px;

  margin:
    38px 0 0;

  color:
    rgba(255, 255, 255, 0.46);

  font-size: 0.95rem;

  line-height: 1.65;
}



/* =====================================================
   FOOTER NAVIGATION
===================================================== */

.footer-navigation {
  display: grid;

  grid-template-columns:
    1fr
    1.25fr
    0.7fr;

  gap:
    clamp(45px, 6vw, 100px);
}


.footer-column {
  min-width: 0;
}


.footer-heading {
  display: block;

  margin-bottom: 25px;

  color: var(--coral);

  font-size: 0.57rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.footer-column nav {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 15px;
}


.footer-column a {
  position: relative;

  color:
    rgba(255, 255, 255, 0.52);

  font-size: 0.92rem;

  line-height: 1.3;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-column a:hover {
  color: var(--white);

  transform:
    translateX(3px);
}



/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 30px;

  padding-top: 25px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.11);

  color:
    rgba(255, 255, 255, 0.3);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


.footer-bottom > span:nth-child(2) {
  text-align: center;
}


.footer-bottom > a {
  justify-self: end;

  color:
    rgba(255, 255, 255, 0.42);

  transition:
    color 0.2s ease;
}


.footer-bottom > a:hover {
  color: var(--white);
}



/* =====================================================
   FOOTER — TABLET
===================================================== */

@media (max-width: 950px) {

  .site-footer {
    padding-top: 70px;
  }


  .footer-main {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .footer-brand {
    max-width: 100%;
  }


  .footer-navigation {
    max-width: 700px;

    grid-template-columns:
      1fr 1fr 1fr;
  }

}



/* =====================================================
   FOOTER — MOBILE
===================================================== */

@media (max-width: 700px) {

  .site-footer {
    padding:
      60px 0 24px;
  }


  .footer-shell {
    width:
      calc(100% - 34px);
  }


  .footer-main {
    gap: 52px;

    padding-bottom: 55px;
  }



  /* BRAND */

  .footer-brand {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
  }


  .footer-logo {
    width: 135px;
  }


  .footer-brand p {
    max-width: 280px;

    margin-top: 28px;

    font-size: 0.88rem;

    line-height: 1.6;
  }



  /* NAV */

  .footer-navigation {
    width: 100%;

    max-width: none;

    grid-template-columns:
      1fr 1fr;

    gap:
      48px 24px;

    text-align: center;
  }


  .footer-column {
    display: flex;

    flex-direction: column;

    align-items: center;
  }


  .footer-column nav {
    align-items: center;

    gap: 13px;
  }


  .footer-heading {
    margin-bottom: 20px;
  }


  .footer-column a {
    font-size: 0.86rem;
  }


  .footer-column a:hover {
    transform: none;
  }



  /* LEGAL FULL WIDTH */

  .footer-legal {
    grid-column:
      1 / -1;
  }



  /* BOTTOM */

  .footer-bottom {
    grid-template-columns: 1fr;

    gap: 13px;

    padding-top: 23px;

    text-align: center;
  }


  .footer-bottom > span:nth-child(2) {
    order: 3;
  }


  .footer-bottom > a {
    justify-self: center;

    order: 2;
  }

}



/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

  .footer-navigation {
    gap:
      42px 14px;
  }


  .footer-column a {
    font-size: 0.82rem;
  }

}

/* =====================================================
   PROJECT MODAL
===================================================== */

.project-modal {
  position: fixed;

  inset: 0;

  z-index: 5000;

  visibility: hidden;

  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


.project-modal.open {
  visibility: visible;

  opacity: 1;
}


.modal-backdrop {
  position: absolute;

  inset: 0;

  width: 100%;

  border: 0;

  background:
    rgba(9, 1, 13, 0.84);

  backdrop-filter:
    blur(12px);
}


.project-modal-panel {
  position: absolute;

  inset: 35px;

  overflow-y: auto;

  background: var(--paper);

  color: var(--ink);

  transform:
    translateY(30px);

  transition:
    transform 0.35s ease;
}


.project-modal.open
.project-modal-panel {
  transform:
    translateY(0);
}


.modal-header {
  min-height: 62px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    0 22px;

  border-bottom:
    1px solid var(--ink);

  font-size: 0.57rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.modal-close {
  padding: 0;

  border: 0;

  background: transparent;

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  cursor: pointer;
}


.modal-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(390px, 0.8fr);

  min-height:
    calc(100% - 62px);
}


.modal-project-image {
  display: grid;

  place-items: center;

  padding: 55px;

  border-right:
    1px solid var(--ink);

  background: #ded4e8;
}


.modal-project-image img {
  width: 100%;

  border:
    1px solid var(--ink);

  box-shadow:
    18px 18px 0
    rgba(22, 5, 33, 0.12);
}


.modal-project-content {
  display: flex;

  flex-direction: column;

  padding:
    50px 38px;
}


.modal-project-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 35px;

  color:
    rgba(22, 5, 33, 0.42);

  font-size: 0.56rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.modal-project-live {
  color: #14924b;
}


.modal-project-content h2 {
  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(3rem, 5.4vw, 6rem);

  line-height: 0.82;

  letter-spacing:
    -0.07em;

  text-transform: uppercase;
}


.modal-service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin:
    25px 0;
}


.modal-service-tags span {
  padding:
    7px 9px;

  border:
    1px solid var(--ink);

  font-size: 0.52rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}


.modal-description {
  margin:
    0 0 35px;

  color:
    rgba(22, 5, 33, 0.6);

  line-height: 1.75;
}


.modal-detail-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 25px;

  margin-bottom: 35px;
}


.modal-detail-grid > div {
  padding-top: 15px;

  border-top:
    1px solid var(--line);
}


.modal-detail-grid span {
  color: var(--purple);

  font-size: 0.55rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.modal-detail-grid p {
  color:
    rgba(22, 5, 33, 0.52);

  font-size: 0.83rem;

  line-height: 1.6;
}


.modal-live-link {
  min-height: 58px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding:
    0 18px;

  background: var(--ink);

  color: var(--white);

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


/* =====================================================
   REVEALS
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(32px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(.2, .7, .2, 1);
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  /* HEADER */

  .header-inner {
    height: 78px;

    grid-template-columns:
      1fr auto;

    padding:
      0 var(--page-padding);
  }


  .header-logo {
    width: 180px;
  }


  .desktop-nav {
    display: none;
  }


  .header-project-link {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .mobile-nav {
    display: flex;

    flex-direction: column;

    max-height: 0;

    overflow: hidden;

    background: var(--paper);

    transition:
      max-height 0.35s ease;
  }


  .mobile-nav.open {
    max-height: 520px;

    border-top:
      1px solid var(--line);
  }


  .mobile-nav a {
    display: flex;

    align-items: center;

    min-height: 58px;

    padding:
      0 var(--page-padding);

    border-bottom:
      1px solid var(--line);

    color:
      rgba(22, 5, 33, 0.65);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
  }


  .mobile-nav a:hover {
    color: var(--ink);
  }


  .mobile-nav-cta {
    color:
      var(--purple) !important;
  }


  /* HERO */

  .hero-main {
    grid-template-columns:
      1fr;

    min-height: auto;
  }

  .hero-main {
    width: 100%;

    grid-template-columns: 1fr;

    min-height: auto;
  }

  .hero-console {
    width: 100%;
    max-width: none;

    justify-self: stretch;
    align-self: stretch;
  }


  .hero h1 {
    font-size:
      clamp(5rem, 13vw, 9rem);
  }


  /* HEADINGS */

  .editorial-heading,
  .quote-heading,
  .approach-heading {
    grid-template-columns:
      1fr;

    gap: 30px;
  }


  /* WORK */

  .work-feature,
  .work-feature-reverse {
    grid-template-columns:
      minmax(360px, 0.62fr)
      minmax(0, 1fr);
  }


  .work-feature-reverse
  .work-feature-copy {
    order: 1;

    border-left: 0;

    border-right:
      1px solid var(--ink);
  }


  .work-feature-reverse
  .work-image-stage {
    order: 2;
  }


  .work-feature h3 {
    font-size:
      clamp(2.35rem, 4.2vw, 3.8rem);
  }


  /* SERVICES */

  .services-heading > div {
    grid-template-columns:
      1fr;

    gap: 30px;
  }


  .service-band {
    grid-template-columns:
      70px 1fr;
  }


  .service-band-info {
    grid-column: 2;
  }


  /* APPROACH */

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


  .approach-item,
  .approach-item:nth-child(2),
  .approach-item:last-child {
    grid-template-columns:
      50px 1fr;

    padding:
      30px 0;

    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }


  .approach-item:last-child {
    border-bottom: 0;
  }


  /* QUOTE */

  .quote-interface {
    grid-template-columns:
      1fr;
  }


  .quote-nav {
    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    border-right: 0;

    border-bottom:
      1px solid var(--ink);
  }


  .quote-nav-heading {
    grid-column:
      1 / -1;
  }


  .quote-nav-option {
    grid-template-columns:
      1fr;

    min-height: 135px;

    border-right:
      1px solid var(--line-light);
  }


  .quote-nav-option i {
    display: none;
  }


  /* PROCESS */

  .process-heading {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .process-heading
  .eyebrow {
    grid-column: auto;

    margin-bottom: 0;
  }


  /* FOOTER */

  .footer-main {
    grid-template-columns:
      1fr 1fr 1fr;
  }


  .footer-brand-area {
    grid-column:
      1 / -1;
  }


  /* MODAL */

  .modal-layout {
    grid-template-columns:
      1fr;
  }


  .modal-project-image {
    border-right: 0;

    border-bottom:
      1px solid var(--ink);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  :root {
    --page-padding: 17px;
  }


  .section-shell {
    width:
      calc(100% - 34px);
  }


  /* HEADER */

  .header-inner {
    height: 72px;

    padding:
      0 17px;
  }


  .header-logo {
    width: 160px;
  }


  .mobile-nav a {
    min-height: 55px;

    padding:
      0 17px;
  }


  /* HERO */

  .hero {
    padding-top: 105px;
  }


  .hero-grid-lines {
    inset:
      72px 0 0;
  }


  .hero-topline {
    grid-template-columns:
      1fr auto;

    gap: 15px;
  }


  .hero-topline
  p:nth-child(2) {
    display: none;
  }


  .hero h1 {
    font-size:
      clamp(3.8rem, 19vw, 6.4rem);

    line-height: 0.77;
  }


  .hero-outline {
    -webkit-text-stroke:
      1.3px var(--ink);
  }


  .hero-main {
    padding-top: 35px;
  }


  .hero-console {
    width: 100%;

    justify-self: stretch;
  }


  .console-display {
    min-height: 260px;
  }


  .hero-footer {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .hero-actions {
    align-items: stretch;

    flex-direction: column;
  }


  .solid-button {
    justify-content:
      space-between;
  }


  .arrow-link {
    width: max-content;
  }


  .hero-corner-mark {
    display: none;
  }


  /* PIXEL DIVIDER */

  .pixel-divider,
  .pixel-transition {
    height: 165px;
  }


  .pixel-divider-inner {
    width:
      calc(100% - 34px);
  }


  .pixel-stage {
    left: 17px;
    right: 17px;

    height: 115px;
  }


  /* HEADINGS */

  .editorial-heading h2,
  .services-heading h2,
  .quote-heading h2,
  .process-heading h2 {
    font-size:
      clamp(2.8rem, 13.5vw, 4.8rem);

    line-height: 0.87;
  }


  /* WORK */

  .work-section {
    padding:
      85px 0 90px;
  }


  .editorial-heading {
    padding-bottom: 30px;
  }


  .work-feature,
  .work-feature-reverse {
    grid-template-columns:
      1fr;

    min-height: auto;

    margin-top: 45px;
  }


  .work-feature-copy,
  .work-feature-reverse
  .work-feature-copy {
    order: 1;

    min-height: 440px;

    padding:
      22px 18px;

    border-right: 0;
    border-left: 0;

    border-bottom:
      1px solid var(--ink);
  }


  .work-image-stage,
  .work-feature-reverse
  .work-image-stage {
    order: 2;

    padding:
      55px 20px;
  }


  .work-feature h3 {
    font-size:
      clamp(2.2rem, 10vw, 3.6rem);

    line-height: 0.85;

    letter-spacing:
      -0.055em;
  }


  .work-feature h3 span {
    white-space: normal;
  }


  .work-description {
    max-width: 100%;
  }


  .work-browser {
    box-shadow:
      10px 11px 0
      rgba(22, 5, 33, 0.14);
  }


  .work-browser img {
    aspect-ratio:
      4 / 3;
  }


  .stage-label-one {
    top: 25px;
    left: 10px;
  }


  .stage-label-two {
    width: 58px;
    height: 58px;

    right: 8px;
    bottom: 20px;
  }


  .portfolio-strip {
    align-items: flex-start;

    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .portfolio-strip > div {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }


  /* SERVICES */

  .services-section {
    padding:
      90px 0;
  }


  .service-band {
    grid-template-columns:
      40px 1fr;

    gap: 15px;

    padding:
      40px 0;
  }


  .service-band:hover {
    padding-left: 0;
    padding-right: 0;
  }


  .service-band h3 {
    font-size:
      clamp(2.4rem, 11vw, 4rem);
  }


  .service-band-info {
    grid-column:
      1 / -1;

    padding-left: 55px;
  }


  .service-band-featured::before {
    left: -17px;
  }


  .services-footer {
    align-items: flex-start;

    flex-direction: column;
  }


  /* APPROACH */

  .approach-section {
    padding:
      75px 0;
  }


  .approach-heading h2 {
    font-size:
      clamp(2.8rem, 13vw, 4.5rem);
  }


  .approach-footer {
    grid-template-columns:
      1fr;

    gap: 10px;
  }


  .approach-footer i {
    margin-top: 10px;
  }


  /* QUOTE */

  .quote-section {
    padding:
      90px 0;
  }


  .quote-nav {
    grid-template-columns:
      1fr;
  }


  .quote-nav-option {
    min-height: 75px;

    grid-template-columns:
      32px 1fr auto;

    border-right: 0;
  }


  .quote-nav-option i {
    display: block;
  }


  .quote-config {
    padding:
      28px 18px;
  }


  .quote-big-number {
    display: none;
  }


  .quote-config-top {
    grid-template-columns:
      1fr;
  }


  .quote-options {
    grid-template-columns:
      1fr;
  }


  .quote-output {
    grid-template-columns:
      1fr;
  }


  .quote-cta {
    min-height: 130px;
  }


  /* PROCESS */

  .process-section {
    padding:
      90px 0 110px;
  }


  .process-heading {
    margin-bottom: 60px;
  }


  .process-timeline {
    padding-left: 45px;
  }


  .timeline-line {
    left: 10px;
    right: auto;

    top: 0;
    bottom: 0;

    width: 3px;
    height: auto;
  }


  .timeline-progress {
    width: 100%;

    height:
      calc(
        var(--process-progress)
        * 100%
      );

    background:
      linear-gradient(
        180deg,
        var(--coral),
        var(--purple),
        var(--blue)
      );
  }


  .timeline-runner {
    left: 50%;

    top:
      calc(
        var(--process-progress)
        * 100%
      );
  }


  .timeline-steps {
    grid-template-columns:
      1fr;

    gap: 0;
  }


  .timeline-step {
    min-height: 185px;

    padding:
      0 0 45px;
  }


  .timeline-step:last-child {
    min-height: 0;

    padding-bottom: 0;
  }


  .timeline-point {
    left: -44px;
    top: 0;
  }


  .timeline-step.active {
    transform:
      translateX(5px);
  }


  .timeline-step p {
    max-width: 100%;
  }


  /* FINAL CTA */

  .final-cta {
    min-height: 620px;

    padding:
      75px 17px;
  }


  .final-cta h2 {
    font-size:
      clamp(4rem, 19vw, 6.6rem);
  }


  .final-logo-mark {
    width: 300px;
  }


  /* FOOTER */

  .site-footer {
    padding:
      55px 17px 24px;
  }


  .footer-main {
    grid-template-columns:
      1fr 1fr;

    gap:
      40px 25px;

    text-align: center;
  }


  .footer-brand-area {
    grid-column:
      1 / -1;

    display: flex;

    flex-direction: column;

    align-items: center;
  }


  .footer-brand-area img {
    width: 210px;
  }


  .footer-column {
    align-items: center;
  }


  .footer-column:last-child {
    grid-column:
      1 / -1;
  }


  .footer-bottom {
    grid-template-columns:
      1fr;

    gap: 11px;

    text-align: center;
  }


  .footer-bottom a {
    justify-self: center;
  }


  /* MODAL */

  .project-modal-panel {
    inset: 12px;
  }


  .modal-header {
    min-height: 54px;

    padding:
      0 14px;
  }


  .modal-project-image {
    padding:
      35px 18px;
  }


  .modal-project-content {
    padding:
      35px 18px 25px;
  }


  .modal-project-content h2 {
    font-size:
      clamp(2.8rem, 14vw, 4.5rem);
  }


  .modal-detail-grid {
    grid-template-columns:
      1fr;
  }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

  .hero h1 {
    font-size: 3.55rem;
  }


  .work-feature h3 {
    font-size: 2.2rem;
  }


  .work-feature-copy {
    min-height: 425px;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }

}