@import url("https://fonts.bunny.net/css?family=manrope:400,500,600,700|space-grotesk:500,600,700");

:root {
  --bg: #f6f6f2;
  --paper: #fffefa;
  --ink: #05070a;
  --muted: #59616c;
  --soft: #8d939c;
  --line: #dfe1e4;
  --line-strong: #b8bdc5;
  --accent: #0b63ff;
  --accent-dark: #0048cf;
  --accent-soft: rgba(11, 99, 255, 0.11);
  --shadow: 0 24px 70px rgba(5, 7, 10, 0.08);
  --shadow-premium: 0 28px 90px rgba(5, 7, 10, 0.12), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "Space Grotesk", "Manrope", Arial, Helvetica, sans-serif;
  --spot-x: 50vw;
  --spot-y: 18vh;
  --scroll-progress: 0;
  --header: 78px;
  --pad: 44px;
  --wrap: 1480px;
  --narrow: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 28px);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.72), rgba(246, 246, 242, 0.94)),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle 360px at var(--spot-x) var(--spot-y), rgba(11, 99, 255, 0.16), transparent 62%),
    radial-gradient(circle 520px at calc(var(--spot-x) + 18vw) calc(var(--spot-y) + 8vh), rgba(255, 255, 255, 0.58), transparent 66%);
  opacity: 0.72;
  mix-blend-mode: screen;
}

body::after {
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 46%, transparent 52%),
    radial-gradient(circle 760px at 82% 18%, rgba(255, 255, 255, 0.18), transparent 62%);
  opacity: 0.045;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(11, 99, 255, 0.14);
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  touch-action: manipulation;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 10px 14px;
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: calc(var(--scroll-progress) * 100%);
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 99, 255, 0), var(--accent), rgba(255, 255, 255, 0.92));
  box-shadow: 0 0 24px rgba(11, 99, 255, 0.52);
  transform-origin: left;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(223, 225, 228, 0.78);
  background: rgba(246, 246, 242, 0.86);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 54px rgba(5, 7, 10, 0.06);
  transition: background 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease), color 280ms var(--ease);
}

body[data-page="home"].is-over-hero .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: #fff;
}

body[data-page="home"].is-over-hero .brand-word {
  color: #fff;
}

body[data-page="home"].is-over-hero .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="home"].is-over-hero .site-nav a:hover,
body[data-page="home"].is-over-hero .site-nav a[aria-current="page"] {
  color: #fff;
}

body[data-page="home"].is-over-hero.menu-open .site-nav a {
  color: var(--ink);
}

body[data-page="home"].is-over-hero.menu-open .site-nav a:hover,
body[data-page="home"].is-over-hero.menu-open .site-nav a[aria-current="page"] {
  color: var(--ink);
}

body[data-page="home"].is-over-hero .menu-toggle span:not(.sr-only) {
  background: #fff;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-height: 44px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.brand-word span {
  display: inline-block;
}

.brand-word span:last-child {
  color: #2b7dff;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 16px 0;
  color: rgba(5, 7, 10, 0.74);
  transition: color 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a:hover {
  text-shadow: 0 10px 26px rgba(11, 99, 255, 0.18);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 22px;
  font-size: 14.5px;
  gap: 8px;
}

.header-cta .arrow {
  font-size: 17px;
}

.menu-toggle {
  display: none;
  position: relative;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease), top 220ms var(--ease);
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }

.menu-toggle span:nth-child(2),
body[data-page="home"].is-over-hero .menu-toggle span:nth-child(2) {
  background: #2b7dff;
}

body.menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wrap {
  width: min(100% - calc(var(--pad) * 2), var(--wrap));
  margin: 0 auto;
}

.wrap.narrow {
  max-width: var(--narrow);
}

.hero-screen {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] .hero-screen {
  --grain-ink: #05070a;
  --grain-night: #071123;
  --grain-accent: #0b63ff;
  --grain-cyan: #4edcff;
  --grain-violet: #6f64ff;
  --grain-light: #f7f7f4;
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  border-bottom: 0;
  overflow: hidden;
  isolation: isolate;
  background: #05070a;
  color: #fff;
}

.hero-grid {
  position: relative;
  width: min(100% - 220px, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 40px;
  padding: 70px 0 42px;
}

body[data-page="home"] .hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  max-width: none;
  min-height: 0;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 0;
  padding: calc(var(--header) + 34px) 0 54px;
  background: transparent;
  color: #fff;
}

body[data-page="home"] .service-strip {
  position: relative;
  z-index: 2;
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.14);
}

body[data-page="home"] .service-mini {
  border-right-color: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .service-mini:first-child {
  border-left-color: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .service-mini strong {
  color: #fff;
}

body[data-page="home"] .service-mini span {
  color: rgba(255, 255, 255, 0.74);
}

body[data-page="home"] .service-mini svg [stroke="#05070A"] {
  stroke: rgba(255, 255, 255, 0.86);
}

body[data-page="home"] .service-mini {
  justify-content: center;
  text-align: left;
}

body[data-page="home"] .service-mini span {
  flex: 0 0 200px;
}

body[data-page="home"] .service-mini::before {
  display: none;
}

body[data-page="home"] .service-mini:hover {
  background: transparent;
  transform: none;
}

.grain-gradient-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body[data-page="home"] .hero-screen::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 31%),
    radial-gradient(circle at 74% 78%, rgba(11, 99, 255, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.7), rgba(5, 7, 10, 0.08) 42%, rgba(5, 7, 10, 0.42)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.14), rgba(5, 7, 10, 0.04) 48%, rgba(5, 7, 10, 0.58));
  pointer-events: none;
}

