:root {
  --nc-black: #0D0D0D;
  --nc-surface: #1A1A1A;
  --nc-surface-mid: #242424;

  --nc-white: #FFFFFF;
  --nc-white-80: rgba(255, 255, 255, 0.8);
  --nc-white-60: rgba(255, 255, 255, 0.6);
  --nc-white-40: rgba(255, 255, 255, 0.4);
  --nc-white-30: rgba(255, 255, 255, 0.3);

  --nc-mint: #A8DADC;
  --nc-mint-fill: #A8DADC;
  --nc-mint-soft: rgba(168, 218, 220, 0.88);
  --nc-mint-border: rgba(168, 218, 220, 0.68);
  --nc-mint-glow: rgba(168, 218, 220, 0.08);

  --nc-border: rgba(255, 255, 255, 0.08);
  --nc-border-mint: rgba(168, 218, 220, 0.28);

  --nc-pink: #FFC1CC;

  --nc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nc-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --frame-x: clamp(40px, 5.8vw, 84px);
  --frame-max: 1440px;
  --content-max: 1200px;
}

/* GLOBAL */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--nc-black);
}

body {
  min-width: 320px;
  font-family: "Poppins", sans-serif;
  background: var(--nc-black);
  color: var(--nc-white);
  overflow-x: hidden;
}

/* SOFT PAGE ENTRY */

.page {
  width: 100%;
  min-height: 100vh;
  background: var(--nc-black);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
  transition:
    opacity 900ms var(--nc-ease-out),
    transform 900ms var(--nc-ease-out),
    filter 900ms var(--nc-ease-out);
}

html.page-ready .page {
  opacity: 1;
  transform: none;
  filter: none;
}

html.page-settled .page {
  transform: none;
  filter: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 24px var(--frame-x) 0;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(18px);
  transition:
    transform 420ms var(--nc-ease-out),
    opacity 420ms var(--nc-ease-out),
    background 300ms var(--nc-ease-out);
}

.header.is-hidden {
  transform: translate3d(0, -120%, 0);
  opacity: 0;
  pointer-events: none;
}

.header.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  width: 100%;
  max-width: var(--content-max);
  min-height: 64px;
  margin: 0 auto;
  padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--nc-border);
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--nc-mint);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  transition:
    color 240ms var(--nc-ease-out),
    transform 240ms var(--nc-ease-out);
}

.logo:hover {
  color: var(--nc-mint-fill);
  transform: translateY(-1px);
}

.logo-mark {
  display: block;
  height: 34px;
  width: auto;
}

.quick-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  max-width: fit-content;
}

.quick-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--nc-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 10px;
  color: rgb(153, 153, 153);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.nav-link {
  position: relative;
  display: inline-block;
  height: 18px;
  overflow: visible;
  white-space: nowrap;
  color: rgb(153, 153, 153);
  line-height: 18px;
  transition: opacity 260ms var(--nc-ease-out);
}

.nav:hover .nav-link {
  opacity: 0.42;
}

.nav:hover .nav-link:hover {
  opacity: 1;
}

.nav-link-inner {
  position: relative;
  display: inline-block;
  height: 18px;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 3px;
}

.nav-line {
  display: flex;
  width: max-content;
  height: 18px;
  line-height: 18px;
  white-space: nowrap;
}

.nav-line-original {
  position: relative;
}

.nav-line-clone {
  position: absolute;
  left: 0;
  top: 18px;
}

.nav-char {
  display: inline-block;
  line-height: 18px;
  color: rgb(153, 153, 153);
  transform: translateY(0);
  transition:
    transform 420ms var(--nc-ease-out),
    color 260ms var(--nc-ease-out);
  transition-delay: calc(var(--char-index) * 14ms);
}

.nav-line-clone .nav-char {
  color: var(--nc-mint);
}

.nav-link:hover .nav-line-original .nav-char,
.nav-link:hover .nav-line-clone .nav-char {
  transform: translateY(-18px);
}

/* HERO */

.hero {
  position: relative;
  min-height: calc(100svh - var(--site-nav-height, 0px));
  padding: 40px var(--frame-x) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--nc-border);
}

