:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --paper: #fffaf1;
  --ink: #111314;
  --muted: #64615a;
  --line: rgba(17, 19, 20, 0.12);
  --accent: #0f766e;
  --accent-strong: #0a514b;
  --coral: #ff6f61;
  --yellow: #f5c85b;
  --sky: #78c9e6;
  --violet: #a99bf2;
  --lime: #d9ff6a;
  --dark: #101413;
  --dark-soft: #1d2422;
  --white: #fffdf7;
  --shadow: 0 24px 80px rgba(22, 26, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(112, 214, 255, 0.38), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(255, 111, 97, 0.22), transparent 24%),
    linear-gradient(180deg, #fff8e8 0%, var(--bg) 42%, #f7fbef 100%);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 241, 0.7)),
    rgba(255, 250, 241, 0.78);
  box-shadow: 0 22px 70px rgba(31, 34, 32, 0.13);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(31, 34, 32, 0.16);
}

.brand,
.main-nav,
.header-actions,
.trust-row,
.hero-actions,
.contact-options,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, var(--dark), var(--accent-strong));
  color: var(--lime);
  box-shadow: 8px 8px 0 rgba(17, 19, 20, 0.1);
}

.brand-mark::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.brand-mark span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.main-nav a:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.header-actions {
  justify-content: flex-end;
  gap: 8px;
  min-width: 332px;
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.language-switcher a.is-active {
  background: var(--dark);
  color: var(--lime);
}

.availability {
  position: relative;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 999px;
  background: rgba(217, 255, 106, 0.38);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.availability::before {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(17, 19, 20, 0.16);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(17, 19, 20, 0.2);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section[id] {
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 54px;
  align-items: center;
  min-height: 820px;
  padding: 58px 0 56px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.75;
}

.hero-glow.one {
  top: 110px;
  left: -58px;
  width: 150px;
  height: 150px;
  background: var(--yellow);
}

.hero-glow.two {
  right: 38%;
  bottom: 96px;
  width: 96px;
  height: 96px;
  background: var(--sky);
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.48;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--dark);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(17, 19, 20, 0.06);
}

.product-preview {
  position: relative;
}

.product-preview::before {
  position: absolute;
  inset: -34px -18px auto auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  filter: blur(10px);
  opacity: 0.72;
}

.product-preview::after {
  position: absolute;
  left: -38px;
  bottom: 52px;
  width: 86px;
  height: 86px;
  border: 18px solid var(--coral);
  border-radius: 50%;
  content: "";
  opacity: 0.9;
}

.browser-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 28px;
  background: #fefbf3;
  box-shadow: var(--shadow);
}

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

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d7d0c1;
}

.dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric-card,
.chart-card,
.system-card,
.phone-mock {
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 20px;
  background: var(--white);
}

.metric-card {
  min-height: 148px;
  padding: 18px;
}

.metric-card.highlight {
  background: linear-gradient(135deg, var(--dark), #183f3a);
  color: var(--white);
}

.metric-card:nth-child(2) {
  background: linear-gradient(135deg, #fff, #e8fff4);
}

.metric-card small,
.metric-card span {
  display: block;
  color: inherit;
  opacity: 0.66;
}

.metric-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 40px;
  letter-spacing: -0.04em;
}

.chart-card {
  grid-column: span 2;
  min-height: 198px;
  padding: 18px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 209, 102, 0.5), transparent 28%),
    var(--white);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.chart-head b {
  color: var(--accent-strong);
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-top: 24px;
}

.system-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(17, 19, 20, 0.1);
}

.system-card div {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 253, 247, 0.9);
}

.system-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.system-card strong {
  color: var(--dark);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent), var(--lime));
}

.phone-mock {
  grid-column: span 2;
  width: min(220px, 100%);
  min-height: 330px;
  margin: -150px 26px 4px auto;
  padding: 14px;
  border: 8px solid var(--dark);
  border-radius: 36px;
  background: #f7f3e9;
  box-shadow: 0 24px 60px rgba(17, 19, 20, 0.22);
}

.phone-notch {
  width: 74px;
  height: 20px;
  margin: 0 auto 28px;
  border-radius: 0 0 14px 14px;
  background: var(--dark);
}

.phone-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(155deg, var(--dark), #0f766e);
  color: var(--white);
}

.phone-card span {
  color: var(--lime);
  font-weight: 800;
}

.phone-card strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.phone-card button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--dark);
  font-weight: 800;
}

.deploy-card {
  position: absolute;
  right: 20px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(17, 19, 20, 0.16);
  backdrop-filter: blur(12px);
}

.deploy-card strong,
.deploy-card small {
  display: block;
}