body[data-page="home"] .hero-screen::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(1, 3, 9, 0.38) 100%);
  opacity: 0.72;
  mix-blend-mode: overlay;
  pointer-events: none;
}

body[data-page="home"] .hero-screen .grain-bottom-fade {
  display: none;
}

.hero-mark {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  max-width: none;
  height: auto;
  filter: none;
  opacity: 1;
}

body[data-page="home"] .hero-mark {
  z-index: 0;
  top: var(--hero-copy-top);
  bottom: auto;
  left: clamp(690px, calc(54vw + 20px), 880px);
  width: auto;
  height: calc(100% - var(--hero-copy-top));
  right: auto;
}

body[data-page="home"] .hero-copy {
  position: relative;
  z-index: 2;
}

body[data-page="home"] .hero-copy h1,
body[data-page="home"] .hero-copy p,
body[data-page="home"] .hero-actions {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 710px;
}

body[data-page="home"] .hero-copy {
  --hero-copy-top: clamp(190px, 24.7svh, 256px);
  width: min(100% - calc(var(--pad) * 2), 1000px);
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.eyebrow,
.section-kicker,
.meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-copy h1,
.page-title,
.section-title,
.statement,
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: 78px;
}

body[data-page="home"] .hero-copy h1 {
  font-size: 84px;
  font-weight: 600;
  line-height: 1.04;
  color: #fff;
}

.hero-copy h1 .accent,
.page-title .accent,
.section-title .accent,
.statement .accent {
  color: var(--accent);
}

.hero-copy p {
  margin: 30px 0 0;
  max-width: 590px;
  color: #303641;
  font-size: 20px;
  line-height: 1.62;
}

body[data-page="home"] .hero-copy p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.hero-actions {
  justify-content: center;
}

body[data-page="home"] .hero-actions {
  gap: 18px;
  margin-top: 64px;
}

.btn {
  --mag-x: 0px;
  --mag-y: 0px;
  --hover-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transform: translate3d(var(--mag-x), calc(var(--hover-y) + var(--mag-y)), 0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 260ms var(--ease-premium), box-shadow 260ms var(--ease-premium), border-color 260ms var(--ease-premium), background 260ms var(--ease-premium);
  will-change: transform;
}

.btn::before,
.project-links a::before,
.project-links button::before,
.text-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.58), transparent 68%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.5) 44%, transparent 55% 100%);
  transform: translateX(-140%);
  transition: transform 680ms var(--ease-premium);
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .hero-actions .btn {
  min-height: 54px;
  padding: 0 24px;
}

.btn:hover {
  --hover-y: -2px;
}

.btn:hover::before {
  opacity: 1;
}

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

.btn-primary {
  background: #2b7dff;
  color: #fff;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-primary::after {
  display: none;
}

.btn-primary:hover {
  background: #1f6ff0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 4px rgba(43, 125, 255, 0.18);
}

.btn-secondary {
  border-color: rgba(184, 189, 197, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 254, 250, 0.7));
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(5, 7, 10, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.btn-secondary::before {
  background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(11, 99, 255, 0.34), transparent 68%);
}

.btn-secondary::after {
  background: linear-gradient(115deg, transparent 0 34%, rgba(11, 99, 255, 0.38) 44%, transparent 55% 100%);
}

.btn-secondary:hover {
  border-color: rgba(5, 7, 10, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="home"] .hero-actions .btn-primary {
  min-width: 280px;
}

.btn-whatsapp {
  border-color: transparent;
  background: linear-gradient(180deg, #2cd96b 0%, #25d366 52%, #1ebe5a 100%);
  color: #ffffff;
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.32),
    0 2px 6px rgba(20, 130, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(20, 130, 60, 0.32);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #36e077 0%, #1ebe5a 52%, #169849 100%);
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.38),
    0 0 0 4px rgba(37, 211, 102, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(20, 130, 60, 0.32);
}

.btn-whatsapp .whatsapp-icon {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 260ms var(--ease-premium);
}

.btn-whatsapp:hover .whatsapp-icon {
  transform: scale(1.08) rotate(-4deg);
}

.cta-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
}

.text-link .arrow,
.row-arrow {
  font-size: 20px;
  line-height: 1;
}

.btn .arrow {
  display: none;
}

.btn {
  gap: 0;
}

.hero-visual {
  margin: 0;
  align-self: center;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: clamp(560px, 44vw, 760px);
  max-width: none;
  margin-left: auto;
  transform: translate(58px, -88px);
  filter: saturate(1.08) contrast(1.03);
}

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

.service-strip-inner {
  width: min(100% - calc(var(--pad) * 2), 1580px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.service-mini {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 30px 30px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: transform 280ms var(--ease-premium), background 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium);
}

.service-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.72), transparent 68%),
    linear-gradient(120deg, transparent 0 40%, rgba(11, 99, 255, 0.08) 48%, transparent 58%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
  pointer-events: none;
}

.service-mini:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-3px);
}

.service-mini:hover::before {
  opacity: 1;
}

.service-mini > * {
  position: relative;
  z-index: 1;
}

.service-mini:first-child {
  border-left: 1px solid var(--line);
}

.service-mini svg {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  align-self: center;
  overflow: visible;
}

