:root {
  --bg: #050505;
  --panel: #11110f;
  --panel-2: #18140f;
  --text: #f5efe6;
  --muted: #b9ada0;
  --line: rgba(255, 126, 20, 0.24);
  --orange: #ff6a00;
  --amber: #ffb15c;
  --green: #9ac44d;
  --white-soft: rgba(255, 249, 238, 0.88);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: #1a0b00;
  background: var(--amber);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0));
}

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

.brand-logo {
  width: clamp(190px, 25vw, 370px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-photo-logo {
  width: clamp(56px, 6vw, 78px);
  height: clamp(56px, 6vw, 78px);
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.language-menu {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.language-menu summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.64);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: " +";
  color: var(--orange);
}

.language-menu[open] summary {
  color: #160900;
  background: var(--orange);
}

.language-menu[open] summary::after {
  color: #160900;
  content: " -";
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  min-width: 174px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: var(--shadow);
}

.language-options a {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-options a:hover {
  color: var(--text);
  background: rgba(255, 106, 0, 0.12);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 78px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
  transform:
    translate3d(
      var(--hero-x),
      calc(var(--hero-y) + var(--hero-scroll)),
      0
    )
    scale(1.08);
  transition: transform 180ms ease-out, opacity 180ms ease-out;
  will-change: transform;
}

.hero:hover .hero-image {
  opacity: 0.8;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.1) 70%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(56px, 10vw, 132px);
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  text-wrap: balance;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--white-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

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

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: #160900;
  background: var(--orange);
  box-shadow: 0 10px 34px rgba(255, 106, 0, 0.28);
}

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

.hero-status {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 30px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: var(--shadow);
}

.hero-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-status strong {
  color: var(--green);
  font-size: 14px;
}

.intro-band,
.feature-band,
.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090806;
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
}

.intro-inner > p {
  margin: 0;
  color: var(--white-soft);
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.2;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.broadcast-cover {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) 0 0;
}

.broadcast-cover-copy {
  display: grid;
  gap: 22px;
}

.broadcast-cover-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.broadcast-cover-copy h2 {
  font-size: clamp(34px, 4.6vw, 64px);
}

.cover-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.12), transparent 32%, rgba(5, 5, 5, 0.16)),
    linear-gradient(180deg, transparent 72%, rgba(5, 5, 5, 0.5));
}

.cover-frame img {
  width: 100%;
  aspect-ratio: 2.41 / 1;
  object-fit: cover;
  object-position: center;
}

.finger-glow-target {
  position: absolute;
  z-index: 4;
  left: 92.7%;
  top: 62.1%;
  width: clamp(10px, 1.4vw, 18px);
  height: clamp(10px, 1.4vw, 18px);
  transform: translate(-50%, -50%);
}

.finger-glow-target::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(78px, 11vw, 154px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 236, 203, 0.54) 0 6%, rgba(255, 166, 72, 0.28) 18%, rgba(255, 106, 0, 0.12) 42%, transparent 76%);
  box-shadow:
    0 0 18px rgba(255, 106, 0, 0.0),
    0 0 52px rgba(255, 106, 0, 0.0);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: box-shadow 1100ms ease, filter 1100ms ease, opacity 1100ms ease;
  opacity: 0;
  filter: blur(16px) saturate(0.9);
}

.finger-glow-target:hover::before {
  box-shadow:
    0 0 18px rgba(255, 214, 160, 0.48),
    0 0 46px rgba(255, 149, 46, 0.42),
    0 0 92px rgba(255, 106, 0, 0.28),
    0 0 142px rgba(255, 106, 0, 0.16);
  opacity: 1;
  filter: blur(13px) saturate(1.05);
  transition: box-shadow 140ms ease, filter 140ms ease, opacity 140ms ease;
}

.cover-tool-layer {
  position: absolute;
  z-index: 2;
  left: 41%;
  right: 24%;
  top: 62%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  transform: translateY(-50%);
}

.cover-tool-layer > span {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: clamp(9px, 0.95vw, 12px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.92);
  text-transform: uppercase;
}

.stat-strip {
  display: grid;
  gap: 12px;
  margin: 0;
}