.deploy-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pulse {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

.pulse::after {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(15, 118, 110, 0.28);
  border-radius: 50%;
  content: "";
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 96px;
}

.stats-band div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 184px;
  padding: 26px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 20%, rgba(217, 255, 106, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.62));
  box-shadow: 0 18px 44px rgba(17, 19, 20, 0.06);
}

.stats-band div::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(15, 118, 110, 0.1);
  border-radius: 34px;
  content: "";
  transform: rotate(16deg);
}

.stats-band strong {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band span {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.stats-band small {
  position: relative;
  z-index: 1;
  max-width: 280px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.split,
.visual-showcase,
.process,
.contact {
  padding: 100px 0;
}

.visual-showcase {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 36px;
  align-items: center;
}

.visual-copy h2 {
  max-width: 440px;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  min-height: 284px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 255, 106, 0.18), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(112, 214, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #101413, #1d2f2b);
  box-shadow: var(--shadow);
}

.flow-board::before {
  position: absolute;
  left: 58px;
  right: 58px;
  top: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--yellow), var(--sky), rgba(217, 255, 106, 0.16));
  content: "";
}

.flow-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.flow-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
  transform: rotate(12deg);
}

.flow-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.flow-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  opacity: 1;
}

.flow-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.flow-card.coral {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 111, 97, 0.28), transparent 30%),
    rgba(255, 255, 255, 0.08);
}

.flow-card.yellow {
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 200, 91, 0.38), transparent 30%),
    rgba(255, 255, 255, 0.1);
}

.flow-card.mint {
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 255, 106, 0.36), transparent 30%),
    rgba(255, 255, 255, 0.1);
}

.flow-card.blue {
  background:
    radial-gradient(circle at 84% 18%, rgba(120, 201, 230, 0.42), transparent 30%),
    rgba(255, 255, 255, 0.1);
}

.flow-card.dark {
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 255, 106, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.08);
}

.flow-line {
  display: none;
}

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

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: end;
}

.portfolio-lead {
  max-width: 420px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  --service-glow: var(--yellow);
  overflow: hidden;
  min-height: 316px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(17, 19, 20, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.7), transparent 18%);
  content: "";
  opacity: 0.58;
}

.service-card::after {
  position: absolute;
  z-index: 0;
  right: -18px;
  bottom: -18px;
  width: 152px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, var(--service-glow), rgba(255, 255, 255, 0.58));
  box-shadow: 0 22px 46px rgba(17, 19, 20, 0.1);
  content: "";
  opacity: 0.62;
  transform: rotate(-8deg);
  transition: transform 240ms ease, opacity 240ms ease;
}

.service-card:hover {
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 28px 66px rgba(17, 19, 20, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: 0.82;
  transform: translate(-4px, -4px) rotate(-8deg);
}

.service-card:nth-child(2) {
  --service-glow: var(--sky);
}

.service-card:nth-child(3) {
  --service-glow: var(--coral);
}

.service-card:nth-child(4) {
  --service-glow: var(--violet);
}

.service-card:nth-child(5) {
  --service-glow: var(--lime);
}

.service-visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 122px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.service-visual span,
.service-visual i,
.service-visual b {
  position: absolute;
  display: block;
}

.app-visual span {
  width: 132px;
  height: 78px;
  border: 4px solid var(--dark);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(17, 19, 20, 0.12);
}

.app-visual i {
  width: 78px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-12px, -16px);
}

.app-visual b {
  width: 54px;
  height: 28px;
  border-radius: 12px;
  background: var(--yellow);
  transform: translate(28px, 22px);
}

.site-visual {
  grid-template-columns: repeat(3, 42px);
  gap: 10px;
}

.site-visual span {
  position: relative;
  width: 42px;
  height: 62px;
  border: 3px solid var(--dark);
  border-radius: 14px;
  background: var(--sky);
}

.site-visual span:nth-child(2) {
  height: 84px;
  background: var(--lime);
}

.site-visual span:nth-child(3) {
  background: var(--yellow);
}

.site-visual i {
  width: 126px;
  height: 8px;
  border-radius: 999px;
  background: var(--dark);
  transform: translateY(52px);
}

.phone-visual span {
  width: 78px;
  height: 108px;
  border: 6px solid var(--dark);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent),
    var(--coral);
  box-shadow: 12px 8px 0 rgba(17, 19, 20, 0.12);
}

.phone-visual i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(34px, -28px);
}

.ux-visual span {
  width: 44px;
  height: 44px;
  border: 4px solid var(--dark);
  border-radius: 16px;
  background: var(--white);
}

.ux-visual span:nth-child(1) {
  transform: translate(-52px, -26px);
  background: var(--yellow);
}