.service-mini path,
.service-mini circle,
.service-mini rect {
  vector-effect: non-scaling-stroke;
}

.service-mini strong {
  display: block;
  font-weight: 500;
}

.service-mini span {
  min-width: 0;
  flex: 1 1 auto;
  color: #303641;
  hyphens: auto;
  overflow-wrap: anywhere;
  line-height: 1.32;
  align-self: center;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  scroll-margin-top: var(--header);
  padding: 116px 0;
  border-bottom: 1px solid rgba(223, 225, 228, 0.74);
  background: #fff;
}

.section::before,
.section::after {
  content: none;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.9fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 68px;
}

.section-title {
  font-size: 56px;
}

.section-lead {
  align-self: center;
  margin: 0;
  max-width: 660px;
  color: #303641;
  font-size: 21px;
  line-height: 1.62;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 80px;
  align-items: stretch;
}

.statement {
  max-width: 820px;
  font-size: 52px;
}

.studio-points {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.studio-point {
  padding: 28px 28px 0 28px;
  border-right: 1px solid var(--line);
}

.studio-point:first-child {
  padding-left: 0;
}

.studio-point:last-child {
  border-right: 0;
  padding-right: 0;
}

.studio-point span {
  color: var(--accent);
  font-weight: 600;
}

.studio-point h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  font-weight: 600;
  hyphens: auto;
  overflow-wrap: break-word;
}

.studio-point p,
.service-copy p,
.process-step p,
.price-row p,
.contact-method p,
.soon-row p {
  margin: 0;
  color: #3f4651;
}

.studio-media {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  margin: 0;
  align-self: stretch;
  min-height: 480px;
  border: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium), border-color 420ms var(--ease-premium);
}

.studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: studioAssetDrift 12s var(--ease-premium) infinite alternate;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 240px 58px;
  gap: 30px;
  align-items: center;
  min-height: 184px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number,
.price-number {
  color: var(--accent);
  font-weight: 600;
}

.service-copy h3,
.price-row h3,
.soon-row h3 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #303641;
  font-size: 14px;
}

.service-thumb {
  position: relative;
  isolation: isolate;
  margin: 0;
  height: 132px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(5, 7, 10, 0.08);
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium), border-color 420ms var(--ease-premium);
}

.service-thumb::before,
.offer-media::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  opacity: 0.48;
  transform: translateZ(18px) rotateX(64deg) rotateZ(-14deg);
  animation: depthOrbit 9s var(--ease-premium) infinite alternate;
  pointer-events: none;
}

.service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.72), transparent 68%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.4) 50%, transparent 58%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
  pointer-events: none;
  display: none;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035) translate3d(0, 0, 0);
  animation: serviceAssetFloat 8.5s var(--ease-premium) infinite alternate;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.service-row:hover .service-thumb {
  border-color: rgba(11, 99, 255, 0.26);
  box-shadow: 0 24px 62px rgba(5, 7, 10, 0.13), 0 0 0 7px rgba(11, 99, 255, 0.055);
  transform: translateZ(24px) rotateX(calc(var(--tilt-y, 0deg) * 0.55)) rotateY(calc(var(--tilt-x, 0deg) * 0.55));
}

.service-row:hover .service-thumb::after {
  opacity: 1;
}

.row-arrow {
  justify-self: end;
  color: var(--accent);
}

.project-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: end;
}

.project-carousel {
  min-width: 0;
}

.carousel-viewport {
  overflow: hidden;
  border-top: 1px solid rgba(5, 7, 10, 0.22);
}

.carousel-track {
  display: flex;
  transition: transform 520ms var(--ease);
}

.project-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: stretch;
  padding-top: 32px;
}

