:root {
  --bg: #07070a;
  --bg-soft: #101018;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f3ef;
  --muted: rgba(244, 243, 239, 0.66);
  --muted-strong: rgba(244, 243, 239, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffd43b;
  --accent-2: #6c4cff;
  --accent-3: #2ee6a6;
  --dark: #09090c;
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, blinkmacsystemfont, "segoe ui", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(108, 76, 255, 0.24), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(255, 212, 59, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.12) 75%);
  background-size: 4px 4px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 212, 59, 0.16), transparent 62%);
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  transition: .3s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(244, 243, 239, 0.88);
  color: var(--dark);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fff0a8);
  color: #101018;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.brand-text small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: .62;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: currentColor;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 750;
  opacity: .76;
  transition: .25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.site-header.is-scrolled .nav-links a:hover {
  color: var(--accent-2);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: .25s ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #101018;
  box-shadow: 0 14px 36px rgba(255, 212, 59, 0.25);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.site-header.is-scrolled .btn-secondary {
  color: var(--dark);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: currentColor;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 1px 0;
  border-radius: 99px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 104px;
  left: 50%;
  z-index: 99;
  display: none;
  width: min(420px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(244, 243, 239, 0.92);
  color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 850;
}

.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.1), var(--bg)),
    radial-gradient(circle at 72% 38%, rgba(46, 230, 166, 0.12), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: .98;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 920px;
  font-size: clamp(4rem, 8vw, 8.8rem);
}

h2 {
  max-width: 880px;
  font-size: clamp(2.4rem, 5.5vw, 5.8rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-text {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: .9rem;
}

.hero-proof strong {
  color: var(--text);
}

.hero-panel {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 212, 59, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.panel-content {
  padding: 34px;
}

.panel-label {
  margin-bottom: 16px;
  color: var(--accent-3);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.panel-content h2 {
  font-size: clamp(2.1rem, 3vw, 3.6rem);
}

.panel-stack {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.panel-stack article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
}

.panel-stack span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
}

.panel-stack strong,
.panel-stack small {
  display: block;
}

.panel-stack small {
  margin-top: 6px;
  color: var(--muted);
}

.hero-marquee {
  width: 100vw;
  margin-top: 90px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

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

.hero-marquee span {
  padding: 18px 34px;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intro-grid,
.method-grid,
.about-grid {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-kicker span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.intro-copy p,
.method-copy p,
.about-copy p,
.contact-box p {
  max-width: 740px;
  margin-top: 28px;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.section-head {
  margin-bottom: 54px;
}

.section-head h2 {
  max-width: 920px;
}

.works-grid {
  display: grid;
  gap: 28px;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
}

.work-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d1d2a, #09090c);
}

.work-visual::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  filter: blur(70px);
}

.work-visual.casa::after {
  background: rgba(255, 212, 59, .28);
}

.work-visual.cycling::after {
  background: rgba(46, 230, 166, .22);
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.mock-content {
  position: absolute;
  display: none;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 2;

  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;

  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.mock-content span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mock-content strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -0.06em;
}

.work-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.work-type {
  color: var(--accent-3);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.work-info h3 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.work-info p {
  margin-top: 18px;
  color: var(--muted-strong);
}

.work-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.work-info li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.work-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 900;
}

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

.service-card,
.number-card,
.about-card,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.service-card {
  min-height: 320px;
  padding: 28px;
}

.service-card span {
  color: var(--accent);
  font-weight: 900;
}

.service-card h3 {
  margin-top: 46px;
  font-size: 1.7rem;
}

.service-card p {
  margin-top: 18px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 950;
}

.timeline p {
  margin-top: 8px;
  color: var(--muted);
}

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

.number-card {
  padding: 30px;
}

.number-card strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: -0.07em;
}

.number-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.about-card {
  padding: 34px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}

.tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.contact-box {
  padding: clamp(34px, 7vw, 82px);
  text-align: center;
}

.contact-box h2,
.contact-box p {
  margin-inline: auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.footer {
  padding: 76px 0 34px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 59, 0.10), transparent 30%),
    rgba(255, 255, 255, 0.025);
}

.footer-inner {
  display: grid;
  gap: 38px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) .65fr .65fr minmax(260px, .9fr);
  gap: 34px;
  align-items: start;
}

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

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-logo span {
  display: grid;
  line-height: 1.1;
}

.footer-logo strong {
  color: var(--text);
  font-size: 1rem;
}

.footer-logo small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .95rem;
}

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

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 750;
  transition: .25s ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-column i {
  width: 18px;
  height: 18px;
}

.footer-cta {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.footer-cta > span {
  display: block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-cta strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255, 212, 59, 0.20);
  transition: .25s ease;
}

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

.footer-btn i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
  transition: .25s ease;
}

.back-top:hover {
  color: var(--accent);
}

.back-top i {
  width: 17px;
  height: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s ease;
}

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

.feature-icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255, 212, 59, 0.14);
  color: var(--accent);
  border: 1px solid rgba(255, 212, 59, 0.22);
}

.feature-icon i,
.service-icon i {
  width: 26px;
  height: 26px;
  stroke-width: 2.1;
}

.panel-stack article span.feature-icon,
.service-card span.service-icon {
  color: var(--accent);
  font-weight: initial;
}

.service-card h3 {
  margin-top: 34px;
}

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

  .menu-btn {
    display: grid;
  }

  .hero-grid,
  .intro-grid,
  .method-grid,
  .about-grid,
  .work-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

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

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

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

    .footer-cta {
    grid-column: span 2;
    }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    min-height: 72px;
    padding: 10px 12px;
  }

  /* .brand-text {
    display: none;
  } */

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

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

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

  .hero {
    padding-top: 130px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .work-visual {
    min-height: 320px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

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

  .cursor-glow {
    display: none;
  }

  .footer {
  padding-top: 58px;
  }

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

  .footer-cta {
  grid-column: auto;
  }

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

  .work-features {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 58px;
  }

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

  .footer-cta {
    grid-column: auto;
  }

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

  .work-preview {
    inset: 54px 12px 12px;
    border-radius: 20px;
  }

  .mock-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 20px;
    border-radius: 22px;
  }
}