.hero-physics {
  position: absolute;
  width: min(calc(100vw - (var(--frame-x) * 2)), var(--frame-max));
  top: 112px;
  bottom: clamp(210px, 20vw, 260px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  overflow: hidden;
  z-index: 2;
}

/* TAGS */

.tag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 36px;
  border: 1px solid var(--nc-mint-border);
  border-radius: 999px;
  color: var(--nc-mint-soft);
  font-size: clamp(20px, 1.78vw, 31px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  cursor: grab;
  touch-action: none;
  background: rgba(13, 13, 13, 0.58);
  backdrop-filter: blur(8px);
  box-shadow: none;
  will-change: transform;
}

.tag:active {
  cursor: grabbing;
}

.tag.small {
  padding: 16px 32px;
  font-size: clamp(18px, 1.58vw, 27px);
}

.tag.large {
  padding: 19px 38px;
  font-size: clamp(21px, 1.86vw, 32px);
}

.tag-dot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--nc-mint);
  flex: 0 0 auto;
}

.avatar-tag {
  width: 70px;
  height: 70px;
  padding: 4px;
  border-radius: 50%;
  font-size: 34px;
  background: rgba(13, 13, 13, 0.9);
  overflow: hidden;
}

.avatar-tag img,
.avatar-tag video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--nc-black);
  transform: scale(0.86);
  transform-origin: center;
}

.arrow-tag {
  width: 86px;
  height: 86px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--nc-mint-fill);
  color: var(--nc-black);
  font-size: 50px;
  font-weight: 300;
}

/* HERO TITLE */

.hero-title {
  position: relative;
  z-index: 3;
  width: min(calc(100vw - (var(--frame-x) * 2)), var(--frame-max));
  max-width: var(--frame-max);
  margin: 0 auto;
  padding-bottom: clamp(24px, 3vw, 42px);
  color: var(--nc-white);
  font-size: clamp(96px, 11.3vw, 188px);
  font-weight: 600;
  letter-spacing: clamp(-8px, -0.52vw, -2px);
  line-height: 0.86;
  white-space: nowrap;
  text-align: center;
  transform: none;
}

/* MAIN CONTENT */

.content {
  padding: clamp(72px, 10vw, 140px) var(--frame-x);
}

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--nc-border);
}

.section:first-child {
  padding-top: 0;
}

.section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.featured-work-embed-section {
  /* No heading/subtitle above the carousel anymore - the full base
     .section padding-top left a large empty gap (and matching extra
     scroll distance) before the cards, now that there's no title to
     fill it. */
  padding-top: clamp(24px, 3vw, 40px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--nc-mint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--nc-mint);
}

.section h2 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: clamp(-4px, -0.4vw, -1.5px);
  line-height: 0.96;
}

.lead {
  max-width: 850px;
  color: var(--nc-white-60);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.35;
}

.lead strong {
  color: var(--nc-mint);
  font-weight: 600;
}

/* ABOUT */

.about-section {
  max-width: var(--content-max);
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.about-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: clamp(520px, 58vw, 660px);
  justify-self: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--nc-surface);
  will-change: transform;
}

.about-photo {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  transform: translateY(var(--about-parallax, -6%));
  will-change: transform;
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--nc-white);
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 500;
  letter-spacing: clamp(-2px, -0.16vw, -0.8px);
  line-height: 1.08;
}

.about-copy h2 span {
  color: var(--nc-mint);
}

.about-divider {
  width: 100vw;
  height: 9px;
  margin: 26px 0 0;
  margin-left: calc((var(--frame-x) + ((100vw - min(100vw - (var(--frame-x) * 2), var(--content-max))) / 2)) * -1);
  background: rgba(255, 255, 255, 0.65);
}

.about-text {
  max-width: 720px;
  margin-top: 24px;
  color: var(--nc-white);
  font-size: clamp(17px, 1.28vw, 21px);
  font-weight: 400;
  line-height: 1.45;
}

.about-text strong {
  color: var(--nc-white);
  font-weight: 700;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 34px;
  padding: 0 22px;
  border: 2px solid var(--nc-white);
  border-radius: 999px;
  color: var(--nc-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 240ms var(--nc-ease-out),
    border-color 240ms var(--nc-ease-out),
    transform 240ms var(--nc-ease-out);
}

.about-button:hover {
  color: var(--nc-mint);
  border-color: var(--nc-mint);
  transform: translateY(-2px);
}

/* MY WAY */

.my-way-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(32px, 4vw, 56px) 0;
}