.project-shot {
  margin: 0;
  border: 1px solid rgba(5, 7, 10, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-shot button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.browser-line {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(223, 225, 228, 0.82);
  background: rgba(255, 255, 255, 0.46);
}

.browser-line span {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
}

.project-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.project-info {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 4px 0 0;
}

.project-info h3 {
  margin: 18px 0;
  font-size: 40px;
  font-weight: 500;
}

.project-info p {
  margin: 0;
  color: #303641;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.project-links a,
.project-links button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  border: 1px solid rgba(184, 189, 197, 0.58);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.62);
  color: var(--ink);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.project-links a:first-child,
.project-links button:first-child {
  color: var(--accent);
}

.project-links a:hover,
.project-links button:hover,
.text-link:hover {
  border-color: rgba(5, 7, 10, 0.24);
  background: #fff;
  transform: translateY(-1px);
}

.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 32px;
  padding: 8px;
  border: 1px solid rgba(184, 189, 197, 0.72);
  border-radius: 999px;
  background: rgba(251, 251, 250, 0.78);
  box-shadow: 0 18px 54px rgba(5, 7, 10, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(184, 189, 197, 0.82);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 247, 244, 0.92) 100%);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 26px rgba(5, 7, 10, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.carousel-button:hover {
  border-color: var(--ink);
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 7, 10, 0.12), 0 0 0 5px rgba(11, 99, 255, 0.07);
}

.carousel-button:active {
  transform: translateY(0);
}

.carousel-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.carousel-status {
  min-width: 70px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(11, 99, 255, 0.58);
  border-radius: 999px;
  background: rgba(11, 99, 255, 0.08);
  cursor: pointer;
  transition: width 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.carousel-dots button[aria-current="true"] {
  width: 36px;
  background: var(--accent);
  border-color: var(--accent);
}

.carousel-dots button:hover {
  transform: scale(1.18);
  border-color: var(--accent);
}

.project-aside {
  border-top: 1px solid var(--ink);
  padding-top: 26px;
}

.project-aside p {
  margin: 0 0 34px;
  color: #303641;
  font-size: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.process-step {
  min-height: 250px;
  padding: 30px 28px 0 28px;
  border-right: 1px solid var(--line);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.process-step span {
  color: var(--accent);
  font-weight: 600;
}

.process-step h3 {
  margin: 42px 0 14px;
  font-size: 26px;
  font-weight: 500;
}

.cta-band {
  padding: 92px 0;
  background: #05070a;
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
}

.cta-band .section-kicker,
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band h2 {
  max-width: 880px;
  font-size: 58px;
}

.cta-band p {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 20px;
}

.page-hero {
  --grain-ink: #05070a;
  --grain-night: #071123;
  --grain-accent: #0b63ff;
  --grain-cyan: #4edcff;
  --grain-violet: #6f64ff;
  --grain-light: #f7f7f4;
  position: relative;
  isolation: isolate;
  min-height: 65svh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 0;
  padding: 0;
  background: #05070a;
  color: #fff;
}

.page-hero > .wrap {
  position: relative;
  z-index: 2;
}

.page-hero > .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 65svh;
  display: grid;
  align-content: center;
  padding-top: calc(var(--header) + 28px);
  padding-bottom: 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.page-hero-grid > div {
  width: min(100% - calc(var(--pad) * 2), 900px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 88px;
  font-weight: 600;
  line-height: 1.03;
  color: #fff;
}

.page-hero .section-kicker,
.page-hero .eyebrow,
body[data-page="home"] .hero-copy h1 .accent,
.page-hero .page-title .accent {
  color: #8bb8ff;
}

.page-lead {
  margin: 28px auto 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.62;
}

.page-visual {
  display: none;
}

.price-table {
  border-top: 1px solid rgba(5, 7, 10, 0.22);
}

.price-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 220px;
  gap: 36px;
  align-items: center;
  min-height: 178px;
  border-bottom: 1px solid rgba(223, 225, 228, 0.84);
  transition: background 180ms var(--ease), padding 180ms var(--ease);
}

.price-row:hover {
  background: rgba(255, 254, 250, 0.52);
}

.price-row strong {
  justify-self: end;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.price-row ul,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.price-row li,
.feature-list li {
  border: 1px solid rgba(223, 225, 228, 0.88);
  border-radius: 999px;
  padding: 7px 12px;
  color: #303641;
  font-size: 14px;
  background: rgba(255, 254, 250, 0.56);
}

.offer-grid {
  display: grid;
  gap: 22px;
  perspective: 1800px;
}

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

.offer-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(5, 7, 10, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 254, 250, 0.94)),
    rgba(255, 254, 250, 0.98);
  box-shadow: 0 24px 72px rgba(5, 7, 10, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.offer-card-featured {
  border-color: rgba(11, 99, 255, 0.28);
  box-shadow: 0 30px 90px rgba(11, 99, 255, 0.12), 0 18px 72px rgba(5, 7, 10, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.offer-media {
  position: relative;
  z-index: 1;
  margin: 0;
  height: 245px;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 225, 228, 0.86);
  background: #f7f7f3;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(circle 280px at 82% 12%, rgba(11, 99, 255, 0.13), transparent 66%);
  pointer-events: none;
}

.offer-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.025) translateY(0);
  animation: offerFloat 7s var(--ease-premium) infinite alternate;
  transition: transform 740ms var(--ease-premium), filter 740ms var(--ease-premium);
  will-change: transform;
}

.offer-grid-two .offer-card {
  min-height: 650px;
}

.offer-grid-two .offer-media {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-grid-two .offer-media img {
  object-fit: contain;
  transform: scale(0.96);
}

.service-thumb::before,
.offer-media::before,
.service-thumb img,
.offer-media img,
.soon-row img,
.reference-item img,
.studio-media img {
  animation-play-state: paused;
}

.service-thumb.is-motion-active::before,
.offer-media.is-motion-active::before,
.service-thumb.is-motion-active img,
.offer-media.is-motion-active img,
.soon-row img.is-motion-active,
.reference-item img.is-motion-active,
.studio-media.is-motion-active img {
  animation-play-state: running;
}

.offer-content,
.offer-bottom {
  position: relative;
  z-index: 4;
}

.offer-content {
  flex: 1;
  padding: 24px 26px 8px;
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.offer-meta span:last-child {
  color: #4a505a;
  font-weight: 600;
}

.offer-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}

.offer-card p {
  margin: 16px 0 0;
  color: #242b36;
  font-size: 16px;
  line-height: 1.55;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.offer-features li {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(184, 189, 197, 0.7);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.86);
  color: #252b34;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  transition:
    transform 220ms var(--ease-premium),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
}

.offer-features li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 80px at 20% 0%, rgba(11, 99, 255, 0.14), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96));
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.offer-features li::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(112deg, transparent 0 35%, rgba(255, 255, 255, 0.82) 48%, transparent 62% 100%);
  transform: translateX(-125%);
  transition: transform 520ms var(--ease-premium);
}

.offer-features li:hover {
  border-color: rgba(11, 99, 255, 0.44);
  background: rgba(255, 255, 255, 0.98);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(11, 99, 255, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-2px);
}

.offer-features li:hover::before {
  opacity: 1;
}

.offer-features li:hover::after {
  transform: translateX(130%);
}

.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 20px 26px 24px;
}

.offer-bottom strong {
  max-width: 58%;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
}

.offer-grid-three .offer-bottom,
.offer-grid-four .offer-bottom {
  align-items: flex-start;
  flex-direction: column;
}

.offer-grid-three .offer-bottom strong,
.offer-grid-four .offer-bottom strong {
  max-width: none;
  font-size: 28px;
}

.service-row:nth-child(2) .service-thumb img,
.offer-card:nth-child(2) .offer-media img,
.soon-row:nth-child(2) img {
  animation-delay: -1.8s;
}

.service-row:nth-child(3) .service-thumb img,
.offer-card:nth-child(3) .offer-media img,
.soon-row:nth-child(3) img {
  animation-delay: -3.2s;
}

.service-row:nth-child(4) .service-thumb img,
.offer-card:nth-child(4) .offer-media img,
.soon-row:nth-child(4) img {
  animation-delay: -4.6s;
}

@keyframes grainGradientDrift {
  0% {
    transform: translate3d(-1.8%, -1.2%, 0) scale(1.04) rotate(0deg);
  }

  50% {
    transform: translate3d(1.4%, 1.1%, 0) scale(1.08) rotate(1.2deg);
  }

  100% {
    transform: translate3d(-0.8%, 1.6%, 0) scale(1.06) rotate(-0.8deg);
  }
}

@keyframes heroGrainShift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-2%, 1.5%, 0);
  }
}

