:root {
  --bg: #05070d;
  --bg-soft: #0a0f1c;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --text: #f7f8fb;
  --muted: #a5afc2;
  --muted-2: #6f7a90;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #35e1ff;
  --accent-2: #d6b56d;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(53, 225, 255, 0.11), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(214, 181, 109, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

::selection {
  background: rgba(53, 225, 255, 0.25);
  color: var(--text);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 225, 255, 0.18), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

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

.section-heading {
  max-width: 650px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

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

h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  max-width: 1020px;
  margin-bottom: 28px;
}

h1 span {
  font-family: "Playfair Display", serif;
  color: var(--accent-2);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.3rem, 5.6vw, 5.6rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.section-subtitle {
  max-width: 720px;
  font-size: 1.06rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 7, 13, 0.74);
  border-color: var(--line);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(53, 225, 255, 0.35);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(53, 225, 255, 0.18), rgba(214, 181, 109, 0.10)),
    rgba(255,255,255,0.04);
  box-shadow: 0 0 32px rgba(53, 225, 255, 0.1);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-links .nav-cta {
  color: var(--text);
  background: rgba(53, 225, 255, 0.12);
  border: 1px solid rgba(53, 225, 255, 0.24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.orb-one {
  width: 38vw;
  height: 38vw;
  right: -8vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(53, 225, 255, 0.18), transparent 65%);
  animation: float 8s ease-in-out infinite;
}

.orb-two {
  width: 30vw;
  height: 30vw;
  left: -8vw;
  bottom: 6vh;
  background: radial-gradient(circle, rgba(214, 181, 109, 0.14), transparent 65%);
  animation: float 9s ease-in-out infinite reverse;
}

.light-beam {
  position: absolute;
  width: 90vw;
  height: 32vh;
  left: 12vw;
  top: 26vh;
  background: linear-gradient(90deg, transparent, rgba(53, 225, 255, 0.12), transparent);
  transform: rotate(-11deg);
  filter: blur(24px);
  opacity: 0.7;
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(to top, rgba(5,7,13,1), transparent),
    linear-gradient(rgba(53,225,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,225,255,0.08) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  transform: perspective(800px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.45;
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 38px 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #031016;
  background: linear-gradient(135deg, var(--accent), #ffffff);
  box-shadow: 0 18px 42px rgba(53, 225, 255, 0.2);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.hero-proof div {
  padding: 20px;
  background: rgba(255,255,255,0.045);
}

.hero-proof strong {
  display: block;
  color: var(--accent-2);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

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

.hero-visual {
  position: relative;
}

.video-frame {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 225, 255, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(214, 181, 109, 0.12), transparent 36%),
    #0a0f1c;
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 15%, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at 52% 38%, rgba(255,255,255,0.18), transparent 28%);
  opacity: 0.65;
}

.video-topbar {
  position: absolute;
  left: 22px;
  top: 22px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.video-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.45);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 12px;
  padding: 34px;
}

.play-button {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(5, 7, 13, 0.58);
  border: 1px solid rgba(53, 225, 255, 0.25);
  box-shadow: 0 0 70px rgba(53, 225, 255, 0.2);
}

.play-button svg {
  width: 38px;
  fill: currentColor;
  transform: translateX(3px);
}

.video-placeholder p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
}

.video-placeholder small {
  color: var(--muted);
}

.timeline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  overflow: hidden;
}

.timeline span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.floating-card {
  position: absolute;
  max-width: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(5,7,13,0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-card-one {
  left: -34px;
  bottom: 56px;
}

.floating-card-two {
  right: -26px;
  top: 104px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: var(--muted-2);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.scroll-hint span {
  width: 18px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 99px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 1.4s ease infinite;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.about-content {
  padding-top: 14px;
}

.about-content p {
  font-size: 1.1rem;
}

.about-content strong {
  color: var(--text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.stats-grid div {
  padding: 22px;
  background: rgba(255,255,255,0.045);
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.service-card,
.project-card,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(53, 225, 255, 0.34);
  background: linear-gradient(180deg, rgba(53,225,255,0.10), rgba(255,255,255,0.035));
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(53,225,255,0.09);
  border: 1px solid rgba(53,225,255,0.18);
  margin-bottom: 44px;
}

.icon svg {
  width: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.project-card {
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.project-card.large {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,181,109,0.34);
}

.project-thumb {
  min-height: 330px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(135deg, rgba(53,225,255,0.18), rgba(214,181,109,0.11));
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,7,13,0.78), transparent 55%),
    linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
}

.thumb-one {
  background:
    radial-gradient(circle at 26% 22%, rgba(53,225,255,0.35), transparent 28%),
    linear-gradient(135deg, #111827, #0a0f1c 45%, #201b11);
}

.thumb-two {
  background:
    radial-gradient(circle at 74% 20%, rgba(214,181,109,0.35), transparent 26%),
    linear-gradient(135deg, #0a0f1c, #131a2b 60%, #05070d);
}

.thumb-three {
  background:
    radial-gradient(circle at 40% 26%, rgba(255,255,255,0.22), transparent 20%),
    linear-gradient(135deg, #051923, #0b2943, #05070d);
}

.thumb-four {
  background:
    radial-gradient(circle at 70% 32%, rgba(53,225,255,0.22), transparent 30%),
    linear-gradient(135deg, #100d1c, #151a24, #05070d);
}

.thumb-five {
  background:
    radial-gradient(circle at 45% 24%, rgba(214,181,109,0.24), transparent 28%),
    linear-gradient(135deg, #0f1016, #1c1622, #05070d);
}

.tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(5,7,13,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.mini-play {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(5,7,13,0.55);
  color: var(--accent);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.mini-play svg {
  width: 24px;
  fill: currentColor;
}

.project-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-info p {
  color: var(--accent-2);
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-info h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  margin-bottom: 14px;
}

.project-info span {
  color: var(--muted);
  line-height: 1.7;
  display: block;
  margin-bottom: 24px;
}

.project-info a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 850;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-sm);
}

.process-step span {
  color: var(--accent);
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.65rem;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin-bottom: 0;
}

.why-panel {
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 75% 10%, rgba(53,225,255,0.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.benefits-grid div {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(5,7,13,0.38);
}

.benefits-grid span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-bottom: 24px;
}

.benefits-grid h3 {
  margin-bottom: 12px;
}

.benefits-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.cta {
  padding-top: 60px;
}

.cta-panel {
  text-align: center;
  padding: clamp(46px, 7vw, 90px) 26px;
  border: 1px solid rgba(53,225,255,0.18);
  border-radius: calc(var(--radius) + 14px);
  background:
    radial-gradient(circle at 50% 0%, rgba(53,225,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 30px 120px rgba(53,225,255,0.08);
}

.cta-panel h2 {
  max-width: 870px;
  margin-inline: auto;
}

.cta-panel p {
  max-width: 610px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}

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

.contact-details a,
.contact-details p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  color: var(--text);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.contact-details a:hover {
  border-color: rgba(53,225,255,0.36);
  transform: translateX(4px);
}

.contact-details span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 850;
  margin-bottom: 5px;
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(5,7,13,0.52);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  padding: 16px 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(53,225,255,0.48);
  box-shadow: 0 0 0 4px rgba(53,225,255,0.08);
}

.contact-form textarea {
  resize: vertical;
}

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

.form-note {
  font-size: 0.85rem;
  margin: 14px 0 0;
  color: var(--muted-2);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 0;
  color: var(--muted-2);
}

.footer a {
  color: var(--muted);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -22px, 0) scale(1.04); }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@media (max-width: 1020px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

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

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

  .project-card.large {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.large {
    grid-column: span 6;
  }

  .floating-card-two {
    right: 16px;
  }

  .floating-card-one {
    left: 16px;
  }
}

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

  .section {
    padding: 86px 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

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

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

  .nav-links {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5,7,13,0.92);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 16px;
  }

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

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

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

  .video-frame {
    min-height: 450px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
    max-width: none;
  }

  .cards-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .project-card,
  .project-card.large {
    grid-column: auto;
  }

  .project-thumb {
    min-height: 260px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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


}

.showreel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 7, 13, 0.72), transparent 55%),
    linear-gradient(120deg, rgba(53, 225, 255, 0.12), transparent, rgba(214, 181, 109, 0.1));
  pointer-events: none;
}

.vertical-showcase {
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #05070d;
}

.vertical-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(5, 7, 13, 0.12) 36%, rgba(5, 7, 13, 0.74) 100%),
    linear-gradient(to top, rgba(5, 7, 13, 0.78), transparent 58%),
    linear-gradient(120deg, rgba(53, 225, 255, 0.16), transparent 42%, rgba(214, 181, 109, 0.12));
  pointer-events: none;
}

.project-bg-video {
  position: absolute;
  inset: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  object-fit: cover;
  filter: blur(22px) saturate(1.25) brightness(0.55);
  transform: scale(1.12);
  opacity: 0.72;
  z-index: 0;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(38%, 240px);
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(5, 7, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(53, 225, 255, 0.14);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 5px;
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.82);
  z-index: 4;
}

.phone-video {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
  background: #05070d;
}

.vertical-showcase .tag {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
}

.vertical-showcase .mini-play {
  z-index: 3;
}

@media (max-width: 760px) {
  .vertical-showcase {
    min-height: 420px;
  }

  .phone-mockup {
    width: min(58%, 230px);
  }
}

.contact-right {
  display: grid;
  gap: 18px;
}

.partners-panel {
  width: min(760px, calc(100vw - 28px));
  justify-self: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 225, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

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

.partners-heading p {
  margin: 0;
  color: var(--text);
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 12px;
}

.partner-logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.46);
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 225, 255, 0.28);
  background: rgba(53, 225, 255, 0.055);
  color: var(--text);
}

.partner-logo img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.72;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.partner-logo:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 1020px) {
  .partners-panel {
    width: 100%;
    justify-self: stretch;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.logo-mark {
  width: 145px;
  height: 62px;
  padding: 0;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2px);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}