:root {
  --ink: #050505;
  --muted: #6e6e73;
  --quiet: #86868b;
  --soft: #f5f5f7;
  --soft-2: #fbfbfd;
  --line: #d2d2d7;
  --blue: #26f;
  --blue-deep: #0047d8;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.mobile-menu a {
  color: rgba(0, 0, 0, 0.72);
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--ink);
}

.desktop-nav a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
  background: #1d1d1f;
}

.button.secondary {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 6px;
  width: 20px;
}

.menu-lines span {
  display: block;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.site-header.open .menu-lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.open .menu-lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.section {
  padding: 120px 24px;
}

.section.soft {
  background: var(--soft-2);
}
.section-gradient {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-gradient::before,
.section-gradient::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
}

.section-gradient::before {
  width: var(--gradient-size, 720px);
  height: var(--gradient-size, 720px);
  left: var(--gradient-left, auto);
  top: var(--gradient-top, auto);
  right: var(--gradient-right, auto);
  bottom: var(--gradient-bottom, auto);
  background: radial-gradient(circle, var(--gradient-primary, rgba(124, 140, 255, 0.14)) 0%, transparent 68%);
  filter: blur(var(--gradient-blur, 54px));
  opacity: var(--gradient-opacity, 1);
}

.section-gradient::after {
  width: var(--gradient-secondary-size, 520px);
  height: var(--gradient-secondary-size, 520px);
  left: var(--gradient-secondary-left, auto);
  top: var(--gradient-secondary-top, auto);
  right: var(--gradient-secondary-right, auto);
  bottom: var(--gradient-secondary-bottom, auto);
  background: radial-gradient(circle, var(--gradient-secondary, rgba(138, 220, 230, 0.08)) 0%, transparent 70%);
  filter: blur(var(--gradient-secondary-blur, 46px));
  opacity: var(--gradient-secondary-opacity, 1);
}

@keyframes gradient-drift {
  0%, 100% {
    transform: translate3d(-0.8%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.8%, 0.8%, 0) scale(1.025);
  }
}

.hero-gradient {
  --gradient-primary: rgba(104, 129, 255, 0.18);
  --gradient-secondary: rgba(151, 117, 255, 0.08);
  --gradient-size: 760px;
  --gradient-right: -170px;
  --gradient-top: 80px;
  --gradient-secondary-size: 520px;
  --gradient-secondary-right: 240px;
  --gradient-secondary-bottom: 40px;
}

.value-gradient {
  --gradient-primary: rgba(228, 236, 248, 0.72);
  --gradient-secondary: rgba(255, 255, 255, 0.76);
  --gradient-size: 900px;
  --gradient-left: 12%;
  --gradient-top: -430px;
  --gradient-blur: 34px;
  --gradient-secondary-size: 760px;
  --gradient-secondary-right: 0;
  --gradient-secondary-top: -360px;
  background: linear-gradient(90deg, #fff 0%, #f8fbff 52%, #fff 100%);
}

.services-gradient {
  --gradient-primary: rgba(138, 220, 230, 0.14);
  --gradient-secondary: rgba(151, 117, 255, 0.07);
  --gradient-size: 720px;
  --gradient-left: -260px;
  --gradient-top: 70px;
  --gradient-secondary-size: 520px;
  --gradient-secondary-right: -190px;
  --gradient-secondary-bottom: 50px;
}

.why-gradient {
  --gradient-primary: rgba(226, 232, 240, 0.62);
  --gradient-secondary: rgba(151, 117, 255, 0.06);
  --gradient-size: 820px;
  --gradient-right: -280px;
  --gradient-top: 40px;
  --gradient-secondary-size: 520px;
  --gradient-secondary-left: -190px;
  --gradient-secondary-bottom: 10px;
  background: #fff;
}

.process-gradient {
  --gradient-primary: rgba(142, 185, 255, 0.13);
  --gradient-secondary: rgba(138, 220, 230, 0.08);
  --gradient-size: 760px;
  --gradient-left: 18%;
  --gradient-top: -180px;
  --gradient-secondary-size: 560px;
  --gradient-secondary-right: -180px;
  --gradient-secondary-bottom: 40px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f7faff 44%, #fbfbfd 100%);
}

.about-gradient {
  --gradient-primary: rgba(255, 184, 157, 0.16);
  --gradient-secondary: rgba(255, 214, 198, 0.11);
  --gradient-size: 760px;
  --gradient-right: -250px;
  --gradient-top: 40px;
  --gradient-secondary-size: 540px;
  --gradient-secondary-left: -170px;
  --gradient-secondary-bottom: -130px;
}

.contact-gradient {
  --gradient-primary: rgba(104, 129, 255, 0.22);
  --gradient-secondary: rgba(255, 184, 157, 0.13);
  --gradient-size: 820px;
  --gradient-right: -240px;
  --gradient-top: -80px;
  --gradient-secondary-size: 620px;
  --gradient-secondary-left: -200px;
  --gradient-secondary-bottom: -160px;
  background: linear-gradient(135deg, #fbfbfd 0%, #f6f9ff 54%, #fff8f4 100%);
}

.footer-gradient {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% -20%, rgba(104, 129, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #101014 0%, #050505 44%, #050505 100%);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 721px) {
  .hero-gradient::before,
  .contact-gradient::before {
    animation: gradient-drift 16s ease-in-out infinite;
  }
}

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

.section-kicker {
  margin: 0 0 20px;
  color: var(--quiet);
  font-size: 18px;
  font-weight: 600;
}

.section-heading {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 800;
}

.section-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.45;
}

.hero {
  min-height: calc(100vh - 64px);
  overflow: hidden;
  padding: 118px 24px 80px;
  background: #fff;
}

.hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 8.7vw, 116px);
  line-height: 0.92;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 600;
}

.hero-copy {
  max-width: 650px;
  margin: 34px 0 42px;
  color: var(--muted);
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.studio-frame {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(#f7f7f9, #f7f7f9) padding-box,
    linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02)) border-box;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.82);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c8cc;
}