.ux-visual span:nth-child(2) {
  transform: translate(52px, -26px);
  background: var(--sky);
}

.ux-visual span:nth-child(3) {
  transform: translate(0, 34px);
  background: var(--violet);
}

.ux-visual i,
.ux-visual b {
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: var(--dark);
}

.ux-visual i {
  transform: translateY(-2px) rotate(24deg);
}

.ux-visual b {
  transform: translateY(-2px) rotate(-24deg);
}

.devops-visual {
  gap: 10px;
}

.devops-visual span {
  position: relative;
  width: 142px;
  height: 28px;
  border: 3px solid var(--dark);
  border-radius: 12px;
  background: var(--lime);
  box-shadow: 7px 7px 0 rgba(17, 19, 20, 0.1);
}

.devops-visual span:nth-child(2) {
  background: var(--sky);
}

.devops-visual span:nth-child(3) {
  background: var(--yellow);
}

.devops-visual i {
  right: 42px;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card p,
.case-grid p,
.proof-panel p,
.timeline p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.proof-section {
  padding: 20px 0 110px;
}

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

.proof-panel {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 255, 106, 0.34), transparent 30%),
    rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 46px rgba(17, 19, 20, 0.06);
}

.proof-panel span {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--accent-strong);
  font-weight: 900;
}

.upwork-proof {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(217, 255, 106, 0.32), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54));
  box-shadow: 0 24px 64px rgba(17, 19, 20, 0.08);
  color: var(--dark);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.early-proof {
  margin-top: -28px;
  margin-bottom: 24px;
}

.upwork-proof::before {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 190px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, var(--lime), rgba(255, 255, 255, 0.6));
  content: "";
  opacity: 0.7;
  transform: rotate(-8deg);
}

.upwork-proof::after {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  content: "↗";
  font-size: 16px;
  font-weight: 900;
  place-items: center;
}

.upwork-proof:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 32px 78px rgba(17, 19, 20, 0.12);
  transform: translateY(-4px);
}

.upwork-proof[data-reveal] {
  filter: none;
}

.upwork-proof-copy,
.upwork-proof-stats {
  position: relative;
  z-index: 1;
}

.upwork-proof-copy {
  max-width: 650px;
}

.upwork-proof-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upwork-proof-copy strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.upwork-proof-copy p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.upwork-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(108px, 1fr));
  gap: 10px;
  padding-right: 42px;
}

.upwork-proof-stats span {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(17, 19, 20, 0.05);
}

.upwork-proof-stats b,
.upwork-proof-stats small {
  display: block;
}

.upwork-proof-stats b {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.upwork-proof-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-marquee,
.tech-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 28px;
}

.tech-marquee::before,
.tech-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.tech-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.tech-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

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

.tech-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  gap: 12px;
  padding: 8px 0;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(17, 19, 20, 0.05);
}

.marquee-track b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  font-size: 12px;
}

.testimonials-section {
  padding: 96px 0 100px;
  border-top: 1px solid var(--line);
}

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

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 255, 106, 0.28), transparent 30%),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(17, 19, 20, 0.06);
}

.testimonial-card.featured {
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 255, 106, 0.22), transparent 30%),
    linear-gradient(145deg, var(--dark), #1d2a27);
  color: var(--white);
}

.testimonial-card.featured p {
  color: var(--white);
}

.testimonial-card.featured span {
  color: rgba(255, 253, 247, 0.68);
}

.testimonial-card p {
  margin-bottom: 32px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-bottom: 4px;
  font-weight: 900;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

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

.dark-section {
  width: 100%;
  max-width: none;
  padding: 108px max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 255, 106, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(112, 214, 255, 0.2), transparent 30%),
    var(--dark);
  color: var(--white);
}

.cases-showcase {
  padding: 0 0 110px;
}

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 255, 106, 0.28), transparent 28%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 66px rgba(17, 19, 20, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.7), transparent 18%);
  content: "";
  opacity: 0.55;
}

.portfolio-card:hover {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 34px 84px rgba(17, 19, 20, 0.13);
  transform: translateY(-6px);
}

.portfolio-card.featured {
  grid-column: span 3;
  grid-template-columns: 1.2fr 0.8fr;
  background:
    radial-gradient(circle at 16% 16%, rgba(112, 214, 255, 0.25), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(217, 255, 106, 0.34), transparent 28%),
    rgba(255, 255, 255, 0.78);
}

.portfolio-shot {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  min-height: 286px;
  background: #e9eef1;
}

.portfolio-card.featured .portfolio-shot {
  min-height: 440px;
}

