@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');.project-page {
  --editorial-max: 80rem;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 9rem var(--page-pad) 5rem;
  color: #f5f6f8;
  background:
    radial-gradient(circle at 78% 5%, color-mix(in srgb, var(--project-accent) 12%, transparent), transparent 34rem),
    radial-gradient(circle at 10% 44%, rgba(57, 77, 105, .12), transparent 34rem),
    #020307;
}

.project-page::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.project-page__hero,
.project-page__media,
.project-page__intro,
.project-content,
.project-page__pager {
  position: relative;
  max-width: var(--editorial-max);
  margin-right: auto;
  margin-left: auto;
}

.project-page__back {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
  color: rgba(255, 255, 255, .65);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.project-page__back:hover { color: #fff; transform: translateX(-3px); }

.project-page__kicker,
.project-page__section-label {
  margin: 0;
  color: var(--project-accent);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .2em;
}

.project-page h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .23em;
  max-width: 72rem;
  margin: .85rem 0 clamp(2.7rem, 6vw, 5rem);
  font: 500 clamp(3.5rem, 9vw, 8.5rem)/.88 'Manrope', sans-serif;
  letter-spacing: -.075em;
  perspective: 700px;
}

.project-page__title-word { display: inline-block; overflow: hidden; padding-bottom: .08em; }
.project-page__title-word > span { display: inline-block; transform-origin: 50% 100%; }

.project-page__metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(46rem, 100%);
  margin: 0 0 clamp(2.8rem, 6vw, 5rem) auto;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.project-page__metadata div { padding: 1rem 1.5rem 0 0; }
.project-page__metadata dt { color: rgba(255, 255, 255, .4); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.project-page__metadata dd { margin: .45rem 0 0; font-size: .82rem; }

.project-page__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: clamp(1.1rem, 2vw, 2rem);
  background: #080a0f;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .08);
}

.project-page__media img,
.project-page__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page__media-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--project-accent) 20%, #07090e), #030407 70%);
}

.project-page__intro {
  display: grid;
  grid-template-columns: minmax(9rem, .45fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.project-page__intro > p:last-child {
  max-width: 50rem;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font: 400 clamp(1.55rem, 3.6vw, 3rem)/1.18 'Manrope', sans-serif;
  letter-spacing: -.035em;
}

.project-content {
  padding: clamp(4.5rem, 9vw, 8rem) max(0px, calc((100% - 62rem) / 2));
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.8;
}

.project-content > *:first-child { margin-top: 0; }
.project-content > *:last-child { margin-bottom: 0; }
.project-content h2,
.project-content h3,
.project-content h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: -.04em;
}
.project-content h2 { margin: 1.8em 0 .65em; font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1; }
.project-content h3 { margin: 1.8em 0 .65em; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.1; }
.project-content p { margin: 0 0 1.4em; }
.project-content a { color: #fff; text-decoration-color: var(--project-accent); text-underline-offset: .25em; }
.project-content img,
.project-content video,
.project-content iframe { max-width: 100%; border-radius: clamp(1rem, 2vw, 1.75rem); }
.project-content img,
.project-content video { display: block; width: 100%; height: auto; border: 1px solid rgba(255, 255, 255, .12); }
.project-content figure { margin: clamp(2.5rem, 6vw, 5rem) min(-9vw, -5rem); }
.project-content figure img { width: 100%; }
.project-content figcaption { margin-top: .75rem; color: rgba(255, 255, 255, .42); font-size: .72rem; }
.project-content blockquote {
  margin: clamp(3rem, 7vw, 6rem) 0;
  padding: 0 0 0 clamp(1.4rem, 3vw, 2.5rem);
  border-left: 2px solid var(--project-accent);
  color: #fff;
  font: 400 clamp(1.5rem, 3vw, 2.6rem)/1.25 'Manrope', sans-serif;
  letter-spacing: -.025em;
}
.project-content ul,
.project-content ol { padding-left: 1.4rem; }
.project-content hr { margin: 4rem 0; border: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.project-content .wp-block-separator { width: 100%; }
.project-content .wp-block-image { overflow: hidden; }
.project-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(3rem, 7vw, 6rem) min(-9vw, -5rem);
  padding: 0;
}
.project-content .wp-block-gallery.has-3-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-content .wp-block-gallery figure,
.project-content .wp-block-gallery .wp-block-image { width: 100%; margin: 0; }
.project-content .wp-block-gallery img { height: 100%; min-height: 16rem; object-fit: cover; }
.project-content .wp-block-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.5rem); }
.project-content .wp-block-column { min-width: 0; }
.project-content .wp-block-video,
.project-content .wp-block-embed { margin-top: clamp(2.5rem, 6vw, 5rem); margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.project-content .wp-block-embed iframe { width: 100%; aspect-ratio: 16 / 9; }
.project-content .alignwide { width: min(76rem, calc(100vw - (2 * var(--page-pad)))); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.project-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }

.project-page__pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.project-page__pager a {
  display: flex;
  min-height: 13rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}
.project-page__pager a:last-child { align-items: flex-end; padding-left: 2rem; border-left: 1px solid rgba(255, 255, 255, .15); text-align: right; }
.project-page__pager small { color: rgba(255, 255, 255, .44); font-size: .6rem; letter-spacing: .16em; }
.project-page__pager strong { max-width: 28rem; font: 500 clamp(1.25rem, 2.6vw, 2.3rem)/1.05 'Manrope', sans-serif; letter-spacing: -.035em; transition: color .2s ease; }
.project-page__pager a:hover strong { color: var(--project-accent); }

.project-page--loading,
.project-page--message { padding-top: 12rem; }
.project-page--loading > * { max-width: 72rem; margin-right: auto; margin-left: auto; border-radius: .5rem; background: rgba(255, 255, 255, .07); animation: project-page-pulse 1.4s ease-in-out infinite; }
.project-page__loading-line { width: 10rem; height: .7rem; margin-bottom: 2.5rem; }
.project-page__loading-title { height: clamp(5rem, 12vw, 10rem); margin-bottom: 4rem; }
.project-page__loading-media { aspect-ratio: 16 / 9; }
.project-page__loading-copy { height: 5rem; margin-top: 4rem; }
.project-page__loading-copy--short { width: min(42rem, 70%); height: 2rem; margin-top: 1.2rem; }
.project-page--message { display: grid; min-height: 100vh; align-content: center; justify-items: center; gap: 1rem; letter-spacing: .08em; }
.project-page--message button,
.project-page--message a { border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; padding: .8rem 1.2rem; color: #fff; background: transparent; cursor: pointer; text-decoration: none; }

@keyframes project-page-pulse { 50% { opacity: .5; } }

@media (max-width: 700px) {
  .project-page { padding-top: 7.5rem; }
  .project-page__back { margin-bottom: 3.5rem; }
  .project-page__metadata { grid-template-columns: 1fr; margin-left: 0; }
  .project-page__metadata div { display: grid; grid-template-columns: 6rem 1fr; padding: .8rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .project-page__metadata dd { margin: 0; }
  .project-page__intro { grid-template-columns: 1fr; gap: 1.3rem; }
  .project-content figure { margin-right: 0; margin-left: 0; }
  .project-content .wp-block-gallery,
  .project-content .wp-block-gallery.has-3-columns { grid-template-columns: 1fr; margin-right: 0; margin-left: 0; }
  .project-content .wp-block-columns { grid-template-columns: 1fr; }
  .project-page__pager { grid-template-columns: 1fr; }
  .project-page__pager a:last-child { align-items: flex-start; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .15); border-left: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .project-page--loading > * { animation: none; }
  .project-page__back,
  .project-page__pager strong { transition: none; }
}
.projects-page {
  position: relative;
  min-height: 100vh;
  padding: 8.5rem var(--page-pad) 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 2%, rgba(46, 78, 104, 0.18), transparent 34rem),
    radial-gradient(circle at 8% 38%, rgba(99, 17, 54, 0.12), transparent 30rem),
    #020307;
}

.projects-page::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: '';
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.projects-page__hero {
  position: relative;
  max-width: 78rem;
  margin: 0 auto 4rem;
}

.projects-page__hero > p,
.projects-page__hero > span {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
}

.projects-title-stack {
  display: grid;
  width: fit-content;
  max-width: 100%;
  margin: .45rem 0 .9rem;
  isolation: isolate;
  white-space: nowrap;
}

.projects-title {
  grid-area: 1 / 1;
  display: flex;
  align-items: baseline;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(7rem, 13vw, 14rem);
  font-weight: 550;
  line-height: .82;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.projects-title--ghost {
  z-index: 0;
  color: rgba(255, 255, 255, .035);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .11);
}

.projects-title--active {
  position: relative;
  z-index: 1;
  overflow: visible;
  color: #fff;
}

.projects-hero-char {
  display: inline-block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  opacity: 1;
  filter: blur(0);
  overflow: visible;
  will-change: transform, opacity;
}

.projects-hero-cursor {
  position: absolute;
  z-index: 2;
  top: .035em;
  left: 0;
  display: block;
  width: 2px;
  height: .78em;
  border-radius: 1px;
  opacity: 0;
  background: rgba(255, 255, 255, .9);
  will-change: transform, opacity;
}

.projects-page__filters {
  position: relative;
  display: flex;
  max-width: 78rem;
  margin: 0 auto 2.2rem;
  gap: .6rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.projects-page__filters button,
.projects-page__error button {
  flex: none;
  min-height: 2.4rem;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  background: rgba(10,12,18,.58);
  cursor: pointer;
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .12em;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.projects-page__filters button:hover,
.projects-page__filters button.is-active {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(28,32,42,.78);
}

.projects-page__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 78rem;
  margin: 0 auto;
  gap: 1.1rem;
}

.project-grid-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.25rem;
  color: #fff;
  background: rgba(11,14,21,.68);
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 20px 55px rgba(0,0,0,.26);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease;
}

.project-grid-card:hover {
  border-color: color-mix(in srgb, var(--project-accent) 62%, white 10%);
  transform: translateY(-4px);
}

.project-grid-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090b10;
}

.project-grid-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}

.project-grid-card:hover img { transform: scale(1.03); filter: brightness(1.06); }

.project-grid-card__meta {
  display: grid;
  min-height: 10.5rem;
  padding: 1.3rem 1.35rem 1.45rem;
  align-content: start;
}

.project-grid-card__meta small {
  min-height: 2.2em;
  color: var(--project-accent);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.project-grid-card__meta strong {
  margin-top: .75rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12;
}

.project-grid-card__meta span {
  margin-top: auto;
  padding-top: 1.2rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
}

.project-grid-card > i {
  position: absolute;
  right: 1.35rem;
  bottom: 1.45rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--project-accent);
  box-shadow: 0 0 16px var(--project-accent);
}

.project-grid-card--skeleton { min-height: 25rem; cursor: default; animation: skeleton-pulse 1.4s ease-in-out infinite; }
.project-grid-card--skeleton span { display: block; height: 64%; background: rgba(255,255,255,.055); }
.project-grid-card--skeleton i { position: static; display: block; width: 70%; height: .8rem; margin: 1.2rem; border-radius: .3rem; background: rgba(255,255,255,.07); }
.project-grid-card--skeleton i:last-child { width: 42%; margin-top: -.5rem; }

