:root {
  color-scheme: dark;
  --home-progress: 0;
  --white: #f6f6f4;
  --soft: rgba(246, 246, 244, 0.72);
  --muted: rgba(246, 246, 244, 0.56);
  --line: rgba(255, 255, 255, 0.22);
  --black: #040507;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  height: 100%;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  font-family: "Neue Haas Grotesk Display", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.028)),
    radial-gradient(ellipse at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0;
  transform: scaleY(1.08);
  transition: opacity 520ms ease, transform 1200ms cubic-bezier(0.76, 0, 0.24, 1);
}

body.is-page-transitioning::after {
  opacity: 1;
  transform: scaleY(1);
}



.scroll-shell {
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
  perspective: 1400px;
}

.scroll-track {
  width: 100%;
  height: 500vh;
  transform: translate3d(0, 0, 0);
  transition: transform 1.22s cubic-bezier(0.83, 0, 0.17, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

.page {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.page > :not(.light-rays-container):not(.pricing-glow) {
  opacity: 0;
  transform: translate3d(0, 38px, -48px) scale(0.975);
  transition: opacity 760ms ease, transform 1050ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.page.is-active > :not(.light-rays-container):not(.pricing-glow) {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.page.is-active > :not(.light-rays-container):not(.pricing-glow) {
  transition-delay: 180ms;
}

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

.site-header {
  position: fixed;
  top: clamp(14px, 1.8vw, 24px);
  right: clamp(24px, 4.3vw, 76px);
  left: clamp(24px, 4.3vw, 76px);
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(16px, 3.4vw, 62px);
  padding: 14px 0;
  animation: blurFadeUp 850ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
}

.site-header.is-brand-hidden .brand {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  min-width: clamp(168px, 16vw, 230px);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), visibility 360ms ease;
}

.brand img {
  width: clamp(46px, 3.5vw, 58px);
  height: clamp(46px, 3.5vw, 58px);
  border-radius: 50%;
}

.brand span {
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.38em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 34px);
  color: var(--soft);
  font-size: clamp(0.76rem, 0.84vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.talk-button,
.edge-button {
  display: inline-block;
  transform-origin: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 clamp(10px, 1.1vw, 16px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  transform-origin: center;
  perspective: 720px;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease, text-shadow 260ms ease;
}

nav a:hover,
nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 32px rgba(0, 0, 0, 0.28);
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.46);
  transform: translateY(-2px);
}

nav a:focus-visible {
  outline: none;
}

.nav-label {
  position: relative;
  display: block;
  height: 1.16em;
  min-width: max-content;
  overflow: hidden;
  line-height: 1.16;
  transform-style: preserve-3d;
}

.nav-label span {
  display: block;
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 1180ms cubic-bezier(0.16, 1, 0.3, 1), opacity 760ms ease, filter 760ms ease;
  will-change: transform;
}

.nav-label span:last-child {
  opacity: 0;
  transform: translateY(52%) translateZ(-28px) rotateX(-82deg) scale(0.9);
  transition-delay: 90ms;
}

nav a:hover .nav-label span:first-child,
nav a:focus-visible .nav-label span:first-child {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(-92%) translateZ(-46px) rotateX(72deg) scale(0.78);
  transition-delay: 0ms;
}

nav a:hover .nav-label span:last-child,
nav a:focus-visible .nav-label span:last-child {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-100%) translateZ(0) rotateX(0deg) scale(1);
  transition-delay: 260ms;
}

.talk-button,
.edge-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 5, 7, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.34);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.talk-button {
  min-width: clamp(154px, 10.6vw, 176px);
  height: clamp(48px, 4vw, 58px);
  padding: 0 clamp(17px, 1.4vw, 22px);
  border-radius: 9px;
  font-size: 0.8rem;
  overflow: hidden;
  transform-origin: center;
  transition: border-color 420ms ease, background 420ms ease, box-shadow 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.talk-label {
  position: relative;
  display: block;
  width: 94px;
  height: 1.1em;
  overflow: hidden;
  line-height: 1.1;
  white-space: nowrap;
}

.talk-label span {
  display: block;
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1), opacity 460ms ease, filter 460ms ease;
}

.talk-label span:last-child {
  opacity: 0;
  transform: translateY(65%) scale(0.94);
}

.talk-button > span:last-child {
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 130px clamp(24px, 5.3vw, 90px) 72px;
  transform-origin: center;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 37%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0.46) 100%),
    url("ChatGPT Image May 5, 2026, 07_07_07 PM.png") 58% 50% / auto 122vh no-repeat,
    var(--black);
  transform: scale(calc(1 + (var(--home-progress) * 0.012)));
  transition:
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-scroll-primed {
  filter: none;
  opacity: 1;
  transform: none;
}

.hero.is-scroll-primed::before {
  filter: blur(calc(var(--home-progress) * 7px)) brightness(calc(1 - (var(--home-progress) * 0.14)));
  opacity: calc(1 - (var(--home-progress) * 0.08));
}

.hero.is-soft-blurred {
  filter: none;
  opacity: 1;
  transform: none;
}

.hero.is-soft-blurred::before {
  filter: blur(12px) brightness(0.7) saturate(0.86);
  opacity: 0.82;
  transform: scale(1.018);
}

.hero::after,
.about-section::after,
.portfolio-section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.light-rays-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.56;
}

.light-rays-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 45vw);
  margin-top: -36px;
  margin-left: clamp(24px, 2.8vw, 54px);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 27px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: blurFadeUp 850ms cubic-bezier(0.16, 1, 0.3, 1) 110ms both;
}

