:root {
  color-scheme: light;
  --bg: #f4ecdf;
  --bg-deep: #efe3d2;
  --surface: rgba(255, 250, 243, 0.78);
  --surface-solid: #fffaf2;
  --surface-dark: #101827;
  --surface-darker: #0b1220;
  --text: #131c27;
  --muted: #5d6774;
  --muted-soft: rgba(255, 250, 243, 0.72);
  --accent: #0f7a72;
  --accent-strong: #095c56;
  --accent-warm: #b37a46;
  --line: rgba(19, 28, 39, 0.1);
  --line-strong: rgba(255, 250, 243, 0.12);
  --glow: 0 28px 80px rgba(16, 24, 39, 0.12);
  --glow-strong: 0 28px 120px rgba(8, 17, 33, 0.3);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --mouse-x: 50%;
  --mouse-y: 24%;
  --scroll-progress: 0;
  --scroll-bg-shift: 0px;
  --scroll-bg-rotate: 0deg;
  --scroll-grid-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(15, 122, 114, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(179, 122, 70, 0.16), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 88px 88px;
  background-position:
    0 var(--scroll-grid-shift),
    var(--scroll-grid-shift) 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  opacity: 0.35;
  transition: background-position 110ms linear, opacity 180ms ease;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 280px at var(--mouse-x) var(--mouse-y), rgba(15, 122, 114, 0.16), transparent 60%),
    radial-gradient(circle 220px at calc(var(--mouse-x) - 14%) calc(var(--mouse-y) + 10%), rgba(179, 122, 70, 0.12), transparent 62%);
  opacity: 0.9;
  transform: translate3d(0, var(--scroll-bg-shift), 0) rotate(var(--scroll-bg-rotate)) scale(1.04);
  transition: transform 110ms linear, opacity 180ms ease;
  z-index: 0;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 14%, rgba(15, 122, 114, 0.08) 48%, transparent 60%),
    radial-gradient(circle at 72% 26%, rgba(91, 121, 255, 0.12), transparent 28%),
    radial-gradient(circle at 28% 72%, rgba(179, 122, 70, 0.12), transparent 30%);
  opacity: 0.68;
  transform: translate3d(0, calc(var(--scroll-bg-shift) * -0.62), 0) rotate(calc(var(--scroll-bg-rotate) * -1));
  transition: transform 110ms linear, opacity 180ms ease;
  z-index: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 80;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), #5b79ff);
  box-shadow: 0 0 20px rgba(15, 122, 114, 0.32);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(88px);
  opacity: 0.64;
  pointer-events: none;
  animation: ambient-float 18s ease-in-out infinite alternate;
  will-change: transform, translate;
}

.ambient-one {
  top: 100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(15, 122, 114, 0.24);
}

.ambient-two {
  top: 840px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(179, 122, 70, 0.18);
  animation-delay: -6s;
}

.ambient-three {
  top: 1480px;
  right: 10%;
  width: 260px;
  height: 260px;
  background: rgba(63, 98, 181, 0.12);
  animation-delay: -10s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 45px rgba(19, 28, 39, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 16px 40px rgba(19, 28, 39, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #101827, #0f7a72);
  color: #fffaf2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 28px rgba(16, 24, 39, 0.18);
  animation: brand-pulse 5.6s ease-in-out infinite;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

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

.nav a.is-active {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-mail {
  padding: 12px 16px;
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text) !important;
  font-size: 0.84rem !important;
}

.nav-mail::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

main,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 122, 114, 0.55), rgba(179, 122, 70, 0.4), transparent);
  animation: section-trace 9s linear infinite;
  opacity: 0.7;
}

[data-parallax] {
  translate: 0 var(--parallax-y, 0px);
  will-change: translate;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding-top: 58px;
}

.eyebrow,
.card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3.8rem, 8vw, 7.3rem);
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), #5b79ff, var(--accent));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shift 7s ease-in-out infinite;
}

.hero-text,
.section-heading p,
.identity-card p,
.service-card p,
.standard-card p,
.process-step p,
.faq-item p,
.contact-copy p,
.metric-card span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  --button-x: 0px;
  --button-y: 0px;
  --button-lift: 0px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transform: translate3d(var(--button-x), calc(var(--button-y) + var(--button-lift)), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  --button-lift: -2px;
}

.button::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -26%;
  width: 28%;
  height: 380%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(22deg);
  animation: button-sheen 5.5s linear infinite;
  pointer-events: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #0d645e);
  color: #f9fffd;
  box-shadow: 0 16px 30px rgba(15, 122, 114, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #0d6f68, #084f4a);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.signal-chip {
  padding: 11px 15px;
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.9rem;
  animation: chip-drift 7s ease-in-out infinite;
}

.signal-chip:nth-child(2) {
  animation-delay: -1s;
}

