:root {
  color-scheme: dark;
  --bg: #070503;
  --bg-2: #120d08;
  --panel: rgba(255, 247, 239, 0.07);
  --panel-strong: rgba(255, 247, 239, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff8f0;
  --muted: rgba(255, 240, 224, 0.74);
  --soft: rgba(255, 230, 205, 0.56);
  --blue: #f27600;
  --cyan: #ff9a1f;
  --violet: #9e3f00;
  --magenta: #ffb13b;
  --green: #ffd37a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 9%, rgba(242, 118, 0, 0.16), transparent 31rem),
    radial-gradient(circle at 82% 7%, rgba(255, 177, 59, 0.16), transparent 28rem),
    radial-gradient(circle at 48% 52%, rgba(158, 63, 0, 0.15), transparent 32rem),
    linear-gradient(145deg, #070503 0%, #130b05 42%, #080604 100%);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(255, 154, 31, 0.28);
  color: var(--text);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.5), transparent 95%);
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 42vw;
  height: 42vw;
  min-width: 320px;
  min-height: 320px;
  filter: blur(92px);
  opacity: 0.2;
  pointer-events: none;
}

.ambient-one {
  top: 8%;
  left: -14%;
  background: var(--blue);
}

.ambient-two {
  right: -15%;
  bottom: 10%;
  background: var(--magenta);
}

.navbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-height);
  width: min(calc(100% - 32px), 1240px);
  margin: 14px auto 0;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 7, 16, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(242, 118, 0, 0.16), rgba(255, 177, 59, 0.08), rgba(255, 154, 31, 0.09));
  opacity: 0;
  transition: opacity 220ms ease;
}

.navbar.is-scrolled::before {
  opacity: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo-image-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 142, 22, 0.42);
  background: #ffffff;
  box-shadow:
    0 0 30px rgba(242, 118, 0, 0.3),
    0 12px 32px rgba(0, 0, 0, 0.38);
}

.logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-text {
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-menu a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: rgba(247, 248, 255, 0.76);
  font-size: 0.91rem;
  font-weight: 700;
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.nav-menu a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.nav-cta,
.button-primary {
  color: #070503;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 42%, var(--magenta));
  box-shadow:
    0 0 28px rgba(255, 154, 31, 0.22),
    0 18px 42px rgba(242, 118, 0, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 0 36px rgba(255, 177, 59, 0.2),
    0 22px 54px rgba(242, 118, 0, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 30px);
  display: grid;
  align-items: center;
  padding: 112px 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: 82px 0 140px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 154, 31, 0.28);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 154, 31, 0.08);
  color: #ffdaa3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 1050px;
  margin: 24px 0 24px;
  font-size: clamp(3.4rem, 8vw, 7.85rem);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 900;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

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

.hero-actions .button {
  min-height: 54px;
  padding: 0 24px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5, 5, 11, 0.94) 0%, rgba(5, 5, 11, 0.66) 35%, rgba(5, 5, 11, 0.34) 62%, rgba(5, 5, 11, 0.84) 100%),
    radial-gradient(circle at 72% 38%, rgba(255, 154, 31, 0.24), transparent 20rem),
    radial-gradient(circle at 84% 20%, rgba(255, 177, 59, 0.26), transparent 21rem),
    radial-gradient(circle at 60% 72%, rgba(158, 63, 0, 0.22), transparent 28rem),
    #070503;
}

.signal-grid {
  position: absolute;
  inset: 15% -4% 0 42%;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 154, 31, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 177, 59, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(800px) rotateX(58deg) rotateZ(-13deg);
  transform-origin: center;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 70%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 154, 31, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(158, 63, 0, 0.1);
}

.orbit-one {
  width: 680px;
  height: 680px;
  right: -80px;
  top: 80px;
  animation: spin 22s linear infinite;
}

.orbit-two {
  width: 360px;
  height: 360px;
  right: 230px;
  top: 220px;
  border-color: rgba(255, 177, 59, 0.22);
  animation: spin 18s linear infinite reverse;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.orbit::before {
  top: 18%;
  left: 10%;
}

.orbit::after {
  right: 14%;
  bottom: 20%;
  background: var(--magenta);
  box-shadow: 0 0 22px var(--magenta);
}

.film-strip {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 8px;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.film-strip span {
  height: 58px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 154, 31, 0.2), rgba(255, 177, 59, 0.14)),
    radial-gradient(circle at 32% 34%, rgba(255, 255, 255, 0.28), transparent 20%),
    rgba(255, 255, 255, 0.08);
}