.kicker > span:not(.kicker-text) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(5rem, 7.15vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 > span {
  display: block;
  text-shadow: none;
  animation: blurFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 > span:nth-child(1) {
  animation-delay: 190ms;
}

h1 > span:nth-child(2) {
  animation-delay: 270ms;
}

h1 > span:last-child {
  color: #4c4c4c;
  text-shadow: none;
  animation-delay: 350ms;
}

.shatter-text {
  display: inline-block;
  position: relative;
}

.shatter-char {
  display: inline-block;
  will-change: transform, filter;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.shatter-text:hover .shatter-char {
  transition-duration: 0.35s;
}

.intro .shatter-text {
  display: inline;
}

.intro {
  width: min(500px, 100%);
  margin-bottom: 55px;
  color: var(--soft);
  font-size: 1.22rem;
  line-height: 1.45;
  text-shadow: none;
  animation: blurFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 430ms both;
}

.edge-button {
  width: 288px;
  height: 64px;
  padding: 0 26px 0 30px;
  border-color: rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: rgba(4, 5, 7, 0.3);
  font-size: 0.86rem;
  animation: blurFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

.talk-button:hover,
.edge-button:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.talk-button:hover,
.talk-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 255, 255, 0.08);
  transform: translateY(-5px) scale(1.055);
}

.talk-button:focus-visible {
  outline: none;
}

.talk-button:hover .talk-label span:first-child,
.talk-button:focus-visible .talk-label span:first-child {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(-112%) scale(0.94);
}

.talk-button:hover .talk-label span:last-child,
.talk-button:focus-visible .talk-label span:last-child {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-100%) scale(1);
}

.talk-button:hover > span:last-child,
.talk-button:focus-visible > span:last-child {
  transform: translate(4px, -4px) rotate(12deg);
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  --enter-x: -50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: var(--soft);
  transform: translateX(-50%);
  animation: blurFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) 620ms both;
}

.scroll-cue span {
  font-size: 2.2rem;
  line-height: 1;
}

.scroll-cue p {
  margin: 10px 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  filter: none;
  min-height: 110svh;
  padding: 150px clamp(24px, 8.5vw, 146px) 96px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.63) 36%, rgba(0, 0, 0, 0.12) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.72) 100%),
    url("about-bg.png") center center / cover no-repeat,
    #040507;
}

.about-content {
  position: relative;
  z-index: 2;
  filter: none;
  display: grid;
  min-height: calc(110svh - 246px);
  grid-template-rows: 1fr auto;
  align-content: space-between;
  gap: 54px;
}

.about-copy {
  align-self: center;
  filter: none !important;
  width: min(560px, 48vw);
}

