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

@font-face {
  font-family: "owners";
  font-display: swap;
}

:root {
  --orange: #ff8d40;
  --orange-dark: #ff6700;
  --gradient: linear-gradient(135deg, #ff8d40 0%, #ff6700 100%);
  --dark: #2e2e2e;
  --deep: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --border: #3a3a3a;
  --font: "owners", system-ui, -apple-system, sans-serif;
}

html,
body {
  font-family: var(--font);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--deep);
}

html.wf-loading * {
  opacity: 0;
}

html.wf-active * {
  opacity: 1;
  transition: opacity 0.3s ease;
}

html.wf-inactive * {
  font-family: system-ui, -apple-system, sans-serif !important;
}

body.work-page {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.work-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
}

body.work-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(255, 141, 64, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(255, 103, 0, 0.035) 0%, transparent 70%),
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 50%, rgba(10, 10, 10, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

body.work-page > * {
  position: relative;
  z-index: 1;
}

body.work-page a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

body.work-page button {
  cursor: none;
  font-family: var(--font);
  border: none;
  outline: none;
}

body.work-page img {
  display: block;
  max-width: 100%;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gradient);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.18s ease;
}

.cursor-dot.hovering {
  width: 16px;
  height: 16px;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: opacity 0.18s ease;
}

.cursor-dot.is-visible,
.cursor-ring.is-visible {
  opacity: 0.3;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.footer-logo .peak {
  color: var(--white);
}

.footer-logo .line {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .media {
  color: var(--white);
}

.btn-primary {
  background: var(--gradient);
  color: var(--dark);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 24px rgba(255,103,0,0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 32px rgba(255,103,0,0.55);
  outline: none;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg,
.btn-primary:focus-visible svg {
  transform: translateX(3px);
}

.magnetic {
  transition: transform 0.3s ease;
  will-change: transform;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.work-main {
  padding: 0 24px;
}

.work-subnav {
  position: relative;
  top: auto;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  max-width: 880px;
  margin-top: 32px;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work-subnav::-webkit-scrollbar {
  display: none;
}

.work-subnav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.88);
  color: var(--gray);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.work-subnav a.active {
  opacity: 1;
  border-color: var(--orange);
  color: var(--white);
}

.work-subnav a:hover,
.work-subnav a:focus-visible {
  border-color: rgba(255, 141, 64, 0.45);
  color: var(--white);
  background: rgba(255, 141, 64, 0.08);
  opacity: 1;
  outline: none;
}

.work-hero {
  padding: 132px 0 44px;
}

.work-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.work-headline {
  font-family: var(--font);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.work-headline .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-hero-copy {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
}

.work-section-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.work-index-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, rgba(255,141,64,0.1), transparent 42%),
    linear-gradient(155deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 58%, rgba(0,0,0,0.04) 100%),
    var(--dark);
  box-shadow:
    0 28px 72px -28px rgba(0,0,0,0.58),
    0 0 0 1px rgba(255,255,255,0.02),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.35s ease, border-color 0.25s ease, box-shadow 0.35s ease;
}

.work-index-card:hover,
.work-index-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 141, 64, 0.28);
  box-shadow:
    0 34px 84px -26px rgba(0,0,0,0.64),
    0 0 0 1px rgba(255, 141, 64, 0.1),
    0 0 44px -22px rgba(255, 103, 0, 0.2);
  outline: none;
}

.work-index-card__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}

.work-index-card strong {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.work-index-card span:last-child {
  max-width: 24ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}

.work-showcase {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 0 32px;
}

.work-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.work-page .work-item {
  opacity: 1;
  transform: none;
}

.work-section {
  width: 100%;
}

.section-transition {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 820px;
  margin-bottom: 32px;
}

.outcome-section {
  margin-top: 64px;
}

.outcome-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

.outcome-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 24px;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.outcome-card p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.outcome-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 600;
}

.work-project {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.work-card--mobile-shot .work-card-viewport {
  aspect-ratio: 10 / 16;
}

.work-card--mobile-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
}

/* Work card component */
.work-card {
  display: block;
  color: inherit;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 141, 64, 0.25);
  box-shadow:
    0 42px 100px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 141, 64, 0.15),
    0 0 60px -20px rgba(255, 103, 0, 0.25);
  outline: none;
}