@keyframes depthOrbit {
  0% {
    transform: translateZ(18px) rotateX(64deg) rotateZ(-14deg) scale(0.9);
    opacity: 0.34;
  }

  100% {
    transform: translateZ(34px) rotateX(64deg) rotateZ(18deg) scale(1.08);
    opacity: 0.58;
  }
}

@keyframes serviceAssetFloat {
  0% {
    transform: scale(1.035) translate3d(-2px, 3px, 0) rotateX(0.7deg) rotateY(-0.8deg);
  }

  100% {
    transform: scale(1.06) translate3d(3px, -7px, 0) rotateX(-0.7deg) rotateY(0.9deg);
  }
}

@keyframes studioAssetDrift {
  0% {
    transform: scale(1.035) translate3d(-6px, 5px, 0) rotateZ(-0.35deg);
  }

  100% {
    transform: scale(1.075) translate3d(7px, -8px, 0) rotateZ(0.35deg);
  }
}

@keyframes offerFloat {
  0% {
    transform: scale(1.025) translate3d(-3px, 3px, 0) rotateX(0.6deg) rotateY(-0.8deg);
  }

  100% {
    transform: scale(1.06) translate3d(4px, -12px, 0) rotateX(-0.8deg) rotateY(1deg);
  }
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 0;
  background: transparent;
}

.module {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(223, 225, 228, 0.88);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(5, 7, 10, 0.05);
}

.module img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.module div {
  padding: 24px;
}

.module span {
  color: var(--accent);
  font-weight: 600;
}

.module h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  font-weight: 500;
}

.module p {
  margin: 0;
  color: #303641;
}

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

.reference-item {
  border-top: 1px solid rgba(5, 7, 10, 0.22);
  padding-top: 24px;
}

.reference-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(184, 189, 197, 0.74);
  border-radius: 8px;
  transform: scale(1.02) translate3d(0, 0, 0);
  animation: serviceAssetFloat 9.5s var(--ease-premium) infinite alternate;
}