.portfolio-shot::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 18px;
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 6px, #ff6f61 0 5px, transparent 5.5px),
    radial-gradient(circle at 23px 6px, #ffd166 0 5px, transparent 5.5px),
    radial-gradient(circle at 40px 6px, #0f766e 0 5px, transparent 5.5px);
  content: "";
}

.portfolio-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.portfolio-card:hover .portfolio-shot img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.portfolio-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 26px;
}

.portfolio-card.featured .portfolio-copy {
  padding: 40px;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 52px;
}

.portfolio-meta span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-meta b {
  padding: 8px 10px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.portfolio-copy h3 {
  max-width: 420px;
  font-size: 28px;
  line-height: 1.02;
}

.portfolio-copy p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.62;
}

.portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 2px;
}

.portfolio-metrics span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(17, 19, 20, 0.05);
}

.portfolio-metrics strong,
.portfolio-metrics small {
  display: block;
}

.portfolio-metrics strong {
  color: var(--dark);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.portfolio-metrics small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.portfolio-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
}

.portfolio-copy li {
  padding: 9px 11px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.portfolio-copy a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 255, 106, 0.52), transparent 28%),
    rgba(255, 255, 255, 0.78);
  color: var(--accent-strong);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(17, 19, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.portfolio-copy a::after {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  content: "↗";
  font-size: 14px;
  line-height: 1;
  place-items: center;
}

.portfolio-copy a:hover {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 255, 106, 0.72), transparent 28%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 19, 20, 0.12);
  transform: translateY(-2px);
}

.portfolio-card[data-reveal] {
  filter: none;
}

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

.case-study {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 14%, rgba(217, 255, 106, 0.36), transparent 30%),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 60px rgba(17, 19, 20, 0.08);
}

.case-study::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(15, 118, 110, 0.1);
  border-radius: 44px;
  content: "";
  transform: rotate(16deg);
}

.case-study.dark {
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 255, 106, 0.22), transparent 30%),
    linear-gradient(145deg, var(--dark), #1d2a27);
  color: var(--white);
}

.case-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 86px;
}

.case-topline span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study.dark .case-topline span {
  color: var(--lime);
}

.case-topline strong {
  max-width: 132px;
  color: var(--dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-align: right;
}

.case-study.dark .case-topline strong {
  color: var(--white);
}

.case-study h3,
.case-study p,
.case-study ul {
  position: relative;
  z-index: 1;
}

.case-study p {
  color: var(--muted);
  line-height: 1.65;
}

.case-study.dark p {
  color: rgba(255, 253, 247, 0.7);
}

.case-study ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.case-study li {
  padding: 9px 11px;
  border: 1px solid rgba(17, 19, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.case-study.dark li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime);
}

.dark-section .eyebrow {
  color: var(--lime);
}

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

.case-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--dark-soft);
}

.case-grid article::after {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(217, 255, 106, 0.18);
  content: "";
}

.case-grid span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--lime);
  font-weight: 800;
}

.case-grid p {
  color: rgba(255, 253, 247, 0.7);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.roadmap::before {
  position: absolute;
  top: 62px;
  left: 8%;
  right: 8%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--coral), #5f61ff, var(--dark));
  content: "";
  box-shadow: 0 12px 34px rgba(17, 19, 20, 0.12);
}

.timeline article {
  position: relative;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 46px rgba(17, 19, 20, 0.08);
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border: 4px solid var(--bg);
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
}

.timeline article:nth-child(2) .step-number {
  background: var(--coral);
}

.timeline article:nth-child(3) .step-number {
  background: #5f61ff;
}

.timeline article:nth-child(4) .step-number {
  background: var(--dark);
  color: var(--lime);
}