.about-label {
  margin: 0 0 36px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(3rem, 4.2vw, 5rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.blur-text-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
  will-change: opacity, filter, transform;
}

.is-blur-text-visible .blur-text-word {
  animation: blurTextIn 520ms linear both;
  animation-delay: calc(var(--blur-index) * 34ms);
}

.about-copy h2 > span .blur-text-word {
  color: #777;
}

.about-description {
  width: min(400px, 100%);
  margin: 0;
  color: var(--soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-pillars {
  position: relative;
  display: grid;
  z-index: 2;
  filter: none !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  width: 100%;
  padding: 28px 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 45%, rgba(255, 255, 255, 0.12)),
    rgba(8, 10, 13, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07),
    0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px) saturate(150%);
}

.about-pillars::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.65;
  pointer-events: none;
}

.about-pillars article {
  min-height: 150px;
  padding: 0 clamp(22px, 3.1vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.about-pillars article:first-child {
  border-left: 0;
  padding-left: clamp(20px, 1.8vw, 30px);
}

.about-pillars article > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(246, 246, 244, 0.74);
  font-size: 1.02rem;
}

.about-pillars h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.about-pillars p {
  margin: 0;
  color: rgba(246, 246, 244, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.portfolio-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 102px clamp(20px, 3.5vw, 64px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.72) 100%),
    url("ChatGPT Image May 5, 2026, 08_35_51 PM.png") center center / cover no-repeat,
    #030303;
}

.portfolio-shell {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(10px, 1.5vw, 22px);
  width: min(1740px, 100%);
  min-height: calc(100svh - 216px);
  margin-top: -36px;
  perspective: 1400px;
}

.portfolio-heading {
  position: relative;
  opacity: 0;
  margin-top: 0;
  z-index: 7;
  transform: translateY(16px);
  text-align: center;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-section.is-visible .portfolio-heading {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-heading p {
  margin: 0 0 12px;
  color: #d4a76a;
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.portfolio-heading > span {
  display: block;
  width: min(500px, calc(100vw - 48px));
  margin: 14px auto 0;
  color: rgba(246, 246, 244, 0.64);
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  line-height: 1.45;
}

.portfolio-museum {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(390px, 42vh, 560px);
  margin-top: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
}

.portfolio-museum::before {
  position: absolute;
  inset: auto 7% -16%;
  height: 38%;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 36%, transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  filter: blur(14px);
  opacity: 0.58;
  pointer-events: none;
}

.portfolio-track {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
  isolation: isolate;
}

.portfolio-video-card {
  --offset: 0;
  --distance: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, calc(100% - clamp(360px, 34vw, 520px)));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 68px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform:
    translate3d(-50%, -50%, 0)
    translateX(calc(var(--offset) * clamp(560px, 43vw, 700px)))
    scale(calc(1 - var(--distance) * 0.085));
  transition:
    opacity 700ms ease,
    transform 1360ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 980ms ease,
    border-color 420ms ease,
    box-shadow 980ms ease;
  filter: brightness(calc(1 - var(--distance) * 0.06)) saturate(calc(1 - var(--distance) * 0.04));
  backface-visibility: hidden;
  contain: layout paint;
  will-change: transform, opacity, filter;
  cursor: pointer;
}

.portfolio-section.is-visible .portfolio-video-card {
  opacity: 1;
}

.portfolio-video-card span {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 5;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  pointer-events: none;
}

.portfolio-section.is-visible .portfolio-dots {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-video-card.is-active {
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(255, 255, 255, 0.92);
  filter: brightness(1.08) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 38px 92px rgba(0, 0, 0, 0.66),
    0 0 56px rgba(255, 255, 255, 0.08);
  z-index: 30;
}

.portfolio-video-card:not(.is-active) {
  opacity: 0.52;
  box-shadow: none;
  z-index: 5;
}

.portfolio-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 5, 7, 0.02) 0%, rgba(4, 5, 7, 0.03) 48%, rgba(4, 5, 7, 0.32) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.76;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.portfolio-video-card.is-active::after {
  opacity: 0.46;
}

.portfolio-video-card:not(.is-active)::after {
  opacity: 0;
}

.portfolio-video-card::before {
  display: none;
}

.portfolio-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.002);
  backface-visibility: hidden;
  will-change: transform;
}

.portfolio-video-card span {
  position: absolute;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 26px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.66rem, 0.8vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 10, 13, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(150%);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  transform: translateY(-50%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.portfolio-control:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%) scale(1.06);
}

.portfolio-control-prev {
  left: clamp(14px, 2vw, 30px);
}

.portfolio-control-next {
  right: clamp(14px, 2vw, 30px);
}

.portfolio-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease, transform 240ms ease;
}