.work-card-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(180deg, #2a2a2a 0%, #232323 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.work-card-dots {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.work-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.25);
}

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

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

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

.work-card-address {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.45rem 0.875rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--white);
}

.work-card-address svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.6;
  color: var(--gray);
}

.work-card-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-card-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  transition: border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.work-card-visit svg {
  width: 10px;
  height: 10px;
}

.work-card:hover .work-card-visit,
.work-card:focus-visible .work-card-visit {
  border-color: var(--orange);
  color: var(--orange);
}

.work-card-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 420px;
  background: var(--deep);
  overflow: hidden;
}

.work-card-viewport img,
.work-card-viewport video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover .work-card-viewport img,
.work-card:focus-visible .work-card-viewport img,
.work-card:hover .work-card-viewport video,
.work-card:focus-visible .work-card-viewport video {
  transform: scale(1.015);
}

.project-info {
  width: 100%;
  max-width: 820px;
  color: var(--gray);
  line-height: 1.7;
}

.project-info--featured {
  margin-bottom: 28px;
}

.work-section-shell {
  position: relative;
}

.work-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.work-section-head .project-info--featured {
  margin-bottom: 0;
}

.featured-project-shell__actions {
  margin-top: 24px;
  flex-shrink: 0;
}

.work-section-head .featured-project-shell__actions {
  margin-top: 0;
}

.case-study-expanded--compact {
  margin-top: 28px;
}

.section--compact {
  padding: 0;
}

.section-headline--small {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.case-study-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 60%, rgba(0,0,0,0.04) 100%),
    var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study-toggle:hover,
.case-study-toggle:focus-visible {
  border-color: rgba(255, 141, 64, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24), 0 0 40px -18px rgba(255, 103, 0, 0.24);
  outline: none;
}

.case-study-expanded {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-study-expanded.is-open {
  max-height: 12000px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.branding-showcase .section {
  padding-bottom: 88px;
}

.branding-editorial {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.branding-compare,
.branding-mark {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  background: rgba(15,15,15,0.94);
  box-shadow:
    0 36px 90px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.02),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.branding-compare::before,
.branding-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.04) 0%, transparent 24%);
  pointer-events: none;
}

.branding-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.branding-compare__intro,
.branding-mark__copy {
  position: relative;
  z-index: 1;
}

.branding-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.branding-heading--shaq {
  font-family: "Bebas Neue", var(--font);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #84cc16;
}

.branding-heading--technical-touch {
  font-family: "Teko", var(--font);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #1E3A1E;
  text-shadow: 0 0 24px rgba(126,255,74,0.08);
}

.branding-heading--novax {
  font-family: "Special Elite", var(--font);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #4A0404;
}

.branding-copy {
  max-width: 38ch;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}

.branding-compare__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.branding-artboard {
  position: relative;
}

.branding-artboard__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.branding-artboard__surface {
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #101010;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 28px 60px -28px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
}

.branding-artboard__surface::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
}

.branding-artboard__surface--solo {
  min-height: 320px;
}

.branding-artboard__surface--technical-touch {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  display: block;
  background: #0b0f0b;
  border-color: rgba(126,255,74,0.18);
}

.branding-artboard__surface--technical-touch::before {
  border-color: rgba(126,255,74,0.14);
}

.branding-artboard__surface--light {
  background: #ffffff;
  border-color: rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 28px 60px -28px rgba(0,0,0,0.55);
}

.branding-artboard__surface--light::before {
  border-color: rgba(26,26,26,0.08);
}

.branding-artboard__surface--before {
  background: #1b120c;
}

.branding-artboard__surface--image {
  overflow: hidden;
}

.branding-artboard__surface--novax::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.09'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: screen;
  opacity: 0.28;
  pointer-events: none;
}

.branding-artboard__surface--novax {
  background: #050505;
  border-color: rgba(74,4,4,0.2);
}