.reference-grid-flyer {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.reference-item-flyer {
  text-align: center;
}

.reference-item-flyer .flyer-shot {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.reference-item-flyer img {
  width: 100%;
  aspect-ratio: 1024 / 1536;
  max-height: 76svh;
  object-fit: contain;
  object-position: center;
  background: #0c0c0c;
  border: 1px solid rgba(184, 189, 197, 0.62);
  border-radius: 14px;
  transform: none;
  animation: none;
  box-shadow: 0 32px 88px rgba(5, 7, 10, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium);
}

.reference-item-flyer .flyer-shot:hover img {
  transform: translateY(-6px);
  box-shadow: 0 42px 110px rgba(5, 7, 10, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reference-item-flyer h3,
.reference-item-flyer p {
  text-align: left;
}

.reference-item h3 {
  margin: 22px 0 10px;
  font-size: 30px;
  font-weight: 500;
}

.reference-item p {
  margin: 0;
  color: #303641;
}

.soon-list {
  border-top: 1px solid rgba(5, 7, 10, 0.22);
}

.soon-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  min-height: 220px;
  border-bottom: 1px solid rgba(223, 225, 228, 0.84);
}

.soon-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(184, 189, 197, 0.74);
  border-radius: 8px;
  transform: scale(1.025) translate3d(0, 0, 0);
  animation: serviceAssetFloat 9s var(--ease-premium) infinite alternate;
}

.status-chip {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
}

.status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 82px;
  align-items: center;
}

.contact-mail {
  display: inline-flex;
  margin-top: 34px;
  color: var(--accent);
  font-size: 34px;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}

.contact-panel {
  border: 1px solid rgba(5, 7, 10, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-panel img {
  margin-bottom: 28px;
}

.contact-methods {
  border-top: 1px solid rgba(5, 7, 10, 0.22);
}

.contact-method {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid rgba(223, 225, 228, 0.84);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.contact-method:hover {
  background: rgba(255, 254, 250, 0.52);
}

.contact-method strong {
  font-size: 28px;
  font-weight: 500;
}

.site-footer {
  padding: 70px 0 34px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(160px, 220px));
  gap: 42px;
}

.footer-brand {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 500;
}

.footer-brand span {
  display: inline-block;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #4a505a;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer p {
  max-width: 440px;
  margin: 0;
}

.footer-bottom {
  width: min(100% - calc(var(--pad) * 2), var(--wrap));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal-links a {
  display: inline;
  margin: 0;
  color: #4a505a;
  transition: color 180ms var(--ease);
}

.footer-legal-links a:hover {
  color: var(--ink);
}

.legal-section {
  padding-top: 0;
}

.legal-content {
  width: min(100% - calc(var(--pad) * 2), 760px);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.legal-block {
  display: grid;
  gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: 0;
}

.legal-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal-block p,
.legal-block ul {
  margin: 0;
  color: #303641;
  font-size: 16px;
  line-height: 1.65;
}

.legal-block ul {
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  text-decoration-thickness: 2px;
}

.legal-block code {
  padding: 2px 6px;
  background: rgba(11, 99, 255, 0.08);
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

@media (min-width: 961px) {
  body:not([data-page="home"]) .hero-copy[data-reveal] {
    transform: translateY(-62px);
  }

  body:not([data-page="home"]) .hero-copy[data-reveal].is-visible {
    transform: translateY(-84px);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 7, 10, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  margin: 0;
  width: min(1180px, 96vw);
  max-height: 88svh;
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
  background: #fff;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
}

.page-hero::after {
  opacity: 0.76;
}

.eyebrow,
.section-kicker,
.meta {
  letter-spacing: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(11, 99, 255, 0.08), 0 0 24px rgba(11, 99, 255, 0.32);
}

.page-hero .section-kicker::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 28px rgba(139, 184, 255, 0.5);
}

.studio-media,
.service-row,
.price-row,
.module,
.project-shot,
.reference-item,
.soon-row,
.contact-method,
.process-step,
.studio-point {
  position: relative;
}

.studio-media,
.module,
.project-shot,
.reference-item img,
.soon-row img {
  box-shadow: var(--shadow-premium);
}

.studio-media,
.project-shot,
.module,
.reference-item,
.service-row,
.price-row,
.soon-row,
.contact-method,
.process-step {
  overflow: hidden;
}

.studio-media::before,
.project-shot::before,
.module::before,
.service-row::before,
.price-row::before,
.soon-row::before,
.contact-method::before,
.process-step::before,
.studio-point::before,
.reference-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 260px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.76), transparent 68%),
    linear-gradient(118deg, transparent 0 42%, rgba(11, 99, 255, 0.08) 49%, transparent 58%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
  pointer-events: none;
}

.studio-media:hover::before,
.project-shot:hover::before,
.module:hover::before,
.service-row:hover::before,
.price-row:hover::before,
.soon-row:hover::before,
.contact-method:hover::before,
.process-step:hover::before,
.studio-point:hover::before,
.reference-item:hover::before {
  opacity: 1;
}

.service-row,
.price-row,
.soon-row,
.contact-method {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  margin-inline: -20px;
  padding-inline: 20px;
  border-radius: 18px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 260ms var(--ease-premium), background 260ms var(--ease-premium), box-shadow 260ms var(--ease-premium), border-color 260ms var(--ease-premium);
}

.service-row:hover,
.price-row:hover,
.soon-row:hover,
.contact-method:hover {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 58px rgba(5, 7, 10, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: rotateX(calc(var(--tilt-y, 0deg) * 0.7)) rotateY(calc(var(--tilt-x, 0deg) * 0.7)) translateY(-4px) translateZ(10px);
}

.service-row > *,
.price-row > *,
.soon-row > *,
.contact-method > *,
.process-step > *,
.studio-point > *,
.module > *,
.reference-item > * {
  position: relative;
  z-index: 1;
}

.service-thumb,
.module img,
.reference-item img,
.soon-row img,
.studio-media img,
.project-shot img {
  transition: transform 560ms var(--ease-premium), filter 560ms var(--ease-premium);
  will-change: transform;
}

.service-row:hover .service-thumb img,
.module:hover img,
.reference-item:hover img,
.soon-row:hover img,
.studio-media:hover img,
.project-shot:hover img {
  transform: scale(1.035) translate3d(0, 0, 0);
}

.service-thumb,
.module,
.reference-item img,
.soon-row img,
.project-shot,
.studio-media {
  border-color: rgba(5, 7, 10, 0.12);
}

.service-row:hover .row-arrow,
.contact-method:hover .row-arrow {
  transform: translate(4px, -4px);
}

.row-arrow {
  transition: transform 260ms var(--ease-premium), color 260ms var(--ease-premium);
}

.project-carousel {
  perspective: 1600px;
}

.carousel-viewport {
  border-top-color: rgba(5, 7, 10, 0.16);
  padding-bottom: 22px;
}

.carousel-track {
  will-change: transform;
}

.project-slide {
  opacity: 0.32;
  transform: scale(0.985);
  transition: opacity 520ms var(--ease-premium), transform 520ms var(--ease-premium);
}

.project-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-shot {
  transform: rotateX(0deg) rotateY(0deg) translateY(0);
  transition: transform 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium), border-color 420ms var(--ease-premium);
}

.project-shot:hover {
  border-color: rgba(11, 99, 255, 0.24);
  box-shadow: 0 36px 100px rgba(5, 7, 10, 0.17), 0 0 0 8px rgba(11, 99, 255, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
}

.project-links a,
.project-links button,
.text-link {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.project-links a:hover::before,
.project-links button:hover::before,
.text-link:hover::before {
  opacity: 1;
}

.carousel-controls {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.66);
}

.carousel-button {
  --mag-x: 0px;
  --mag-y: 0px;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
}

.carousel-button:hover {
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 2px), 0);
}

.module {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms var(--ease-premium);
}

.module:hover {
  border-color: rgba(11, 99, 255, 0.22);
  box-shadow: 0 32px 86px rgba(5, 7, 10, 0.12), 0 0 0 7px rgba(11, 99, 255, 0.045);
  transform: rotateX(calc(var(--tilt-y, 0deg) * 0.72)) rotateY(calc(var(--tilt-x, 0deg) * 0.72)) translateY(-8px) translateZ(16px);
}

.reference-item {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease-premium);
}

.reference-item:hover,
.studio-media:hover {
  transform: rotateX(calc(var(--tilt-y, 0deg) * 0.65)) rotateY(calc(var(--tilt-x, 0deg) * 0.65)) translateY(-6px) translateZ(14px);
}

.process-step,
.studio-point {
  transition: background 260ms var(--ease), transform 260ms var(--ease-premium);
}

.process-step:hover,
.studio-point:hover {
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-4px);
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #05070a;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle 720px at 78% 18%, rgba(11, 99, 255, 0.16), transparent 66%),
    linear-gradient(135deg, #05070a 0%, #0b1018 56%, #07101f 100%);
  opacity: 1;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 540px at var(--mx, 50%) var(--my, 50%), rgba(11, 99, 255, 0.32), transparent 64%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.72), rgba(5, 7, 10, 0.46) 48%, rgba(5, 7, 10, 0.18));
  pointer-events: none;
}