.frame-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 26px;
}

.frame-panel {
  min-height: 148px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.frame-panel.wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.frame-line {
  height: 10px;
  border-radius: 999px;
  background: #e6e6ea;
}

.frame-line.dark {
  width: 58%;
  height: 18px;
  background: #1d1d1f;
}

.frame-line.blue {
  width: 38%;
  background: var(--blue);
}

.frame-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.frame-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--soft);
}

.frame-tile:nth-child(2),
.frame-tile:nth-child(5) {
  background: #e8f0ff;
}

.frame-footer {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.value-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.value-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
}

.value-item:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.services-list {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:focus-within,
.service-row:hover {
  background: linear-gradient(90deg, rgba(38, 102, 255, 0.055), transparent 55%);
}

.service-number {
  color: var(--quiet);
  font-size: 16px;
  font-weight: 700;
}

.service-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.service-description {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  color: #333336;
  font-size: 13px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 72px;
  align-items: start;
}

.differentiators {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.differentiators li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 18px;
  background: #fff;
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 700;
}

.differentiators li::after {
  content: "+";
  color: var(--quiet);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
}

.process-step {
  min-height: 330px;
  padding: 28px;
  background: #fff;
}

.process-number {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.process-step h3 {
  margin: 80px 0 18px;
  font-size: 28px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-panel {
  padding: 70px;
  border-radius: 8px;
  background: #0b0b0c;
  color: #fff;
}

.about-panel .section-kicker,
.about-panel .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.about-panel .section-heading {
  max-width: 940px;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: 76px;
  align-items: start;
}

.contact-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-note a {
  color: var(--blue-deep);
  font-weight: 700;
}

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

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-label {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 700;
}

.required {
  color: var(--blue-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b00020;
}

.error-message {
  min-height: 18px;
  color: #b00020;
  font-size: 13px;
  font-weight: 600;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.checkbox-label {
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.form-status.error {
  color: #b00020;
}

.form-status.success {
  color: #067d3b;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 70px 24px 42px;
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, 0.45fr));
  gap: 48px;
}

.footer-brand {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.footer-description {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.footer-group h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  * {
    transition-duration: 0.24s;
    transition-property: background, border-color, color, opacity, transform;
    transition-timing-function: ease;
  }
}

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

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

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    height: calc(100vh - 64px);
    padding: 28px 24px 40px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header.open .mobile-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-inner {
    width: min(620px, 100%);
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 4px;
  }

  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 32px;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-grid,
  .contact-intro,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 92px;
  }

  .studio-frame {
    min-height: 480px;
  }

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

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

@media (max-width: 720px) {
  .nav-inner,
  .value-inner {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 82px 18px;
  }

  .hero {
    min-height: auto;
    padding: 82px 18px 64px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-copy {
    margin-top: 28px;
  }

  .studio-frame {
    min-height: 410px;
  }

  .frame-canvas {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .frame-panel {
    min-height: 112px;
  }

  .frame-panel.wide {
    min-height: 140px;
  }

  .value-inner {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: 62px;
    justify-content: flex-start;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 14px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .process-list,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 44px 24px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step h3 {
    margin-top: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .cta-row,
  .submit-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .mobile-menu a {
    font-size: 28px;
  }
}

/* Soft-gradient readability surfaces */
.hero-gradient {
  background: #fff;
}

.frame-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.differentiators li,
.process-step {
  background: rgba(255, 255, 255, 0.9);
}

.about-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 184, 157, 0.14), transparent 32%),
    #0b0b0c;
}

.contact-form {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

@media (max-width: 720px) {
  .section-gradient::before {
    width: min(var(--gradient-size, 720px), 120vw);
    height: min(var(--gradient-size, 720px), 120vw);
    filter: blur(36px);
  }

  .section-gradient::after {
    display: none;
  }

  .contact-form {
    padding: 18px;
  }
}
/* Bold gradient visual direction */
:root {
  --brand-blue: #2563eb;
  --brand-indigo: #4f46e5;
  --brand-violet: #7c3aed;
  --brand-cyan: #06b6d4;
  --brand-pink: #ec4899;
  --brand-orange: #f97316;
  --brand-lime: #84cc16;
  --surface-dark: #090b14;
  --surface-light: #f8fafc;
  --text-light: #ffffff;
  --text-dark: #111827;
}

.site-header {
  background: rgba(255, 255, 255, 0.76);
}

.button {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-indigo) 55%, var(--brand-violet));
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.32);
}

.button:hover {
  background: linear-gradient(135deg, #22d3ee, #6366f1 55%, #8b5cf6);
  box-shadow: 0 18px 38px rgba(79, 70, 229, 0.42);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-gradient {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 10, 24, 0.88) 0%, rgba(7, 10, 24, 0.56) 48%, rgba(7, 10, 24, 0.16) 100%),
    radial-gradient(circle at 85% 18%, rgba(34, 211, 238, 0.82), transparent 31%),
    radial-gradient(circle at 68% 78%, rgba(124, 58, 237, 0.92), transparent 38%),
    radial-gradient(circle at 18% 88%, rgba(236, 72, 153, 0.42), transparent 36%),
    linear-gradient(135deg, #172554 0%, #312e81 45%, #6d28d9 100%);
}

.hero-gradient::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  filter: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-gradient::after {
  content: "DIGITAL";
  right: -0.12em;
  bottom: -0.22em;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  filter: none;
  color: rgba(255, 255, 255, 0.075);
  font-size: clamp(96px, 19vw, 270px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.hero .eyebrow,
.hero .hero-copy {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.studio-frame {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09)),
    rgba(15, 23, 42, 0.32);
  box-shadow: 0 34px 90px rgba(3, 7, 18, 0.34);
  backdrop-filter: blur(18px);
}

.browser-bar {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.frame-panel {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.value-gradient {
  border: 0;
  background: linear-gradient(135deg, #090b14 0%, #111827 48%, #172554 100%);
}

.value-gradient::before {
  display: none;
}

.value-item {
  border-left-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.value-item:last-child {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.services-gradient {
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(6, 182, 212, 0.55), transparent 28%),
    linear-gradient(135deg, #0e7490 0%, #2563eb 48%, #4f46e5 100%);
}

.services-gradient .section-kicker,
.services-gradient .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.services-list {
  border-top: 0;
}

.service-row {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.88), rgba(37, 99, 235, 0.88));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.service-row:nth-child(2) {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(147, 51, 234, 0.88));
}

.service-row:nth-child(3) {
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.9), rgba(249, 115, 22, 0.86));
}

.service-row:nth-child(4) {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(132, 204, 22, 0.82));
}

.service-row::after {
  content: "BUILD";
  position: absolute;
  right: -0.15em;
  bottom: -0.32em;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(74px, 12vw, 170px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.service-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 74px rgba(15, 23, 42, 0.28);
}

.service-number,
.service-description {
  color: rgba(255, 255, 255, 0.82);
}

.deliverables li {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.why-gradient {
  background: #fff;
}

.process-gradient {
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.17), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef6ff 48%, #f8fafc 100%);
}

.process-step {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.technical-section {
  color: #fff;
}

.technical-gradient {
  background:
    radial-gradient(at 18% 18%, rgba(37, 99, 235, 0.9) 0, transparent 38%),
    radial-gradient(at 88% 18%, rgba(6, 182, 212, 0.62) 0, transparent 34%),
    radial-gradient(at 72% 82%, rgba(124, 58, 237, 0.74) 0, transparent 38%),
    linear-gradient(135deg, #070a18 0%, #111827 52%, #24114b 100%);
}

.technical-gradient::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  filter: none;
  opacity: 0.25;
  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: 48px 48px;
}

.technical-section .section-kicker,
.technical-section .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.capability-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.capability-card span {
  display: block;
  margin-bottom: 28px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.capability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.about-gradient {
  background:
    radial-gradient(circle at 85% 18%, rgba(236, 72, 153, 0.38), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(249, 115, 22, 0.34), transparent 30%),
    linear-gradient(135deg, #fff7ed 0%, #ffe4d6 50%, #fdf2f8 100%);
}

.about-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.18), transparent 32%),
    linear-gradient(135deg, #111827 0%, #24114b 100%);
  box-shadow: 0 30px 90px rgba(88, 28, 135, 0.22);
}

.contact-gradient {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 10, 24, 0.82) 0%, rgba(7, 10, 24, 0.46) 46%, rgba(7, 10, 24, 0.14) 100%),
    radial-gradient(circle at 84% 20%, rgba(6, 182, 212, 0.78), transparent 32%),
    radial-gradient(circle at 72% 86%, rgba(124, 58, 237, 0.86), transparent 38%),
    linear-gradient(135deg, #172554 0%, #4f46e5 52%, #7c3aed 100%);
}

.contact-gradient .section-kicker,
.contact-gradient .section-copy,
.contact-gradient .contact-note {
  color: rgba(255, 255, 255, 0.78);
}

.contact-gradient .contact-note a {
  color: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 90px rgba(3, 7, 18, 0.24);
}

.footer-gradient {
  background:
    radial-gradient(circle at 82% -18%, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #050814 54%, #030712 100%);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 721px) {
  .studio-frame {
    animation: interface-float 8s ease-in-out infinite;
  }
}

@keyframes interface-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 720px) {
  .hero-gradient,
  .contact-gradient {
    background:
      linear-gradient(180deg, rgba(7, 10, 24, 0.82), rgba(7, 10, 24, 0.5)),
      linear-gradient(135deg, #172554 0%, #4f46e5 54%, #7c3aed 100%);
  }

  .hero-gradient::after,
  .service-row::after {
    display: none;
  }

  .service-row {
    padding: 26px 22px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }
}
/* Keep decorative gradient layers visible but below content */
.section-gradient::before,
.section-gradient::after {
  z-index: 0;
}

.section-gradient > * {
  position: relative;
  z-index: 1;
}
/* Light theme with moderately visible gradients */
:root {
  --background: #ffffff;
  --surface: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --border: rgba(15, 23, 42, 0.1);
  --gradient-blue: #b9d8ff;
  --gradient-cyan: #b5f1f4;
  --gradient-violet: #d4c4ff;
  --gradient-pink: #f6c7e6;
  --gradient-peach: #ffd3bb;
  --gradient-yellow: #f8e7a6;
  --gradient-mint: #bdebd6;
}

body {
  color: var(--text-primary);
  background: var(--background);
}

.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
}

.button {
  background: linear-gradient(135deg, #2563eb, #6d4aff);
  color: #fff;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.24);
}

.button:hover {
  background: linear-gradient(135deg, #1d4ed8, #5b35f4);
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--text-primary);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.86);
}

.hero-gradient {
  color: var(--text-primary);
  background:
    radial-gradient(circle at 78% 18%, rgba(181, 241, 244, 0.9), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(212, 196, 255, 0.85), transparent 38%),
    radial-gradient(circle at 18% 85%, rgba(185, 216, 255, 0.65), transparent 40%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 45%, #faf7ff 100%);
}

.hero-gradient::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
}

.hero-gradient::after {
  color: rgba(37, 99, 235, 0.065);
}

.hero .eyebrow,
.hero .hero-copy {
  color: var(--text-secondary);
}

.hero h1 {
  color: var(--text-primary);
  text-shadow: none;
}

.studio-frame {
  border-color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(51, 65, 85, 0.16);
  backdrop-filter: blur(16px);
}

.browser-bar {
  border-bottom-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.value-gradient {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.94), rgba(232, 241, 255, 0.88), rgba(250, 245, 255, 0.9));
}

.value-item {
  border-left-color: rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
}

.value-item:last-child {
  border-right-color: rgba(15, 23, 42, 0.08);
}

.services-gradient {
  color: var(--text-primary);
  background:
    radial-gradient(circle at 10% 15%, rgba(181, 241, 244, 0.82), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(185, 216, 255, 0.68), transparent 42%),
    #f8fbff;
}

.services-gradient .section-kicker,
.services-gradient .section-copy,
.service-number,
.service-description {
  color: var(--text-secondary);
}

.service-row,
.service-row:nth-child(2),
.service-row:nth-child(3),
.service-row:nth-child(4) {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 50px rgba(51, 65, 85, 0.09);
  backdrop-filter: blur(12px);
}

.service-row::after {
  color: rgba(37, 99, 235, 0.07);
}

.service-row:hover {
  box-shadow: 0 28px 64px rgba(51, 65, 85, 0.14);
}

.deliverables li {
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--text-primary);
  background: rgba(248, 250, 252, 0.82);
}

.why-gradient {
  background:
    radial-gradient(circle at 86% 16%, rgba(212, 196, 255, 0.5), transparent 36%),
    radial-gradient(circle at 8% 88%, rgba(189, 235, 214, 0.48), transparent 42%),
    #ffffff;
}

.process-gradient {
  background:
    linear-gradient(135deg, rgba(248, 231, 166, 0.38), rgba(255, 255, 255, 0.8) 42%, rgba(185, 216, 255, 0.5));
}

.process-step {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 46px rgba(51, 65, 85, 0.08);
}

.technical-section {
  color: var(--text-primary);
}

.technical-gradient {
  background:
    radial-gradient(circle at 15% 20%, rgba(185, 216, 255, 0.86), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(212, 196, 255, 0.78), transparent 42%),
    #f5f7ff;
}

.technical-gradient::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
}

.technical-section .section-kicker,
.technical-section .section-copy {
  color: var(--text-secondary);
}

.capability-card {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 56px rgba(51, 65, 85, 0.1);
}

.capability-card span {
  color: var(--brand-indigo);
}

.capability-card p {
  color: var(--text-secondary);
}

.about-gradient {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 211, 187, 0.9), transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(246, 199, 230, 0.65), transparent 44%),
    #fffaf7;
}

.about-panel {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(148, 63, 38, 0.12);
  backdrop-filter: blur(14px);
}

.about-panel .section-kicker,
.about-panel .section-copy {
  color: var(--text-secondary);
}

.contact-gradient {
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 20%, rgba(181, 241, 244, 0.95), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(212, 196, 255, 0.9), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(246, 199, 230, 0.72), transparent 45%),
    linear-gradient(135deg, #f5fbff, #faf5ff);
}

.contact-gradient .section-kicker,
.contact-gradient .section-copy,
.contact-gradient .contact-note {
  color: var(--text-secondary);
}

.contact-gradient .contact-note a {
  color: var(--brand-indigo);
}

.contact-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(51, 65, 85, 0.12);
}