.my-way-copy {
  max-width: 1040px;
}

.my-way-sep {
  color: var(--nc-pink);
  font-weight: 600;
  white-space: nowrap;
}

.my-way-awai {
  letter-spacing: 0.18em;
}

.my-way-eyebrow {
  margin-top: 14px;
  color: var(--nc-white-40);
  font-size: clamp(15px, 1.1vw, 17px);
  font-style: italic;
  line-height: 1.4;
  white-space: nowrap;
}

.my-way-text {
  max-width: 820px;
  margin-top: 16px;
  color: var(--nc-white);
  font-size: clamp(17px, 1.28vw, 21px);
  font-weight: 400;
  line-height: 1.5;
}

.my-way-text strong {
  color: var(--nc-white);
  font-weight: 700;
}

.my-way-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.my-way-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--nc-mint-border);
  border-radius: 999px;
  color: var(--nc-mint-soft);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.my-way-pill .my-way-sep {
  color: var(--nc-mint);
  font-size: 12px;
}

.my-way-subhead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--nc-white);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.my-way-pairs + .my-way-subhead {
  margin-top: 32px;
}

.my-way-button {
  margin-top: 28px;
}

/* CARDS */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--nc-border);
  border-radius: 24px;
  background: var(--nc-surface);
  transition:
    transform 300ms var(--nc-ease-out),
    border-color 300ms var(--nc-ease-out),
    box-shadow 300ms var(--nc-ease-out);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--nc-border-mint);
  box-shadow: 0 20px 80px var(--nc-mint-glow);
}

.card h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.card p {
  color: var(--nc-white-60);
  font-size: 16px;
  line-height: 1.55;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  min-height: 210px;
}

.access-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--nc-mint);
  font-size: 15px;
  font-weight: 600;
}

.card-link::after {
  content: "↗︎";
  transition: transform 180ms var(--nc-ease-out);
}

.card:hover .card-link::after {
  transform: translate(3px, -3px);
}

/* PORTFOLIO TEASER */

.work-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.work-panel {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--nc-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, var(--nc-mint-glow), transparent 36%),
    var(--nc-surface);
}

.work-panel h3 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}

.work-panel p {
  max-width: 620px;
  color: var(--nc-white-60);
  font-size: 18px;
  line-height: 1.55;
}

.arrow-cta {
  width: 64px;
  height: 64px;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nc-mint-fill);
  color: var(--nc-black);
  font-size: 34px;
  transition: transform 240ms var(--nc-ease-spring);
}

.arrow-cta:hover {
  transform: scale(1.1);
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-item {
  padding: 20px;
  border: 1px solid var(--nc-border);
  border-radius: 18px;
  background: var(--nc-surface);
  color: var(--nc-white-60);
  font-size: 16px;
  line-height: 1.45;
}

.mini-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--nc-white);
  font-weight: 600;
}

/* CONTACT */

.contact-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--nc-border-mint);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, var(--nc-mint-glow), transparent 34%),
    var(--nc-surface);
}

.contact-panel h2 {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--nc-mint-fill);
  color: var(--nc-black);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 240ms var(--nc-ease-spring);
}

.button:hover {
  transform: scale(1.04);
}

/* FOOTER */

.footer {
  padding: 40px var(--frame-x);
  border-top: 1px solid var(--nc-border);
  color: var(--nc-white-60);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--nc-mint);
}

/* RESPONSIVE */

@media (max-width: 1280px) {
  .hero-title {
    font-size: clamp(88px, 10.6vw, 158px);
    letter-spacing: clamp(-7px, -0.48vw, -2px);
  }

  .tag.large {
    font-size: clamp(20px, 1.8vw, 30px);
  }
}

