:root {
  --ink: #0d0f12;
  --charcoal: #15181d;
  --paper: #f7f4ee;
  --paper-deep: #ebe5d9;
  --muted: #686b72;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(13, 15, 18, 0.12);
  --orange: #ff6a32;
  --gold: #d5b16a;
  --blue: #1b76ff;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(13, 15, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.site-nav {
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13) 46%, rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    0 8px 18px rgba(255, 255, 255, 0.08) inset,
    0 -18px 30px rgba(13, 15, 18, 0.16) inset;
  backdrop-filter: blur(28px) saturate(1.55);
  transform: translateX(-50%);
  transition: top 220ms ease, width 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.site-nav::before,
.site-nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.site-nav::before {
  inset: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 38%, rgba(255, 255, 255, 0.2));
  opacity: 0.78;
}

.site-nav::after {
  inset: auto 11% -18px 11%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4), transparent 68%);
  filter: blur(12px);
  opacity: 0.7;
}

.site-nav.is-scrolled {
  top: 10px;
  width: min(1040px, calc(100% - 44px));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 7px 16px rgba(255, 255, 255, 0.1) inset,
    0 -16px 26px rgba(13, 15, 18, 0.14) inset;
}

.site-nav .container {
  position: relative;
  z-index: 1;
  padding-left: 22px;
  padding-right: 12px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.36);
}

.brand-mark {
  display: block;
  width: 54px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
  animation: logoFloatIn 1600ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
  transform-origin: center bottom;
  transition: filter 220ms ease, transform 220ms ease;
}

.site-footer .brand-mark {
  width: 50px;
  height: 40px;
}

.navbar-brand:hover .brand-mark {
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28)) saturate(1.12);
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transform: translateY(-1px);
}

.nav-cta {
  margin-left: 8px;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  text-shadow: none;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}

.hero-section.has-cms-hero-image .hero-media {
  background-position: center;
  background-size: cover;
}

.hero-3d,
.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-3d {
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 74% 32%, rgba(255, 106, 50, 0.24), transparent 32%),
    radial-gradient(circle at 34% 74%, rgba(27, 118, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0d0f12, #181d24 55%, #0d0f12);
}

.hero-media {
  z-index: 1;
  opacity: 0.22;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42% 43%, transparent 43% 100%),
    linear-gradient(65deg, transparent 0 58%, rgba(255, 106, 50, 0.16) 58% 59%, transparent 59% 100%);
  background-size: 180px 180px, 240px 240px;
  animation: heroSignalSweep 18s linear infinite;
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 77% 38%, rgba(255, 106, 50, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(13, 15, 18, 0.96), rgba(13, 15, 18, 0.56) 58%, rgba(13, 15, 18, 0.86)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.98), rgba(13, 15, 18, 0.22) 48%, rgba(13, 15, 18, 0.68));
}

.hero-grid {
  z-index: 3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  animation: gridDrift 16s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: 112px;
  padding-bottom: 92px;
}

.hero-content > .row {
  width: 100%;
}

.display-title {
  max-width: none;
  margin: 0;
  font-size: clamp(3.2rem, 7.6vw, 7.9rem);
  line-height: 0.92;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.display-title span {
  display: block;
}

.display-title .title-subline {
  margin-top: 6px;
  font-size: clamp(1.9rem, 4.3vw, 4.45rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  color: rgba(255, 255, 255, 0.84);
  text-wrap: balance;
}

.logo-bloom {
  position: relative;
  width: clamp(116px, 14vw, 184px);
  aspect-ratio: 507 / 368;
  margin-bottom: 24px;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.34));
}

.logo-bloom img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-petal {
  opacity: 0;
  animation: petalAssemble 2400ms cubic-bezier(0.2, 0.9, 0.22, 1) 420ms both;
}

.logo-petal-yellow {
  clip-path: polygon(0 30%, 50% 52%, 52% 94%, 0 100%);
  --petal-x: -28px;
  --petal-y: 18px;
  --petal-r: -16deg;
}

.logo-petal-green {
  clip-path: polygon(18% 0, 51% 6%, 51% 66%, 20% 70%);
  --petal-x: -18px;
  --petal-y: -30px;
  --petal-r: 14deg;
}

.logo-petal-blue {
  clip-path: polygon(38% 0, 64% 0, 61% 92%, 47% 96%, 39% 68%);
  --petal-x: 0;
  --petal-y: -42px;
  --petal-r: 0deg;
}

.logo-petal-purple {
  clip-path: polygon(55% 4%, 78% 3%, 76% 70%, 55% 68%);
  --petal-x: 20px;
  --petal-y: -30px;
  --petal-r: -14deg;
}

.logo-petal-pink {
  clip-path: polygon(53% 54%, 100% 28%, 100% 100%, 51% 96%);
  --petal-x: 32px;
  --petal-y: 18px;
  --petal-r: 16deg;
}

.logo-bloom-full {
  opacity: 0;
  animation: logoResolve 1400ms ease 2350ms both, logoBreath 7.5s ease-in-out 3.7s infinite;
}