.branding-artboard__surface--novax::before {
  border-color: rgba(255,255,255,0.12);
}

.branding-artboard__image {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.branding-artboard__image--before {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.branding-artboard__image--after {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  padding: 8px;
}

.branding-artboard__image--contained {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.branding-artboard__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(20,20,20,0.64);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.branding-marks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.branding-mark {
  display: grid;
  gap: 24px;
}

.branding-mark--technical-touch .branding-artboard,
.branding-mark--novax .branding-artboard {
  width: min(100%, 420px);
}

.branding-mark--technical-touch .branding-mark__copy,
.branding-mark--novax .branding-mark__copy,
.branding-mark--technical-touch .branding-artboard__label,
.branding-mark--novax .branding-artboard__label {
  display: none;
}

.branding-mark--offset {
  transform: translateY(26px);
}

.branding-mark--offset .branding-artboard__surface {
  min-height: 300px;
}

.branding-artboard__label--dark {
  color: var(--dark);
  border-color: rgba(26,26,26,0.12);
  background: rgba(255,255,255,0.9);
}

.branding-artboard__label--shaq {
  font-family: "Bebas Neue", var(--font);
  color: #84cc16;
  letter-spacing: 0.16em;
}

.branding-artboard__label--technical-touch {
  font-family: "Teko", var(--font);
  font-weight: 600;
  text-transform: none;
  color: #1E3A1E;
  letter-spacing: 0.05em;
  border-color: rgba(126,255,74,0.18);
  background: rgba(245,245,240,0.88);
}

.branding-artboard__label--novax {
  font-family: "Special Elite", var(--font);
  font-weight: 400;
  color: #4A0404;
  letter-spacing: 0.04em;
  border-color: rgba(74,4,4,0.18);
  background: rgba(232,226,214,0.9);
}

.branding-flip-card {
  cursor: none;
  perspective: 1000px;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 320px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.branding-flip-card:hover,
.branding-flip-card:focus-visible {
  border-color: rgba(126,255,74,0.28);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 34px 70px -28px rgba(0,0,0,0.78),
    0 0 60px -30px rgba(126,255,74,0.18);
  outline: none;
}

.branding-flip-card::before {
  display: none;
}

.branding-flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 28px;
  background: transparent;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.branding-flip-card__face--front {
  opacity: 1;
  transform: rotateY(0deg);
}

.branding-flip-card__face--back {
  opacity: 0;
  transform: rotateY(180deg);
}

.branding-flip-card.is-flipped .branding-flip-card__face--front {
  opacity: 0;
  transform: rotateY(-180deg);
}

.branding-flip-card.is-flipped .branding-flip-card__face--back {
  opacity: 1;
  transform: rotateY(0deg);
}

.project-info .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-info .meta strong {
  color: var(--white);
  font-weight: 600;
}

.project-info .meta .divider {
  color: #444;
}

.project-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.project-info p a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.project-info p a:hover,
.project-info p a:focus-visible {
  color: var(--orange-dark);
  text-decoration-color: var(--orange-dark);
  outline: none;
}

/* Dashboard project */
.hero {
  position: relative;
  min-height: clamp(400px, 62vh, 580px);
  display: flex;
  align-items: flex-start;
  padding: 72px 0 24px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px 20px 0 0;
  box-shadow:
    0 40px 120px -40px rgba(0,0,0,0.8),
    0 0 80px -40px rgba(255,103,0,0.15);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.48) 40%, rgba(10,10,10,0.16) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section + .section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section--dark {
  background: var(--dark);
}

.section--system {
  background: #0f0f0f;
}

.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 0;
}

.glance-bar {
  background: #111;
  border: 1px solid rgba(255,255,255,0.04);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  box-shadow:
    0 40px 120px -40px rgba(0,0,0,0.8),
    0 0 80px -40px rgba(255,103,0,0.15);
  padding: 0;
}

.glance-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.glance-tile {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.glance-tile:last-child {
  border-right: none;
}

.glance-tile__val {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.glance-tile__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.text-section {
  width: 100%;
  max-width: 820px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}

.section-body p + p {
  margin-top: 16px;
}

.section-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dashboard-intro {
  margin-bottom: 24px;
}

.dashboard-intro-copy {
  margin-top: 16px;
  max-width: 820px;
}

.dashboard-intro-body {
  color: rgba(255,255,255,0.65);
}

.walkthrough-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.walkthrough-item:last-child {
  border-bottom: none;
}

.walkthrough-item--flip {
  direction: rtl;
}

.walkthrough-item--flip > * {
  direction: ltr;
}

.walkthrough-item__num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  margin-bottom: 16px;
}

.walkthrough-item__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.walkthrough-item__caption {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 48px;
}

.tech-card {
  background: var(--dark);
  padding: 32px;
}

.tech-card__icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
  background: rgba(255,141,64,0.1);
  border: 1px solid rgba(255,141,64,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tech-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.work-cta {
  max-width: 880px;
  margin: 72px auto 96px;
  padding: 64px 32px;
  text-align: center;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.work-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 14px;
  background: var(--gradient);
  -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;
  opacity: 0.3;
  pointer-events: none;
}

.work-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(255, 103, 0, 0.25), transparent 70%);
  transform: translateX(-50%);
  filter: blur(20px);
  pointer-events: none;
}

.work-cta > * {
  position: relative;
}

.work-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.work-cta p {
  color: var(--gray);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0 auto 2rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-copy,
.footer-email {
  font-family: var(--font);
  font-size: 13px;
  color: var(--gray);
}

.footer-email {
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-link {
  color: var(--gray);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--orange);
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 900px) {
  .work-section-index {
    grid-template-columns: 1fr;
  }

  .branding-compare {
    grid-template-columns: 1fr;
  }

  .branding-marks {
    grid-template-columns: 1fr;
  }

  .branding-mark--offset {
    transform: none;
  }

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

  .glance-tile {
    border-bottom: 1px solid var(--border);
  }

  .glance-tile:nth-child(2n) {
    border-right: none;
  }

  .work-main {
    padding: 0 16px;
  }

  .work-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-subnav {
    width: calc(100% - 32px);
  }

  .site-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .work-hero {
    padding: 96px 0 28px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .work-headline {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -1px;
  }

  .work-hero-copy {
    font-size: 16px;
  }

  .work-section-index {
    gap: 12px;
    margin-top: 28px;
  }

  .work-index-card {
    padding: 18px;
  }

  .work-card-viewport {
    aspect-ratio: 4 / 3;
  }

  .work-card-chrome {
    padding: 0.7rem 0.75rem;
    gap: 0.5rem;
  }

  .work-card-address {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }

  .work-card-visit {
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
  }

  .project-info .meta {
    gap: 0.4rem 0.8rem;
  }

  .branding-compare,
  .branding-mark {
    padding: 22px;
    border-radius: 18px;
  }

  .branding-compare__grid {
    grid-template-columns: 1fr;
  }

  .branding-artboard__surface {
    min-height: 220px;
    padding: 20px;
  }

  .branding-artboard__surface--solo {
    min-height: 240px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 24px;
  }

  .walkthrough-item__num {
    display: none;
  }

  .work-cta {
    padding: 48px 20px;
    margin: 56px auto 72px;
  }
}

@media (pointer: coarse) {
  body.work-page {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body.work-page a,
  body.work-page button {
    cursor: pointer;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.wf-active * {
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .work-card,
  .work-card-viewport img,
  .work-card-viewport video,
  .cursor-dot,
  .cursor-ring,
  .btn-primary,
  .btn-primary svg,
  .footer-social-link,
  .work-subnav a,
  .work-index-card {
    transition: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 64px 0 18px;
    border-radius: 18px 18px 0 0;
  }

  .hero__headline {
    font-size: clamp(2rem, 9vw, 2.9rem);
    margin-bottom: 12px;
  }

  .hero__sub {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .walkthrough-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .walkthrough-item--flip {
    direction: ltr;
  }

  .glance-tile {
    padding: 22px 20px;
  }

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