.roadmap-visual {
  position: relative;
  display: grid;
  height: 92px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.roadmap-visual::before {
  position: absolute;
  inset: auto -30px -44px auto;
  width: 120px;
  height: 120px;
  border-radius: 36px;
  content: "";
  transform: rotate(18deg);
  opacity: 0.7;
}

.roadmap-visual.discovery::before {
  background: var(--yellow);
}

.roadmap-visual.prototype::before {
  background: var(--sky);
}

.roadmap-visual.build::before {
  background: var(--violet);
}

.roadmap-visual.launch::before {
  background: var(--lime);
}

.roadmap-visual.discovery span {
  width: 58px;
  height: 58px;
  border: 12px solid var(--accent);
  border-radius: 50%;
}

.roadmap-visual.discovery i {
  position: absolute;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(42px, 34px) rotate(42deg);
}

.roadmap-visual.prototype {
  grid-template-columns: repeat(3, 34px);
  gap: 10px;
}

.roadmap-visual.prototype span {
  position: relative;
  z-index: 1;
  height: 56px;
  border: 3px solid var(--dark);
  border-radius: 12px;
  background: #fffdf7;
}

.roadmap-visual.prototype span:nth-child(2) {
  height: 72px;
  background: var(--yellow);
}

.roadmap-visual.build span {
  width: 82px;
  height: 54px;
  border-radius: 16px;
  background: var(--dark);
}

.roadmap-visual.build i,
.roadmap-visual.build b {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: var(--lime);
}

.roadmap-visual.build i {
  width: 48px;
  height: 8px;
}

.roadmap-visual.build b {
  width: 28px;
  height: 8px;
  transform: translateY(18px);
}

.roadmap-visual.launch span {
  width: 52px;
  height: 72px;
  border-radius: 26px 26px 8px 8px;
  background: var(--coral);
  transform: translateY(-4px);
}

.roadmap-visual.launch i,
.roadmap-visual.launch b {
  position: absolute;
  display: block;
  content: "";
}

.roadmap-visual.launch i {
  width: 78px;
  height: 78px;
  border: 10px solid var(--sky);
  border-radius: 50%;
}

.roadmap-visual.launch b {
  bottom: 16px;
  width: 46px;
  height: 16px;
  border-radius: 50%;
  background: rgba(17, 19, 20, 0.18);
}

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-section::after {
  position: absolute;
  right: max(16px, calc((100% - 1180px) / 2));
  top: 58px;
  width: 86px;
  height: 86px;
  border: 16px solid var(--sky);
  border-radius: 28px;
  content: "";
  transform: rotate(14deg);
  opacity: 0.38;
}

.quote-copy {
  max-width: 560px;
}

.quote {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.quote-copy > span {
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.45;
}

.quote-graphic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 0.74fr;
  align-items: center;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 209, 102, 0.46), transparent 28%),
    radial-gradient(circle at 80% 68%, rgba(112, 214, 255, 0.42), transparent 30%),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.mini-screen {
  display: grid;
  gap: 14px;
  min-height: 178px;
  padding: 18px;
  border: 3px solid var(--dark);
  border-radius: 26px;
  background: var(--white);
  transform: rotate(-3deg);
}