.stat-strip div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-strip dt {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-strip dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 40px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

.service-index {
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.service-card p,
.network-copy p,
.feature-band p,
.contact-copy p,
.package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.tool-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(74px, 10vw, 118px);
}

.tool-stack h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.tool-icon-row {
  display: grid;
  grid-template-columns: repeat(6, clamp(22px, 1.95vw, 34px));
  gap: clamp(2px, 0.38vw, 5px) clamp(4px, 0.58vw, 8px);
  align-items: center;
  justify-content: center;
}

.tool-icon-row img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 0.92;
  filter:
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 10px rgba(255, 106, 0, 0.22));
  transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease;
}

.tool-icon-row img:hover {
  z-index: 4;
  opacity: 1;
  transform: translateY(-6px) scale(1.42);
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 20px rgba(255, 106, 0, 0.5))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.tool-icon-row .tool-icon-davinci {
  grid-column: 6;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  transform: scale(0.96);
}

.tool-icon-row .tool-icon-davinci:hover {
  transform: translateY(-6px) scale(1.36);
}

.tool-icon-row .tool-icon-freecad {
  transform: scale(1.16);
  transform-origin: center;
}

.tool-icon-row .tool-icon-freecad:hover {
  z-index: 4;
  transform: translateY(-6px) scale(1.58);
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 22px rgba(255, 106, 0, 0.56))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.24));
}

.scroll-fade {
  opacity: var(--section-opacity, 1);
  transform: scale(var(--section-scale, 1)) translateY(var(--section-y, 0px));
  transform-origin: center center;
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.package-section {
  padding-top: 0;
}

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

.package-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(154, 196, 77, 0.03)),
    var(--panel);
}

.package-card.featured {
  border-color: rgba(255, 177, 92, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.15), rgba(154, 196, 77, 0.04)),
    var(--panel-2);
  box-shadow: var(--shadow);
}

.package-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.package-card strong {
  display: block;
  color: var(--amber);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--white-soft);
  line-height: 1.45;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.network-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.network-copy {
  display: grid;
  gap: 22px;
}

.orbit-panel {
  display: grid;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 106, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.08) 1px, transparent 1px),
    #090806;
  background-size: 34px 34px;
  box-shadow: var(--shadow);
}

.orbit-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.orbit-row:last-child {
  border-bottom: 0;
}

.orbit-row span {
  grid-row: span 2;
  color: var(--orange);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.orbit-row strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 26px;
}

.orbit-row em {
  color: var(--muted);
  font-style: normal;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  padding: clamp(54px, 7vw, 82px) max(20px, calc((100vw - 1180px) / 2));
}

.work-section {
  padding-top: clamp(74px, 10vw, 118px);
}

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

.work-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 106, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.07) 1px, transparent 1px),
    #090806;
  background-size: 26px 26px;
}

.work-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.portfolio-section {
  padding-top: 0;
}

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

.portfolio-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: var(--shadow);
}

.portfolio-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 738px;
}

.portfolio-image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.portfolio-card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
  transition: transform 240ms ease, filter 240ms ease;
}

.portfolio-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 52%, rgba(5, 5, 5, 0.66) 100%),
    linear-gradient(90deg, rgba(255, 106, 0, 0.04), transparent 38%);
}

.portfolio-card.image-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.portfolio-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card h3 {
  max-width: 680px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.02;
}

.portfolio-card.large h3 {
  font-size: clamp(24px, 3vw, 44px);
}

.portfolio-card.image-card:hover img {
  filter: saturate(1.14) contrast(1.07) brightness(1.06);
  transform: scale(1.035);
}

.motion-heading {
  display: grid;
  gap: 10px;
  margin: clamp(34px, 5vw, 64px) 0 22px;
}

.motion-heading h3 {
  font-size: clamp(28px, 3.2vw, 46px);
}

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

.motion-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #090806;
}

.motion-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050505;
}

.motion-card div {
  display: grid;
  gap: 10px;
  padding: 4px 4px 8px;
}

.motion-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.motion-card h3 {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: #070707;
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: vertical;
}

.contact-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-fallback a {
  color: var(--amber);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 177, 92, 0.42);
  text-underline-offset: 3px;
}

.social-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 62px) 0;
  border-top: 1px solid var(--line);
}

.social-callout h2 {
  font-size: clamp(34px, 4.5vw, 68px);
}

