:root {
  --bg: #050505;
  --panel: #0b0b0c;
  --panel2: #121214;
  --text: #f7f7f7;
  --muted: #a6a6aa;
  --line: #29292d;
  --blue: #ef233c;
  --orange: #ef233c;
  --red: #ef233c;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 20;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.site-header {
  height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: sticky;
  top: 0;
  background: rgba(5, 6, 9, 0.86);
  backdrop-filter: blur(18px);
  z-index: 15;
}
.brand {
  background: #fff;
  border-radius: 12px;
  padding: 5px 10px;
}
.brand img {
  width: 135px;
  height: 44px;
  object-fit: cover;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 14px;
}
.site-header nav a:hover,
.text-link:hover {
  color: var(--orange);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white !important;
  border-radius: 999px;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(239, 35, 60, 0.2);
}
.pill.small {
  padding: 11px 17px;
}
.pill.light {
  background: #fff;
  color: #06070a !important;
  box-shadow: none;
}
.hero {
  min-height: calc(100vh - 86px);
  padding: 7vw 6vw;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 5vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(239, 35, 60, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #050505, #090909);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.19em;
  font-weight: 800;
  color: #ff5a6d;
}
.hero h1,
.statement h2,
.section-head h2,
.video-copy h2,
.founder-story h2,
.contact h2 {
  font-size: clamp(48px, 6.3vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 22px 0;
}
.hero h1 em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--orange);
}
.hero-copy > p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  color: #c3c8d2;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 32px 0 44px;
}
.text-link {
  color: #fff;
  font-weight: 800;
  text-underline-offset: 5px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.trust-row b {
  font-size: 27px;
}
.trust-row span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  min-height: 650px;
}
.portrait-frame {
  height: 650px;
  border-radius: 240px 240px 26px 26px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(239, 35, 60, 0.09);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: rgba(7, 9, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 18px;
  border-radius: 15px;
  font-weight: 800;
}
.portrait-label small {
  color: #9ba4b4;
}
.floating-card {
  position: absolute;
  background: rgba(13, 17, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  font-size: 13px;
}
.floating-card strong {
  font-size: 15px;
}
.floating-card.top {
  right: -30px;
  top: 60px;
}
.floating-card.bottom {
  left: -55px;
  bottom: 110px;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 7px;
}
.dot.blue {
  background: var(--blue);
}
.dot.orange {
  background: var(--orange);
}
.founder-banner {
  padding: 0 5vw 7vw;
}
.founder-banner img {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}
.statement {
  background: linear-gradient(145deg, #080808, #111113);
  color: white;
  padding: 9vw 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement h2 {
  max-width: 1050px;
}
.statement h2 span {
  color: var(--blue);
}
.statement > p {
  font-size: 21px;
  line-height: 1.65;
  max-width: 980px;
  color: #b8bfca;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #303034;
  margin-top: 65px;
}
.capabilities article {
  background: #0b0b0d;
  padding: 32px;
}
.capabilities article:nth-child(2n) {
  border-top: 2px solid var(--orange);
}
.capabilities article:nth-child(2n + 1) {
  border-top: 2px solid var(--blue);
}
.capabilities b {
  font-size: 19px;
}
.capabilities span {
  display: block;
  color: #9da5b4;
  margin-top: 10px;
  line-height: 1.6;
}
.work-section,
.websites {
  padding: 9vw 5vw;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}
.section-head h2 {
  font-size: clamp(42px, 5vw, 78px);
  max-width: 900px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  border: 1px solid #38383d;
  color: #dfe4ec;
  background: transparent;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
  cursor: pointer;
}
.filters button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.gallery {
  columns: 4 260px;
  column-gap: 18px;
}
.work-card {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0e14;
  padding: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  position: relative;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
}
.work-card img {
  display: block;
  width: 100%;
  transition:
    0.45s transform,
    0.45s filter;
}
.work-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.07);
}
.work-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #ffffffe6;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 8px 11px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}
.video-section {
  padding: 9vw 6vw;
  background: linear-gradient(135deg, #080808, #121214);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5vw;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video-copy h2 {
  font-size: clamp(42px, 5vw, 75px);
}
.video-copy p,
.founder-story p {
  font-size: 18px;
  line-height: 1.75;
  color: #aeb6c4;
}
.video-copy ul {
  padding-left: 18px;
  line-height: 2;
  color: #d6dbe4;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.video-shell {
  position: relative;
  background: #050609;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid #2d2d31;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.video-shell video {
  width: 100%;
  height: 560px;
  object-fit: contain;
  border-radius: 16px;
  background: black;
  display: block;
}
.video-badge {
  position: absolute;
  right: 18px;
  bottom: 22px;
  background: rgba(6, 8, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.video-badge span {
  display: block;
  font-size: 11px;
  color: #96a0ae;
}
.founder-story {
  padding: 9vw 7vw;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: center;
}
.founder-story img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 220px 220px 24px 24px;
  background: #000;
  border: 1px solid var(--line);
}
.founder-story h2 {
  font-size: clamp(42px, 5vw, 76px);
}
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
}
.proof-chips span {
  border: 1px solid #333336;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  color: #d7dce4;
  background: #101012;
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.site-grid article {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #0a0a0b, #151517);
}
.site-grid article:nth-child(2n) {
  box-shadow: inset 0 3px 0 var(--orange);
}
.site-grid article:nth-child(2n + 1) {
  box-shadow: inset 0 3px 0 var(--blue);
}
.site-grid article span {
  font-size: 12px;
  color: #8f98a7;
  letter-spacing: 0.1em;
}
.site-grid h3 {
  font-size: 35px;
  margin: 26px 0 8px;
}
.site-grid p {
  color: #aab2bf;
  line-height: 1.7;
}
.site-grid .tags {
  font-size: 13px;
  margin: auto 0 28px;
  color: #bdc4ce;
}
.site-grid a {
  color: white;
  font-weight: 800;
}
.contact {
  margin: 0 5vw 5vw;
  background: linear-gradient(135deg, #090909, #171719);
  color: white;
  border: 1px solid #303034;
  border-radius: 30px;
  padding: 55px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 45px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.contact img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  background: white;
  border-radius: 12px;
}
.contact h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  margin: 15px 0;
}
.contact p {
  color: #aeb6c4;
  line-height: 1.7;
}
footer {
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca4b1;
}
footer a {
  color: inherit;
}
dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1000px);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.92);
}
dialog img {
  display: block;
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
}
.close {
  position: fixed;
  top: 18px;
  right: 25px;
  border: 0;
  background: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .video-section {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-shell video {
    height: 480px;
  }
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .hero,
  .founder-story {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-visual {
    min-height: 540px;
  }
  .portrait-frame {
    height: 540px;
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .site-grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact img {
    width: 140px;
  }
  footer {
    gap: 12px;
    flex-direction: column;
  }
  .floating-card.top {
    right: 0;
  }
  .floating-card.bottom {
    left: 0;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 0 18px;
  }
  .site-header .pill.small {
    display: none;
  }
  .hero,
  .statement,
  .work-section,
  .video-section,
  .founder-story,
  .websites {
    padding: 72px 20px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-visual {
    min-height: 470px;
  }
  .portrait-frame {
    height: 470px;
  }
  .floating-card {
    display: none;
  }
  .founder-banner {
    padding: 0 20px 72px;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .gallery {
    columns: 2 140px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-shell video {
    height: 520px;
  }
  .contact {
    margin: 0 14px 14px;
    padding: 35px 24px;
  }
  .site-grid article {
    padding: 25px;
  }
  footer {
    padding: 25px 20px;
  }
}

/* V4 monochrome + red visual system */
::selection {
  background: var(--red);
  color: #fff;
}
.brand {
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.site-header nav a {
  color: #d7d7da;
}
.site-header nav a:hover {
  color: #fff;
}
.site-header nav a:hover:after {
  content: "";
  display: block;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  width: 5px;
  height: 150px;
  background: var(--red);
}
.hero {
  position: relative;
}
.hero h1 em {
  color: var(--red);
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(239, 35, 60, 0.28);
}
.pill {
  transition: 0.25s ease;
}
.trust-row b {
  color: #fff;
}
.trust-row div:first-child b,
.trust-row div:last-child b {
  color: var(--red);
}
.portrait-frame {
  filter: saturate(0.25) contrast(1.04);
}
.portrait-frame:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--red);
}
.floating-card {
  backdrop-filter: blur(16px);
}
.dot.blue,
.dot.orange {
  background: var(--red);
}
.statement h2 span {
  color: var(--red);
}
.capabilities article:nth-child(n) {
  border-top: 1px solid #2f2f33;
}
.capabilities article:nth-child(2),
.capabilities article:nth-child(5) {
  border-top: 3px solid var(--red);
}
.filters button.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.filters button:hover {
  border-color: var(--red);
  color: #fff;
}
.work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--red);
  transition: 0.25s;
}
.work-card:hover:after {
  border-width: 2px;
}
.work-card span {
  border-left: 3px solid var(--red);
}
.video-badge {
  border-left: 3px solid var(--red);
}
.proof-chips span:hover {
  border-color: var(--red);
  color: #fff;
}
.site-grid article:nth-child(n) {
  box-shadow: inset 0 1px 0 #313136;
}
.site-grid article:nth-child(2),
.site-grid article:nth-child(3) {
  box-shadow: inset 0 3px 0 var(--red);
}
.site-grid a,
.text-link {
  color: #fff;
}
.site-grid a:hover,
.text-link:hover {
  color: var(--red);
}
.contact {
  position: relative;
  overflow: hidden;
}
.contact:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--red);
}
.contact .eyebrow {
  color: #ff6475;
}
footer {
  border-top: 1px solid #26262a;
}

/* V5 typography, white text and transparent white navbar logo */
body {
  font-family: "DM Sans", Arial, sans-serif;
  color: #fff;
}
h1,
h2,
h3,
.brand,
.pill,
.site-header nav a,
.eyebrow,
.trust-row b,
.capabilities b,
.work-card span,
.video-badge strong,
.site-grid a {
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
}
.hero h1 em {
  font-family: "Space Grotesk", "DM Sans", Arial, sans-serif;
  font-style: normal;
}
.brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
}
.brand img {
  width: 156px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.site-header,
.site-header a,
.site-header nav a,
.hero-copy > p,
.trust-row span,
.statement > p,
.capabilities span,
.filters button,
.video-copy p,
.founder-story p,
.video-copy ul,
.proof-chips span,
.site-grid article span,
.site-grid p,
.site-grid .tags,
.contact p,
footer,
footer a,
.portrait-label small,
.video-badge span {
  color: #fff !important;
}
.eyebrow {
  color: #fff !important;
}
.hero-copy > p,
.statement > p,
.capabilities span,
.video-copy p,
.founder-story p,
.site-grid p,
.site-grid .tags,
.contact p,
.trust-row span,
.portrait-label small,
.video-badge span,
footer {
  opacity: 0.78;
}
.site-header nav a {
  opacity: 0.9;
}
.site-header nav a:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .brand img {
    width: 128px;
    height: 42px;
  }
}
