:root {
  --bg: #f4f5f0;
  --paper: #fbfbf7;
  --ink: #11110f;
  --muted: #686b62;
  --line: rgba(17, 17, 15, 0.12);
  --line-strong: rgba(17, 17, 15, 0.24);
  --accent: #ff4f2e;
  --accent-soft: #ffe1d8;
  --lime: #d7ff52;
  --steel: #dfe4de;
  --content: min(1340px, calc(100% - 48px));
  --shadow: 0 28px 80px -42px rgba(17, 17, 15, 0.5);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 96px 96px;
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 42vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(244, 245, 240, 0.96));
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

button,
input {
  font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 13.8ch;
  font-size: clamp(4rem, 6.8vw, 7.2rem);
  font-weight: 800;
}

h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 760;
}

h3 {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 720;
}

.site-header,
.hero,
.ticker,
.section-grid,
.proof-board,
.static-portfolio-section,
.calculator-section,
.offers-section,
.consulting-section,
.process-section,
.contact-section,
.portfolio-hero,
.portfolio-tabs,
.portfolio-panel {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 8px -10px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled::after {
  background: rgba(251, 251, 247, 0.78);
  border-color: var(--line);
  box-shadow: 0 18px 50px -35px rgba(0, 0, 0, 0.5);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong,
.mono-label,
.eyebrow,
.ad-frame span,
.range-labels,
.math-panel,
.spend-value {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.brand strong {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.header-cta {
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: rgba(251, 251, 247, 0.64);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.985);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 22px 42px -30px rgba(17, 17, 15, 0.7);
}

.button-light {
  border-color: var(--line-strong);
  background: rgba(251, 251, 247, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100dvh - 86px);
  padding: 46px 0 82px;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 680px;
  color: #4f524b;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.founder-signal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 520px;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 251, 247, 0.66);
  box-shadow: 0 20px 44px -38px rgba(17, 17, 15, 0.5);
}

.founder-signal img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: 50% 32%;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 50%;
  filter: saturate(0.9) contrast(1.05);
}

.founder-signal div {
  display: grid;
  gap: 2px;
}

.founder-signal strong {
  font-size: 0.98rem;
}

.founder-signal span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  display: grid;
  gap: 8px;
  padding: 18px 16px 18px 0;
}

.hero-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-stats strong {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-system {
  position: relative;
  display: grid;
  overflow: clip;
  min-height: 640px;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: min(86vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-ring::before {
  top: 12%;
  left: 12%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px dashed rgba(17, 17, 15, 0.16);
}

.orbit-ring::after {
  top: -6px;
  left: 48%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(255, 79, 46, 0.14);
}

.creative-stack {
  position: relative;
  width: min(100%, 540px);
  min-height: 560px;
}

.ad-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.frame-main {
  inset: 34px 92px 52px 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
  animation: floatMain 6s var(--ease) infinite;
}

.frame-side {
  right: -8px;
  top: -2px;
  width: min(380px, 54vw);
  padding: 18px;
  transform: rotate(5deg);
  animation: floatSide 5.5s var(--ease) infinite;
}

.frame-dark {
  right: 22px;
  bottom: 0;
  width: 260px;
  padding: 18px;
  background: #11110f;
  color: var(--paper);
  transform: rotate(-4deg);
  animation: floatDark 6.5s var(--ease) infinite;
}

.ad-topline,
.frame-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ad-frame span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.frame-dark span {
  color: rgba(251, 251, 247, 0.55);
}

.frame-caption {
  align-items: flex-end;
}

.frame-caption strong {
  font-size: 1.2rem;
}

.frame-caption span {
  max-width: 190px;
  text-align: right;
  line-height: 1.35;
}

.product-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  margin: 18px 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(215, 255, 82, 0.36), transparent 28%),
    linear-gradient(135deg, #f6f0e9, #dde8e3 54%, #f9f9f2);
  border: 1px solid var(--line);
}

.video-example {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.video-stage {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.02), rgba(17, 17, 15, 0.72)),
    #dfe4de;
}

.video-stage img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.03);
  animation: videoDrift 7s var(--ease) infinite;
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.74)),
    linear-gradient(90deg, rgba(255, 79, 46, 0.32), transparent 44%);
}

.video-play {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 251, 247, 0.9);
  box-shadow: 0 22px 44px -24px rgba(0, 0, 0, 0.65);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.video-copy {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--paper);
}

.video-copy span {
  color: rgba(251, 251, 247, 0.72);
}

.video-copy strong {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.video-timeline {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.9fr;
  gap: 7px;
}

.video-timeline i {
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.16);
}