.social-callout p:not(.eyebrow) {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.social-callout p:not(.eyebrow) a {
  color: var(--amber);
  font-weight: 800;
}

.social-icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: clamp(18px, 3vw, 48px);
  justify-items: center;
  align-items: center;
}

.social-icon-button {
  --social-glow: rgba(255, 106, 0, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: clamp(82px, 9vw, 116px);
  aspect-ratio: 1 / 1;
  color: #fff;
  text-decoration: none;
  background: transparent;
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 18px var(--social-glow));
  transition: transform 150ms ease, filter 150ms ease, opacity 150ms ease;
}

.social-icon-button:hover {
  z-index: 5;
  transform: translateY(-7px) scale(1.22);
  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.92))
    drop-shadow(0 0 28px var(--social-glow))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.18));
}

.facebook-button {
  --social-glow: rgba(47, 117, 255, 0.66);
  border-radius: 22%;
  background: linear-gradient(145deg, #4c98ff, #164db8 66%, #0a2562);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    inset 0 -9px 18px rgba(0, 0, 0, 0.26);
}

.facebook-button span {
  margin-top: 17%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 92px;
  font-weight: 900;
  line-height: 0.72;
}

.youtube-button {
  --social-glow: rgba(255, 36, 24, 0.68);
  border-radius: 24%;
  background: linear-gradient(145deg, #ff342c, #d90000 70%, #7f0000);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.16),
    inset 0 -9px 18px rgba(0, 0, 0, 0.24);
}

.youtube-button span {
  width: 0;
  height: 0;
  margin-left: 8%;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 32px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
}

.qr-button {
  --social-glow: rgba(255, 106, 0, 0.52);
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  filter: none;
  box-shadow: none;
}

.qr-button:hover {
  transform: none;
  filter: none;
}

.qr-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.qr-button strong {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  padding: 3px 10px;
  border: 1px solid rgba(255, 177, 92, 0.62);
  color: #160900;
  background: var(--orange);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.bottom-logo-hero {
  display: grid;
  place-items: center;
  min-height: clamp(620px, 92vh, 980px);
  padding: clamp(72px, 10vw, 140px) 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 106, 0, 0.06), transparent 54%),
    #050505;
  overflow: hidden;
}

.layered-logo {
  --logo-x: 0px;
  --logo-y: 0px;
  --logo-scroll: 0px;
  position: relative;
  width: min(820px, 86vw);
  aspect-ratio: 1 / 1;
  isolation: isolate;
}

.layered-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.layered-logo-photo {
  z-index: 1;
  padding: 10%;
}

.layered-logo-text {
  z-index: 2;
  transform:
    translate3d(
      var(--logo-x),
      calc(var(--logo-y) + var(--logo-scroll)),
      0
    );
  filter:
    drop-shadow(0 0 5px rgba(255, 106, 0, 0.72))
    drop-shadow(0 0 18px rgba(255, 106, 0, 0.34));
  transition: transform 180ms ease-out, filter 180ms ease-out;
}

.layered-logo:hover .layered-logo-text {
  filter:
    drop-shadow(0 0 7px rgba(255, 106, 0, 0.86))
    drop-shadow(0 0 26px rgba(255, 106, 0, 0.42));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: rgba(185, 173, 160, 0.78);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .intro-inner,
  .broadcast-cover,
  .tool-stack,
  .network-section,
  .feature-band,
  .contact-section,
  .social-callout {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .work-grid,
  .portfolio-grid,
  .motion-grid {
    grid-template-columns: 1fr;
  }

  .social-icon-row {
    justify-items: start;
  }

  .portfolio-card.large {
    grid-column: auto;
    min-height: 430px;
  }

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

  .hero-status {
    position: static;
    margin-top: 42px;
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 14px;
  }

  .brand-logo {
    width: 168px;
    max-height: 42px;
  }

  .brand-photo-logo {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .language-menu {
    margin-left: auto;
    font-size: 11px;
  }

  .language-menu summary {
    padding: 9px 10px;
  }

  .language-options {
    right: 0;
    min-width: 156px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 94px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .cover-frame img {
    aspect-ratio: 1.55 / 1;
    object-position: 63% center;
  }

  .cover-tool-layer {
    left: 9%;
    right: 9%;
    top: 66%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

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

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

  .service-card,
  .package-card,
  .work-card {
    min-height: 230px;
  }

  .stat-strip div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .orbit-row {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

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