.cta-band {
  --grain-ink: #05070a;
  --grain-night: #071123;
  --grain-accent: #0b63ff;
  --grain-cyan: #4edcff;
  --grain-violet: #6f64ff;
  --grain-light: #f7f7f4;
}

.cta-band.grain-gradient-ready::before {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 76%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.32), rgba(5, 7, 10, 0.05) 42%, rgba(5, 7, 10, 0.58));
  opacity: 1;
  pointer-events: none;
}

.cta-band.grain-gradient-ready::after {
  z-index: 1;
  background:
    radial-gradient(circle 480px at var(--mx, 78%) var(--my, 28%), rgba(78, 220, 255, 0.18), transparent 62%),
    linear-gradient(45deg, transparent 0 38%, rgba(111, 100, 255, 0.18) 52%, transparent 68%);
  mix-blend-mode: screen;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 780ms var(--ease-premium),
    transform 780ms var(--ease-premium),
    filter 780ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-copy h1 {
  font-size: 78px;
}

body[data-page="home"] .hero-copy h1 {
  font-size: 84px;
}

.page-title {
  font-size: 88px;
}

.section-title {
  font-size: 56px;
}

.statement,
.cta-band h2 {
  font-size: 58px;
}

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

  body::before,
  .scroll-progress {
    display: none;
  }

  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1440px) {
  :root {
    --pad: 30px;
    --header: 70px;
  }

  .site-nav {
    gap: 34px;
  }

  .hero-grid,
  .page-hero-grid,
  .studio-grid,
  .project-shell,
  .contact-layout {
    gap: 44px;
  }

  .hero-grid {
    width: min(100% - calc(var(--pad) * 2), 1540px);
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .page-title {
    font-size: 72px;
  }

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

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

  .offer-card {
    min-height: 590px;
  }

  .section-title,
  .statement,
  .cta-band h2 {
    font-size: 48px;
  }

  .service-row {
    grid-template-columns: 70px minmax(0, 1fr) 190px 40px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .brand-word {
    font-size: 21px;
    gap: 9px;
  }

  .menu-toggle {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header);
    height: calc(100svh - var(--header));
    overflow-y: auto;
    z-index: 39;
    display: grid;
    grid-auto-rows: max-content;
    gap: 0;
    justify-content: stretch;
    padding: 28px var(--pad) calc(env(safe-area-inset-bottom, 0px) + 40px);
    border-bottom: 1px solid var(--line);
    background-color: #fbfbfa;
    background-image: url("assets/zoning-mobile-menu-bg.png");
    background-repeat: no-repeat;
    background-size: min(92vw, 460px) auto;
    background-position: center calc(100% + 30px - 2.5cm);
    transform: translateY(-100%);
    transition: transform 320ms var(--ease-premium);
    visibility: hidden;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(5, 7, 10, 0.08);
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13.5px;
  }

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

  .hero-grid,
  .page-hero-grid,
  .studio-grid,
  .project-shell,
  .project-slide,
  .contact-layout,
  .section-top,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 34px;
  }

  body[data-page="home"] .hero-mark {
    left: min(72vw, 690px);
    height: calc(100% - var(--hero-copy-top));
    width: auto;
    top: var(--hero-copy-top);
    bottom: auto;
    right: auto;
  }

  .hero-visual {
    order: -1;
    justify-content: center;
  }

  .hero-visual img,
  .page-visual img {
    width: min(100%, 600px);
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }

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

  .service-mini,
  .service-mini:first-child {
    border-left: 0;
  }

  .service-mini:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .studio-points,
  .process-grid,
  .module-grid,
  .reference-grid,
  .offer-grid-two,
  .offer-grid-three,
  .offer-grid-four {
    grid-template-columns: 1fr;
  }

  .studio-point,
  .studio-point:last-child,
  .process-step,
  .process-step:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }

  .studio-media {
    min-height: 0;
    aspect-ratio: 1568 / 1003;
  }

  .studio-media img {
    object-fit: contain;
    background: var(--paper);
  }

  .service-row,
  .price-row,
  .soon-row,
  .contact-method {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-inline: 0;
    padding: 30px 0;
    padding-inline: 0;
    border-radius: 0;
  }

  .cta-actions {
    justify-self: stretch;
    align-items: stretch;
  }

  .service-row:hover,
  .price-row:hover,
  .soon-row:hover,
  .contact-method:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .price-row strong {
    justify-self: start;
  }

  .service-thumb,
  .soon-row img {
    width: 100%;
    height: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1568 / 1003;
  }

  .offer-grid-two .offer-media {
    height: auto;
    aspect-ratio: 1568 / 1003;
  }

  .offer-media img {
    min-height: 0;
    object-fit: contain;
  }

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