.signal-chip:nth-child(3) {
  animation-delay: -2.2s;
}

.signal-chip:nth-child(4) {
  animation-delay: -3.3s;
}

.signal-chip:nth-child(5) {
  animation-delay: -4.4s;
}

.signal-chip-accent {
  background: rgba(15, 122, 114, 0.12);
  color: var(--accent-strong);
  border-color: rgba(15, 122, 114, 0.16);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.studio-card,
.metric-card,
.identity-card,
.service-card,
.standard-card,
.process-step,
.faq-item,
.contact-card {
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.26), transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 0;
}

.tilt-card.is-tilting::before {
  opacity: 1;
}

.tilt-card > * {
  position: relative;
  z-index: 1;
}

.studio-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 122, 114, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(11, 18, 32, 0.98));
  border-color: rgba(255, 250, 243, 0.08);
  box-shadow: var(--glow-strong);
}

.studio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
  opacity: 0.42;
  pointer-events: none;
}

.studio-card::after {
  content: "";
  position: absolute;
  inset: -30% 0 auto 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  animation: studio-scan 7s linear infinite;
  pointer-events: none;
}

.studio-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.08);
}

.studio-header p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}

.window-dots span:nth-child(1) {
  background: #ff5f57;
}

.window-dots span:nth-child(2) {
  background: #febc2e;
}

.window-dots span:nth-child(3) {
  background: #28c840;
}

.studio-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 122, 114, 0.14);
  color: #8ce6d7;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 22px;
}

.terminal-panel,
.orbit-panel {
  position: relative;
  border: 1px solid rgba(255, 250, 243, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.terminal-panel {
  padding: 20px;
}

.terminal-label {
  margin-bottom: 14px;
  color: rgba(255, 250, 243, 0.66);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-window {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 11, 20, 0.78);
  color: #d5fdf5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.7;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.04);
  animation: terminal-breathe 4.8s ease-in-out infinite;
}

.terminal-prompt {
  color: #78e1d2;
}

.terminal-cursor {
  width: 10px;
  height: 1.1em;
  background: #78e1d2;
  border-radius: 2px;
  animation: cursor-blink 1s steps(2, end) infinite;
}

.terminal-feed {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.terminal-feed div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.04);
}

.terminal-feed span {
  color: rgba(140, 230, 215, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-feed strong {
  color: #f6f0e7;
  font-size: 0.95rem;
  font-weight: 500;
}

.orbit-panel {
  display: grid;
  place-items: center;
  min-height: 320px;
  overflow: hidden;
}

.orbit-shell {
  position: relative;
  width: 280px;
  height: 280px;
  animation: orbit-float 8s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 243, 0.14);
  transform: translate(-50%, -50%);
}

.orbit-ring-one {
  width: 240px;
  height: 240px;
  animation: spin-slow 22s linear infinite;
}

.orbit-ring-two {
  width: 170px;
  height: 170px;
  border-style: dashed;
  animation: spin-reverse 16s linear infinite;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  gap: 4px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at top, rgba(15, 122, 114, 0.66), rgba(16, 24, 39, 0.96) 72%);
  box-shadow:
    0 0 0 10px rgba(15, 122, 114, 0.08),
    0 0 48px rgba(15, 122, 114, 0.28);
}

.orbit-core span {
  color: #fffaf2;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.orbit-core small {
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-tag {
  position: absolute;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 243, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.08);
  color: #f3ece2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  animation: tag-float 6s ease-in-out infinite;
}

.tag-one {
  top: 8%;
  left: 48%;
  animation-delay: 0s;
}

.tag-two {
  top: 34%;
  right: -4%;
  animation-delay: -1.2s;
}

.tag-three {
  bottom: 14%;
  right: 10%;
  animation-delay: -2.1s;
}

.tag-four {
  bottom: 12%;
  left: 8%;
  animation-delay: -3.2s;
}

.tag-five {
  top: 40%;
  left: -4%;
  animation-delay: -4.1s;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  padding: 18px;
  background: rgba(255, 250, 243, 0.66);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.marquee-section {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  border-top: 1px solid rgba(19, 28, 39, 0.08);
  border-bottom: 1px solid rgba(19, 28, 39, 0.08);
  background: rgba(255, 250, 243, 0.48);
}

.marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: marquee-scan 8s linear infinite;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  gap: 16px;
  min-width: max-content;
  padding: 18px 0;
  animation: marquee-move 26s linear infinite;
}

.marquee-track span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
}

.showcase-section {
  padding-top: 78px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 30px;
}

.showcase-card {
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--glow);
  overflow: hidden;
}

.showcase-card-featured {
  grid-row: span 2;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.08), rgba(16, 24, 39, 0.02));
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: media-drift 3.8s ease-in-out infinite alternate;
  transform-origin: center center;
}

.showcase-card:nth-child(2) .media-frame img {
  animation-duration: 3.2s;
}