@media (max-width: 980px) {
  :root {
    --frame-x: 24px;
  }

  .hero {
    min-height: calc(100svh - var(--site-nav-height, 0px));
    padding-top: 32px;
  }

  .hero-physics {
    width: calc(100vw - 48px);
    top: 108px;
    bottom: clamp(180px, 24vw, 230px);
  }

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

  .about-photo-wrap {
    max-width: 420px;
    height: 560px;
  }

  .about-copy h2 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .my-way-section {
    min-height: 0;
  }

  .grid,
  .services-grid,
  .work-teaser {
    grid-template-columns: 1fr;
  }

  .access-card,
  .card {
    min-height: auto;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-title {
    width: calc(100vw - 48px);
    font-size: clamp(54px, 8.6vw, 92px);
    letter-spacing: -3px;
    text-align: center;
    white-space: normal;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --frame-x: 20px;
  }

  .my-way-eyebrow {
    white-space: normal;
  }

  .header {
    min-height: 118px;
    padding: 18px 20px 0;
  }

  .header-inner {
    min-height: 80px;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 20px;
  }

  .quick-links {
    max-width: 320px;
  }

  .quick-title {
    font-size: 14px;
  }

  .nav {
    font-size: 13px;
    gap: 5px 11px;
    line-height: 18px;
  }

  .hero {
    min-height: calc(100svh - var(--site-nav-height, 0px));
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 32px;
    justify-content: flex-end;
  }

  .hero-physics {
    width: calc(100vw - 40px);
    top: 150px;
    bottom: 245px;
    overflow: visible;
  }

  .tag {
    padding: 16px 28px;
    font-size: 26px;
    font-weight: 400;
  }

  .tag.large {
    padding: 18px 32px;
    font-size: 27px;
  }

  .tag.small {
    padding: 16px 28px;
    font-size: 26px;
  }

  .tag-dot {
    width: 22px;
    height: 22px;
  }

  .avatar-tag {
    width: 62px;
    height: 62px;
    font-size: 30px;
  }

  .arrow-tag {
    width: 64px;
    height: 64px;
    font-size: 38px;
  }

  .hero-title {
    width: calc(100vw - 40px);
    max-width: 620px;
    font-size: clamp(78px, 21vw, 128px);
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 0.88;
    text-align: center;
    white-space: normal;
    padding-bottom: 42px;
    transform: none;
  }

  .content {
    padding: 72px 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .lead {
    font-size: 19px;
  }

  .card,
  .work-panel {
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 124px;
  }

  .header-inner {
    align-items: flex-start;
    gap: 14px;
  }

  .logo {
    font-size: 24px;
    padding-top: 2px;
  }

  .quick-links {
    max-width: 285px;
  }

  .nav {
    font-size: 12px;
    gap: 5px 10px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-physics {
    width: calc(100vw - 40px);
    top: 148px;
    bottom: 260px;
    overflow: visible;
  }

  .hero-title {
    width: calc(100vw - 40px);
    font-size: clamp(74px, 22vw, 116px);
    letter-spacing: -4px;
    line-height: 0.88;
    padding-bottom: 44px;
    text-align: center;
    white-space: normal;
    transform: none;
  }

  /* The 760px breakpoint's tag sizing (26-27px font, 16-18px padding) was
     never reduced further here - on an actual phone (375-414px wide) a
     pill like "Head of Product & Experience" at that size runs nearly
     edge to edge, which reads as disproportionately large against how
     narrow the screen actually is. Scaled down to roughly 60% instead. */
  .tag,
  .tag.large,
  .tag.small {
    gap: 10px;
    padding: 10px 18px;
    font-size: 15px;
  }

  .tag-dot {
    width: 12px;
    height: 12px;
  }

  .avatar-tag {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .arrow-tag {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .about-section {
    min-height: auto;
  }

  .about-photo-wrap {
    max-width: 100%;
    height: 520px;
    border-radius: 8px;
  }

  .about-copy h2 {
    font-size: clamp(30px, 8.8vw, 42px);
    font-weight: 500;
    letter-spacing: -1.4px;
    line-height: 1.08;
  }

  .about-divider {
    height: 6px;
    margin-top: 22px;
  }

  .about-text {
    font-size: 17px;
  }

  .about-button {
    font-size: 15px;
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  html.page-ready .page,
  html.page-settled .page {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .nav-char,
  .card,
  .button,
  .arrow-cta,
  .header {
    transition: none;
  }

  .about-photo {
    transform: none;
  }
}