.footer-gradient,
.site-footer {
  color: var(--text-secondary);
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.footer-brand,
.footer-group h2 {
  color: var(--text-primary);
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--brand-indigo);
}

.footer-bottom {
  border-top-color: rgba(15, 23, 42, 0.1);
}

@media (max-width: 720px) {
  .hero-gradient,
  .contact-gradient {
    background:
      radial-gradient(circle at 80% 18%, rgba(181, 241, 244, 0.75), transparent 42%),
      radial-gradient(circle at 18% 88%, rgba(212, 196, 255, 0.62), transparent 44%),
      linear-gradient(135deg, #ffffff 0%, #f5f9ff 52%, #faf7ff 100%);
  }

  .technical-gradient {
    background:
      radial-gradient(circle at 20% 18%, rgba(185, 216, 255, 0.72), transparent 42%),
      #f5f7ff;
  }
}
/* Header without visible wordmark */
.nav-inner {
  justify-content: flex-end;
}

.desktop-nav {
  margin-left: 0;
}
/* Final layout polish from viewport probe */
.hero {
  min-height: auto;
  padding: clamp(82px, 8vw, 108px) 24px clamp(58px, 6vw, 76px);
}

.hero-grid {
  gap: clamp(34px, 5vw, 56px);
}

.hero h1 {
  font-size: clamp(48px, 7.4vw, 98px);
  line-height: 0.96;
}

.hero-copy {
  margin: 28px 0 36px;
}

.studio-frame {
  min-height: clamp(430px, 39vw, 540px);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 82px;
  }

  .studio-frame {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 72px 18px 56px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.4vw, 62px);
  }

  .hero-copy {
    margin: 22px 0 30px;
  }

  .studio-frame {
    min-height: 360px;
  }
}
/* Hero headline wrap control */
.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1;
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 9vw, 68px);
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(40px, 11.6vw, 52px);
    line-height: 1.02;
  }
}
/* Magebite logo application */
.nav-inner {
  justify-content: space-between;
}

.logo-brand {
  flex: 0 0 auto;
  padding: 0;
}

.logo-brand .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
}

@media (max-width: 720px) {
  .logo-brand .brand-mark {
    width: 36px;
    height: 36px;
  }
}