.showcase-card:nth-child(3) .media-frame img {
  animation-duration: 4.4s;
}

.media-frame-video::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 42%),
    rgba(15, 122, 114, 0.84);
  box-shadow: 0 16px 32px rgba(15, 122, 114, 0.24);
}

.media-frame-video::before {
  content: "";
  position: absolute;
  right: 46px;
  bottom: 46px;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fffefb;
}

.media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.72);
  color: rgba(255, 250, 243, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.showcase-copy {
  padding: 22px 24px 24px;
}

.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.showcase-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 62ch;
}

.identity-grid,
.services-grid,
.standards-grid,
.process-rail {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.identity-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.identity-card {
  padding: 32px;
  background: rgba(255, 250, 243, 0.72);
}

.identity-card h3,
.service-card h3,
.standard-card h3,
.process-step h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.identity-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(15, 122, 114, 0.12), transparent 32%),
    rgba(255, 250, 243, 0.82);
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  transform: translateY(-50%);
}

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

.service-card {
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 243, 0.68));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.standard-card:hover,
.identity-card:hover {
  box-shadow: 0 24px 60px rgba(19, 28, 39, 0.12);
}

.card-index {
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.standards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standard-card {
  padding: 26px;
  background: rgba(255, 250, 243, 0.72);
}

.standard-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 122, 114, 0.14), rgba(179, 122, 70, 0.16));
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
}

.process-rail {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 122, 114, 0.18), rgba(179, 122, 70, 0.22));
}

.process-rail::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 7%;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 122, 114, 0.15), rgba(15, 122, 114, 0.95), rgba(179, 122, 70, 0.15));
  box-shadow: 0 0 20px rgba(15, 122, 114, 0.22);
  animation: rail-run 7s ease-in-out infinite;
}

.process-step {
  position: relative;
  padding: 28px;
  background: rgba(255, 250, 243, 0.74);
}

.process-step span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #fffaf2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  box-shadow: 0 14px 24px rgba(15, 122, 114, 0.18);
}

.process-step span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(15, 122, 114, 0.26);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  padding: 0 24px;
  background: rgba(255, 250, 243, 0.72);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  font-size: 1.06rem;
  font-weight: 500;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 122, 114, 0.1);
  color: var(--accent-strong);
  font-size: 1.1rem;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(15, 122, 114, 0.18);
}

.faq-item[open] {
  box-shadow: 0 24px 60px rgba(19, 28, 39, 0.12);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
  max-width: 72ch;
}

.inline-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(15, 122, 114, 0.3);
  text-underline-offset: 0.18em;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(15, 122, 114, 0.12), transparent 30%),
    rgba(255, 250, 243, 0.78);
}

.contact-copy p:last-child {
  margin-top: 20px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contact-note {
  padding: 18px 20px;
  border: 1px solid rgba(19, 28, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.contact-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.94rem;
}

.contact-note span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.site-footer a {
  color: var(--accent-strong);
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambient-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -28px, 0) scale(1.08);
  }
}

@keyframes media-drift {
  0% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.05) translate3d(-1.4%, -1.2%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(1.5%, 1%, 0);
  }
}

@keyframes brand-pulse {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(16, 24, 39, 0.18);
  }
  50% {
    box-shadow: 0 20px 34px rgba(15, 122, 114, 0.22);
  }
}

@keyframes studio-scan {
  0% {
    transform: translateY(-220px);
  }
  100% {
    transform: translateY(520px);
  }
}

@keyframes spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes tag-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes marquee-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scan {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes button-sheen {
  0% {
    transform: translateX(-180%) rotate(22deg);
  }
  100% {
    transform: translateX(520%) rotate(22deg);
  }
}

@keyframes chip-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes section-trace {
  0% {
    transform: translateX(-160px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(calc(100vw - 40px));
    opacity: 0;
  }
}

@keyframes terminal-breathe {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.04);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 250, 243, 0.08),
      0 0 24px rgba(120, 225, 210, 0.08);
  }
}