.film-strip-a {
  right: 9%;
  top: 21%;
  transform: rotate(8deg);
  animation: floatA 9s ease-in-out infinite;
}

.film-strip-b {
  right: 34%;
  bottom: 14%;
  width: 210px;
  transform: rotate(-12deg);
  opacity: 0.86;
  animation: floatB 10s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.screen-card {
  right: 18%;
  top: 45%;
  width: 310px;
  height: 196px;
  padding: 18px;
  animation: floatB 11s ease-in-out infinite;
}

.screen-topline {
  width: 46%;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.screen-bars {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.screen-bars span {
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.screen-bars span:nth-child(1) {
  width: 84%;
}

.screen-bars span:nth-child(2) {
  width: 68%;
}

.screen-bars span:nth-child(3) {
  width: 46%;
}

.screen-glow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 86px;
  height: 56px;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(255, 154, 31, 0.9), rgba(158, 63, 0, 0.18) 62%, transparent 70%);
  filter: blur(4px);
}

.workflow-card {
  right: 5%;
  bottom: 22%;
  width: 230px;
  height: 118px;
  animation: floatA 8s ease-in-out infinite;
}

.workflow-card .node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.8), rgba(158, 63, 0, 0.8));
  box-shadow: 0 0 22px rgba(255, 154, 31, 0.3);
}

.workflow-card .node:nth-child(1) {
  left: 18px;
  top: 38px;
}

.workflow-card .node:nth-child(2) {
  left: 94px;
  top: 17px;
}

.workflow-card .node:nth-child(3) {
  right: 18px;
  top: 56px;
}

.node-line {
  position: absolute;
  inset: 39px 38px 42px;
  border-top: 2px solid rgba(255, 154, 31, 0.5);
  border-right: 2px solid rgba(255, 177, 59, 0.42);
  transform: skewY(-12deg);
}

.prompt-card {
  right: 36%;
  top: 31%;
  width: 190px;
  padding: 16px;
  animation: floatA 10s ease-in-out infinite reverse;
}

.prompt-card span {
  display: block;
  color: #ffd58a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.prompt-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  line-height: 1.12;
}

.brand-emblem {
  position: absolute;
  right: 12%;
  top: 24%;
  width: clamp(170px, 17vw, 260px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 142, 22, 0.34);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 0 46px rgba(242, 118, 0, 0.32),
    0 30px 90px rgba(0, 0, 0, 0.44);
  transform: rotate(-4deg);
  animation: floatA 12s ease-in-out infinite;
}

.brand-emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

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

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 24px;
  color: rgba(247, 248, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee span::after {
  content: "/";
  margin-left: 24px;
  color: var(--cyan);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 930px;
}

.section-heading.compact {
  max-width: 720px;
  margin: 96px 0 34px;
}

.section-heading p:not(.kicker),
.about-copy p,
.glass-card p,
.service-card p,
.service-card li,
.showcase-content p,
.review-card p,
.cta-panel p,
.footer p {
  color: var(--muted);
}

.section-heading p:not(.kicker) {
  font-size: 1.06rem;
}

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

.glass-card,
.service-card,
.showcase-card,
.review-card,
.metric,
.cta-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.glass-card::before,
.service-card::before,
.showcase-card::before,
.review-card::before,
.metric::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.28), transparent 36%, rgba(255, 177, 59, 0.22));
  opacity: 0;
  transition: opacity 240ms ease;
}

.glass-card:hover::before,
.service-card:hover::before,
.showcase-card:hover::before,
.review-card:hover::before,
.metric:hover::before {
  opacity: 1;
}

.highlight-card {
  min-height: 286px;
  padding: 26px;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.highlight-card:hover,
.service-card:hover,
.showcase-card:hover,
.review-card:hover,
.metric:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
}

.card-icon,
.service-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.26), rgba(255, 177, 59, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.card-icon::before,
.card-icon::after,
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 6px;
}

.icon-film::before {
  inset: 13px 9px;
  border: 2px solid var(--cyan);
}