@media (max-width: 640px) {
  :root {
    --pad: 18px;
    --header: 58px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header);
    padding-inline: var(--pad);
  }

  .brand-word {
    gap: 6px;
    font-size: 18px;
  }

  .site-header > .header-cta {
    display: none;
  }

  .hero-grid {
    padding: 30px 0;
  }

  .page-hero {
    min-height: 65svh;
    padding: 0;
  }

  .page-hero::before {
    inset: 0;
  }

  .page-hero > .wrap {
    min-height: 65svh;
    align-content: center;
    padding-top: calc(var(--header) + 24px);
    padding-bottom: 34px;
  }

  .page-hero-grid > div {
    width: min(100% - calc(var(--pad) * 2), 520px);
    max-width: none;
    margin: 0 auto;
  }

  .hero-grid {
    gap: 24px;
  }

  body[data-page="home"] .hero-grid {
    padding: calc(var(--header) + 28px) 0 36px;
  }

  body[data-page="home"] .hero-mark {
    left: auto;
    right: -550px;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    opacity: 0.68;
  }

  body[data-page="home"] .hero-copy {
    --hero-copy-top: 0px;
    width: min(100% - calc(var(--pad) * 2), 520px);
    margin: 0 auto;
    padding-top: 0;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
  }

  body[data-page="home"] .hero-copy p {
    font-size: 16.5px;
    line-height: 1.52;
  }

  .hero-visual img {
    width: min(82vw, 310px);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10.8vw, 47px);
  }

  .hero-copy p,
  .section-lead,
  .page-lead,
  .project-aside p,
  .cta-band p {
    font-size: 18px;
  }

  .page-title {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1.06;
  }

  .section-title,
  .statement,
  .cta-band h2 {
    font-size: clamp(34px, 9.6vw, 38px);
  }

  .section {
    padding: 68px 0;
  }

  .section-top {
    margin-bottom: 42px;
  }

  .hero-actions,
  .action-row {
    gap: 14px;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 44px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  body[data-page="home"] .hero-actions .btn {
    min-height: 56px;
    padding: 0 18px;
  }

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

  .service-mini,
  .service-mini:nth-child(odd) {
    min-height: 76px;
    justify-content: center;
    gap: 14px;
    border-left: 0;
    border-right: 0;
    padding: 14px 4px;
  }

  .service-mini svg {
    width: 38px;
    height: 38px;
  }

  .service-mini strong {
    font-size: 15px;
  }

  .service-mini span {
    font-size: 14px;
    line-height: 1.3;
  }

  .project-info h3 {
    font-size: 31px;
  }

  .service-copy h3,
  .price-row h3,
  .soon-row h3,
  .offer-card h3 {
    font-size: 29px;
  }

  .offer-content {
    padding: 24px 22px 8px;
  }

  .offer-media {
    height: auto;
    aspect-ratio: 1568 / 1003;
  }

  .offer-grid-two .offer-media {
    height: auto;
    aspect-ratio: 1568 / 1003;
  }

  .offer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 22px 24px;
  }

  .offer-bottom strong {
    max-width: none;
    font-size: 28px;
  }

  .project-shot img {
    aspect-ratio: 1440 / 1050;
  }

  .reference-item img {
    aspect-ratio: 16 / 10;
  }

  .carousel-controls {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 6px;
    border-radius: 28px;
  }

  .carousel-button {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .carousel-status {
    flex: 0 0 auto;
    min-width: 52px;
    font-size: 12px;
  }

  .carousel-dots {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 4px;
  }

  .carousel-dots button {
    position: relative;
    width: 18px;
    height: 18px;
    border: 0;
    background: transparent;
  }

  .carousel-dots button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(11, 99, 255, 0.58);
    border-radius: 999px;
    background: rgba(11, 99, 255, 0.08);
    transform: translate(-50%, -50%);
    transition: width 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
  }

  .carousel-dots button[aria-current="true"] {
    width: 28px;
  }

  .carousel-dots button[aria-current="true"]::before {
    width: 20px;
    background: var(--accent);
    border-color: var(--accent);
  }

  .contact-mail {
    font-size: 23px;
    word-break: break-word;
  }

  .contact-panel {
    padding: 18px;
  }

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

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