.bold-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bold-words span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-reel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.45vw, 1.18rem);
  font-weight: 900;
  text-transform: uppercase;
}

.reel-window {
  position: relative;
  display: inline-grid;
  height: 1.25em;
  min-width: min(320px, 100%);
  overflow: hidden;
  color: var(--orange);
}

.reel-window span {
  grid-area: 1 / 1;
  transform: translateY(115%);
  animation: reelWord 8s ease-in-out infinite;
}

.reel-window span:nth-child(2) {
  animation-delay: 2s;
}

.reel-window span:nth-child(3) {
  animation-delay: 4s;
}

.reel-window span:nth-child(4) {
  animation-delay: 6s;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  min-height: 78px;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 15, 18, 0.76);
  backdrop-filter: blur(14px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlide 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 18px;
  background: var(--orange);
}

.btn {
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  padding-inline: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-light {
  border-color: #fff;
  box-shadow: 0 18px 42px rgba(255, 106, 50, 0.18);
}

.btn-lg {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 40%),
    var(--paper);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 50, 0.11), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(27, 118, 255, 0.12), transparent 26%),
    var(--ink);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2rem, 4.7vw, 4.8rem);
  line-height: 1;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.section-dark .section-copy,
.contact-section .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 44px;
}

.page-hero {
  padding: 170px 0 90px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 106, 50, 0.2), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(27, 118, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #0d0f12, #20242a);
  overflow: hidden;
}

.page-lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  text-wrap: balance;
}