.video-timeline i:first-child {
  background: var(--accent);
}

.product-can {
  position: relative;
  z-index: 1;
  width: 102px;
  height: 232px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: 48px 48px 24px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent 18% 78%, rgba(0, 0, 0, 0.14)),
    linear-gradient(180deg, #12120f 0 22%, #ff4f2e 22% 54%, #f8f7ef 54%);
  box-shadow: 0 42px 56px -36px rgba(0, 0, 0, 0.72);
  animation: productTilt 4.4s var(--ease) infinite;
}

.product-can::before {
  content: "DTC";
  position: absolute;
  top: 89px;
  left: 0;
  width: 100%;
  color: var(--paper);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
}

.product-can::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 14px;
  width: 18px;
  height: 205px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.product-shadow {
  position: absolute;
  bottom: 78px;
  width: 170px;
  height: 34px;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.22);
  filter: blur(12px);
}

.static-card-head {
  display: grid;
  gap: 4px;
}

.static-card-head strong {
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.04;
}

.static-sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 18px;
}

.static-sample {
  position: relative;
  display: grid;
  min-height: 96px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(17, 17, 15, 0.05), rgba(255, 79, 46, 0.08)),
    #f8f8f4;
  box-shadow: 0 16px 28px -25px rgba(17, 17, 15, 0.7);
  transform: rotate(-1.5deg);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.static-sample img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  padding: 3px;
}

.static-sample:nth-child(2) {
  transform: translateY(8px) rotate(2deg);
}

.static-sample:nth-child(3) {
  transform: translateY(-4px) rotate(1.2deg);
}

.static-sample:hover {
  transform: translateY(-3px) rotate(0deg) scale(1.02);
  box-shadow: 0 24px 38px -24px rgba(17, 17, 15, 0.72);
}

.static-sample-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 251, 247, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.static-sample-more img {
  filter: blur(5px) saturate(0.9);
  transform: scale(1.08);
}

.static-sample-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 251, 247, 0.22);
}

.static-sample-more span {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  color: #050505;
  font-family: "Geist", system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: center;
}

.pulse-line {
  position: relative;
  height: 70px;
  margin-top: 18px;
  border-top: 1px solid rgba(251, 251, 247, 0.16);
  background: linear-gradient(90deg, transparent, rgba(215, 255, 82, 0.24), transparent);
}

.pulse-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 33px;
  width: 46%;
  height: 2px;
  background: var(--lime);
  animation: scanLine 2.4s var(--ease) infinite;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.ticker span {
  color: #3c3e38;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  white-space: nowrap;
}

.section-grid,
.calculator-section,
.offers-section,
.consulting-section,
.process-section,
.contact-section {
  padding: clamp(82px, 11vw, 150px) 0 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: end;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.section-copy.center {
  justify-items: center;
  text-align: center;
}

.text-columns {
  display: grid;
  gap: 24px;
  color: #50534c;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.62;
}

.proof-board {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr;
  gap: 16px;
  padding-top: 70px;
}

.proof-panel {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.72);
  box-shadow: var(--shadow);
}

.proof-panel.wide {
  grid-row: span 2;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 79, 46, 0.18), transparent 38%),
    rgba(251, 251, 247, 0.78);
}

.proof-panel.dark {
  background: #11110f;
  color: var(--paper);
}

.proof-panel p {
  max-width: 45ch;
  color: var(--muted);
  line-height: 1.6;
}

.proof-panel.dark p {
  color: rgba(251, 251, 247, 0.68);
}

.static-portfolio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  padding: clamp(82px, 11vw, 150px) 0 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(260px, 34vw);
  gap: 14px;
}

.portfolio-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-content: space-between;
  min-height: 270px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, 0.04), rgba(17, 17, 15, 0.5)),
    var(--img),
    linear-gradient(135deg, #fff7e6, #11110f);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251, 251, 247, 0.06), rgba(17, 17, 15, 0.34));
}

.portfolio-card span,
.portfolio-card strong {
  width: fit-content;
  border-radius: 999px;
  background: rgba(251, 251, 247, 0.82);
  color: var(--ink);
  box-shadow: 0 20px 46px -34px rgba(17, 17, 15, 0.8);
}

.portfolio-card span {
  padding: 7px 11px;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.portfolio-card strong {
  max-width: 17ch;
  padding: 10px 13px;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  line-height: 1.05;
}

.portfolio-wide {
  grid-column: span 2;
}

.portfolio-tall {
  min-height: 420px;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: clamp(72px, 10vw, 132px) 0 0;
}

.portfolio-hero-copy {
  display: grid;
  gap: 20px;
}

.portfolio-hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 8.2rem);
}