.projects-page__error,
.projects-page__empty {
  max-width: 78rem;
  margin: 4rem auto;
  color: rgba(255,255,255,.72);
  text-align: center;
  letter-spacing: .16em;
}
.projects-page__error button { margin-top: .8rem; color: #fff; }

@keyframes skeleton-pulse { 50% { opacity: .58; } }

@media (max-width: 960px) { .projects-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 960px) {
  .projects-title { font-size: clamp(5rem, 12vw, 9rem); }
}
@media (max-width: 620px) {
  .projects-page { padding-top: 7.5rem; }
  .projects-page__grid { grid-template-columns: 1fr; }
  .projects-page__hero { margin-bottom: 2.5rem; }
  .projects-title { font-size: clamp(3.7rem, 17vw, 6.5rem); }
  .projects-title-stack { margin-top: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .projects-page__hero,
  .project-grid-card,
  .project-grid-card--skeleton { animation: none; }
  .project-grid-card,
  .project-grid-card__media img { transition: none; }
  .projects-hero-char { opacity: 1 !important; filter: none !important; transform: none !important; }
  .projects-hero-cursor { display: none; }
}
/* =========================================================
   PAGE
   ========================================================= */

.about-page {
  position: relative;

  min-height: 100vh;

  overflow: clip;

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

  background:
    #020204;
}


/* =========================================================
   PAGE BACKGROUND
   ========================================================= */

.about-page__capture-source {
  position: relative;

  z-index: 1;

  min-height: 100vh;

  overflow: clip;

  background:
    radial-gradient(circle at 82% 9%,
      rgba(64,
        132,
        164,
        0.12),
      transparent 34rem),

    radial-gradient(circle at 12% 48%,
      rgba(146,
        36,
        83,
        0.09),
      transparent 38rem),

    linear-gradient(180deg,
      #05060a,
      #020204 45%,
      #05060a);
}


.about-page__capture-source::before {
  position: fixed;

  z-index: 0;

  inset: 0;

  content: "";

  pointer-events: none;

  opacity: 0.16;

  background-image:
    linear-gradient(rgba(255,
        255,
        255,
        0.025) 1px,
      transparent 1px),

    linear-gradient(90deg,
      rgba(255,
        255,
        255,
        0.018) 1px,
      transparent 1px);

  background-size:
    52px 52px;

  mask-image:
    radial-gradient(circle at center,
      black,
      transparent 86%);

  -webkit-mask-image:
    radial-gradient(circle at center,
      black,
      transparent 86%);
}


.about-page__capture-source::after {
  position: fixed;

  z-index: 1;

  inset: 0;

  content: "";

  pointer-events: none;

  opacity: 0.11;

  background:
    radial-gradient(ellipse at center,
      transparent 48%,
      rgba(0,
        0,
        0,
        0.72) 100%),

    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");

  background-size:
    auto,
    180px 180px;

  mix-blend-mode:
    soft-light;
}


/* =========================================================
   SHELL
   ========================================================= */

.about-shell {
  position: relative;

  z-index: 2;

  width:
    min(100%,
      104rem);

  margin:
    0 auto;

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

  padding-left:
    var(--page-pad);
}


/* =========================================================
   INLINE SVG DEFINITIONS
   ========================================================= */

.about-liquid-filter-defs {
  position: absolute;

  width: 0;
  height: 0;

  overflow: hidden;

  pointer-events: none;

  visibility: hidden;
}


/* =========================================================
   APPLE STYLE LIQUID GLASS LENS
   ========================================================= */

.about-css-liquid-lens {
  --lens-size: 340px;

  position: fixed;

  z-index: 50;

  top: 0;
  left: 0;

  width:
    var(--lens-size);

  height:
    var(--lens-size);

  min-width: 0;
  min-height: 0;

  max-width: none;
  max-height: none;

  aspect-ratio:
    1 / 1;

  box-sizing:
    border-box;

  overflow:
    hidden;

  border-radius:
    50%;

  clip-path:
    circle(50% at 50% 50%);

  -webkit-clip-path:
    circle(50% at 50% 50%);

  pointer-events:
    none;

  transform-origin:
    center center;

  /*
   * Actual backdrop displacement.
   */
  backdrop-filter:
    url("#about-liquid-glass") saturate(1.16) brightness(1.05) contrast(1.03);

  /*
   * Safari fallback.
   */
  -webkit-backdrop-filter:
    blur(4px) saturate(1.12) brightness(1.04);

  /*
   * Keep this very transparent so the backdrop
   * distortion stays visible.
   */
  background:
    radial-gradient(circle at 50% 50%,

      rgba(255,
        255,
        255,
        0.004) 0%,

      rgba(255,
        255,
        255,
        0.003) 28%,

      rgba(255,
        255,
        255,
        0.002) 54%,

      rgba(255,
        255,
        255,
        0.004) 73%,

      rgba(255,
        255,
        255,
        0.009) 100%);

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

  box-shadow:
    inset 0 0 0 1px rgba(255,
      255,
      255,
      0.022),

    inset 17px 13px 34px rgba(255,
      255,
      255,
      0.018),

    inset -18px -16px 38px rgba(0,
      0,
      0,
      0.012),

    0 16px 48px rgba(0,
      0,
      0,
      0.035);

  will-change:
    transform,
    opacity;
}


/* =========================================================
   INTERNAL LENS LAYERS
   ========================================================= */

.about-css-liquid-lens__body,
.about-css-liquid-lens__edge-distort,
.about-css-liquid-lens__inner-ring,
.about-css-liquid-lens__cyan,
.about-css-liquid-lens__magenta,
.about-css-liquid-lens__shine,
.about-css-liquid-lens__specular {
  position: absolute;

  border-radius:
    50%;

  pointer-events:
    none;
}


/* =========================================================
   GLASS BODY
   ========================================================= */

.about-css-liquid-lens__body {
  z-index: 1;

  inset: 0;

  background:
    radial-gradient(circle at 29% 21%,

      rgba(255,
        255,
        255,
        0.01) 0%,

      rgba(255,
        255,
        255,
        0.006) 11%,

      rgba(255,
        255,
        255,
        0.004) 25%,

      transparent 43%),

    radial-gradient(circle at center,

      transparent 0%,

      transparent 82%,

      rgba(255,
        255,
        255,
        0.003) 90%,

      rgba(255,
        255,
        255,
        0.006) 96%,

      rgba(255,
        255,
        255,
        0.009) 100%);

  box-shadow:
    inset 12px 6px 28px rgba(255,
      255,
      255,
      0.012),

    inset -12px -8px 30px rgba(0,
      0,
      0,
      0.008);
}


/* =========================================================
   EDGE DISTORTION
   ========================================================= */

.about-css-liquid-lens__edge-distort {
  z-index: 2;

  inset: 0;

  border: 0;

  filter:
    url("#about-liquid-glass-rim");

  background:
    radial-gradient(circle at center,

      transparent 0%,

      transparent 90%,

      rgba(255,
        255,
        255,
        0.008) 96%,

      rgba(255,
        255,
        255,
        0.018) 100%);

  box-shadow:
    inset 0 0 20px rgba(255,
      255,
      255,
      0.018);

  opacity:
    0.16;
}


/* =========================================================
   INNER REFRACTION RING
   ========================================================= */

.about-css-liquid-lens__inner-ring {
  z-index: 3;

  inset: 0;

  border: 0;

  background:
    radial-gradient(circle at center,

      transparent 0%,

      transparent 88%,

      rgba(255,
        255,
        255,
        0.006) 96%,

      rgba(255,
        255,
        255,
        0.026) 100%);

  box-shadow:
    inset 0 0 18px rgba(255,
      255,
      255,
      0.012);
}


/* =========================================================
   CYAN EDGE
   ========================================================= */

.about-css-liquid-lens__cyan {
  z-index: 4;

  inset: 1px;

  border-left:
    1.25px solid rgba(0,
      225,
      255,
      0.2);

  border-top:
    1px solid rgba(0,
      225,
      255,
      0.055);

  opacity:
    0.58;

  mix-blend-mode:
    screen;
}


/* =========================================================
   MAGENTA EDGE
   ========================================================= */

.about-css-liquid-lens__magenta {
  z-index: 4;

  inset: 1px;

  border-right:
    1.25px solid rgba(255,
      38,
      188,
      0.19);

  border-bottom:
    1px solid rgba(255,
      38,
      188,
      0.05);

  opacity:
    0.55;

  mix-blend-mode:
    screen;
}


.about-css-liquid-lens--debug-refraction {
  border-color:
    rgba(255,
      255,
      255,
      0.2);

  background:
    transparent;
}


.about-css-liquid-lens--debug-refraction>* {
  opacity:
    0 !important;
}


/* =========================================================
   TOP SHINE
   ========================================================= */

.about-css-liquid-lens__shine {
  z-index: 5;

  top: 7%;
  left: 10%;

  width: 47%;
  height: 27%;

  background:
    radial-gradient(ellipse at center,

      rgba(255,
        255,
        255,
        0.17) 0%,

      rgba(255,
        255,
        255,
        0.065) 26%,

      rgba(255,
        255,
        255,
        0.016) 46%,

      transparent 73%);

  filter:
    blur(8px);

  transform:
    rotate(-23deg);

  opacity:
    0.17;

  mix-blend-mode:
    screen;
}


/* =========================================================
   OUTER SPECULAR
   ========================================================= */

.about-css-liquid-lens__specular {
  z-index: 6;

  inset: 0;

  background:
    radial-gradient(circle at center,

      transparent 0%,

      transparent 88%,

      rgba(255,
        255,
        255,
        0.012) 96%,

      rgba(255,
        255,
        255,
        0.072) 100%);

  opacity:
    0.7;
}


/* =========================================================
   EXTRA GLASS EDGE
   ========================================================= */

.about-css-liquid-lens::before {
  position: absolute;

  z-index: 7;

  inset: 0;

  content: "";

  border-radius:
    inherit;

  pointer-events:
    none;

  background:
    linear-gradient(135deg,

      rgba(255,
        255,
        255,
        0.1) 0%,

      rgba(255,
        255,
        255,
        0.025) 13%,

      transparent 28%,

      transparent 72%,

      rgba(255,
        255,
        255,
        0.022) 88%,

      rgba(255,
        255,
        255,
        0.07) 100%);

  mask:
    radial-gradient(circle at center,

      transparent 0%,

      transparent 86%,

      black 93%,

      black 100%);

  -webkit-mask:
    radial-gradient(circle at center,

      transparent 0%,

      transparent 86%,

      black 93%,

      black 100%);
}


/* =========================================================
   LOWER DARK EDGE
   ========================================================= */

.about-css-liquid-lens::after {
  position: absolute;

  z-index: 7;

  inset: 0;

  content: "";

  border-radius:
    inherit;

  pointer-events:
    none;

  background:
    radial-gradient(circle at 61% 77%,

      transparent 0%,

      transparent 92%,

      rgba(0,
        0,
        0,
        0.004) 97%,

      rgba(0,
        0,
        0,
        0.012) 100%);

  opacity:
    0.5;
}


/* =========================================================
   EDITORIAL IMAGE
   ========================================================= */

.about-editorial-image {
  position: relative;

  margin: 0;
}


.about-editorial-image--missing {
  display:
    none;
}


.about-editorial-image__frame {
  position: relative;

  overflow:
    hidden;

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

  border-radius:
    clamp(1.25rem,
      2vw,
      1.75rem);

  background:
    linear-gradient(145deg,
      rgba(74,
        191,
        229,
        0.08),
      rgba(154,
        47,
        93,
        0.06)),
    #080a0e;
}


.about-editorial-image__frame::after {
  position: absolute;

  inset: 0;

  content: "";

  pointer-events:
    none;

  background:
    linear-gradient(180deg,
      transparent 55%,
      rgba(2,
        2,
        4,
        0.25));

  transition:
    background-color 0.35s ease;
}


.about-editorial-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit:
    cover;

  transform:
    scale(1.08);

  transition:
    transform 0.55s cubic-bezier(0.2,
      0.75,
      0.25,
      1);
}


.about-editorial-image figcaption {
  position: absolute;

  right: 1rem;
  bottom: 1rem;

  display: flex;

  min-height:
    2.5rem;

  padding:
    0 0.9rem;

  align-items:
    center;

  gap:
    1rem;

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

  border-radius:
    999px;

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

  background:
    rgba(6,
      8,
      12,
      0.55);

  font-size:
    0.58rem;

  letter-spacing:
    0.14em;

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);
}


.about-editorial-image figcaption span:last-child {
  color:
    #7bdcff;

  transition:
    transform 0.3s ease;
}


.about-editorial-image:hover img {
  transform:
    scale(1.04);
}


.about-editorial-image:hover .about-editorial-image__frame::after {
  background-color:
    rgba(42,
      178,
      220,
      0.035);
}


.about-editorial-image:hover figcaption span:last-child {
  transform:
    translate(2px,
      -2px);
}


/* =========================================================
   FEATURE IMAGE
   ========================================================= */

.about-feature-image {
  display: flex;

  padding-top:
    clamp(7.5rem,
      13vw,
      13rem);

  padding-bottom:
    clamp(8rem,
      15vw,
      15rem);

  justify-content:
    flex-end;
}


.about-feature-image .about-editorial-image {
  width:
    min(76vw,
      78rem);
}


.about-feature-image .about-editorial-image__frame {
  aspect-ratio:
    16 / 9;
}


/* =========================================================
   IMAGE PAIR
   ========================================================= */

.about-image-pair {
  display: flex;

  min-height:
    125svh;

  padding-top:
    clamp(8rem,
      14vw,
      14rem);

  padding-bottom:
    clamp(9rem,
      16vw,
      16rem);

  align-items:
    flex-start;

  justify-content:
    space-between;

  gap:
    6vw;

  background:
    radial-gradient(circle at 54% 48%,
      rgba(180,
        120,
        51,
        0.055),
      transparent 28rem);
}


.about-image-pair__left {
  width:
    min(30vw,
      31rem);
}


.about-image-pair__left .about-editorial-image__frame {
  aspect-ratio:
    4 / 5;
}


.about-image-pair__right {
  width:
    min(42vw,
      46rem);

  margin-top:
    clamp(8rem,
      17vw,
      17rem);
}


.about-image-pair__right .about-editorial-image__frame {
  aspect-ratio:
    5 / 4;
}


/* =========================================================
   MANIFESTO IMAGE
   ========================================================= */

.about-manifesto__image {
  width:
    min(38vw,
      38rem);

  margin:
    clamp(8rem,
      15vw,
      15rem) 2vw 0 auto;
}


.about-manifesto__image .about-editorial-image__frame {
  aspect-ratio:
    4 / 5;
}


/* =========================================================
   FULL BLEED IMAGE
   ========================================================= */

.about-full-bleed {
  position: relative;

  z-index: 2;

  width:
    min(94vw,
      112rem);

  margin:
    clamp(8rem,
      14vw,
      14rem) auto clamp(10rem,
      18vw,
      18rem);
}


.about-full-bleed__image .about-editorial-image__frame {
  aspect-ratio:
    16 / 8.5;
}


.about-full-bleed__image figcaption {
  right: 1.5rem;
  bottom: 1.5rem;
}


.about-full-bleed h2 {
  position:
    absolute;

  bottom:
    -0.32em;

  left:
    -1.5vw;

  margin: 0;

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

  font:
    520 clamp(4rem,
      9.5vw,
      10rem) / 0.78 "Manrope",
    sans-serif;

  letter-spacing:
    -0.07em;

  pointer-events:
    none;
}


.about-full-bleed h2 span {
  display:
    block;
}


.about-full-bleed h2 span:last-child {
  margin-left:
    7vw;
}


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

.about-hero {
  position: relative;

  z-index: 2;

  display: flex;

  min-height:
    112svh;

  padding-top:
    10rem;

  align-items:
    center;
}


.about-eyebrow,
.about-section-index {
  margin: 0;

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

  font-size:
    0.65rem;

  font-weight:
    600;

  letter-spacing:
    0.22em;
}


.about-hero h1,
.about-closing h2 {
  width:
    fit-content;

  margin:
    clamp(2rem,
      5vw,
      4.5rem) 0 0;

  font:
    550 clamp(5rem,
      11vw,
      12rem) / 0.84 "Manrope",
    sans-serif;

  letter-spacing:
    -0.065em;
}


.about-mask-line {
  display:
    block;

  overflow:
    hidden;
}


.about-mask-line>span {
  display:
    block;

  transform-origin:
    left bottom;
}


.about-hero [data-about-hero-line]:nth-child(2) {
  margin-left:
    clamp(2rem,
      8vw,
      9rem);
}


.about-hero [data-about-hero-line]:nth-child(4) {
  margin-left:
    clamp(1rem,
      5vw,
      5rem);
}


.about-hero__copy {
  width:
    min(28rem,
      34vw);

  margin:
    clamp(2rem,
      4vw,
      4rem) 3vw 0 auto;

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

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

  line-height:
    1.55;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.about-statement {
  display:
    grid;

  min-height:
    145svh;

  padding-top:
    16vh;

  padding-bottom:
    18vh;

  align-content:
    center;
}


.about-statement h2 {
  display:
    grid;

  margin:
    clamp(3rem,
      8vw,
      7rem) 0 0;

  font:
    500 clamp(3.3rem,
      8.2vw,
      9rem) / 0.92 "Manrope",
    sans-serif;

  letter-spacing:
    -0.055em;
}


.about-statement__offset {
  margin:
    0.28em 0 0 clamp(0rem,
      11vw,
      12rem);
}


.about-word {
  display:
    inline-block;

  margin-right:
    0.2em;
}


/* =========================================================
   MANIFESTO
   ========================================================= */

.about-manifesto {
  min-height:
    185svh;

  padding-top:
    18vh;

  padding-bottom:
    20vh;
}


.about-manifesto__headline {
  width:
    min(100%,
      92rem);

  margin:
    clamp(3rem,
      7vw,
      6rem) 0 0;

  font:
    520 clamp(4rem,
      8.5vw,
      9rem) / 0.91 "Manrope",
    sans-serif;

  letter-spacing:
    -0.055em;
}


.about-manifesto__emphasis>span {
  color:
    rgba(255,
      255,
      255,
      0.99);

  text-shadow:
    0 0 2.5rem rgba(100,
      211,
      255,
      0.08);
}


.about-manifesto__body {
  display:
    grid;

  grid-template-columns:
    minmax(0,
      0.9fr) minmax(20rem,
      0.65fr);

  margin-top:
    clamp(6rem,
      14vw,
      14rem);

  align-items:
    start;

  gap:
    clamp(4rem,
      12vw,
      14rem);
}


.about-manifesto__pursuit {
  margin: 0;

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

  font:
    450 clamp(1.25rem,
      2.2vw,
      2.3rem) / 1.34 "Manrope",
    sans-serif;

  letter-spacing:
    -0.025em;
}


.about-manifesto-word {
  display:
    inline-block;

  margin-right:
    0.24em;
}


.about-manifesto__transparency {
  display:
    grid;

  gap:
    2.2rem;

  padding-top:
    clamp(8rem,
      15vw,
      15rem);
}


.about-manifesto__transparency h3 {
  margin: 0;

  overflow:
    hidden;

  font:
    500 clamp(1.7rem,
      3vw,
      3.35rem) / 1.13 "Manrope",
    sans-serif;

  letter-spacing:
    -0.04em;
}


.about-manifesto__transparency h3>span {
  display:
    block;
}


.about-manifesto__transparency p {
  max-width:
    35rem;

  margin: 0;

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

  font-size:
    clamp(1.125rem,
      1.35vw,
      1.375rem);

  line-height:
    1.6;
}


/* =========================================================
   DISCIPLINES
   ========================================================= */

.about-disciplines {
  padding-top:
    10rem;

  padding-bottom:
    14rem;
}


.about-section-heading {
  display:
    grid;

  grid-template-columns:
    minmax(9rem,
      0.32fr) 1fr;

  align-items:
    end;

  gap:
    2rem;

  margin-bottom:
    5rem;
}


.about-section-heading h2 {
  margin: 0;

  font:
    500 clamp(2.8rem,
      6vw,
      6rem) / 0.9 "Manrope",
    sans-serif;

  letter-spacing:
    -0.055em;
}


.about-disciplines__list {
  border-bottom:
    1px solid rgba(255,
      255,
      255,
      0.14);
}


.about-discipline {
  position:
    relative;

  display:
    grid;

  grid-template-columns:
    4rem minmax(0,
      1fr) minmax(15rem,
      0.55fr) 1rem;

  min-height:
    9.5rem;

  align-items:
    center;

  gap:
    clamp(1rem,
      3vw,
      3rem);

  overflow:
    hidden;
}


.about-discipline__line {
  position:
    absolute;

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

  height:
    1px;

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


.about-discipline small {
  color:
    rgba(255,
      255,
      255,
      0.35);

  font-size:
    0.62rem;
}


.about-discipline h3 {
  margin: 0;

  font:
    500 clamp(1.7rem,
      3.8vw,
      4rem) / 1 "Manrope",
    sans-serif;

  letter-spacing:
    -0.045em;

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


.about-discipline p {
  max-width:
    24rem;

  margin: 0;

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

  font-size:
    0.88rem;

  line-height:
    1.55;

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


.about-discipline i {
  width:
    0.5rem;

  height:
    0.5rem;

  border-radius:
    50%;

  background:
    #7bdcff;

  opacity:
    0.35;

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


.about-discipline:hover h3 {
  color:
    #fff;

  transform:
    translateX(0.45rem);
}


.about-discipline:hover p {
  color:
    rgba(255,
      255,
      255,
      0.7);

  transform:
    translateX(-0.2rem);
}


.about-discipline:hover i {
  opacity:
    1;

  transform:
    scale(1.35);
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.about-philosophy {
  display:
    grid;

  grid-template-columns:
    minmax(0,
      1.25fr) minmax(20rem,
      0.75fr);

  min-height:
    125svh;

  padding-top:
    16vh;

  padding-bottom:
    18vh;

  align-items:
    center;

  gap:
    clamp(4rem,
      9vw,
      11rem);
}


.about-philosophy h2 {
  margin:
    3rem 0 0;

  font:
    500 clamp(3.8rem,
      8vw,
      8.5rem) / 0.88 "Manrope",
    sans-serif;

  letter-spacing:
    -0.06em;
}


.about-philosophy__copy {
  display:
    grid;

  gap:
    1.5rem;
}


.about-philosophy__copy p {
  margin: 0;

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

  font-size:
    clamp(1rem,
      1.35vw,
      1.2rem);

  line-height:
    1.7;
}


/* =========================================================
   CLOSING
   ========================================================= */

.about-closing {
  position:
    relative;

  z-index:
    2;

  display:
    flex;

  min-height:
    115svh;

  padding-top:
    15vh;

  padding-bottom:
    12vh;

  align-items:
    center;

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

  background:
    radial-gradient(circle at 70% 54%,
      rgba(83,
        198,
        238,
        0.09),
      transparent 30rem);
}


.about-closing__cta {
  display:
    inline-flex;

  min-height:
    3.2rem;

  margin-top:
    clamp(3rem,
      7vw,
      6rem);

  padding:
    0 1.35rem;

  align-items:
    center;

  gap:
    1rem;

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

  border-radius:
    999px;

  color:
    #fff;

  background:
    rgba(10,
      12,
      18,
      0.4);

  font-size:
    0.68rem;

  letter-spacing:
    0.14em;

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


.about-closing__cta span {
  color:
    #7bdcff;

  transition:
    transform 0.25s ease;
}


.about-closing__cta:hover {
  border-color:
    rgba(123,
      220,
      255,
      0.55);

  background:
    rgba(18,
      25,
      32,
      0.64);
}


.about-closing__cta:hover span {
  transform:
    translate(2px,
      -2px);
}


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

@media (max-width: 900px) {
  .about-css-liquid-lens {
    backdrop-filter:
      url("#about-liquid-glass") saturate(1.14) brightness(1.045) contrast(1.02);

    -webkit-backdrop-filter:
      blur(4px) saturate(1.1) brightness(1.035);
  }


  .about-css-liquid-lens__edge-distort {
    inset:
      0;
  }


  .about-css-liquid-lens__cyan,
  .about-css-liquid-lens__magenta {
    opacity:
      0.5;
  }


  .about-hero {
    min-height:
      100svh;
  }


  .about-hero h1,
  .about-closing h2 {
    font-size:
      clamp(4rem,
        12vw,
        7rem);
  }


  .about-hero__copy {
    width:
      min(28rem,
        52vw);

    margin-right:
      0;
  }


  .about-statement {
    min-height:
      110svh;
  }


  .about-statement h2 {
    font-size:
      clamp(3rem,
        9vw,
        6rem);
  }


  .about-manifesto {
    min-height:
      150svh;
  }


  .about-manifesto__body {
    grid-template-columns:
      1fr 1fr;

    gap:
      4rem;
  }


  .about-discipline {
    grid-template-columns:
      3rem minmax(0,
        1fr) minmax(12rem,
        0.6fr);
  }


  .about-discipline i {
    display:
      none;
  }


  .about-philosophy {
    grid-template-columns:
      1fr;

    min-height:
      auto;
  }


  .about-feature-image .about-editorial-image {
    width:
      min(82vw,
        64rem);
  }


  .about-image-pair {
    min-height:
      100svh;
  }


  .about-manifesto__image {
    width:
      min(46vw,
        32rem);
  }
}


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

@media (max-width: 620px) {
  .about-css-liquid-lens {
    backdrop-filter:
      url("#about-liquid-glass") saturate(1.12) brightness(1.04);

    -webkit-backdrop-filter:
      blur(4px) saturate(1.08) brightness(1.03);
  }


  .about-css-liquid-lens__edge-distort {
    inset:
      0;

    opacity:
      0.16;
  }


  .about-css-liquid-lens__cyan {
    opacity:
      0.38;
  }


  .about-css-liquid-lens__magenta {
    opacity:
      0.36;
  }


  .about-css-liquid-lens__shine {
    opacity:
      0.13;
  }


  .about-css-liquid-lens__specular {
    opacity:
      0.55;
  }


  .about-hero {
    min-height:
      94svh;

    padding-top:
      8.5rem;

    align-items:
      flex-start;
  }


  .about-hero h1,
  .about-closing h2 {
    font-size:
      clamp(3.4rem,
        17vw,
        5.5rem);

    line-height:
      0.87;
  }


  .about-hero [data-about-hero-line] {
    margin-left:
      0;
  }


  .about-hero__copy {
    width:
      82%;

    margin:
      2.5rem 0 0 auto;

    font-size:
      0.96rem;
  }


  .about-statement {
    min-height:
      100svh;

    padding-top:
      8rem;

    padding-bottom:
      8rem;
  }


  .about-statement h2 {
    font-size:
      clamp(2.7rem,
        13vw,
        4.8rem);
  }


  .about-statement__offset {
    margin-left:
      0;
  }


  .about-manifesto {
    min-height:
      auto;

    padding-top:
      9rem;

    padding-bottom:
      10rem;
  }


  .about-manifesto__headline {
    font-size:
      clamp(3.2rem,
        15vw,
        5.4rem);
  }


  .about-manifesto__body {
    grid-template-columns:
      1fr;

    margin-top:
      6rem;

    gap:
      5rem;
  }


  .about-manifesto__transparency {
    padding-top:
      0;
  }


  .about-manifesto__transparency p {
    font-size:
      1.05rem;
  }


  .about-section-heading {
    grid-template-columns:
      1fr;

    margin-bottom:
      3rem;
  }


  .about-disciplines {
    padding-top:
      7rem;

    padding-bottom:
      8rem;
  }


  .about-discipline {
    grid-template-columns:
      2rem minmax(0,
        1fr);

    min-height:
      auto;

    padding:
      2rem 0;

    gap:
      1rem;
  }


  .about-discipline h3 {
    font-size:
      clamp(1.5rem,
        8vw,
        2.7rem);
  }


  .about-discipline p {
    grid-column:
      2;

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


  .about-philosophy {
    padding-top:
      8rem;

    padding-bottom:
      9rem;

    gap:
      4rem;
  }


  .about-philosophy h2 {
    font-size:
      clamp(3rem,
        14vw,
        5rem);
  }


  .about-closing {
    min-height:
      92svh;
  }


  .about-feature-image {
    padding-top:
      5rem;

    padding-bottom:
      7rem;
  }


  .about-feature-image .about-editorial-image {
    width:
      100%;
  }


  .about-image-pair {
    display:
      grid;

    min-height:
      auto;

    padding-top:
      6rem;

    padding-bottom:
      8rem;

    gap:
      3rem;
  }


  .about-image-pair__left,
  .about-image-pair__right {
    width:
      100%;

    margin-top:
      0;
  }


  .about-image-pair__right {
    margin-left:
      0;
  }


  .about-manifesto__image {
    width:
      100%;

    margin:
      6rem 0 0;
  }


  .about-full-bleed {
    width:
      calc(100% - 2 * var(--page-pad));

    margin-top:
      6rem;

    margin-bottom:
      9rem;
  }


  .about-full-bleed__image .about-editorial-image__frame {
    aspect-ratio:
      4 / 5;
  }


  .about-full-bleed h2 {
    left:
      -0.02em;

    font-size:
      clamp(3rem,
        15vw,
        5.5rem);
  }


  .about-full-bleed h2 span:last-child {
    margin-left:
      0;
  }


  .about-editorial-image figcaption {
    right:
      0.75rem;

    bottom:
      0.75rem;

    max-width:
      calc(100% - 1.5rem);
  }
}


/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) {
  .about-discipline p {
    color:
      rgba(255,
        255,
        255,
        0.58);
  }


  .about-discipline i {
    opacity:
      0.65;
  }
}


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

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

  .about-mask-line>span,
  .about-word,
  [data-about-reveal] {
    opacity:
      1 !important;

    filter:
      none !important;

    transform:
      none !important;
  }


  .about-discipline h3,
  .about-discipline p,
  .about-discipline i,
  .about-closing__cta,
  .about-closing__cta span {
    transition:
      none;
  }


  .about-editorial-image img {
    transform:
      none !important;

    transition:
      none;
  }


  .about-css-liquid-lens {
    will-change:
      auto;
  }
}


/* =========================================================
   SVG BACKDROP FALLBACK
   ========================================================= */

@supports not (backdrop-filter: url("#about-liquid-glass")) {
  .about-css-liquid-lens {
    backdrop-filter:
      blur(8px) saturate(1.12) brightness(1.04);

    -webkit-backdrop-filter:
      blur(8px) saturate(1.12) brightness(1.04);
  }


  .about-css-liquid-lens__edge-distort {
    filter:
      none;
  }
}.contact-page {
  --orb-light-x: 34;
  --orb-light-y: 28;
  --contact-z-background: 0;
  --contact-z-content: 10;
  --contact-z-controls: 30;
  --contact-z-flow: 50;
  --contact-z-modal: 120;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #f7f9ff;
  background: #020609;
  isolation: isolate;
}

.contact-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #020609;
  will-change: transform;
}

.contact-stage::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 78% 92% at 51% 51%, rgba(7, 24, 34, .72) 0, rgba(6, 19, 28, .84) 46%, rgba(2, 7, 12, .96) 76%), radial-gradient(ellipse 92% 116% at 50% 50%, transparent 64%, rgba(99, 220, 255, .09) 77%, transparent 82%);
  content: '';
  transition: opacity .55s ease;
}

.contact-page--project .contact-stage::after {
  opacity: 1;
}

.contact-bg {
  position: absolute;
  inset: -7%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 43%, #07131c 0, #03080d 42%, #020609 74%, #010305 100%);
  perspective: 1100px;
  will-change: transform;
}

.contact-bg::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(circle at 54% 45%, transparent 0 22%, rgba(1, 4, 7, .2) 52%, rgba(0, 2, 4, .76) 88%), linear-gradient(90deg, rgba(0, 2, 4, .34), transparent 28%, transparent 72%, rgba(0, 2, 4, .2));
  content: '';
}

.contact-bg__stars {
  position: absolute;
  inset: 0;
}

.contact-bg__stars i {
  position: absolute;
  border-radius: 50%;
  background: #dce8ed;
  box-shadow: 0 0 5px rgba(183, 221, 233, .36);
  animation: contact-star 8s ease-in-out infinite, star-drift 24s ease-in-out infinite alternate;
}

.contact-bg__stars i[data-tone='cyan'] {
  background: #7be8ff;
  box-shadow: 0 0 7px rgba(99, 220, 255, .38);
}

.contact-bg__stars i[data-tone='blue'] {
  background: #8ca7b4;
}

.contact-bg__grain {
  position: absolute;
  z-index: 5;
  inset: 0;
  opacity: .032;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.contact-orb {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-orb__body,
.contact-orb__body>span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.contact-orb__body {
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.contact-orb__body::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  opacity: .055;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  content: '';
}

.contact-orb__core {
  z-index: 1;
  background: radial-gradient(circle at calc(var(--orb-light-x) * 1%) calc(var(--orb-light-y) * 1%), rgba(225, 248, 255, .1) 0, rgba(99, 220, 255, .045) 13%, transparent 33%), radial-gradient(circle at 42% 39%, #0b2432 0, #071722 32%, #040c13 61%, #010407 100%);
  box-shadow: inset -3.5vw -3vw 7vw rgba(0, 2, 4, .84), inset 1.2vw 1vw 4vw rgba(57, 125, 165, .09);
}

.contact-orb__rim {
  z-index: 5;
  background: radial-gradient(circle, transparent 62%, rgba(57, 125, 165, .025) 72%, rgba(99, 220, 255, .1) 87%, rgba(176, 239, 255, .19) 96%, rgba(217, 250, 255, .09) 100%), conic-gradient(from 204deg, transparent 0 21%, rgba(99, 220, 255, .2) 29%, rgba(123, 232, 255, .035) 42%, transparent 59% 82%, rgba(185, 71, 141, .055) 91%, transparent);
  -webkit-mask: radial-gradient(circle, transparent 0 67%, #000 76%);
  mask: radial-gradient(circle, transparent 0 67%, #000 76%);
  animation: orb-rim-travel 24s ease-in-out infinite alternate;
}

.contact-orb__highlight {
  z-index: 4;
  inset: 7% 10% 48% 17% !important;
  background: radial-gradient(ellipse at calc(var(--orb-light-x) * 1%) calc(var(--orb-light-y) * 1%), rgba(244, 253, 255, .15), rgba(123, 232, 255, .055) 25%, transparent 67%);
  filter: blur(7px);
  transform: rotate(-18deg);
}

.contact-orb__refraction {
  z-index: 3;
  background: radial-gradient(ellipse 72% 29% at 43% 73%, transparent 54%, rgba(57, 125, 165, .095) 58%, rgba(99, 220, 255, .022) 67%, transparent 72%), radial-gradient(ellipse 61% 22% at 56% 31%, transparent 50%, rgba(217, 250, 255, .04) 57%, transparent 70%);
  transform: rotate(-13deg) scale(1.06);
}

.contact-orb__shadow {
  z-index: 6;
  background: radial-gradient(circle at 78% 74%, rgba(0, 2, 4, .9) 0, rgba(0, 2, 4, .54) 28%, transparent 61%), linear-gradient(128deg, transparent 35%, rgba(0, 2, 5, .26) 66%, rgba(0, 1, 3, .7));
}

.contact-orb--hero {
  right: 18%;
  bottom: -22vw;
  width: clamp(440px, 54vw, 930px);
  box-shadow: -18px -14px 36px rgba(57, 125, 165, .075);
}

.contact-orb--hero .contact-orb__body {
  animation: orb-drift-hero 19s ease-in-out infinite alternate;
}

.contact-orb--hero .contact-orb__rim {
  opacity: 1;
}

.contact-orb--secondary {
  top: -20vw;
  right: -13vw;
  width: clamp(320px, 39vw, 670px);
  opacity: .42;
}

.contact-orb--secondary .contact-orb__body {
  opacity: .78;
}

.contact-orb--secondary .contact-orb__body {
  animation: orb-drift-secondary 25s ease-in-out infinite alternate;
}

.contact-orb--shadow {
  left: -13vw;
  bottom: -17vw;
  width: clamp(260px, 31vw, 530px);
  opacity: .22;
}

.contact-orb--shadow .contact-orb__body {
  animation: orb-drift-shadow 31s ease-in-out infinite alternate;
}

.contact-orb--shadow .contact-orb__core {
  background: radial-gradient(circle at 65% 28%, rgba(185, 71, 141, .065), transparent 18%), radial-gradient(circle at 54% 44%, #11121b, #070910 50%, #010305 78%);
}

.contact-stage:has(.contact-start:hover) .contact-orb--hero .contact-orb__rim {
  opacity: .98;
}

.contact-stage:has(.contact-start:hover) .contact-orb--hero .contact-orb__body {
  scale: 1.008;
}

.contact-brand {
  position: absolute;
  z-index: var(--contact-z-controls);
  top: 30px;
  left: clamp(1.25rem, 4vw, 4.5rem);
  display: block;
}

.contact-brand img {
  display: block;
  width: auto;
  height: 28px;
}

.contact-menu-button {
  position: absolute;
  z-index: var(--contact-z-controls);
  top: 28px;
  right: clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 23px;
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 7px 0;
  border: 0;
  color: #fff;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
}

.contact-menu-button span {
  grid-row: 1 / 3;
  font-size: .64rem;
  letter-spacing: .18em;
}

.contact-menu-button i {
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

.contact-scene__content {
  position: relative;
  z-index: var(--contact-z-content);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(250px, .7fr);
  gap: 7vw;
  align-items: center;
  min-height: 100svh;
  padding: 108px clamp(1.25rem, 4vw, 4.5rem) 50px;
  transition: opacity .5s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.contact-page--assistant-open .contact-scene__content {
  opacity: .22;
  transform: scale(.985);
}

.contact-hero {
  align-self: center;
}

.contact-kicker {
  margin: 0 0 1.2rem;
  color: rgba(193, 235, 248, .62);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 1060px;
  margin: 0;
  font: 500 clamp(3.1rem, 6.6vw, 8rem)/.88 'Manrope', sans-serif;
  letter-spacing: -.066em;
  text-transform: uppercase;
}

.contact-hero__mask {
  display: block;
  overflow: hidden;
  padding-bottom: .07em;
}

.contact-hero__mask>span {
  display: block;
  transform-origin: left bottom;
}

.contact-hero__mask:nth-child(3)>span {
  color: #a7e7f7;
  text-shadow: 0 0 28px rgba(99, 220, 255, .1);
}

.contact-start {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(2rem, 4.5vh, 4rem);
  padding: 0 0 11px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(157, 204, 216, .4);
  color: #ecfbff;
  background: none;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: border-color .35s ease;
}

.contact-start::after {
  position: absolute;
  right: 100%;
  bottom: -1px;
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7be8ff, transparent);
  content: '';
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.contact-start i {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(123, 232, 255, .3);
  border-radius: 50%;
  place-items: center;
  font-style: normal;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.contact-start:hover,
.contact-start:focus-visible {
  border-color: rgba(123, 232, 255, .58);
}

.contact-start:hover::after,
.contact-start:focus-visible::after {
  transform: translateX(310%);
}

.contact-start:hover i,
.contact-start:focus-visible i {
  border-color: rgba(123, 232, 255, .5);
  transform: rotate(45deg);
  background: rgba(99, 220, 255, .09);
}

.contact-info {
  align-self: center;
  margin: 0;
  padding-top: 7vh;
}

.contact-info>div {
  margin-bottom: clamp(1.3rem, 3.2vh, 2.6rem);
}

.contact-info dt {
  margin-bottom: .48rem;
  color: rgba(175, 193, 207, .52);
  font-size: .61rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 0;
  max-width: 25rem;
  color: rgba(243, 249, 255, .88);
  font-size: clamp(.88rem, 1.1vw, 1.08rem);
  line-height: 1.55;
}

.contact-info dd a {
  display: block;
}

.contact-info__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.contact-info__socials .contact-info__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: .65;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-info__social-link:hover,
.contact-info__social-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.contact-info__social-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-info__missing {
  color: rgba(255, 255, 255, .28);
  font-size: .7rem;
  letter-spacing: .13em;
}

.contact-menu {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  width: min(72vw, 720px);
  min-height: 100svh;
  padding: 9vh clamp(1.5rem, 5vw, 5rem) 4vh;
  background: radial-gradient(circle at 102% 62%, rgba(57, 125, 165, .15), transparent 29%), radial-gradient(circle at 18% 78%, rgba(9, 25, 37, .6), transparent 38%), #020609;
}

.contact-menu::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -18vw;
  width: clamp(260px, 34vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(99, 220, 255, .055);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(123, 232, 255, .07), transparent 17%), radial-gradient(circle, #07131c, #020609 68%);
  box-shadow: inset -30px -20px 70px rgba(0, 2, 4, .8);
  content: '';
}

.contact-menu__label {
  margin: 0 0 auto;
  color: rgba(181, 213, 226, .45);
  font-size: .64rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.contact-menu nav {
  display: flex;
  flex-direction: column;
}

.contact-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  width: fit-content;
  color: rgba(255, 255, 255, .38);
  font: 500 clamp(2.6rem, 5.3vw, 5.4rem)/1.02 'Manrope', sans-serif;
  letter-spacing: -.055em;
  transition: color .25s ease, transform .3s ease;
}

.contact-menu nav a small {
  font: 500 .56rem/1 'DM Sans', sans-serif;
  letter-spacing: .13em;
}

.contact-menu nav a:hover,
.contact-menu nav a:focus-visible,
.contact-menu nav a[aria-current=page] {
  color: #effcff;
  transform: translateX(8px);
}

.contact-menu__close,
.project-flow__close {
  align-self: flex-end;
  margin-top: auto;
  padding: 10px 0;
  border: 0;
  color: rgba(255, 255, 255, .68);
  background: none;
  cursor: pointer;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-menu__close span,
.project-flow__close span {
  margin-left: 12px;
  color: #8aeaff;
  font-size: 1.2rem;
}

.contact-transition-orb {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  width: 28vmax;
  aspect-ratio: 1;
  margin: -14vmax;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at calc(var(--orb-light-x) * 1%) calc(var(--orb-light-y) * 1%), rgba(219, 249, 255, .16), rgba(99, 220, 255, .035) 15%, transparent 31%), radial-gradient(circle at 43% 39%, #0a2635 0, #071822 34%, #030a10 67%, #010305 100%);
  box-shadow: inset -4vw -3vw 8vw rgba(0, 2, 4, .8), 0 0 70px rgba(57, 125, 165, .11);
  will-change: transform;
}

.contact-transition-orb::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, transparent 62%, rgba(99, 220, 255, .04) 78%, rgba(123, 232, 255, .16) 95%, rgba(215, 249, 255, .1)), conic-gradient(from 205deg, transparent 8%, rgba(99, 220, 255, .19) 29%, transparent 49% 86%, rgba(185, 71, 141, .045));
  content: '';
  -webkit-mask: radial-gradient(circle, transparent 0 67%, #000 77%);
  mask: radial-gradient(circle, transparent 0 67%, #000 77%);
}

.contact-transition-orb::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 68% 25% at 45% 72%, transparent 52%, rgba(99, 220, 255, .07) 59%, transparent 69%), radial-gradient(circle at 80% 76%, rgba(0, 2, 4, .8), transparent 58%);
  content: '';
}

.project-flow {
  position: absolute;
  z-index: var(--contact-z-flow);
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 92px clamp(1.25rem, 5vw, 6rem) 44px;
  opacity: 0;
  pointer-events: none;
}

.contact-page--project .project-flow {
  opacity: 1;
  pointer-events: auto;
}

.contact-page--project [data-contact-content] {
  pointer-events: none;
}

.project-flow__close {
  position: absolute;
  top: 23px;
  right: clamp(1.25rem, 4vw, 4.5rem);
  z-index: 4;
  margin: 0;
}

.project-progress {
  position: absolute;
  top: 31px;
  left: 50%;
  display: flex;
  gap: 16px;
  align-items: center;
  transform: translateX(-50%);
  color: rgba(218, 240, 248, .6);
  font-size: .6rem;
  letter-spacing: .14em;
}

.project-progress>div {
  width: clamp(80px, 11vw, 170px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.project-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #93eaff;
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.project-step {
  width: min(920px, 88vw);
}

.project-step>p {
  margin: 0 0 1.1rem;
  color: rgba(157, 226, 246, .65);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-step h2 {
  max-width: 900px;
  margin: 0 0 clamp(1.8rem, 5vh, 3.8rem);
  font: 500 clamp(2.35rem, 5.4vw, 5.8rem)/.98 'Manrope', sans-serif;
  letter-spacing: -.055em;
}

.project-step__control {
  position: relative;
}

.project-step__control::before {
  position: absolute;
  z-index: 2;
  inset: -1px;
  padding: 1px;
  border-radius: 17px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 12%, rgba(123, 232, 255, .5) 34%, rgba(255, 255, 255, .08) 47%, transparent 67%);
  background-size: 230% 100%;
  content: '';
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.project-step__control:has(input:focus, textarea:focus)::before {
  opacity: .65;
  animation: input-edge-travel 3.8s ease-in-out infinite;
}

.project-step__control input,
.project-step__control textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 24px;
  outline: 0;
  border: 1px solid rgba(125, 220, 255, .18);
  border-radius: 16px;
  color: #f6fcff;
  background: rgba(5, 15, 22, .65);
  box-shadow: inset 0 1px rgba(255, 255, 255, .03), 0 12px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  resize: none;
  transition: border .25s, box-shadow .25s, transform .25s;
}

.project-step__control input:focus,
.project-step__control textarea:focus {
  border-color: rgba(120, 225, 255, .48);
  box-shadow: 0 0 0 3px rgba(99, 220, 255, .045), 0 18px 46px rgba(0, 0, 0, .28);
  transform: scale(1.004);
}

.project-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-options button {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .68);
  background: rgba(5, 10, 16, .42);
  cursor: pointer;
}

.project-options button:hover,
.project-options button:focus-visible,
.project-options button.is-selected {
  border-color: rgba(139, 234, 255, .64);
  color: #f6fdff;
  background: rgba(46, 176, 210, .12);
}

.project-step__actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 24px;
}

.project-step__actions button {
  padding: 10px 0;
  border: 0;
  color: rgba(255, 255, 255, .6);
  background: none;
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-step__actions button[data-primary] {
  color: #dffbff;
}

.project-step__actions button span {
  margin-left: 8px;
  color: #83e9ff;
}

.project-step__error {
  margin: 12px 0 0 !important;
  color: #f2a7d8 !important;
  font-size: .72rem !important;
  letter-spacing: .05em !important;
  text-transform: none !important;
}

.project-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.project-step__actions button:disabled {
  opacity: .42;
  cursor: wait;
}

.project-step__success > p {
  margin: 0 0 1.1rem;
  color: rgba(157, 226, 246, .72);
  font-size: .62rem;
  letter-spacing: .18em;
}

.project-step__success > span {
  color: rgba(218, 235, 241, .62);
  font-size: clamp(.9rem, 1.25vw, 1.1rem);
}

.project-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
}

.project-summary div {
  padding: 14px 18px;
  background: rgba(4, 10, 16, .76);
}

.project-summary dt {
  color: rgba(169, 211, 225, .5);
  font-size: .57rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-summary dd {
  margin: 6px 0 0;
}

.enna-assistant {
  position: absolute;
  z-index: var(--contact-z-controls);
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.7rem);
}

.enna-assistant__trigger {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(123, 232, 255, .18);
  border-radius: 999px;
  color: rgba(230, 244, 248, .76);
  background: rgba(2, 8, 12, .78);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .36), inset 0 1px rgba(255, 255, 255, .025);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease;
}

.enna-assistant__trigger:hover,
.enna-assistant__trigger:focus-visible {
  border-color: rgba(123, 232, 255, .35);
  color: #f1fbfd;
}

.enna-assistant__trigger i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63dcff, #7d6fea 58%, #b9478d);
  box-shadow: 0 0 9px rgba(99, 220, 255, .52);
  animation: assistant-pulse 5.2s ease-in-out infinite;
}

.enna-assistant__overlay {
  position: fixed;
  z-index: var(--contact-z-modal);
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  color: #f2f8fa;
  background: radial-gradient(circle at 50% 44%, rgba(8, 28, 40, .82), rgba(3, 10, 15, .97) 48%, #010406 88%);
  clip-path: circle(0 at calc(100% - 55px) calc(100% - 55px));
}

.enna-assistant__field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.enna-assistant__field::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 48% 34% at 50% 46%, rgba(99, 220, 255, .045), transparent 68%), radial-gradient(circle at 82% 18%, rgba(89, 71, 168, .06), transparent 24%), radial-gradient(circle at 15% 82%, rgba(185, 71, 141, .035), transparent 23%);
  content: '';
}

.enna-assistant__field i {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: rgba(190, 229, 239, .4);
  box-shadow: 14vw 17vh rgba(190, 229, 239, .18), 28vw 7vh rgba(99, 220, 255, .22), 44vw 22vh rgba(190, 229, 239, .18), 61vw 9vh rgba(190, 229, 239, .22), 75vw 27vh rgba(99, 220, 255, .14), 88vw 12vh rgba(190, 229, 239, .16), 8vw 54vh rgba(190, 229, 239, .2), 23vw 76vh rgba(99, 220, 255, .16), 43vw 63vh rgba(190, 229, 239, .16), 65vw 81vh rgba(190, 229, 239, .2), 83vw 68vh rgba(99, 220, 255, .17), 94vw 88vh rgba(190, 229, 239, .14);
}

.enna-assistant__field i:nth-child(2) {
  left: 4vw;
  top: 10vh;
  transform: rotate(33deg);
  opacity: .54;
}

.enna-assistant__field i:nth-child(3) {
  left: 8vw;
  top: 28vh;
  transform: rotate(71deg);
  opacity: .32;
}

.enna-assistant__close {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: clamp(1.25rem, 4vw, 4.5rem);
  padding: 8px 0;
  border: 0;
  color: rgba(235, 247, 250, .66);
  background: none;
  cursor: pointer;
  font-size: .62rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.enna-assistant__close span {
  margin-left: 12px;
  color: #7be8ff;
  font-size: 1.15rem;
}

.enna-assistant__interface {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  width: min(100% - 2.5rem, 980px);
  height: 100dvh;
  min-height: 0;
  margin: auto;
  overflow: hidden;
  padding: clamp(24px, 4.5vh, 54px) 0 calc(clamp(18px, 3.5vh, 38px) + env(safe-area-inset-bottom));
}

.enna-assistant__interface>header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.enna-assistant__interface>header strong {
  font: 500 .72rem/1 'DM Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.enna-assistant__interface>header span {
  color: rgba(179, 205, 214, .42);
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.enna-assistant__body {
  display: grid;
  grid-template-rows: minmax(118px, 1fr) auto;
  justify-items: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.enna-assist-video-orb {
  position: relative;
  align-self: center;
  justify-self: center;
  width: clamp(190px, 17vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(130, 225, 255, .15), 0 0 40px rgba(70, 190, 235, .1), 0 0 80px rgba(65, 100, 180, .06);
  transition: width .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}

.enna-assist-video-orb__mask {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(123, 232, 255, .13), transparent 27%), radial-gradient(circle at 68% 72%, rgba(185, 71, 141, .08), transparent 31%), radial-gradient(circle, #071822, #020609 72%);
}

.enna-assist-video-orb__video {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.enna-assist-video-orb.is-fallback .enna-assist-video-orb__video {
  opacity: 0;
}

.enna-assist-video-orb__glass {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .12), rgba(255, 255, 255, .025) 25%, transparent 48%), radial-gradient(circle at center, transparent 65%, rgba(100, 220, 255, .04) 82%, rgba(170, 235, 255, .11) 100%);
}

.enna-assist-video-orb__rim {
  position: absolute;
  z-index: 3;
  inset: 1px;
  border: 1px solid rgba(180, 240, 255, .18);
  border-radius: inherit;
  box-shadow: inset 5px 0 12px rgba(70, 220, 255, .06), inset -5px 0 12px rgba(190, 80, 220, .04);
  pointer-events: none;
}

.enna-assist-video-orb__glow {
  position: absolute;
  z-index: -1;
  inset: 12%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(65, 210, 255, .18), rgba(90, 75, 180, .09) 45%, transparent 72%);
  filter: blur(24px);
  transform: scale(1.35);
  opacity: .62;
}

.enna-assistant__welcome {
  grid-row: 2;
  align-self: start;
  text-align: center;
}

.enna-assistant__welcome h2 {
  margin: 0;
  font: 500 clamp(2rem, 4vw, 4.2rem)/1 'Manrope', sans-serif;
  letter-spacing: -.05em;
}

.enna-assistant__welcome p {
  margin: 13px 0 0;
  color: rgba(190, 210, 218, .52);
  font-size: clamp(.78rem, 1.1vw, .95rem);
}

.enna-assistant__suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: clamp(16px, 3vh, 28px) 1px 16px;
}

.enna-assistant__suggestions button {
  padding: 10px 14px;
  border: 1px solid rgba(123, 232, 255, .12);
  border-radius: 999px;
  color: rgba(222, 238, 243, .62);
  background: rgba(4, 13, 19, .48);
  cursor: pointer;
  font-size: .64rem;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.enna-assistant__suggestions button:hover,
.enna-assistant__suggestions button:focus-visible {
  border-color: rgba(123, 232, 255, .34);
  color: #f2fbfd;
  background: rgba(8, 28, 38, .66);
}

.enna-assistant__conversation {
  grid-row: 2;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.enna-assistant__conversation-inner {
  width: min(100%, 760px);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(18px, 3vh, 36px) 8px clamp(28px, 5vh, 56px);
}

.enna-assistant__conversation article {
  width: min(82%, 620px);
  height: auto;
  max-height: none;
  margin-bottom: 15px;
  padding: 13px 15px;
  overflow: visible;
  border-left: 1px solid rgba(123, 232, 255, .18);
  background: linear-gradient(90deg, rgba(8, 24, 32, .52), transparent);
}

.enna-assistant__conversation article.user {
  margin-left: auto;
  border-right: 1px solid rgba(185, 208, 216, .12);
  border-left: 0;
  text-align: right;
  background: linear-gradient(270deg, rgba(11, 20, 27, .62), transparent);
}

.enna-assistant__conversation small {
  color: rgba(123, 232, 255, .54);
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.enna-assistant__conversation article.user small {
  color: rgba(201, 218, 224, .4);
}

.enna-assistant__conversation article p {
  height: auto;
  max-height: none;
  margin: 6px 0 0;
  overflow: visible;
  overflow-wrap: anywhere;
  color: rgba(232, 242, 245, .8);
  font-size: clamp(.76rem, 1.05vw, .91rem);
  line-height: 1.55;
  white-space: pre-wrap;
}

.enna-assistant__overlay:not(.is-conversation) .enna-assistant__conversation {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.enna-assistant__overlay.is-conversation .enna-assistant__welcome {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.enna-assistant__thinking {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  color: rgba(123, 232, 255, .5);
  font-size: .52rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.enna-assistant__thinking span {
  margin-right: 5px;
}

.enna-assistant__thinking i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7be8ff;
  animation: ai-thinking-dot 1.3s ease-in-out infinite;
}

.enna-assistant__thinking i:nth-child(3) {
  animation-delay: .16s;
}

.enna-assistant__thinking i:nth-child(4) {
  animation-delay: .32s;
}

.enna-assistant__error {
  width: min(100%, 700px);
  margin: 8px 0;
  padding: 10px 13px;
  border-left: 1px solid rgba(185, 71, 141, .42);
  color: rgba(236, 214, 228, .78);
  background: rgba(40, 12, 29, .2);
  font-size: .68rem;
  line-height: 1.5;
}

.enna-assistant__error p {
  display: inline;
  margin: 0;
}

.enna-assistant__error button {
  margin-left: 12px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #d58ab8;
  background: none;
  cursor: pointer;
}

.enna-assistant__composer {
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: auto;
}

.enna-assistant__composer form {
  display: flex;
  width: min(100%, 760px);
  min-height: 54px;
  border: 1px solid rgba(123, 232, 255, .17);
  border-radius: 15px;
  background: rgba(3, 12, 17, .76);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 16px 46px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}

.enna-assistant__composer form:focus-within {
  border-color: rgba(123, 232, 255, .42);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 0 0 3px rgba(99, 220, 255, .035), 0 18px 50px rgba(0, 0, 0, .34);
}

.enna-assistant__composer input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  outline: 0;
  border: 0;
  color: white;
  background: transparent;
  font-size: .8rem;
}

.enna-assistant__composer form button {
  width: 54px;
  border: 0;
  color: #9cecff;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.enna-assistant__composer form button:disabled {
  opacity: .28;
  cursor: default;
}

.enna-assistant__overlay.is-conversation .enna-assistant__body {
  grid-template-rows: auto minmax(0, 1fr);
}

.enna-assistant__overlay.is-conversation .enna-assist-video-orb {
  grid-row: 1;
  align-self: start;
  width: clamp(90px, 8vw, 130px);
  margin-top: 2vh;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #8eeaff;
  outline-offset: 4px;
}

.contact-page--ambient-paused .contact-orb__body,
.contact-page--ambient-paused .contact-orb__rim,
.contact-page--ambient-paused .contact-bg__stars i {
  animation-play-state: paused !important;
}

.contact-page--hidden .enna-assist-video-orb,
.contact-page--hidden .enna-assistant__thinking i,
.contact-page--hidden .enna-assistant__trigger i {
  animation-play-state: paused !important;
}

.contact-page--project .contact-orb--secondary,
.contact-page--project .contact-orb--shadow,
.contact-page--assistant-open .contact-orb--secondary,
.contact-page--assistant-open .contact-orb--shadow {
  visibility: hidden;
}

@keyframes contact-star {
  50% {
    transform: scale(1.18);
  }
}

@keyframes star-drift {
  to {
    translate: 3px -7px;
  }
}

@keyframes orb-drift-hero {
  to {
    transform: translate3d(12px, -15px, 0) scale(1.012) rotate(1deg);
  }
}

@keyframes orb-drift-secondary {
  to {
    transform: translate3d(-8px, 12px, 0) scale(1.009) rotate(-.7deg);
  }
}

@keyframes orb-drift-shadow {
  to {
    transform: translate3d(7px, -9px, 0) scale(1.006) rotate(.6deg);
  }
}

@keyframes orb-rim-travel {
  to {
    transform: rotate(5deg);
    opacity: .88;
  }
}

@keyframes input-edge-travel {

  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 230px 0;
  }
}

@keyframes assistant-pulse {

  0%,
  76%,
  100% {
    opacity: .72;
    box-shadow: 0 0 7px rgba(99, 220, 255, .35);
  }

  86% {
    opacity: 1;
    box-shadow: 0 0 13px rgba(99, 220, 255, .7);
  }
}

@keyframes ai-thinking-dot {

  0%,
  100% {
    opacity: .24;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes video-orb-thinking {
  50% {
    transform: scale(1.025);
  }
}

.enna-assist-video-orb.is-thinking {
  animation: video-orb-thinking 2.8s ease-in-out infinite;
}

.enna-assist-video-orb.is-thinking .enna-assist-video-orb__glow {
  opacity: .82;
}

@media (max-width: 760px) {
  .contact-stage {
    overflow-y: auto;
  }

  .contact-scene__content {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    align-content: start;
    padding-top: 118px;
    padding-bottom: 95px;
  }

  .contact-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.7rem);
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
    padding-top: 0;
  }

  .contact-info>div {
    margin: 0;
  }

  .contact-menu {
    width: 100vw;
  }

  .contact-page--menu .contact-stage {
    transform: translateX(100vw) !important;
  }

  .project-flow {
    position: fixed;
    padding-top: 100px;
    align-items: center;
  }

  .project-flow .contact-brand {
    display: none;
  }

  .project-step {
    width: 100%;
  }

  .project-step h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .project-options {
    max-height: 31vh;
    overflow-y: auto;
  }

  .project-options button {
    padding: 10px 13px;
  }

  .enna-assistant__interface {
    width: min(100% - 1.5rem, 980px);
    padding-top: 22px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .enna-assistant__interface>header {
    align-items: flex-start;
    justify-self: start;
  }

  .enna-assistant__close {
    top: 16px;
  }

  .enna-assist-video-orb {
    width: clamp(140px, 42vw, 190px);
  }

  .enna-assistant__welcome h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .enna-assistant__suggestions {
    gap: 6px;
    margin: 1vh 0;
  }

  .enna-assistant__suggestions button {
    padding: 8px 10px;
    font-size: .58rem;
  }

  .enna-assistant__conversation-inner {
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .enna-assistant__overlay.is-conversation .enna-assist-video-orb {
    width: clamp(90px, 25vw, 116px);
    margin-top: 1vh;
  }

  .contact-orb--hero {
    right: -42vw;
    bottom: -7vw;
    width: clamp(390px, 95vw, 600px);
  }

  .contact-orb--secondary {
    top: -24vw;
    right: -38vw;
    width: 75vw;
    opacity: .32;
  }

  .contact-orb--secondary .contact-orb__highlight,
  .contact-orb--secondary .contact-orb__refraction {
    display: none;
  }

  .contact-orb--shadow {
    display: none;
  }
}

@media (max-height: 700px) and (min-width: 761px) {
  .contact-scene__content {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .contact-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
  }

  .contact-info>div {
    margin-bottom: 1rem;
  }
}

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

  .contact-orb,
  .contact-orb__body,
  .contact-orb__rim,
  .contact-bg__stars i,
  .project-step__control::before,
  .enna-assistant__trigger i,
  .enna-assist-video-orb,
  .enna-assistant__thinking i {
    animation: none !important;
  }

  .contact-stage,
  .contact-bg,
  .project-flow,
  .contact-transition-orb {
    transition: none !important;
  }

  .contact-page--menu .contact-stage {
    transform: translateX(min(72vw, 720px));
  }

  .contact-page--project [data-contact-content] {
    opacity: 0;
  }

  .contact-page--project .contact-transition-orb {
    opacity: 1;
    transform: scale(12);
  }
}
.services-page {
  position: relative;
  min-height: 100dvh;
  overflow: clip;
  color: #f4f8fa;
  background: #020407;
}

.services-scroll {
  position: relative;
  height: calc(100dvh + var(--services-scroll-distance));
  background: #020407;
}

.services-scroll__sticky {
  --services-master-progress: 0;
  --services-film-scale: 1;
  --services-film-y: 0px;
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 34rem;
  overflow: hidden;
  isolation: isolate;
  background: #020407;
}

.services-film,
.services-scroll__fallback,
.services-scroll__shade,
.services-scroll__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-film {
  z-index: 1;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, var(--services-film-y), 0) scale(var(--services-film-scale));
  transition: opacity 650ms ease;
  will-change: transform;
}

.services-page--video-ready .services-film {
  opacity: 1;
}

.services-scroll__fallback {
  z-index: 0;
  background:
    radial-gradient(circle at 73% 26%, rgba(54, 127, 154, .16), transparent 34%),
    radial-gradient(circle at 18% 74%, rgba(135, 35, 80, .1), transparent 38%),
    linear-gradient(135deg, #071018, #020407 52%, #050207);
  transform: translate3d(0, var(--services-film-y), 0) scale(var(--services-film-scale));
  transition: opacity 800ms ease;
  will-change: transform;
}

.services-page--video-ready .services-scroll__fallback {
  opacity: .12;
}

.services-scroll__shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .055)),
    linear-gradient(90deg, rgba(1, 4, 7, .46), transparent 34%, transparent 66%, rgba(1, 4, 7, .4)),
    linear-gradient(180deg, rgba(1, 3, 5, .34), transparent 24%, transparent 68%, rgba(1, 3, 5, .58)),
    radial-gradient(ellipse at center, transparent 38%, rgba(0, 2, 4, .36) 100%);
}

.services-scroll__grain {
  z-index: 3;
  opacity: .045;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

.services-scroll__content {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.services-moment {
  --services-eyebrow-opacity: 0;
  --services-eyebrow-x: 0px;
  --services-eyebrow-y: 0px;
  --services-eyebrow-tracking: 0em;
  --services-title-x: 0px;
  --services-title-depth-y: 0px;
  --services-title-scale: 1;
  --services-description-opacity: 0;
  --services-description-x: 0px;
  --services-description-y: 0px;
  --services-cta-opacity: 0;
  --services-cta-y: 0px;
  --services-cta-line: 0;
  --services-contrast-opacity: 0;
  position: absolute;
  top: 50%;
  width: min(78vw, 80rem);
  margin: 0;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}

.services-moment::before {
  position: absolute;
  z-index: 0;
  inset: -30% -24% -32%;
  content: '';
  opacity: calc(var(--services-contrast-opacity) * .94);
  pointer-events: none;
}

.services-moment>* {
  position: relative;
  z-index: 1;
}

.services-moment--left {
  left: clamp(1.5rem, 9vw, 10rem);
  width: min(65vw, 74rem);
  text-align: left;
}

.services-moment--right {
  right: clamp(1.5rem, 9vw, 10rem);
  width: min(65vw, 74rem);
  text-align: right;
}

.services-moment--right::before {
  /* background: radial-gradient(ellipse 84% 78% at 70% 49%,
      rgba(4, 7, 10, .255) 0%,
      rgba(4, 7, 10, .14) 40%,
      rgba(4, 7, 10, .052) 65%,
      rgba(4, 7, 10, 0) 88%); */
}

.services-moment--center {
  left: 50%;
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
}

.services-moment--center::before {
  /* background: radial-gradient(ellipse 86% 80% at 50% 50%,
      rgba(4, 7, 10, .235) 0%,
      rgba(4, 7, 10, .13) 41%,
      rgba(4, 7, 10, .048) 66%,
      rgba(4, 7, 10, 0) 89%); */
}

.services-moment__eyebrow {
  margin: 0 0 clamp(1rem, 2.5vh, 1.7rem);
  color: var(--services-moment-accent, rgba(177, 226, 239, .67));
  font-size: clamp(.58rem, .75vw, .72rem);
  font-weight: 500;
  letter-spacing: calc(.2em + var(--services-eyebrow-tracking));
  opacity: var(--services-eyebrow-opacity);
  text-transform: uppercase;
  transform: translate3d(var(--services-eyebrow-x),
      var(--services-eyebrow-y),
      0);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .22);
  will-change: opacity, transform;
}

.services-moment h1,
.services-moment h2 {
  display: grid;
  max-width: 14ch;
  margin: 0;
  color: rgba(248, 251, 252, .96);
  font: 500 clamp(3.35rem, 6.5vw, 7.4rem)/.91 'Manrope', sans-serif;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.services-title-line {
  --services-line-opacity: 0;
  --services-shadow-opacity: 0;
  --services-line-y: 110%;
  position: relative;
  display: grid;
}

.services-title-line__mask {
  position: relative;
  z-index: 1;
  display: block;
  grid-area: 1 / 1;
  margin: -.08em 0;
  padding: .08em 0;
  overflow: hidden;
}

.services-title-line__inner,
.services-title-line__shadow {
  display: block;
  transform-origin: 50% 65%;
  will-change: opacity, transform;
}

.services-title-line__inner {
  opacity: var(--services-line-opacity);
  transform: translate3d(var(--services-title-x),
      calc(var(--services-line-y) + var(--services-title-depth-y)),
      0) scale(var(--services-title-scale));
}

.services-title-line__shadow {
  position: absolute;
  z-index: 0;
  inset: 0;
  color: transparent;
  opacity: var(--services-shadow-opacity);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .16),
    0 8px 30px rgba(0, 0, 0, .08);
  pointer-events: none;
  user-select: none;
  transform: translate3d(var(--services-title-x),
      var(--services-title-depth-y),
      0) scale(var(--services-title-scale));
}

.services-moment--left .services-title-line__inner,
.services-moment--left .services-title-line__shadow {
  transform-origin: 0 65%;
}

.services-moment--right .services-title-line__inner,
.services-moment--right .services-title-line__shadow {
  transform-origin: 100% 65%;
}

.services-moment--right h1,
.services-moment--right h2 {
  margin-left: auto;
}

.services-moment--center h1,
.services-moment--center h2 {
  max-width: 15ch;
  margin-right: auto;
  margin-left: auto;
}

.services-moment__description {
  max-width: 38rem;
  margin-top: clamp(1.25rem, 3vh, 2rem);
  color: rgba(224, 233, 237, .7);
  font-size: clamp(.93rem, 1.25vw, 1.18rem);
  line-height: 1.58;
  opacity: var(--services-description-opacity);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .2);
  text-wrap: pretty;
  transform: translate3d(var(--services-description-x),
      var(--services-description-y),
      0);
  will-change: opacity, transform;
}

.services-moment--right .services-moment__description {
  margin-left: auto;
}

.services-moment--center .services-moment__description {
  margin-right: auto;
  margin-left: auto;
}

.services-moment--theme-dark h1,
.services-moment--theme-dark h2 {
  color: rgba(4, 9, 13, .92);
}

.services-moment--theme-dark .services-title-line__shadow {
  text-shadow: 0 1px 22px rgba(255, 255, 255, .1);
}

.services-moment--theme-dark::before {
  background: radial-gradient(ellipse at center,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .045) 48%,
      rgba(255, 255, 255, 0) 80%);
}

.services-moment--theme-dark>p,
.services-moment--theme-dark .services-moment__description {
  color: rgba(4, 12, 17, .72);
}

.services-moment--theme-dark>p {
  color: var(--services-moment-accent, rgba(4, 12, 17, .72));
}

.services-moment__cta {
  position: relative;
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  margin-top: clamp(1.4rem, 3.5vh, 2.5rem);
  padding-bottom: .55rem;
  color: rgba(240, 252, 255, .96);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  opacity: var(--services-cta-opacity);
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .28);
  transform: translate3d(0, var(--services-cta-y), 0);
  transition: color 180ms ease;
  will-change: opacity, transform;
}

.services-moment__cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--services-moment-accent, rgba(139, 231, 252, .72));
  content: '';
  opacity: .68;
  transform: scaleX(var(--services-cta-line));
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.services-moment--right .services-moment__cta::after {
  transform-origin: right;
}

.services-moment--center .services-moment__cta::after {
  transform-origin: center;
}

.services-moment__cta:hover,
.services-moment__cta:focus-visible {
  color: var(--services-moment-accent, #8be7fc);
  transform: translate3d(0, calc(var(--services-cta-y) - 2px), 0);
}

.services-moment__cta:hover::after,
.services-moment__cta:focus-visible::after {
  opacity: .95;
}

.services-moment__next {
  position: relative;
  display: inline-flex;
  gap: clamp(.75rem, 1.2vw, 1.15rem);
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(1.5rem, 3.5vh, 2.25rem);
  padding: 0 0 .7rem;
  border: 0;
  color: rgba(238, 249, 252, .9);
  background: transparent;
  font: 600 .62rem/1.2 'Manrope', sans-serif;
  letter-spacing: .17em;
  opacity: var(--services-cta-opacity);
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .28);
  cursor: pointer;
  transform: translate3d(0, var(--services-cta-y), 0);
  transition: color 210ms ease;
  will-change: opacity, transform;
}

.services-moment__next::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--services-moment-accent, rgba(139, 231, 252, .68));
  content: '';
  opacity: .66;
  transform: scaleX(var(--services-cta-line));
  transform-origin: left;
  transition: opacity 210ms ease, transform 210ms ease;
}

.services-moment__next i {
  flex: 0 0 auto;
  color: var(--services-moment-accent, rgba(139, 231, 252, .76));
  font: 400 .9rem/1 sans-serif;
  transition: transform 210ms ease;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .26);
}

.services-moment__next span {
  min-width: 0;
}

.services-moment__next:hover,
.services-moment__next:focus-visible {
  color: rgba(244, 251, 253, .96);
}

.services-moment__next:hover::after,
.services-moment__next:focus-visible::after {
  opacity: .95;
  transform: scaleX(1);
}

.services-moment__next:hover i,
.services-moment__next:focus-visible i {
  transform: translate3d(4px, 4px, 0);
}

.services-moment__next:disabled {
  cursor: default;
}

.services-moment--right .services-moment__next {
  margin-left: auto;
  text-align: right;
}

.services-moment--right .services-moment__next::after {
  transform-origin: right;
}

.services-moment--center .services-moment__next {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-moment--center .services-moment__next::after {
  transform-origin: center;
}

.services-moment--theme-dark .services-moment__next {
  color: rgba(4, 12, 17, .7);
}

.services-progress {
  position: absolute;
  z-index: 7;
  right: var(--page-pad);
  bottom: clamp(2.2rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: auto clamp(3.5rem, 7vw, 7rem) auto;
  gap: .8rem;
  align-items: center;
  color: rgba(226, 239, 243, .64);
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .28);
}

.services-progress i {
  display: block;
  height: 1px;
  background: rgba(226, 243, 247, .36);
}

.services-progress strong {
  max-width: 13rem;
  overflow: hidden;
  color: rgba(240, 249, 252, .78);
  font: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.services-master-progress {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, .1);
}

.services-master-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #65d5ef, #b9478d);
  transform: scaleX(var(--services-master-progress));
  transform-origin: left;
}

.services-video-status,
.services-video-missing {
  position: absolute;
  z-index: 8;
  bottom: clamp(2rem, 5vh, 4rem);
  left: var(--page-pad);
  display: flex;
  gap: .8rem;
  align-items: center;
  color: rgba(204, 229, 237, .45);
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.services-video-status img {
  width: auto;
  height: 14px;
  opacity: .42;
  animation: services-loading-pulse 1.6s ease-in-out infinite;
}

.services-video-missing {
  opacity: .48;
}

@keyframes services-loading-pulse {

  0%,
  100% {
    opacity: .25;
  }

  50% {
    opacity: .7;
  }
}

@media (max-width: 760px) {
  .services-scroll__sticky {
    min-height: 32rem;
  }

  .services-film {
    object-position: center;
  }

  .services-scroll__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .018), rgba(0, 0, 0, .05)),
      linear-gradient(180deg, rgba(1, 3, 5, .28), transparent 28%, rgba(1, 3, 5, .14) 45%, rgba(1, 3, 5, .76) 100%),
      radial-gradient(ellipse at center, transparent 28%, rgba(0, 2, 4, .34));
  }

  .services-moment,
  .services-moment--left,
  .services-moment--right,
  .services-moment--center {
    top: auto;
    right: var(--page-pad);
    bottom: clamp(7rem, 17vh, 10rem);
    left: var(--page-pad);
    width: auto;
    text-align: left;
    transform: none;
  }

  .services-moment::before,
  .services-moment--right::before,
  .services-moment--center::before {
    inset: -24% -20% -28%;

  }

  .services-moment--theme-dark::before {
    /* background: radial-gradient(ellipse at 34% 52%,
        rgba(255, 255, 255, .12),
        rgba(255, 255, 255, .045) 48%,
        rgba(255, 255, 255, 0) 82%); */
  }

  .services-moment h1,
  .services-moment h2,
  .services-moment--right h1,
  .services-moment--right h2,
  .services-moment--center h1,
  .services-moment--center h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.65rem, 12vw, 4.6rem);
  }

  .services-moment__description,
  .services-moment--right .services-moment__description,
  .services-moment--center .services-moment__description {
    max-width: 31rem;
    margin-right: 0;
    margin-left: 0;
    font-size: .92rem;
  }

  .services-moment--right .services-moment__next,
  .services-moment--center .services-moment__next {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .services-progress {
    right: var(--page-pad);
    bottom: calc(2rem + env(safe-area-inset-bottom));
    left: var(--page-pad);
    grid-template-columns: auto 1fr auto;
  }

  .services-video-status,
  .services-video-missing {
    top: calc(6.5rem + env(safe-area-inset-top));
    bottom: auto;
  }
}

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

  .services-film,
  .services-scroll__fallback,
  .services-moment__cta {
    transition: none;
  }

  .services-video-status img {
    animation: none;
  }

  .services-title-line__inner,
  .services-moment__eyebrow,
  .services-moment__description,
  .services-moment__cta,
  .services-moment__next,
  .services-moment__next i {
    transform: none;
  }

  .services-moment__next,
  .services-moment__next::after,
  .services-moment__next i {
    transition: none;
  }

  .services-moment__next:hover i,
  .services-moment__next:focus-visible i {
    transform: none;
  }
}

