:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5c6675;
  --paper: #fbfbf8;
  --warm: #f6d482;
  --aqua: #35c6d0;
  --rose: #ff7f9f;
  --blue: #315cf2;
  --line: rgba(17, 24, 39, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 90px rgba(17, 24, 39, 0.16);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 210, 96, 0.38), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(53, 198, 208, 0.24), transparent 34%),
    linear-gradient(135deg, #fffdf4 0%, #f7fbff 46%, #fff7f7 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1060px, calc(100% - 36px));
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 60px rgba(35, 45, 75, 0.12);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 1rem;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #3f4856;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #0e1726;
  background: #ffffff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.2);
}

.button {
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: #111827;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #111827;
  background: rgba(255, 255, 255, 0.74);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: #111827;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  border-radius: 99px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.mobile-panel {
  position: fixed;
  top: 100px;
  right: 18px;
  left: 18px;
  z-index: 19;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(24px);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel a {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
  background: rgba(17, 24, 39, 0.04);
}

.mobile-panel__cta {
  color: #ffffff;
  overflow-wrap: anywhere;
  background: #111827 !important;
}

.dot-nav {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 18;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.dot-nav button {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(17, 24, 39, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dot-nav button::before {
  position: absolute;
  inset: -9px;
  content: "";
}

.dot-nav button.is-active {
  border-color: #111827;
  background: #111827;
  transform: scale(1.35);
}

.panel {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(94px, 12vh, 118px) clamp(22px, 6vw, 82px) clamp(30px, 5vh, 50px);
}

.panel h1,
.panel h2,
.panel h3,
.panel p {
  margin: 0;
}

.panel h1,
.panel h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.4vw, 4.95rem);
  line-height: 1;
  letter-spacing: 0;
}

.panel h2 {
  max-width: 690px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.panel h3 {
  font-size: clamp(1.08rem, 2.1vw, 1.7rem);
  line-height: 1.08;
}

.eyebrow,
.section-kicker {
  color: #315cf2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel {
  isolation: isolate;
  align-items: end;
  color: #ffffff;
  background: #101828;
}

.hero-video,
.panel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04);
}

.panel-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 14, 24, 0.88) 0%, rgba(10, 14, 24, 0.58) 47%, rgba(10, 14, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 14, 24, 0.88) 0%, transparent 56%);
}

.hero-glass {
  position: absolute;
  right: clamp(20px, 9vw, 140px);
  bottom: 15%;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    linear-gradient(45deg, rgba(53, 198, 208, 0.22), rgba(255, 127, 159, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 40px 100px rgba(0, 0, 0, 0.28);
  transform: rotate(-7deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 780px;
  gap: 18px;
}

.hero-copy h1 {
  text-wrap: balance;
}

.hero-lede {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  position: absolute;
  right: clamp(22px, 8vw, 96px);
  top: 24%;
  z-index: 3;
  display: grid;
  width: min(240px, 24vw);
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  color: #111827;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.hero-stat span {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.hero-stat p {
  color: #394150;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}

.services-panel {
  align-content: center;
  gap: clamp(16px, 3vh, 28px);
}

.section-heading,
.packages-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading p,
.packages-intro p {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-flow {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr;
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 1040px;
}

.service-feature {
  position: relative;
  display: grid;
  min-height: 165px;
  align-content: end;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.service-feature > *,
.package-item > * {
  position: relative;
  z-index: 2;
}

.service-feature::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.22;
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
}

.service-feature:nth-child(1)::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.2)), url("assets/project-static.png");
}

.service-feature:nth-child(2)::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2)), url("assets/project-wordpress.png");
}

.service-feature:nth-child(3)::before {
  opacity: 0.3;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.46)), url("assets/project-invitation.png");
}

.service-feature::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 38px;
  content: "";
  background: linear-gradient(135deg, rgba(246, 212, 130, 0.8), rgba(53, 198, 208, 0.42));
  transform: rotate(22deg);
  z-index: 1;
}