.portfolio-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #4f524b;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.58;
}

.portfolio-founder {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.76);
  box-shadow: var(--shadow);
}

.portfolio-founder img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(1.08);
}

.portfolio-founder div {
  display: grid;
  gap: 5px;
}

.portfolio-founder span {
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-founder strong {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.portfolio-founder p {
  color: var(--muted);
  line-height: 1.5;
}

.portfolio-tabs {
  position: sticky;
  top: 92px;
  z-index: 9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 34px 0 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.portfolio-tab {
  min-height: clamp(74px, 9vw, 118px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.72);
  color: var(--ink);
  font-family: "Geist Mono", monospace;
  font-size: clamp(1.35rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.portfolio-tab:hover {
  transform: translateY(-2px);
}

.portfolio-tab.is-active {
  background: var(--ink);
  color: var(--paper);
}

.portfolio-panel {
  padding: 22px 0 80px;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-work {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 17, 15, 0.05), rgba(255, 79, 46, 0.08)),
    #f8f8f4;
  box-shadow: var(--shadow);
}

.portfolio-work-wide {
  aspect-ratio: 16 / 9;
}

.portfolio-work-tall {
  aspect-ratio: 4 / 5;
}

.portfolio-work img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

.portfolio-work div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.portfolio-work span,
.portfolio-work strong {
  border-radius: 999px;
  background: rgba(251, 251, 247, 0.86);
  color: var(--ink);
  box-shadow: 0 20px 42px -32px rgba(17, 17, 15, 0.8);
}

.portfolio-work span {
  padding: 8px 11px;
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.portfolio-work strong {
  max-width: 19ch;
  padding: 10px 14px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.05;
  text-align: right;
}

.video-portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 18px;
}

.video-portfolio-card,
.video-portfolio-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.76);
  box-shadow: var(--shadow);
}

.video-portfolio-card {
  overflow: hidden;
}

.video-stage-large {
  min-height: 720px;
}

.video-stage-large img {
  min-height: 720px;
}

.video-portfolio-meta {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.video-portfolio-meta span {
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-portfolio-meta strong {
  max-width: 42ch;
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.video-portfolio-note {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(215, 255, 82, 0.22), transparent 42%),
    rgba(251, 251, 247, 0.82);
}

.video-portfolio-note h2 {
  max-width: 9ch;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

.video-portfolio-note p {
  color: var(--muted);
  line-height: 1.58;
}

.mono-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ops-list {
  display: grid;
  gap: 10px;
}

.ops-list span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #3f423b;
  font-weight: 700;
  animation: shimmerText 3.2s var(--ease) infinite;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.calculator-shell {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(20px, 3.5vw, 34px);
  box-shadow: var(--shadow);
}

.calculator-control {
  display: grid;
  gap: 14px;
}

.calculator-control label {
  color: #353832;
  font-weight: 720;
}

.spend-value {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
}

.need-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 22px;
  align-items: end;
  padding: clamp(20px, 4vw, 34px);
  background: #11110f;
  color: var(--paper);
  border-radius: var(--radius);
}

.need-card span,
.need-card p {
  color: rgba(251, 251, 247, 0.68);
}

.need-card strong {
  grid-row: span 2;
  font-family: "Geist Mono", monospace;
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: 0.78;
}

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

.comparison-grid article {
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f3f4ef;
}

.comparison-grid .kozlo-card {
  border-color: rgba(255, 79, 46, 0.35);
  background: var(--accent-soft);
}

.comparison-grid span,
.comparison-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-grid strong {
  font-family: "Geist Mono", monospace;
  font-size: clamp(1.45rem, 2.5vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.savings-row strong {
  font-size: clamp(1.35rem, 2.5vw, 2.6rem);
}

.math-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f6f1;
}

.math-panel summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.math-panel dl {
  display: grid;
  gap: 0;
  padding: 0 18px 18px;
}

.math-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.math-panel dt {
  color: var(--muted);
}

.math-panel dd {
  text-align: right;
  font-weight: 800;
}

.calculator-note {
  color: #4f524b;
  line-height: 1.6;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  margin-top: 42px;
}

.pricing-block {
  display: grid;
  gap: 32px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 251, 247, 0.82);
  box-shadow: var(--shadow);
}

.video-block {
  background:
    linear-gradient(145deg, #11110f 0 48%, #20231d),
    #11110f;
  color: var(--paper);
}

.pricing-head {
  display: grid;
  gap: 12px;
}

.pricing-head p {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.55;
}

.video-block .pricing-head p {
  color: rgba(251, 251, 247, 0.66);
}

.price-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

.video-block .price-list li {
  border-color: rgba(251, 251, 247, 0.15);
}

.price-list strong {
  font-family: "Geist Mono", monospace;
}

.consulting-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 88px);
  padding: clamp(26px, 5vw, 62px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 255, 82, 0.28), transparent 36%),
    var(--paper);
  box-shadow: var(--shadow);
}

.consulting-copy {
  display: grid;
  gap: 24px;
  align-content: end;
}

.consulting-copy p {
  color: #4f524b;
  font-size: 1.08rem;
  line-height: 1.62;
}

.consulting-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.consulting-price span {
  color: var(--muted);
  font-weight: 700;
}

.consulting-price strong {
  font-family: "Geist Mono", monospace;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.84;
}

.automation-strip {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.automation-strip span {
  color: var(--muted);
}

.automation-strip a {
  color: var(--accent);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  display: grid;
  gap: 20px;
  min-height: 290px;
  align-content: space-between;
  padding: 24px;
  background: var(--bg);
}

.process-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: "Geist Mono", monospace;
  font-weight: 800;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  padding-bottom: 48px;
}

.contact-panel {
  display: grid;
  justify-items: start;
  gap: 24px;
  min-height: 520px;
  align-content: center;
  padding: clamp(28px, 6vw, 76px);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(17, 17, 15, 0.86), rgba(17, 17, 15, 0.68)),
    linear-gradient(135deg, var(--accent), var(--lime));
  color: var(--paper);
}

.contact-panel .eyebrow {
  color: var(--lime);
}

.contact-panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(251, 251, 247, 0.72);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(1deg);
  }
}