.icon-film::after {
  top: 17px;
  right: 5px;
  width: 10px;
  height: 14px;
  background: var(--magenta);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.icon-ad::before {
  left: 10px;
  top: 13px;
  width: 25px;
  height: 18px;
  border: 2px solid var(--magenta);
}

.icon-ad::after {
  left: 18px;
  bottom: 9px;
  width: 14px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 5px 0 rgba(255, 154, 31, 0.72);
}

.icon-agent::before {
  inset: 11px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.icon-agent::after {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  background: var(--magenta);
  box-shadow:
    -14px 0 0 rgba(255, 154, 31, 0.76),
    14px 0 0 rgba(158, 63, 0, 0.85),
    0 -14px 0 rgba(255, 211, 122, 0.7),
    0 14px 0 rgba(255, 177, 59, 0.65);
}

.icon-learn::before {
  left: 11px;
  top: 12px;
  width: 26px;
  height: 20px;
  border: 2px solid var(--cyan);
}

.icon-learn::after {
  left: 15px;
  top: 18px;
  width: 18px;
  height: 2px;
  background: var(--magenta);
  box-shadow: 0 6px 0 rgba(255, 154, 31, 0.68);
}

.icon-brand::before {
  inset: 11px 13px 10px;
  border-radius: 50% 50% 8px 8px;
  border: 2px solid var(--cyan);
}

.icon-brand::after {
  width: 20px;
  height: 2px;
  left: 14px;
  top: 31px;
  background: var(--magenta);
  box-shadow: 0 -8px 0 rgba(255, 255, 255, 0.18);
}

.impact-section {
  padding-top: 48px;
}

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

.metric {
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.metric::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 31, 0.24), transparent 68%);
}

.metric-index {
  color: rgba(247, 248, 255, 0.42);
  font-size: 0.88rem;
  font-weight: 900;
}

.metric-value {
  margin: 34px 0 24px;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--text), var(--cyan) 48%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 15% 50%, rgba(158, 63, 0, 0.14), transparent 24rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 48px;
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 116px;
}

.about-copy p {
  font-size: 1.04rem;
}

.closing-line {
  margin-top: 30px;
  color: var(--text) !important;
  font-size: clamp(1.4rem, 3vw, 2.3rem) !important;
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.usp-stack {
  display: grid;
  gap: 16px;
}

.usp-card {
  padding: 26px;
}

.usp-card span,
.service-top span,
.showcase-content span {
  display: inline-flex;
  color: #ffd58a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.services-section {
  background: linear-gradient(180deg, rgba(5, 5, 11, 0), rgba(255, 154, 31, 0.04), rgba(5, 5, 11, 0));
}

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

.service-card {
  grid-column: span 3;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.wide-service {
  grid-column: span 6;
  min-height: unset;
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.service-icon {
  flex: 0 0 48px;
  margin-bottom: 0;
}

.service-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.service-card h4 {
  margin: 28px 0 12px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.96rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 16px rgba(255, 154, 31, 0.34);
}

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

.showcase-card {
  grid-column: span 3;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.showcase-card:nth-child(3) {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.showcase-image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(255, 154, 31, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 154, 31, 0.18), rgba(158, 63, 0, 0.14), rgba(255, 177, 59, 0.16)),
    #17100a;
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.12) 24.4% 25%, transparent 25.5% 100%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.34), transparent 46%);
  pointer-events: none;
}

.showcase-content {
  padding: 26px;
}

.showcase-content h3 {
  margin-top: 10px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.cosmetic-scene {
  background:
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(255, 185, 104, 0.28), rgba(255, 154, 31, 0.1), rgba(23, 16, 10, 0.9));
}

.bottle,
.jar,
.leaf,
.camera-body,
.camera-lens,
.studio-light,
.monitor,
.person-silhouette,
.dash-panel,
.dash-pill,
.dash-orbit,
.menu-board,
.plate,
.fork-line,
.food-chip,
.laptop,
.tablet,
.progress-line,
.lesson-card {
  position: absolute;
  display: block;
}

.bottle {
  bottom: 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(205, 244, 255, 0.24));
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.22);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  width: 34%;
  height: 26px;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.65);
  transform: translateX(-50%);
}

.bottle-a {
  left: 32%;
  width: 76px;
  height: 168px;
}

.bottle-b {
  left: 48%;
  width: 58px;
  height: 130px;
  opacity: 0.86;
}

.jar {
  left: 58%;
  bottom: 50px;
  width: 98px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px 30px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 183, 232, 0.3));
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.22);
}