.service-feature span,
.package-item span {
  color: #315cf2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-feature p,
.package-item p {
  max-width: 580px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.package-item p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-feature--wide {
  min-height: 286px;
  grid-row: span 2;
}

.service-feature--lift {
  transform: translateY(-24px);
}

.service-feature--quiet {
  background: rgba(17, 24, 39, 0.92);
  color: #ffffff;
}

.service-feature--quiet p {
  color: rgba(255, 255, 255, 0.72);
}

.service-rail {
  display: flex;
  max-width: 100%;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}

.service-rail::-webkit-scrollbar {
  display: none;
}

.service-rail span {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2a3445;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.proof-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(22px, 5vw, 60px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 75% 52%, rgba(49, 92, 242, 0.12), transparent 28%);
}

.proof-orbit {
  position: absolute;
  right: 12%;
  bottom: -18%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(49, 92, 242, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.proof-orbit::before,
.proof-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.proof-orbit::before {
  inset: 16%;
  border: 1px solid rgba(255, 127, 159, 0.2);
}

.proof-orbit::after {
  width: 34%;
  height: 34%;
  right: 12%;
  top: 8%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.12);
}

.proof-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.proof-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  line-height: 1.6;
}

.proof-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.proof-line {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(20px);
}

.proof-line:nth-child(even) {
  transform: translateX(-34px);
}

.proof-line strong {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1;
}

.proof-line span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.38;
}

.projects-panel {
  align-content: center;
  gap: clamp(16px, 3vh, 26px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58), rgba(53, 198, 208, 0.12)),
    radial-gradient(circle at 78% 30%, rgba(255, 127, 159, 0.18), transparent 30%);
}

.projects-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.projects-intro p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-slider {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.project-track {
  --project-shift: 0px;
  display: flex;
  gap: 18px;
  transform: translateX(calc(var(--project-shift) * -1));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card {
  position: relative;
  flex: 0 0 min(76%, 850px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.72fr);
  min-height: min(46vh, 430px);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.1);
  opacity: 0.58;
  transform: scale(0.96);
  transition: opacity 360ms ease, transform 360ms ease;
}

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

.project-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(49, 92, 242, 0.2), rgba(53, 198, 208, 0.24)),
    linear-gradient(135deg, #ffffff, #e9f6ff);
}

.project-media::before {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.68) 0 0) 18px 22px / 46% 12px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.52) 0 0) 18px 50px / 68% 10px no-repeat,
    linear-gradient(rgba(17, 24, 39, 0.08) 0 0) 18px 92px / calc(100% - 36px) 42% no-repeat,
    rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.14);
}

.project-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(22px, 3vw, 36px);
}

.project-copy span {
  color: #315cf2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.project-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  color: #ffffff;
  background: #111827;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.project-controls span {
  color: #596273;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.packages-panel {
  align-content: center;
  gap: clamp(14px, 3vh, 26px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(246, 212, 130, 0.18)),
    radial-gradient(circle at 14% 78%, rgba(53, 198, 208, 0.2), transparent 24%);
}

.package-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.82fr;
  grid-auto-rows: minmax(118px, auto);
  gap: 12px;
  max-width: 1100px;
}

.package-item {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.package-item::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  content: "";
  background: linear-gradient(90deg, var(--warm), var(--aqua));
  z-index: 3;
}

.package-item::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.2;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.package-item:nth-child(1)::after {
  opacity: 0.24;
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(49, 92, 242, 0.72)), url("assets/project-static.png");
}

.package-item:nth-child(2)::after {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.28)), url("assets/project-wordpress.png");
}

.package-item:nth-child(3)::after {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.24)), url("assets/project-shopify.png");
}

.package-item:nth-child(4)::after {
  opacity: 0.26;
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(49, 92, 242, 0.5)), url("assets/ikagi.png");
}

.package-item:nth-child(5)::after {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.2)), url("assets/project-invitation.png");
}

.package-item--hero {
  grid-row: span 2;
  min-height: 244px;
  color: #ffffff;
  background:
    linear-gradient(140deg, rgba(17, 24, 39, 0.96), rgba(49, 92, 242, 0.8)),
    #111827;
}

.package-item--hero p {
  -webkit-line-clamp: 4;
}

.package-item--hero span,
.package-item--dark span {
  color: #f6d482;
}

.package-item--hero p,
.package-item--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.package-item--dark {
  color: #ffffff;
  background: #111827;
}

.package-item--dark p {
  -webkit-line-clamp: 2;
}

.contact-panel {
  place-items: center;
  text-align: center;
}

.contact-panel::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  content: "";
  transform: rotate(-8deg);
}

.contact-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(890px, 100%);
  gap: 18px;
  justify-items: center;
}

.contact-card h2 {
  max-width: 780px;
}

.contact-card p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #596273;
  font-size: 0.9rem;
  font-weight: 900;
  transform: translateX(-50%);
}

footer img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
}