.mini-screen span {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.mini-screen strong {
  align-self: end;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.mini-screen button {
  width: 76px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--dark);
  font-weight: 900;
}

.arrow-path {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: var(--dark);
}

.arrow-path::after {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 8px solid var(--dark);
  border-right: 8px solid var(--dark);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.server-stack {
  display: grid;
  gap: 12px;
  transform: rotate(3deg);
}

.server-stack span {
  display: block;
  height: 54px;
  border: 3px solid var(--dark);
  border-radius: 18px;
  background: var(--sky);
  box-shadow: 8px 8px 0 var(--dark);
}

.server-stack span:nth-child(2) {
  background: var(--yellow);
}

.server-stack span:nth-child(3) {
  background: var(--lime);
}

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

.contact-copy p {
  max-width: 600px;
  font-size: 18px;
}

.contact-options {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-options a,
.contact-options span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.contact-options span {
  background: rgba(217, 255, 106, 0.42);
  color: var(--accent-strong);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 255, 106, 0.24), transparent 28%),
    var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.lead-form input {
  height: 54px;
  padding: 0 16px;
}

.lead-form select {
  height: 54px;
  padding: 0 42px 0 16px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    var(--white);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.lead-form textarea {
  resize: vertical;
  padding: 16px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-note.is-success {
  color: var(--accent-strong);
  font-weight: 800;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 800;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .availability {
    display: none;
  }

  .header-actions {
    min-width: auto;
  }

  .hero,
  .visual-showcase,
  .quote-section,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .product-preview {
    max-width: 680px;
  }

  .flow-board {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .flow-line {
    display: none;
  }

  .stats-band,
  .portfolio-grid,
  .case-study-grid,
  .proof-layout,
  .case-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .upwork-proof {
    grid-template-columns: 1fr;
  }

  .upwork-proof-stats {
    padding-right: 0;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-lead {
    margin-left: 0;
  }

  .portfolio-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .portfolio-card.featured .portfolio-shot {
    min-height: 360px;
  }

  .roadmap {
    gap: 18px;
  }

  .roadmap::before {
    top: 30px;
    bottom: 30px;
    left: 45px;
    right: auto;
    width: 6px;
    height: auto;
    background: linear-gradient(180deg, var(--accent), var(--coral), #5f61ff, var(--dark));
  }

  .timeline article {
    min-height: auto;
    padding-left: 86px;
  }

  .step-number {
    position: absolute;
    top: 24px;
    left: 24px;
  }

  .roadmap-visual {
    height: 112px;
  }

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

  .quote-section::after {
    opacity: 0.28;
  }

  .quote-graphic {
    max-width: 680px;
  }

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

@media (max-width: 1100px) {
  html,
  body {
    overflow-x: hidden;
  }

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

  .visual-copy h2 {
    max-width: 700px;
  }

  .flow-board {
    display: flex;
    gap: 14px;
    min-height: 260px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .flow-board::-webkit-scrollbar {
    display: none;
  }

  .flow-board::before {
    left: 52px;
    right: 24px;
  }

  .flow-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .visual-copy[data-reveal],
  .flow-board[data-reveal],
  .flow-card[data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .service-grid,
  .portfolio-grid {
    display: flex;
    gap: 16px;
    margin-inline: 0 -16px;
    padding-inline: 0 16px;
    padding-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-grid::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .portfolio-card {
    flex: 0 0 min(44vw, 360px);
    scroll-snap-align: start;
  }

  .portfolio-card.featured {
    flex-basis: min(72vw, 620px);
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .portfolio-card.featured .portfolio-shot {
    min-height: 300px;
  }

  .service-card[data-reveal],
  .portfolio-card[data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .stats-band {
    margin-bottom: 32px;
  }

  .split,
  .visual-showcase,
  .proof-section,
  .cases-showcase,
  .process,
  .contact,
  .dark-section,
  .quote-section,
  .testimonials-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
    background:
      linear-gradient(180deg, #ffffff 0 438px, #dff3f1 438px 790px, var(--bg) 790px 100%);
  }

  .site-header {
    top: 0;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding: 9px 14px;
    border-width: 0 0 2px;
    border-color: rgba(17, 19, 20, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 32px rgba(17, 19, 20, 0.08);
  }

  .brand {
    order: 1;
    flex: 0 0 auto;
  }

  .brand > .brand-text {
    display: grid;
  }

  .header-actions {
    order: 2;
    display: flex;
    min-width: auto;
    margin-left: auto;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .language-switcher {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 rgba(17, 19, 20, 0.08);
  }

  .brand-mark::after {
    right: -4px;
    bottom: -4px;
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 42;
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--lime);
    transition: transform 180ms ease;
  }

  .mobile-menu-toggle span + span {
    margin-top: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    z-index: 40;
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(17, 19, 20, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 19, 20, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(17, 19, 20, 0.08);
    color: var(--dark);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .mobile-menu nav a::after {
    color: var(--accent-strong);
    content: ">";
    font-size: 18px;
  }

  .mobile-menu-bottom {
    display: grid;
    gap: 12px;
  }

  .mobile-languages {
    display: inline-flex;
    justify-self: start;
  }

  .section {
    width: calc(100% - 32px);
  }

  .hero {
    width: 100%;
    gap: 16px;
    min-height: calc(100svh - 58px);
    padding: 18px 16px 34px;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-glow.one,
  .hero-glow.two,
  .product-preview::after {
    display: none;
  }

  h1 {
    max-width: 370px;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  h1 span {
    color: #21a8df;
   }

  .hero-text {
    max-width: 350px;
    margin-bottom: 0;
    color: #4f5c66;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin: 24px 0 18px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 54px;
    padding-inline: 16px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .trust-row {
    justify-content: center;
    gap: 8px;
    max-width: 360px;
  }

  .trust-row span {
    padding: 8px 10px;
    border-color: rgba(15, 118, 110, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--accent-strong);
    font-size: 11px;
    box-shadow: none;
  }

  .product-preview {
    order: -1;
    width: min(100%, 362px);
    max-height: none;
    overflow: hidden;
    border-radius: 26px;
  }

  .product-preview::before {
    width: 150px;
    height: 150px;
  }

  .browser-shell {
    overflow: hidden;
    border-color: rgba(17, 19, 20, 0.1);
    border-radius: 24px;
    background: linear-gradient(145deg, #0d1413, #153f3a);
    color: var(--white);
    box-shadow: 0 24px 64px rgba(17, 19, 20, 0.18);
  }

  .browser-top {
    display: none;
  }

  .dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    padding: 14px;
  }

  .dashboard::-webkit-scrollbar {
    display: none;
  }

  .dashboard > * {
    flex: initial;
    scroll-snap-align: unset;
  }

  .chart-card,
  .phone-mock,
  .deploy-card {
    display: none;
  }

  .metric-card {
    min-height: 108px;
    padding: 14px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .metric-card:nth-child(2) {
    background: rgba(217, 255, 106, 0.14);
  }

  .metric-card strong {
    margin: 8px 0 6px;
    font-size: 32px;
  }

  .system-card {
    grid-column: span 2;
    grid-template-columns: repeat(3, 1fr);
    min-height: auto;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
  }

  .system-card div {
    padding: 10px;
    background: transparent;
  }

  .system-card span {
    color: rgba(255, 253, 247, 0.62);
    font-size: 10px;
  }

  .system-card strong {
    color: var(--lime);
    font-size: 13px;
  }

  .stats-band {
    margin-bottom: 28px;
  }

  .split,
  .visual-showcase,
  .proof-section,
  .cases-showcase,
  .testimonials-section,
  .process,
  .contact,
  .dark-section,
  .quote-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .stats-band,
  .service-grid,
  .proof-layout,
  .portfolio-grid,
  .case-grid,
  .timeline,
  .testimonial-grid {
    display: flex;
    gap: 14px;
    margin-inline: 0 -16px;
    padding-inline: 0 16px;
    padding-bottom: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stats-band {
    width: calc(100% - 16px);
    margin-left: 16px;
    margin-right: 0;
  }

  .stats-band::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar,
  .proof-layout::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .case-grid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .stats-band > div,
  .service-card,
  .proof-panel,
  .portfolio-card,
  .case-grid article,
  .timeline article,
  .testimonial-card {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: center;
  }

  .stats-band > div[data-reveal],
  .service-card[data-reveal],
  .proof-panel[data-reveal],
  .portfolio-card[data-reveal],
  .case-grid article[data-reveal],
  .timeline article[data-reveal],
  .testimonial-card[data-reveal],
  .flow-board[data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .stats-band > div {
    align-content: end;
    min-height: 246px;
    padding: 24px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 78% 18%, rgba(217, 255, 106, 0.34), transparent 28%),
      linear-gradient(145deg, #0d1514, #183b36);
    color: var(--white);
    box-shadow: 0 22px 54px rgba(17, 19, 20, 0.16);
  }

  .stats-band > div:nth-child(2) {
    background:
      radial-gradient(circle at 78% 18%, rgba(112, 214, 255, 0.38), transparent 28%),
      linear-gradient(145deg, #fffdf7, #e8f7f5);
    color: var(--dark);
  }

  .stats-band > div:nth-child(3) {
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 111, 97, 0.28), transparent 28%),
      linear-gradient(145deg, #fff8e8, #f2fff1);
    color: var(--dark);
  }

  .stats-band > div::before {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 1;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    content: "01";
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 30px rgba(17, 19, 20, 0.16);
  }

  .stats-band > div:nth-child(2)::before {
    background: var(--sky);
    content: "02";
  }

  .stats-band > div:nth-child(3)::before {
    background: var(--coral);
    color: var(--white);
    content: "03";
  }

  .stats-band > div::after {
    right: -38px;
    bottom: auto;
    top: 22px;
    width: 156px;
    height: 156px;
    border: 0;
    border-radius: 44px;
    background:
      linear-gradient(135deg, rgba(217, 255, 106, 0.22), rgba(255, 255, 255, 0.08)),
      repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.14) 12px 14px);
    opacity: 0.85;
    transform: rotate(18deg);
  }

  .stats-band > div:nth-child(2)::after {
    background:
      linear-gradient(135deg, rgba(112, 214, 255, 0.28), rgba(255, 255, 255, 0.08)),
      repeating-linear-gradient(135deg, transparent 0 12px, rgba(17, 19, 20, 0.08) 12px 14px);
  }

  .stats-band > div:nth-child(3)::after {
    background:
      linear-gradient(135deg, rgba(255, 111, 97, 0.22), rgba(217, 255, 106, 0.22)),
      repeating-linear-gradient(135deg, transparent 0 12px, rgba(17, 19, 20, 0.07) 12px 14px);
  }

  .stats-band strong {
    color: inherit;
    opacity: 0.72;
  }

  .stats-band span {
    max-width: 250px;
    color: inherit;
    font-size: 31px;
  }

  .stats-band small {
    color: inherit;
    opacity: 0.74;
    font-size: 16px;
  }

  .service-card {
    min-height: 282px;
  }

  .proof-panel {
    min-height: 238px;
  }

  .flow-board {
    position: relative;
    display: flex;
    gap: 12px;
    margin-inline: 0 -16px;
    padding: 20px 16px 22px 18px;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 34px 0 0 34px;
    background:
      radial-gradient(circle at 10% 20%, rgba(217, 255, 106, 0.18), transparent 28%),
      radial-gradient(circle at 86% 72%, rgba(112, 214, 255, 0.18), transparent 30%),
      linear-gradient(145deg, #0d1514, #162622);
    box-shadow: 0 24px 60px rgba(17, 19, 20, 0.18);
    overflow-x: auto;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .flow-board::before {
    position: absolute;
    left: 42px;
    right: 0;
    top: 54px;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), rgba(112, 214, 255, 0.4), transparent);
    content: "";
    pointer-events: none;
  }

  .flow-board::-webkit-scrollbar {
    display: none;
  }

  .flow-card {
    position: relative;
    flex: 0 0 172px;
    min-height: 190px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    transform: none;
    scroll-snap-align: center;
  }

  .flow-card::before {
    position: absolute;
    inset: auto 16px 16px auto;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    content: "";
    transform: rotate(12deg);
  }

  .flow-card span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    opacity: 1;
  }

  .flow-card strong {
    position: relative;
    z-index: 1;
    align-self: end;
    font-size: 29px;
    line-height: 1;
  }

  .flow-card.coral,
  .flow-card.yellow,
  .flow-card.mint,
  .flow-card.blue,
  .flow-card.dark {
    transform: none;
  }

  .flow-card.coral {
    background:
      radial-gradient(circle at 80% 18%, rgba(255, 111, 97, 0.26), transparent 30%),
      rgba(255, 255, 255, 0.08);
  }

  .flow-card.yellow {
    color: var(--dark);
    background:
      radial-gradient(circle at 84% 18%, rgba(245, 200, 91, 0.42), transparent 30%),
      linear-gradient(145deg, #fffaf1, #ffe29b);
  }

  .flow-card.mint {
    color: var(--dark);
    background:
      radial-gradient(circle at 84% 18%, rgba(217, 255, 106, 0.48), transparent 30%),
      linear-gradient(145deg, #f8ffe5, #d9ff6a);
  }

  .flow-card.blue {
    color: var(--dark);
    background:
      radial-gradient(circle at 84% 18%, rgba(120, 201, 230, 0.52), transparent 30%),
      linear-gradient(145deg, #f3fdff, #b7e8f6);
  }

  .flow-card.dark {
    background:
      radial-gradient(circle at 84% 18%, rgba(217, 255, 106, 0.28), transparent 30%),
      linear-gradient(145deg, #111514, #24332f);
  }

  .roadmap::before {
    display: none;
  }

  .timeline article {
    flex-basis: min(82vw, 320px);
    min-height: 306px;
    padding: 20px;
  }

  .step-number {
    position: static;
  }

  .upwork-proof {
    padding: 22px;
  }

  .upwork-proof::after {
    top: 18px;
    right: 18px;
  }

  .upwork-proof-stats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .upwork-proof-stats::-webkit-scrollbar {
    display: none;
  }

  .upwork-proof-stats span {
    flex: 0 0 132px;
    min-height: auto;
    scroll-snap-align: start;
  }

  .portfolio-shot,
  .portfolio-card.featured .portfolio-shot {
    min-height: 215px;
  }

  .portfolio-card.featured {
    flex-basis: min(88vw, 360px);
    grid-template-columns: 1fr;
  }

  .portfolio-copy,
  .portfolio-card.featured .portfolio-copy {
    padding: 20px;
  }

  .portfolio-meta {
    margin-bottom: 24px;
  }

  .portfolio-copy h3 {
    font-size: 24px;
  }

  .portfolio-metrics {
    gap: 8px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .portfolio-metrics::-webkit-scrollbar {
    display: none;
  }

  .portfolio-metrics span {
    flex: 0 0 142px;
    min-height: auto;
    scroll-snap-align: start;
  }

  .case-study {
    min-height: 360px;
  }

  .case-topline {
    margin-bottom: 44px;
  }

  .proof-panel span {
    margin-bottom: 34px;
  }

  .tech-marquee::before,
  .tech-marquee::after {
    width: 44px;
  }

  .marquee-track span {
    min-width: 132px;
    padding: 12px 14px;
  }

  .testimonial-card {
    min-height: 260px;
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 17px;
  }

  .quote {
    font-size: 34px;
  }

  .quote-graphic {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 20px;
  }

  .arrow-path {
    width: 8px;
    height: 56px;
    justify-self: center;
  }

  .arrow-path::after {
    right: auto;
    top: auto;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .mini-screen,
  .server-stack {
    transform: none;
  }

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

  .case-grid span {
    margin-bottom: 36px;
  }

  .site-footer {
    width: calc(100% - 28px);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

[data-reveal="slide-left"] {
  transform: translateX(-34px);
}

[data-reveal="slide-right"] {
  transform: translateX(34px);
}

[data-reveal="scale"] {
  transform: translateY(24px) scale(0.96);
}

[data-reveal="slide-left"].is-visible,
[data-reveal="slide-right"].is-visible,
[data-reveal="scale"].is-visible {
  transform: translate(0) scale(1);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