.btn,
.header-cta,
.work-link,
.footer-btn,
.back-top,
.footer-column a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn,
.header-cta {
  gap: 10px;
}

.btn i,
.header-cta i,
.work-link i,
.footer-btn i,
.back-top i,
.footer-column i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.btn svg,
.header-cta svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.btn .bi,
.footer-column .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.feature-icon,
.service-icon {
  display: grid !important;
  place-items: center;

  width: 56px;
  height: 56px;

  margin-bottom: 24px;

  border: 1px solid rgba(255, 212, 59, 0.28);
  border-radius: 18px;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 212, 59, 0.22), transparent 54%),
    rgba(255, 212, 59, 0.10);

  color: var(--accent);

  font-size: initial;
  font-weight: initial;
  line-height: 1;
}

.feature-icon svg,
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.panel-stack article span.feature-icon,
.service-card span.service-icon {
  color: var(--accent);
}

.service-card h3 {
  margin-top: 34px;
}

.work-info ul {
  display: none;
}

.work-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.work-features div {
  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 56px;
  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);

  font-size: .92rem;
  font-weight: 800;
}

.work-features svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  stroke-width: 2.3;
  flex: 0 0 auto;
}

.work-link {
  gap: 9px;
  width: fit-content;
}

.work-link svg {
  width: 18px;
  height: 18px;
  transition: .25s ease;
}

.work-link:hover svg {
  transform: translate(3px, -3px);
}

.footer {
  padding: 76px 0 34px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 59, 0.10), transparent 30%),
    rgba(255, 255, 255, 0.025);
}

.footer-inner {
  display: grid;
  gap: 38px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) .65fr .65fr minmax(260px, .9fr);
  gap: 34px;
  align-items: start;
}

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

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-logo span {
  display: grid;
  line-height: 1.1;
}

.footer-logo strong {
  color: var(--text);
  font-size: 1rem;
}

.footer-logo small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .95rem;
}

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

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-column a {
  gap: 10px;
  width: fit-content;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 750;
  transition: .25s ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-column svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.footer-column .bi {
  width: 18px;
  text-align: center;
}

.footer-cta {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.footer-cta > span {
  display: block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-cta strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.footer-btn {
  gap: 10px;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255, 212, 59, 0.20);
  transition: .25s ease;
}

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

.footer-btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.back-top {
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
  transition: .25s ease;
}

.back-top:hover {
  color: var(--accent);
}

.back-top svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: span 2;
  }
}

.work-preview {
  position: absolute;
  inset: 58px 18px 18px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}

.work-card:hover .work-preview img {
  transform: scale(1.045);
  filter: brightness(.82);
}

.section-kicker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-visual {
  position: relative;
  width: min(100%, 280px);
  margin-top: 42px;
  opacity: .95;
}

.intro-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, .35));
}

.intro-visual::before {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 59, .18), transparent 64%);
  filter: blur(28px);
}

@media (max-width: 980px) {
  .section-kicker {
    align-items: flex-start;
  }

  .intro-visual {
    width: min(72vw, 260px);
    margin-top: 28px;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .intro-visual {
    width: min(84vw, 240px);
  }
}

.numbers-visual {
  margin-bottom: 34px;
}

.numbers-visual svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .25));
}

.about-visual {
  margin-top: 28px;
}

.about-visual svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .22));
}

@media (max-width: 900px) {
  .numbers-visual {
    margin-bottom: 24px;
  }

  .about-visual {
    margin-top: 22px;
  }
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;
  min-width: 170px;
  min-height: 46px;

  padding: 0 22px;
  border-radius: 999px;

  background: var(--accent);
  color: var(--dark);

  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;

  text-decoration: none;
}

.footer-btn span {
  display: inline-block;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  opacity: 1;
}

.footer-btn svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.nav-links a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a i,
.nav-links a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
  flex: 0 0 auto;
}

.header-cta i,
.header-cta svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.35;
  flex: 0 0 auto;
}

.header-cta span,
.nav-links span {
  line-height: 1;
}

@media (max-width: 640px) {
  .no-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    min-height: 72px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    object-fit: cover;
  }

  .brand-text {
    display: grid !important;
    min-width: 0;
    line-height: 1.05;
  }

  .brand-text strong {
    max-width: 170px;
    color: currentColor;
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text small {
    color: currentColor;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.62;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
  }

  .menu-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
  }

  .menu-btn span {
    display: none;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro-section .intro-grid {
    gap: 28px;
  }

  .intro-section .section-kicker {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .intro-section .intro-visual {
    width: min(88vw, 300px);
    margin: 28px auto 0;
  }

  .intro-section .intro-copy {
    text-align: left;
  }

  .intro-section .intro-copy h2 {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .work-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .work-features div {
    min-height: 54px;
    padding: 12px 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    border-radius: 18px;
    text-align: left;
  }

  .work-features svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .work-features span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.25;
    font-weight: 800;
  }
}

@media (max-width: 640px) {
  .work-info {
    padding: 6px 2px 0;
  }

  .work-info h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .work-info p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

.about-card-text {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.about-highlight {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 59, .12), transparent 36%),
    rgba(255, 255, 255, .045);
  color: var(--text) !important;
}

.about-card-text {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.about-highlight {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 59, .12), transparent 36%),
    rgba(255, 255, 255, .045);
  color: var(--text) !important;
}