.panel > *:not(.hero-video):not(.panel-shade):not(.hero-glass):not(.proof-orbit) {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.panel.is-visible > *:not(.hero-video):not(.panel-shade):not(.hero-glass):not(.proof-orbit) {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 720px);
    height: 68px;
    border-radius: 24px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .dot-nav {
    right: 14px;
  }

  .panel {
    min-height: 100svh;
    padding: 92px 24px 34px;
  }

  .hero-stat {
    position: relative;
    top: auto;
    right: auto;
    width: min(420px, 100%);
    margin-top: 18px;
  }

  .hero-glass {
    right: -18vw;
    bottom: 28%;
    width: 58vw;
    height: 58vw;
  }

  .section-heading,
  .packages-intro,
  .projects-intro {
    display: grid;
    align-items: start;
  }

  .service-flow,
  .proof-panel,
  .package-stage {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-basis: min(84%, 720px);
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .project-media {
    min-height: 220px;
  }

  .service-feature--wide {
    min-height: 210px;
  }

  .service-feature--lift,
  .proof-line:nth-child(even) {
    transform: none;
  }

  .proof-line {
    grid-template-columns: 96px 1fr;
  }

  .package-item--hero,
  .package-item--dark {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
}

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

  .brand span {
    font-size: 0.94rem;
  }

  .dot-nav {
    right: 8px;
    gap: 12px;
  }

  .dot-nav button {
    width: 10px;
    height: 10px;
  }

  .panel {
    min-height: 100svh;
    padding: 88px 20px 28px;
  }

  .panel h1,
  .panel h2 {
    font-size: clamp(1.95rem, 10.6vw, 3rem);
    line-height: 1.06;
  }

  .panel h2 {
    font-size: clamp(1.7rem, 8.6vw, 2.55rem);
  }

  .panel h3 {
    font-size: 1.08rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-panel {
    align-content: end;
  }

  .hero-glass,
  .hero-stat {
    display: none;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-lede {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-stat {
    padding: 18px;
  }

  .service-feature,
  .package-item,
  .proof-line {
    border-radius: 24px;
  }

  .service-flow {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

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

  .service-feature {
    flex: 0 0 min(82vw, 320px);
    min-height: 214px;
  }

  .service-feature--wide {
    min-height: 214px;
    grid-row: auto;
  }

  .section-heading,
  .packages-intro,
  .projects-intro {
    gap: 12px;
  }

  .section-heading p,
  .packages-intro p,
  .projects-intro p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .projects-panel {
    gap: 12px;
  }

  .project-track {
    gap: 12px;
  }

  .project-card {
    flex: 0 0 min(86vw, 340px);
    min-height: 390px;
    border-radius: 24px;
  }

  .project-media {
    min-height: 180px;
  }

  .project-copy {
    gap: 10px;
    padding: 18px;
  }

  .project-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .project-controls button {
    width: 44px;
    height: 44px;
  }

  .proof-line {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 11px 12px;
  }

  .proof-stack {
    gap: 8px;
  }

  .package-stage {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .package-stage::-webkit-scrollbar {
    display: none;
  }

  .package-item {
    flex: 0 0 min(84vw, 330px);
    min-height: 232px;
  }

  .contact-card .button {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  footer {
    bottom: 18px;
  }
}

@media (max-height: 740px) and (min-width: 760px) {
  .panel {
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 24px;
  }

  .panel h1,
  .panel h2 {
    font-size: clamp(2rem, 4.8vw, 4.1rem);
  }

  .panel h2 {
    font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-lede,
  .proof-copy p:last-child,
  .section-heading p,
  .packages-intro p,
  .projects-intro p,
  .contact-card p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .service-feature {
    min-height: 132px;
    padding: 14px 18px;
  }

  .service-feature--wide {
    min-height: 224px;
  }

  .package-stage {
    grid-auto-rows: minmax(94px, auto);
  }

  .package-item {
    gap: 8px;
    padding: 12px 16px;
  }

  .package-item h3 {
    font-size: 1rem;
  }

  .package-item p,
  .service-feature p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .package-item--hero {
    min-height: 200px;
  }

  .project-card {
    min-height: 300px;
  }

  .project-media {
    min-height: 150px;
  }

  .project-copy {
    padding: 14px 16px;
  }

  .project-copy p {
    -webkit-line-clamp: 2;
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .proof-line {
    padding: 11px 12px;
  }
}

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

  .layer,
  .hero-video {
    transform: none !important;
  }
}