:root {
  font-family: 'DM Sans', Arial, sans-serif;
  color: #fff;
  background: #020307;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --enna-glass-bg: rgba(8, 10, 14, 0.48);
  --enna-glass-bg-strong: rgba(8, 10, 14, 0.68);
  --enna-glass-border: rgba(255, 255, 255, 0.14);
  --enna-glass-border-hover: rgba(255, 255, 255, 0.28);
  --enna-glass-highlight: rgba(255, 255, 255, 0.08);
  --enna-glass-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  --enna-glass-blur: 16px;
  --enna-glass-radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: #020307;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: #020307;
}

#root,
.enna-app,
.enna-hero,
.pin-spacer {
  background: #020307;
}

button,
a,
input {
  font: inherit;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.enna-glass {
  border: 1px solid var(--enna-glass-border);
  background: var(--enna-glass-bg);
  box-shadow:
    inset 0 1px 0 var(--enna-glass-highlight),
    var(--enna-glass-shadow);
  backdrop-filter: blur(var(--enna-glass-blur)) saturate(135%);
  -webkit-backdrop-filter: blur(var(--enna-glass-blur)) saturate(135%);
}

.enna-glass-button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--enna-glass-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(10, 12, 16, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.enna-glass-button:hover,
.enna-glass-button:focus-visible {
  border-color: var(--enna-glass-border-hover);
  color: #fff;
  background: rgba(20, 23, 30, 0.58);
  transform: translateY(-1px);
}

.enna-glass-button:active {
  filter: brightness(0.94);
  transform: translateY(0);
}

.navigation {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 1580px;
  height: 62px;
  padding: 0 24px;
  border-radius: var(--enna-glass-radius);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: normal;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.navigation__brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.navigation__brand img {
  display: block;
  width: auto;
  height: 26px;
  object-fit: contain;
}

.navigation nav {
  display: flex;
  gap: clamp(1.1rem, 2.7vw, 3.25rem);
}

.navigation nav a,
.skip-intro {
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navigation nav a {
  position: relative;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.navigation nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: '';
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.navigation nav a:hover,
.navigation nav a:focus-visible,
.navigation nav a.is-active {
  opacity: 1;
}

.navigation nav a:hover::after,
.navigation nav a:focus-visible::after,
.navigation nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-scroll {
  position: relative;
  z-index: 1;
  height: 100vh;
  background: #020307;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #020307;
}

.hero-canvas {
  position: absolute !important;
  inset: 0;
}

.skip-intro {
  position: fixed;
  z-index: 90;
  right: var(--page-pad);
  bottom: 1.6rem;
  appearance: none;
  cursor: pointer;
}

.skip-intro:hover,
.skip-intro:focus-visible {
  border-color: var(--enna-glass-border-hover);
}

.scroll-indicator {
  position: fixed;
  z-index: 40;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    'label mouse'
    'arrow mouse';
  gap: 5px 12px;
  align-items: center;
  min-width: 11.5rem;
  padding: 10px 13px 10px 15px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  visibility: hidden;
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms;
}

.scroll-indicator--visible {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  animation: scroll-indicator-pulse 3.2s ease-in-out 0.6s infinite;
}

.scroll-indicator__label {
  grid-area: label;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scroll-indicator__mouse {
  grid-area: mouse;
  align-self: stretch;
  width: 20px;
  min-height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.scroll-indicator__wheel {
  display: block;
  width: 2px;
  height: 5px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: #fff;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

.scroll-indicator__arrow {
  grid-area: arrow;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  transform: rotate(45deg);
  animation: scroll-arrow 1.5s ease-in-out infinite;
}

@keyframes scroll-indicator-pulse {
  0%, 100% { opacity: 0.62; }
  50% { opacity: 1; }
}

@keyframes scroll-wheel {
  0% { opacity: 0; transform: translateY(0); }
  28% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translateY(9px); }
}

@keyframes scroll-arrow {
  0%, 100% { opacity: 0.4; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 1; transform: rotate(45deg) translate(4px, 4px); }
}

.debug-panel {
  position: absolute;
  z-index: 95;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  width: min(31rem, calc(100vw - 2rem));
  max-height: 58vh;
  overflow: auto;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  font: 0.68rem/1.35 ui-monospace, monospace;
  backdrop-filter: blur(12px);
}

.debug-panel label {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  align-items: center;
}

.debug-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.debug-panel__actions button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.25rem;
  padding: 0.42rem 0.55rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}

.webgl-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 8rem var(--page-pad) 4rem;
  color: #fff;
  background: radial-gradient(circle at 75% 15%, #351124 0, #090a0d 36%, #030405 100%);
}

.webgl-fallback p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.webgl-fallback h1 {
  max-width: 58rem;
  margin: 1.5rem 0 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.8rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.webgl-fallback a {
  width: fit-content;
  border-bottom: 1px solid;
}

@media (max-width: 700px) {
  .navigation {
    top: 10px;
    width: calc(100% - 20px);
    height: 54px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .navigation__brand img {
    height: 22px;
  }

  .navigation nav {
    gap: 1.05rem;
  }

  .navigation nav a:nth-child(2),
  .navigation nav a:nth-child(3) {
    display: none;
  }

  .skip-intro {
    right: 10px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .scroll-indicator {
    bottom: calc(76px + env(safe-area-inset-bottom));
    min-width: 10.8rem;
  }

}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .enna-glass {
    background: rgba(8, 10, 14, 0.88);
  }

  .enna-glass-button {
    background: rgba(8, 10, 14, 0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-indicator--visible,
  .scroll-indicator__wheel,
  .scroll-indicator__arrow {
    animation: none;
  }
}
.enna-cursor {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  pointer-events: none;
}

.enna-cursor__core,
.enna-cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

.enna-cursor__core {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #ecfbff;
  box-shadow: 0 0 7px rgba(151, 231, 248, 0.42);
  opacity: 0;
  transition: opacity 120ms ease, scale 120ms ease, background-color 160ms ease;
}

.enna-cursor__ring {
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 160ms ease;
}

.enna-cursor__lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(226, 247, 252, 0.58);
  border-radius: 50%;
  background: rgba(2, 9, 13, 0.16);
  box-shadow: 0 0 14px rgba(89, 199, 224, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.025);
  transform: translate(-50%, -50%) scale(var(--enna-cursor-scale, 1));
  transition: transform 180ms cubic-bezier(.2,.75,.2,1), border-color 160ms ease, background-color 160ms ease;
}

.enna-cursor__label {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #dffaff;
  font: 600 8px/1 system-ui, sans-serif;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translate(-50%, -50%) translateX(.08em);
  transition: opacity 120ms ease;
}

html.enna-cursor-active,
html.enna-cursor-active body,
html.enna-cursor-active a,
html.enna-cursor-active button,
html.enna-cursor-active [role='button'],
html.enna-cursor-active summary,
html.enna-cursor-active canvas {
  cursor: none !important;
}

html.enna-cursor-active input,
html.enna-cursor-active textarea,
html.enna-cursor-active select,
html.enna-cursor-active [contenteditable='true'] {
  cursor: text !important;
}

html.enna-cursor-visible .enna-cursor__core,
html.enna-cursor-visible .enna-cursor__ring {
  opacity: 1;
}

html[data-enna-cursor-mode='link'] .enna-cursor__lens {
  --enna-cursor-scale: 1.12;
  border-color: rgba(226, 247, 252, 0.74);
}

html[data-enna-cursor-mode='action'] .enna-cursor__lens {
  --enna-cursor-scale: 1.2;
  border-color: rgba(190, 236, 247, 0.82);
  background: rgba(11, 30, 36, 0.22);
}

html[data-enna-cursor-mode='view'] .enna-cursor__lens {
  --enna-cursor-scale: 1.52;
  border-color: rgba(128, 225, 244, 0.92);
  background: rgba(5, 24, 30, 0.28);
}

html[data-enna-cursor-mode='view'] .enna-cursor__label {
  opacity: 0.92;
}

html[data-enna-cursor-mode='view'] .enna-cursor__core {
  opacity: 0;
}

html[data-enna-cursor-mode='text'] .enna-cursor {
  opacity: 0;
}

html.enna-cursor-pressed .enna-cursor__lens {
  --enna-cursor-scale: 0.82;
}

html.enna-cursor-pressed .enna-cursor__core {
  scale: 1.45;
  background: #fff;
}

@media (max-width: 899px), (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  .enna-cursor {
    display: none;
  }
}
.page-transition {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-transition__panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  contain: paint;
  background: linear-gradient(145deg, #050609, #030406 68%);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.page-transition__mark {
  position: relative;
  z-index: 1;
  width: clamp(6.4rem, 11vw, 9rem);
  height: auto;
  opacity: 0;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none; }
}