.portfolio-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.portfolio-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - clamp(48px, 11vw, 150px)));
  margin-top: clamp(18px, 2.4vw, 34px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-section.is-visible .portfolio-features {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-features::before {
  display: none;
}

.portfolio-features article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-width: 0;
  min-height: 62px;
  padding: 0 clamp(12px, 1.25vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-features article:first-child {
  border-left: 0;
}

.portfolio-features article > div {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portfolio-features svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.portfolio-features span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.portfolio-features strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.66rem, 0.72vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio-features small {
  display: block;
  color: rgba(246, 246, 244, 0.58);
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  line-height: 1.35;
}

.portfolio-control,
.portfolio-dots button,
.portfolio-features article > div {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
}

.portfolio-section.is-blur-text-visible .portfolio-control,
.portfolio-section.is-blur-text-visible .portfolio-dots button,
.portfolio-section.is-blur-text-visible .portfolio-features article > div {
  animation: blurTextIn 520ms linear both;
}

.portfolio-section.is-blur-text-visible .portfolio-control-prev {
  animation-delay: 120ms;
}

.portfolio-section.is-blur-text-visible .portfolio-control-next {
  animation-delay: 160ms;
}

.portfolio-section.is-blur-text-visible .portfolio-dots button {
  animation-delay: 220ms;
}

.portfolio-section.is-blur-text-visible .portfolio-features article:nth-child(1) > div {
  animation-delay: 80ms;
}

.portfolio-section.is-blur-text-visible .portfolio-features article:nth-child(2) > div {
  animation-delay: 120ms;
}

.portfolio-section.is-blur-text-visible .portfolio-features article:nth-child(3) > div {
  animation-delay: 160ms;
}

.portfolio-section.is-blur-text-visible .portfolio-features article:nth-child(4) > div {
  animation-delay: 200ms;
}

.pricing-section {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 680px;
  padding: clamp(64px, 8vh, 82px) clamp(18px, 3.6vw, 54px) 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% -2%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(ellipse at 51% 104%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.74) 100%),
    url("ChatGPT Image May 5, 2026, 08_35_51 PM.png") center center / cover no-repeat,
    #030303;
}

.pricing-section::before {
  position: absolute;
  right: -190px;
  top: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  box-shadow:
    inset 0 0 38px rgba(255, 255, 255, 0.08),
    0 0 54px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.pricing-section::after {
  position: absolute;
  left: -250px;
  bottom: -330px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    inset 0 0 38px rgba(255, 220, 170, 0.08),
    0 0 54px rgba(255, 220, 170, 0.08);
  pointer-events: none;
}

.pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
  pointer-events: none;
}

.pricing-glow-1 {
  top: -120px;
  right: -70px;
  width: 360px;
  height: 360px;
  background: #fff;
}

.pricing-glow-2 {
  bottom: -150px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: #d4a76a;
}

.pricing-header,
.pricing-grid {
  position: relative;
  z-index: 2;
}

.pricing-header {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-section.is-visible .pricing-header {
  opacity: 1;
  transform: translateY(62px);
}

.pricing-tag {
  margin: 0 0 12px;
  color: rgba(246, 246, 244, 0.48);
  font-size: clamp(0.56rem, 0.58vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-top-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(48px, 12vw, 190px);
}

.pricing-top-content h2 {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 3.1vw, 3.95rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
  white-space: normal;
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.pricing-top-content h2 span {
  color: inherit;
}

.pricing-top-content p {
  max-width: 470px;
  margin: 0;
  padding-top: 34px;
  color: rgba(246, 246, 244, 0.56);
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(56px, 4.8vw, 92px);
  margin: 120px auto 0;
  width: min(1520px, 80vw);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(600px, 64vh, 660px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), transparent 36%),
    rgba(7, 8, 10, 0.66);
  padding: 38px 32px 30px;
  backdrop-filter: blur(30px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(46px) scale(0.92);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 400ms ease,
    box-shadow 400ms ease;
}

.pricing-section.is-visible .pricing-card {
  opacity: 1;
  animation: pricingCardPop 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pricing-section.is-visible .pricing-card:nth-child(2) {
  transition-delay: 100ms;
}

.pricing-section.is-visible .pricing-card:nth-child(3) {
  transition-delay: 190ms;
}

.pricing-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.72), 0 0 60px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-20px) scale(1.035);
  z-index: 3;
}

.pricing-card.is-featured {
  border-color: rgba(255, 225, 184, 0.38);
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 167, 106, 0.16), transparent 48%),
    linear-gradient(140deg, rgba(255, 225, 184, 0.09), transparent 36%),
    rgba(18, 14, 8, 0.68);
  box-shadow: 0 0 80px rgba(255, 210, 140, 0.12), inset 0 1px 0 rgba(255, 220, 170, 0.13);
}

.pricing-card.is-featured:hover {
  border-color: rgba(255, 210, 140, 0.8);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.72), 0 0 80px rgba(255, 200, 120, 0.22), inset 0 1px 0 rgba(255, 220, 170, 0.22);
}

.pricing-popular {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e9c88d, #f6deb0);
  color: #000;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.pricing-card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.pricing-icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-card-title h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.8rem, 2.05vw, 2.18rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pricing-card-desc {
  margin: 0;
  color: rgba(246, 246, 244, 0.6);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 11px 5px;
  border: 1px solid rgba(212, 167, 106, 0.15);
  border-radius: 999px;
  background: rgba(212, 167, 106, 0.06);
  color: rgba(232, 206, 166, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-price-wrap {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-price-wrap span {
  display: block;
  color: rgba(246, 246, 244, 0.32);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-price-wrap strong {
  display: block;
  color: #fff;
  font-size: clamp(2.95rem, 3.45vw, 4.05rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.pricing-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(246, 246, 244, 0.58);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.pricing-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #d8bc91;
  border-radius: 50%;
  color: #000;
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
}

.pricing-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.pricing-card.is-featured a {
  background: linear-gradient(90deg, #e3bf84, #f3ddb5);
  color: #000;
}

.pricing-card a:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.pricing-footnote {
  position: relative;
  z-index: 2;
  margin: 14px auto 0;
  color: rgba(246, 246, 244, 0.48);
  font-size: 0.66rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.8;
}

.pricing-footnote span {
  color: #d4a76a;
  font-size: 1rem;
}

.pricing-card.is-featured a:hover {
  background: linear-gradient(90deg, #f0ce94, #fff0cf);
  transform: translateY(-2px);
}

.contact-section {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 660px;
  max-height: 100svh;
  display: grid;
  grid-template-columns: minmax(340px, 390px) minmax(680px, 760px);
  justify-content: start;
  align-items: center;
  gap: clamp(340px, 20vw, 420px);
  padding: 72px clamp(42px, 4.4vw, 62px) 30px;
  overflow: hidden;
  font-family: "Inter", "Neue Haas Grotesk Display", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.5) 100%),
    url("ChatGPT Image May 7, 2026, 08_40_31 PM.png") center center / cover no-repeat,
    #030303;
}

.contact-left {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-tag {
  color: #7d7d7d;
  letter-spacing: 4px;
  font-size: 15px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.contact-left h1 {
  font-size: clamp(3.75rem, 4.65vw, 5.3rem);
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 22px;
  letter-spacing: -0.045em;
}

.contact-left h1 span {
  color: #707070;
}

.contact-left h1 .contact-white-word {
  color: #fff;
}

.contact-desc {
  color: #b5b5b5;
  font-size: clamp(1.18rem, 1.32vw, 1.4rem);
  line-height: 1.5;
  margin: 0 0 22px;
}

.contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0 13px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.28);
}

.info-item h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
  font-weight: 500;
}

.info-item p {
  color: #b0b0b0;
  font-size: 1.12rem;
  margin: 0;
}

.connect {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.connect p {
  color: white;
  font-size: 1.22rem;
  margin: 0;
}

.social-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.social-circle:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-circle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form-box {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: auto;
  align-self: start;
  margin-top: 44px;
  margin-left: 46px;
  padding: clamp(26px, 3vh, 34px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 42px rgba(255, 255, 255, 0.08),
    0 36px 100px rgba(0, 0, 0, 0.46);
}

.contact-form-box h2 {
  font-size: clamp(1.35rem, 1.5vw, 1.7rem);
  margin: 0 0 20px;
  font-weight: 500;
}

.input-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 16px 20px;
  color: white;
  font: inherit;
  font-size: 1.08rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #8e8e8e;
}

.full-input {
  margin-bottom: 16px;
}

.contact-form-box textarea {
  height: clamp(120px, 17vh, 155px);
  resize: none;
  margin-bottom: 16px;
}

.contact-form-box button {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 36px rgba(0, 0, 0, 0.42);
}

.scroll-shell .contact-section {
  padding-top: clamp(56px, 7vh, 72px);
  padding-bottom: clamp(20px, 3vh, 30px);
}

.scroll-shell .contact-form-box {
  align-self: center;
  margin-top: 0;
}

.contact-form-box button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-section .icon,
.contact-section .social-circle,
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box button {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
}

.contact-section.is-blur-text-visible .icon,
.contact-section.is-blur-text-visible .social-circle,
.contact-section.is-blur-text-visible .contact-form-box input,
.contact-section.is-blur-text-visible .contact-form-box textarea,
.contact-section.is-blur-text-visible .contact-form-box button {
  animation: blurTextIn 520ms linear both;
}

.contact-section.is-blur-text-visible .info-item:nth-child(1) .icon,
.contact-section.is-blur-text-visible .contact-form-box input:nth-child(1) {
  animation-delay: 80ms;
}

.contact-section.is-blur-text-visible .info-item:nth-child(2) .icon,
.contact-section.is-blur-text-visible .contact-form-box input:nth-child(2) {
  animation-delay: 120ms;
}

.contact-section.is-blur-text-visible .info-item:nth-child(3) .icon,
.contact-section.is-blur-text-visible .contact-form-box .full-input:nth-of-type(1) {
  animation-delay: 160ms;
}

.contact-section.is-blur-text-visible .info-item:nth-child(4) .icon,
.contact-section.is-blur-text-visible .contact-form-box .full-input:nth-of-type(2) {
  animation-delay: 200ms;
}

.contact-section.is-blur-text-visible .contact-form-box textarea {
  animation-delay: 240ms;
}

.contact-section.is-blur-text-visible .social-circle,
.contact-section.is-blur-text-visible .contact-form-box button {
  animation-delay: 280ms;
}

@media (max-width: 760px) {
  .hero {
    background: var(--black);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.88) 56%, #040507 100%),
      url("ChatGPT Image May 5, 2026, 07_07_07 PM.png") 58% 42px / auto 68vh no-repeat,
      var(--black);
  }

  .site-header {
    display: flex;
    top: 16px;
    right: 16px;
    left: 16px;
    padding: 10px 0;
  }

  .brand {
    min-width: auto;
    gap: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 0.96rem;
    letter-spacing: 0.3em;
  }

  nav {
    display: none;
  }

  .talk-button {
    margin-left: auto;
    min-width: 158px;
    height: 48px;
    padding: 0 17px;
    font-size: 0.72rem;
  }

  .talk-label {
    width: 88px;
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
    padding: 420px 24px 86px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .kicker {
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .intro {
    font-size: 1.02rem;
  }

  .scroll-cue {
    display: none;
  }

  .about-section {
    min-height: auto;
    padding: 120px 24px 84px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 55%, #040507 100%),
      url("about-bg.png") center top / cover no-repeat,
      #040507;
  }

  .about-content {
    min-height: auto;
    padding-top: 340px;
    gap: 54px;
  }

  .about-copy {
    width: 100%;
  }

  .about-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

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

  .about-pillars article,
  .about-pillars article:first-child {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-pillars article:first-child {
    border-top: 0;
  }

  .portfolio-section {
    min-height: 100svh;
    padding: 120px 24px 80px;
    background:
      linear-gradient(90deg, rgba(4, 5, 7, 0.9) 0%, rgba(4, 5, 7, 0.48) 50%, rgba(4, 5, 7, 0.9) 100%),
      linear-gradient(180deg, rgba(4, 5, 7, 0.1) 0%, rgba(4, 5, 7, 0.12) 58%, rgba(4, 5, 7, 0.52) 100%),
      url("ChatGPT Image May 5, 2026, 08_35_51 PM.png") center top / cover no-repeat,
      #040507;
  }

  .portfolio-shell {
    gap: 20px;
    min-height: calc(100svh - 200px);
  }

  .portfolio-heading h2 {
    font-size: clamp(1.35rem, 8vw, 2.4rem);
  }

  .portfolio-heading p {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .portfolio-heading > span {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .portfolio-museum {
    width: calc(100vw - 34px);
    height: 330px;
  }

  .portfolio-video-card {
    width: 300px;
    aspect-ratio: 16 / 9;
  }

  .portfolio-video-card.is-active {
    width: calc(100% - 42px);
    aspect-ratio: 16 / 9;
  }

  .portfolio-control {
    width: 40px;
    height: 40px;
  }

  .portfolio-control-prev {
    left: 10px;
  }

  .portfolio-control-next {
    right: 10px;
  }

  .portfolio-features {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 12px;
    padding: 0 22px;
  }

  .portfolio-features article,
  .portfolio-features article:first-child {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 86px;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .portfolio-features article:first-child {
    border-top: 0;
  }

  .portfolio-features article > div {
    width: 42px;
    height: 42px;
  }

  .pricing-section {
    height: auto;
    min-height: 100svh;
    padding: 92px 24px 84px;
  }

  .pricing-tag {
    margin-bottom: 28px;
  }

  .pricing-top-content {
    flex-direction: column;
    gap: 26px;
  }

  .pricing-top-content h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .pricing-top-content p {
    padding-top: 0;
    font-size: 1.02rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }

  .pricing-card {
    border-radius: 24px;
  }

  .pricing-popular {
    top: 20px;
    right: 20px;
  }

  .contact-section {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 30px;
    overflow: visible;
    padding: 110px 24px 54px;
  }

  .contact-left,
  .contact-form-box {
    width: 100%;
  }

  .contact-left h1 {
    font-size: clamp(4.2rem, 16vw, 70px);
  }

  .input-row {
    flex-direction: column;
  }

}

@media (max-width: 540px) {
  .brand span {
    display: none;
  }

  .hero {
    padding-top: 360px;
  }

  .edge-button {
    width: 100%;
  }
}

@keyframes blurFadeUp {
  from {
    opacity: 0;
    filter: blur(24px);
    transform: translate(var(--enter-x, 0), 22px) scale(0.985);
  }

  58% {
    opacity: 1;
    filter: blur(7px);
    transform: translate(var(--enter-x, 0), -3px) scale(1.018);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(var(--enter-x, 0), 0) scale(1);
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pricingGradientDrift {
  from {
    background-position: 0% 38%;
  }

  to {
    background-position: 100% 62%;
  }
}

@keyframes pricingCardPop {
  0% {
    opacity: 0;
    transform: translateY(46px) scale(0.92);
  }

  62% {
    opacity: 1;
    transform: translateY(-8px) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes blurTextIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50px);
  }

  50% {
    opacity: 0.5;
    filter: blur(5px);
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.scroll-shell .page {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
}

.scroll-shell .about-section {
  padding-top: clamp(118px, 13vh, 140px);
  padding-bottom: clamp(70px, 8vh, 92px);
}

.scroll-shell .about-content {
  min-height: calc(100svh - clamp(208px, 21vh, 232px));
  gap: clamp(24px, 4vh, 40px);
}

.scroll-shell .about-pillars {
  margin-bottom: 2px;
}

.scroll-shell .pricing-section {
  min-height: 100svh;
  padding: clamp(58px, 7vh, 72px) clamp(20px, 3.2vw, 46px) clamp(20px, 3vh, 30px);
}

.scroll-shell .pricing-header {
  flex: 0 0 auto;
}

.scroll-shell .pricing-section.is-visible .pricing-header {
  transform: translateY(0);
}

.scroll-shell .pricing-top-content {
  align-items: flex-end;
  gap: clamp(28px, 6vw, 110px);
}

.scroll-shell .pricing-top-content h2 {
  max-width: 480px;
  font-size: clamp(1.9rem, 2.65vw, 3.15rem);
  line-height: 1.02;
}

.scroll-shell .pricing-top-content p {
  max-width: 390px;
  padding-top: 0;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  line-height: 1.42;
}

.scroll-shell .pricing-grid {
  flex: 1 1 auto;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 34px);
  width: min(1320px, 92vw);
  margin: clamp(22px, 3vh, 34px) auto 0;
}

.scroll-shell .pricing-card {
  min-height: 0;
  height: min(520px, calc(100svh - 244px));
  padding: clamp(20px, 2.2vh, 28px) clamp(18px, 1.9vw, 26px) clamp(18px, 2vh, 24px);
  transform-origin: center bottom;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms ease,
    background 520ms ease,
    box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.scroll-shell .pricing-card:not(:hover) {
  transition-timing-function: ease, cubic-bezier(0.23, 1, 0.32, 1), ease, ease, cubic-bezier(0.23, 1, 0.32, 1), ease;
  transition-duration: 900ms, 880ms, 620ms, 620ms, 880ms, 620ms;
}

.scroll-shell .pricing-card-header {
  gap: 12px;
  margin-bottom: 10px;
}

.scroll-shell .pricing-icon-box {
  width: 36px;
  height: 36px;
  font-size: 1.24rem;
}

.scroll-shell .pricing-card-title h3 {
  margin-bottom: 5px;
  font-size: clamp(1.42rem, 1.55vw, 1.78rem);
}

.scroll-shell .pricing-card-desc {
  font-size: clamp(0.76rem, 0.82vw, 0.88rem);
  line-height: 1.36;
}

.scroll-shell .pricing-badge {
  margin-bottom: 10px;
  padding: 5px 9px 4px;
  font-size: 0.62rem;
}

.scroll-shell .pricing-price-wrap {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.scroll-shell .pricing-price-wrap span {
  margin-bottom: 4px;
  font-size: 0.64rem;
}

.scroll-shell .pricing-price-wrap strong {
  font-size: clamp(2.15rem, 2.55vw, 3rem);
}

.scroll-shell .pricing-card ul {
  gap: 5px;
  margin-bottom: 14px;
}

.scroll-shell .pricing-card li {
  padding-left: 22px;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  line-height: 1.3;
}

.scroll-shell .pricing-card li::before {
  top: 2px;
  width: 12px;
  height: 12px;
  font-size: 0.5rem;
}

.scroll-shell .pricing-card a {
  height: 38px;
  font-size: clamp(0.78rem, 0.82vw, 0.92rem);
}

.scroll-shell .pricing-card:hover {
  animation: none;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(10, 12, 15, 0.78);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.62),
    0 0 48px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(1.06) saturate(1.04);
  transform: translateY(-10px) scale(1.018);
}

.scroll-shell .pricing-card.is-featured:hover {
  border-color: rgba(255, 220, 170, 0.68);
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 167, 106, 0.2), transparent 48%),
    linear-gradient(140deg, rgba(255, 225, 184, 0.13), transparent 38%),
    rgba(20, 15, 9, 0.78);
  box-shadow:
    0 36px 96px rgba(0, 0, 0, 0.64),
    0 0 70px rgba(255, 200, 120, 0.22),
    inset 0 1px 0 rgba(255, 220, 170, 0.28);
}

.scroll-shell .pricing-footnote {
  flex: 0 0 auto;
  margin-top: 10px;
  font-size: 0.6rem;
  line-height: 1.25;
}

@media (hover: none) {
  .shatter-char {
    filter: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shatter-char {
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