@keyframes floatSide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(5deg);
  }
  50% {
    transform: translate3d(-10px, 12px, 0) rotate(2deg);
  }
}

@keyframes floatDark {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(12px, -10px, 0) rotate(-1deg);
  }
}

@keyframes productTilt {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}

@keyframes videoDrift {
  0%,
  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(2%, -1%, 0);
  }
}

@keyframes scanLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes shimmerText {
  0%,
  100% {
    color: #3f423b;
  }
  50% {
    color: #11110f;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 32px, 760px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .section-grid,
  .static-portfolio-section,
  .calculator-section,
  .consulting-card,
  .portfolio-hero,
  .video-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-system {
    min-height: 560px;
  }

  .proof-board,
  .portfolio-grid,
  .portfolio-page-grid,
  .pricing-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-wide {
    grid-column: span 1;
  }

  .proof-panel.wide {
    min-height: 390px;
  }

  .process-grid article {
    min-height: 220px;
  }

  .automation-strip {
    grid-template-columns: 1fr;
  }

  .portfolio-tabs {
    top: 76px;
  }

  .portfolio-work {
    min-height: 420px;
  }

  .video-stage-large,
  .video-stage-large img {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(100% - 24px, 520px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(3.05rem, 14.4vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero {
    gap: 16px;
    padding-bottom: 54px;
  }

  .founder-signal {
    border-radius: 24px;
  }

  .founder-signal img {
    width: 48px;
    height: 48px;
  }

  .founder-signal span {
    font-size: 0.78rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-system {
    min-height: 510px;
    overflow: hidden;
  }

  .creative-stack {
    width: 100%;
    min-height: 500px;
  }

  .frame-main {
    inset: 50px 52px 72px 0;
  }

  .video-stage,
  .video-stage img {
    min-height: 270px;
  }

  .video-copy strong {
    font-size: 2rem;
  }

  .frame-side {
    right: -4px;
    width: 224px;
    padding: 12px;
  }

  .static-sample-grid {
    gap: 7px;
    margin-top: 12px;
  }

  .static-sample {
    min-height: 72px;
  }

  .frame-dark {
    right: 0;
    width: 210px;
  }

  .product-shot {
    min-height: 270px;
  }

  .comparison-grid,
  .need-card {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-auto-rows: minmax(300px, 86vw);
  }

  .portfolio-hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .portfolio-tabs {
    top: 68px;
    gap: 8px;
    padding-top: 22px;
  }

  .portfolio-tab {
    min-height: 70px;
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .portfolio-work {
    min-height: 310px;
  }

  .portfolio-work div {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .portfolio-work strong {
    max-width: 15ch;
  }

  .video-stage-large,
  .video-stage-large img {
    min-height: 520px;
  }

  .video-portfolio-note {
    min-height: 340px;
  }

  .savings-row,
  .consulting-price,
  .price-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel {
    min-height: 440px;
  }
}