.leaf {
  width: 82px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(255, 211, 122, 0.86), rgba(255, 154, 31, 0.24));
}

.leaf-a {
  left: 18%;
  bottom: 88px;
  transform: rotate(-26deg);
}

.leaf-b {
  right: 17%;
  bottom: 132px;
  transform: rotate(34deg);
}

.video-scene {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.24), transparent 19%),
    radial-gradient(circle at 75% 36%, rgba(255, 177, 59, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(23, 16, 10, 0.95), rgba(242, 118, 0, 0.14));
}

.camera-body {
  left: 20%;
  bottom: 83px;
  width: 142px;
  height: 86px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1d31, #303653);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.camera-lens {
  left: calc(20% + 92px);
  bottom: 100px;
  width: 76px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 31, 0.9), rgba(48, 31, 18, 1) 36%, #090604 68%);
  box-shadow: 0 0 34px rgba(255, 154, 31, 0.28);
}

.studio-light {
  left: 58%;
  top: 52px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 154, 31, 0.38) 42%, transparent 70%);
  filter: blur(1px);
}

.monitor {
  right: 14%;
  bottom: 82px;
  width: 112px;
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.3), rgba(255, 177, 59, 0.16));
}

.person-silhouette {
  right: 30%;
  bottom: 70px;
  width: 44px;
  height: 112px;
  border-radius: 30px 30px 8px 8px;
  background: rgba(255, 255, 255, 0.18);
}

.person-silhouette::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dashboard-scene {
  min-height: 430px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(255, 154, 31, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(10, 7, 4, 1), rgba(32, 18, 8, 0.92));
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.dash-panel {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dash-chat {
  left: 9%;
  top: 19%;
  width: 36%;
  height: 54%;
}

.dash-workflow {
  right: 10%;
  top: 15%;
  width: 34%;
  height: 28%;
}

.dash-settings {
  right: 10%;
  bottom: 17%;
  width: 34%;
  height: 27%;
}

.dash-panel::before,
.dash-panel::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.dash-panel::before {
  top: 22px;
}

.dash-panel::after {
  top: 46px;
  right: 36%;
}

.dash-pill {
  left: 14%;
  bottom: 18%;
  width: 22%;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 26px rgba(255, 154, 31, 0.24);
}

.dash-orbit {
  right: 27%;
  top: 37%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 154, 31, 0.34);
  border-radius: 50%;
}

.menu-scene {
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 230, 130, 0.26), transparent 26%),
    radial-gradient(circle at 72% 45%, rgba(255, 177, 59, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(43, 24, 6, 0.86), rgba(28, 17, 8, 0.92));
}

.menu-board {
  left: 16%;
  top: 17%;
  width: 42%;
  height: 64%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.menu-board::before,
.menu-board::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 10px;
  border-radius: 99px;
  background: rgba(10, 13, 28, 0.16);
}

.menu-board::before {
  top: 38px;
}

.menu-board::after {
  top: 66px;
  right: 46%;
}

.plate {
  right: 18%;
  bottom: 72px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 91, 0.92), rgba(255, 218, 122, 0.72) 34%, rgba(255, 255, 255, 0.8) 36% 56%, rgba(255, 255, 255, 0.22) 57%);
}

.fork-line {
  right: 19%;
  top: 76px;
  width: 5px;
  height: 112px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    12px 0 0 rgba(255, 255, 255, 0.34),
    24px 0 0 rgba(255, 255, 255, 0.24);
}

.food-chip {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 154, 31, 0.82), rgba(255, 177, 59, 0.68));
}

.chip-one {
  width: 64px;
  height: 28px;
  right: 40%;
  top: 23%;
}

.chip-two {
  width: 50px;
  height: 22px;
  left: 13%;
  bottom: 17%;
}

.chip-three {
  width: 52px;
  height: 24px;
  right: 14%;
  bottom: 34%;
}

.learning-scene {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 211, 122, 0.2), transparent 25%),
    radial-gradient(circle at 25% 58%, rgba(255, 154, 31, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(12, 8, 4, 0.98), rgba(45, 25, 8, 0.86));
}

.laptop {
  left: 17%;
  bottom: 70px;
  width: 52%;
  height: 158px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 154, 31, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.laptop::after {
  content: "";
  position: absolute;
  left: -22px;
  right: -22px;
  bottom: -20px;
  height: 22px;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.18);
}