@keyframes rail-run {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(86vw - 220px));
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes text-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .hero h1 {
    max-width: none;
  }

  .studio-body,
  .identity-grid,
  .contact-card,
  .showcase-grid,
  .process-rail,
  .services-grid,
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-rail::before {
    display: none;
  }

  .process-rail::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    padding: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(19, 28, 39, 0.08);
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: 0 20px 42px rgba(19, 28, 39, 0.1);
    max-height: min(72vh, 520px);
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
  }

  .nav-mail {
    text-align: center;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 94px;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .site-shell {
    padding-top: 88px;
  }

  main,
  .site-footer,
  .topbar {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    left: 50%;
    margin: 0;
    padding: 12px 14px;
    gap: 16px;
    border-radius: 22px;
    transform: translateX(-50%);
  }

  .topbar.is-scrolled {
    transform: translateX(-50%);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav {
    top: calc(100% + 8px);
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .nav a {
    padding: 14px 12px;
    font-size: 0.96rem;
  }

  .nav a::after {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .section:not(.hero)::before,
  .marquee-section::before,
  .process-step span::after,
  .button::before {
    display: none;
  }

  body::before {
    opacity: 0.18;
  }

  .site-shell::before,
  .site-shell::after {
    opacity: 0.34;
  }

  .ambient {
    filter: blur(56px);
    opacity: 0.42;
  }

  .ambient-one {
    width: 180px;
    height: 180px;
    right: -70px;
  }

  .ambient-two {
    top: 760px;
    left: -90px;
    width: 190px;
    height: 190px;
  }

  .ambient-three {
    top: 1320px;
    right: -20px;
    width: 160px;
    height: 160px;
  }

  .hero,
  .studio-body,
  .identity-grid,
  .contact-card,
  .showcase-grid,
  .metrics-row,
  .services-grid,
  .standards-grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
    line-height: 0.98;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.98rem;
    max-width: none;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    transform: none;
  }

  .hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-right: 0;
    padding-right: 0;
  }

  .signal-chip {
    white-space: normal;
    animation: none;
  }

  .hero-visual {
    gap: 14px;
  }

  .studio-card {
    border-radius: 22px;
  }

  .showcase-section {
    padding-top: 54px;
  }

  .showcase-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .showcase-card-featured {
    grid-row: auto;
  }

  .media-frame {
    aspect-ratio: 4 / 3;
  }

  .media-frame-video::after {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .media-frame-video::before {
    right: 34px;
    bottom: 34px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }

  .media-badge {
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .showcase-copy {
    padding: 18px 18px 20px;
  }

  .showcase-copy h3 {
    font-size: 1.12rem;
  }

  .studio-header {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .studio-status {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 7px 10px;
  }

  .studio-body {
    gap: 14px;
    padding: 16px;
  }

  .orbit-panel {
    display: none;
  }

  .terminal-panel {
    padding: 16px;
  }

  .terminal-window {
    min-height: 58px;
    padding: 14px;
    font-size: 0.83rem;
  }

  .terminal-feed {
    gap: 10px;
  }

  .terminal-feed div {
    padding: 12px 14px;
  }

  .orbit-panel {
    min-height: 220px;
  }

  .orbit-shell {
    width: 216px;
    height: 216px;
  }

  .orbit-ring-one {
    width: 190px;
    height: 190px;
  }

  .orbit-ring-two {
    width: 132px;
    height: 132px;
  }

  .orbit-core {
    width: 90px;
    height: 90px;
  }

  .orbit-core span {
    font-size: 1rem;
  }

  .orbit-tag {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .metric-card,
  .identity-card,
  .service-card,
  .standard-card,
  .process-step,
  .contact-card {
    padding: 22px;
  }

  .metric-card {
    min-height: 120px;
  }

  .service-card,
  .standard-card,
  .process-step {
    min-height: auto;
  }

  .marquee-section {
    display: none;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-heading p {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .card-eyebrow,
  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .card-eyebrow::before,
  .eyebrow::before {
    width: 28px;
  }

  .identity-grid {
    gap: 14px;
  }

  .identity-card h3,
  .service-card h3,
  .standard-card h3,
  .process-step h3 {
    font-size: 1.14rem;
  }

  .identity-card p,
  .service-card p,
  .standard-card p,
  .process-step p,
  .contact-copy p,
  .faq-item p {
    font-size: 0.96rem;
  }

  .standard-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .metrics-row,
  .services-grid,
  .standards-grid,
  .process-rail {
    display: grid;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .metric-card,
  .service-card,
  .standard-card,
  .process-step {
    scroll-snap-align: unset;
  }

  .faq-list {
    gap: 12px;
    margin-top: 20px;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-item summary {
    padding: 18px 0;
    font-size: 1rem;
  }

  .faq-item summary::after {
    width: 24px;
    height: 24px;
  }

  .contact-card {
    gap: 18px;
    border-radius: 22px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-note {
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0 24px;
  }

  .ambient,
  .brand-mark,
  .hero h1 span,
  .studio-card::after,
  .terminal-window {
    animation: none;
  }

  .tilt-card {
    transform: none;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 85;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(19, 28, 39, 0.08);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(19, 28, 39, 0.14);
  }

  .mobile-cta-link,
  .mobile-cta-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 500;
  }

  .mobile-cta-link {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
  }

  .mobile-cta-button {
    background: linear-gradient(135deg, var(--accent), #0d645e);
    color: #f9fffd;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    translate: none !important;
  }

  .tilt-card,
  .button {
    transform: none !important;
  }

  .tilt-card::before,
  .site-shell::before,
  .site-shell::after {
    display: none;
  }
}