.quick-card {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(13, 15, 18, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.quick-card:hover {
  color: var(--ink);
  transform: translateY(-6px);
  border-color: rgba(255, 106, 50, 0.45);
  box-shadow: var(--shadow);
}

.quick-card span {
  color: var(--orange);
  font-weight: 900;
}

.quick-card strong {
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.dashboard-shell {
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 106, 50, 0.18), transparent 28%),
    radial-gradient(circle at 12% 44%, rgba(27, 118, 255, 0.14), transparent 30%),
    var(--ink);
}

.dashboard-hero {
  padding: 170px 0 70px;
}

.dashboard-status,
.dashboard-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.dashboard-status {
  padding: 24px;
}

.dashboard-status span,
.panel-heading span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-status strong,
.panel-heading strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.dashboard-status p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.dashboard-section {
  padding: 0 0 110px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 24px;
}

.dashboard-panel {
  padding: 24px;
}

.panel-heading {
  margin-bottom: 22px;
}

.dashboard-gallery-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.upload-zone {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging {
  border-color: rgba(255, 106, 50, 0.78);
  background: rgba(255, 106, 50, 0.08);
  transform: translateY(-3px);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-zone i {
  color: var(--orange);
  font-size: 2.4rem;
}

.upload-zone strong {
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.upload-zone span {
  color: rgba(255, 255, 255, 0.62);
}

.upload-fields {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dashboard-actions {
  margin-top: 18px;
}

.dashboard-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-button {
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 900;
}

.tool-button.active,
.tool-button:hover {
  color: var(--ink);
  background: #fff;
}

.dashboard-empty {
  display: grid;
  min-height: 330px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.dashboard-empty i {
  color: var(--orange);
  font-size: 2.4rem;
}

.dashboard-empty strong {
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

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

.media-card {
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card-body {
  padding: 16px;
}

.media-card-body span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card-body strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.media-card-body p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.media-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}

.media-card-actions button,
.media-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
}

.media-card-actions button:hover,
.media-card-actions a:hover {
  color: var(--ink);
  background: #fff;
}

.cms-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.cms-steps div,
.cms-control-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.cms-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
}

.cms-steps span {
  color: var(--orange);
  font-weight: 900;
}

.cms-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cms-steps strong {
  color: #fff;
}

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

.cms-control-grid article {
  min-height: 210px;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.cms-control-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 50, 0.48);
}

.cms-control-grid i {
  color: var(--orange);
  font-size: 2rem;
}

.cms-control-grid h3 {
  margin: 26px 0 0;
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.cms-control-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.impact-strip {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 106, 50, 0.08), transparent 50%, rgba(27, 118, 255, 0.08)),
    var(--charcoal);
}

.impact-item {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.impact-item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.impact-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.impact-item strong {
  display: block;
  max-width: 360px;
  font-size: 1.25rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.impact-item p {
  max-width: 380px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

.service-card,
.news-card {
  position: relative;
  height: 100%;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card::after,
.news-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 50, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.service-card:hover::after,
.news-card:hover::after {
  transform: scaleX(1);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.service-card i {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--orange);
  font-size: 2.2rem;
  transition: transform 220ms ease, color 220ms ease;
}

.service-card:hover i {
  color: var(--gold);
  transform: translateY(-4px);
}

.service-card h3,
.work-card h3,
.news-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card {
  position: relative;
  height: 100%;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.work-card:hover {
  transform: translateY(-8px);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 380ms ease, filter 380ms ease;
}

.work-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04);
}

.work-body {
  min-height: 190px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 106, 50, 0.08), transparent),
    var(--ink);
}

.work-body span,
.news-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.work-body p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.work-meta small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-list {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.work-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  min-height: 54px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.client-section {
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 106, 50, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 106, 50, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #20242a;
}

.client-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.client-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 160px));
  gap: 12px;
  margin-top: 30px;
}

.client-metrics div {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.client-metrics strong {
  display: block;
  color: var(--orange);
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.client-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.client-tile {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(13, 15, 18, 0.2);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.client-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.client-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 50, 0.52);
  background: rgba(255, 255, 255, 0.075);
}

.client-tile:hover::after {
  transform: scaleX(1);
}

.client-mark {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.client-tile h3 {
  margin: 28px 0 0;
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.client-tile p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.client-note span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-note strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.why-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.why-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.why-item span {
  color: var(--orange);
  font-weight: 900;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.news-card {
  color: var(--ink);
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(13, 15, 18, 0.08);
}

.news-card:hover {
  background: #fff;
  border-color: rgba(13, 15, 18, 0.35);
}

.news-card h3 {
  min-height: 112px;
}

.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.news-card a i {
  transition: transform 180ms ease;
}

.news-card a:hover i {
  transform: translateX(5px);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 106, 50, 0.22), transparent 24%),
    linear-gradient(rgba(13, 15, 18, 0.86), rgba(13, 15, 18, 0.94)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.contact-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 22px;
  margin-bottom: 58px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.contact-banner span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-banner strong {
  color: #fff;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.contact-banner .btn {
  grid-row: 1 / span 2;
  grid-column: 2;
  white-space: nowrap;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-details i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: var(--radius);
  border-color: rgba(13, 15, 18, 0.16);
  background-color: #fbfaf7;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 50, 0.18);
}

.form-label {
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.about-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

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

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

@keyframes heroSignalSweep {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 360px 180px, -240px 240px;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 72px 72px;
  }
}

@keyframes reelWord {
  0%,
  8% {
    transform: translateY(115%);
    opacity: 0;
  }

  13%,
  25% {
    transform: translateY(0);
    opacity: 1;
  }

  31%,
  100% {
    transform: translateY(-115%);
    opacity: 0;
  }
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }

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

@keyframes logoFloatIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.86) rotate(-5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes petalAssemble {
  0% {
    opacity: 0;
    transform: translate3d(var(--petal-x), var(--petal-y), 0) rotate(var(--petal-r)) scale(0.9);
    filter: blur(2px) saturate(1.25);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04);
    filter: blur(0) saturate(1.18);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes logoResolve {
  from {
    opacity: 0;
    transform: scale(0.96);
    filter: brightness(1.35) saturate(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
}

@keyframes logoBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.025);
  }
}

@media (max-width: 991.98px) {
  .site-nav,
  .site-nav.is-scrolled {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16) 46%, rgba(255, 255, 255, 0.26)),
      rgba(255, 255, 255, 0.14);
  }

  .site-nav .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(13, 15, 18, 0.18);
    border-radius: 18px;
  }

  .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .section {
    padding: 88px 0;
  }

  .display-title {
    font-size: clamp(2.8rem, 9.2vw, 4.9rem);
  }

  .display-title .title-subline {
    font-size: clamp(1.7rem, 5.6vw, 3rem);
  }

  .hero-content {
    padding-top: 106px;
    padding-bottom: 86px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
  }

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

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

  .contact-banner {
    grid-template-columns: 1fr;
  }

  .contact-banner .btn {
    grid-row: auto;
    grid-column: auto;
    width: fit-content;
  }

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

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

@media (max-width: 575.98px) {
  .hero-content {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 82px;
  }

  .display-title {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .display-title .title-subline {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-stats div {
    min-height: 78px;
    padding: 16px;
  }

  .hero-reel {
    display: grid;
    gap: 6px;
  }

  .bold-words {
    gap: 8px;
  }

  .logo-bloom {
    width: 112px;
    margin-bottom: 18px;
  }

  .bold-words span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .reel-window {
    min-width: 0;
  }

  .marquee-track span {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.72rem;
  }

  .btn-lg {
    width: 100%;
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  .impact-item,
  .service-card,
  .work-body,
  .news-card,
  .contact-form {
    padding: 24px;
  }

  .service-number {
    top: 22px;
    right: 22px;
    font-size: 2.1rem;
  }

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

  .client-metrics {
    grid-template-columns: 1fr;
  }

  .work-list,
  .work-list ul {
    grid-template-columns: 1fr;
  }

  .contact-banner {
    padding: 22px;
  }

  .contact-banner .btn {
    width: 100%;
  }

  .dashboard-hero {
    padding-top: 150px;
  }

  .dashboard-gallery {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reel-window span:first-child {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-3d {
    background:
      radial-gradient(circle at 72% 38%, rgba(255, 106, 50, 0.24), transparent 32%),
      linear-gradient(135deg, #0d0f12, #181d24 55%, #0d0f12);
  }

  .logo-petal {
    display: none;
  }

  .logo-bloom-full {
    opacity: 1;
  }
}