.tablet {
  right: 16%;
  bottom: 82px;
  width: 20%;
  height: 130px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-line {
  left: 24%;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.progress-one {
  bottom: 170px;
  width: 30%;
}

.progress-two {
  bottom: 146px;
  width: 22%;
  opacity: 0.7;
}

.lesson-card {
  left: 25%;
  width: 58px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.lesson-one {
  bottom: 94px;
}

.lesson-two {
  bottom: 94px;
  left: 42%;
}

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

.review-card {
  min-height: 250px;
  padding: 26px;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.review-card p {
  margin: 0;
  font-size: 1rem;
}

.final-cta {
  padding-top: 42px;
}

.cta-panel {
  overflow: hidden;
  padding: clamp(32px, 7vw, 76px);
  text-align: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  text-align: left;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 23% 8%, rgba(255, 154, 31, 0.2), transparent 27%),
    radial-gradient(circle at 86% 62%, rgba(255, 177, 59, 0.2), transparent 30%);
}

.cta-panel .kicker {
  margin-inline: auto;
}

.contact-copy .kicker {
  margin-inline: 0;
}

.cta-panel p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.07rem;
}

.contact-copy p {
  margin-inline: 0;
}

.cta-panel .button {
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
}

.contact-item strong {
  display: block;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-icon,
.footer-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 154, 31, 0.24);
  border-radius: 8px;
  padding: 10px;
  color: var(--cyan);
  background: rgba(242, 118, 0, 0.1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(8, 5, 3, 0.78);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 240, 224, 0.44);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255, 154, 31, 0.68);
  background: rgba(12, 7, 3, 0.92);
  box-shadow: 0 0 0 4px rgba(242, 118, 0, 0.14);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #ffd58a !important;
  font-size: 0.94rem !important;
}

.footer {
  padding: 54px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-services span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 248, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 240, 224, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-contact a:hover {
  color: var(--text);
}

.footer-icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

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

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

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

@keyframes floatA {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes floatB {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 12px 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--nav-height) + 24px);
    left: 16px;
    right: 16px;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(7, 8, 19, 0.94);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 48px;
    justify-content: center;
  }

  .nav-cta {
    justify-self: end;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    position: relative;
    top: auto;
  }

  .showcase-card:nth-child(3) {
    grid-template-columns: 1fr;
  }

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

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

  .copyright {
    white-space: normal;
  }
}

@media (max-width: 780px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 82px 0;
  }

  .navbar {
    width: min(calc(100% - 18px), 1240px);
    margin-top: 9px;
    padding: 0 10px;
    gap: 10px;
  }

  .logo {
    font-size: 0.96rem;
  }

  .logo-image-wrap {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-content {
    padding: 58px 0 110px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .hero-copy,
  .section-heading p:not(.kicker),
  .about-copy p,
  .cta-panel p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .film-strip-a {
    right: -22%;
    top: 20%;
    width: 190px;
  }

  .film-strip-b {
    display: none;
  }

  .screen-card {
    right: -12%;
    top: 56%;
    width: 250px;
    height: 160px;
  }

  .workflow-card,
  .prompt-card,
  .brand-emblem,
  .orbit-two {
    display: none;
  }

  .signal-grid {
    inset: 18% -28% 0 12%;
  }

  .marquee span {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .highlight-grid,
  .impact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .metric,
  .service-card,
  .usp-card,
  .review-card {
    min-height: auto;
    padding: 22px;
  }

  .services-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .wide-service,
  .showcase-card,
  .showcase-card:nth-child(3) {
    grid-column: auto;
  }

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

  .showcase-image {
    min-height: 260px;
  }

  .dashboard-scene {
    min-height: 300px;
  }

  .reviews-block .section-heading.compact {
    margin-top: 66px;
  }

  .cta-panel {
    text-align: left;
  }

  .cta-panel .kicker {
    margin-inline: 0;
  }

  .cta-panel .button {
    width: 100%;
  }

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

  .contact-item {
    grid-template-columns: 40px 1fr;
    align-items: start;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

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

@media (max-width: 460px) {
  .eyebrow,
  .kicker {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-heading .kicker,
  .about-copy .kicker {
    width: auto;
  }

  .hero-content {
    padding-top: 42px;
  }

  .bottle-a {
    left: 26%;
  }

  .bottle-b {
    left: 48%;
  }

  .jar {
    left: 53%;
  }

  .showcase-content {
    padding: 22px;
  }
}
