:root {
  --ink: #111718;
  --muted: #58686a;
  --line: rgba(17, 23, 24, 0.12);
  --paper: #f6f8f5;
  --paper-strong: #ffffff;
  --mint: #13c59a;
  --mint-dark: #08745c;
  --coral: #ef6b4a;
  --amber: #f4b740;
  --teal: #123f44;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 23, 24, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

.hero-canvas {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: min(840px, 96vh);
  min-height: 640px;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 248, 245, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand,
.header-cta,
.nav-links a,
.button {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
  backdrop-filter: blur(18px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: rgba(17, 23, 24, 0.78);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(720px, 88vh);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: 108px clamp(20px, 5vw, 76px) 48px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(247, 244, 236, 0), var(--paper));
  z-index: -1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(17, 23, 24, 0.78);
  font-size: clamp(17px, 1.8vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(17, 23, 24, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #243033;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.phone-shell {
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 38px;
  background: #142326;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 9px 18px 13px;
}

.phone-status span:first-child {
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-status span:last-child {
  width: 38px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.phone-screen {
  display: grid;
  gap: 14px;
  min-height: 440px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #fdf9ee 0%, #d9f5ee 58%, #f8d6c9 100%);
}

.app-card,
.metric-row,
.release-line {
  border: 1px solid rgba(17, 23, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.app-card {
  align-self: end;
  min-height: 176px;
  padding: 18px;
}

.app-chip,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--mint-dark);
  background: rgba(19, 197, 154, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.app-card strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.08;
}

.app-card p,
.release-line p,
.metric-row span {
  color: var(--muted);
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.metric-row strong {
  color: var(--mint-dark);
  font-size: 26px;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(17, 23, 24, 0.86);
}

.mini-bars span {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--amber), var(--mint));
}

.release-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.release-line > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    conic-gradient(var(--mint) 78%, rgba(17, 23, 24, 0.16) 0) border-box;
  border: 7px solid transparent;
}

.release-line strong,
.release-line p,
.app-card p {
  margin: 0;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 60px rgba(17, 23, 24, 0.08);
}

.stats-band div {
  min-height: 128px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.82);
}

.stats-band strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stats-band span {
  display: block;
  max-width: 190px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.availability-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 16px clamp(20px, 5vw, 76px) 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 45px rgba(17, 23, 24, 0.08);
}

.availability-strip div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.availability-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(19, 197, 154, 0.14);
}

.availability-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.availability-strip a {
  color: var(--mint-dark);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 98px clamp(20px, 5vw, 76px);
}

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

.section-heading h2,
.contact-inner h2,
.availability-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.56fr);
  align-items: end;
  gap: 28px;
}

.section-heading.split > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.intro-grid article,
.fit-grid article,
.case-study-card,
.service-card,
.pricing-grid article,
.ios-detail-grid article,
.testimonial-grid article,
.needs-grid article,
.seo-grid article,
.mini-project,
.skill-column,
.timeline-item,
.quote-block,
.availability-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.intro-grid article {
  min-height: 250px;
  padding: 24px;
}

.fit-section {
  background: var(--teal);
  color: var(--white);
}

.fit-section .eyebrow {
  color: var(--mint);
}

.fit-section .section-heading.split > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.fit-grid article {
  min-height: 278px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.fit-check {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.intro-grid h3,
.fit-grid h3,
.project-body h3,
.skill-column h3,
.timeline-item h3 {
  margin: 26px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.intro-grid p,
.fit-grid p,
.project-body p,
.timeline-item p,
.availability-card p,
.contact-inner p {
  margin: 0;
  color: var(--muted);
}

.fit-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.services-section {
  background: var(--paper);
}

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

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
}

.service-card.featured {
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 26px),
    var(--teal);
}

.service-card.featured .tag {
  color: var(--ink);
  background: var(--mint);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-topline > span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-card.featured .service-topline > span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.service-card h3 {
  margin: 40px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.04;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.service-cta h3 {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.ios-android-section {
  color: var(--white);
  background: var(--teal);
}

.ios-android-section .eyebrow {
  color: var(--mint);
}

.ios-android-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.ios-android-layout h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.ios-android-layout p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.ios-android-layout img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ios-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ios-proof-list span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.ios-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.ios-detail-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.ios-detail-grid .card-icon {
  color: var(--ink);
  background: var(--mint);
}

.ios-detail-grid h3 {
  margin: 24px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.ios-detail-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.pricing-section {
  background: var(--paper-strong);
}

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

.pricing-grid article {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
}

.pricing-grid h3 {
  margin: 24px 0 12px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.06;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.pricing-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--teal);
}

.process-section {
  background: var(--paper-strong);
}

.work-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 63, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 63, 68, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f1f8f4 48%, #ffffff 100%);
  background-size: 40px 40px, 40px 40px, auto;
}

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

.work-section .section-heading h2 {
  max-width: 820px;
}

.work-proof-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(19, 197, 154, 0.16), transparent 34%),
    linear-gradient(135deg, #102f34 0%, #164d52 100%);
  box-shadow: 0 24px 54px rgba(17, 23, 24, 0.14);
}

.proof-intro {
  display: grid;
  gap: 6px;
}

.proof-intro span {
  color: #ffb097;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-intro strong {
  color: var(--white);
  line-height: 1.35;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-metrics span {
  display: grid;
  gap: 2px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.proof-metrics strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.work-proof-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

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

.case-study-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(17, 23, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-study-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-top: 4px solid transparent;
  background: linear-gradient(90deg, var(--mint), var(--coral), var(--amber)) top / 100% 4px no-repeat;
  pointer-events: none;
}

.case-study-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 63, 68, 0.2);
  box-shadow: 0 28px 70px rgba(17, 23, 24, 0.14);
}

.case-study-card.featured-project {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  min-height: 430px;
}

.case-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(155deg, #0e3034 0%, #12636a 46%, #eef6f0 100%);
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: 18px 18px 72px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.case-visual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 112px;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.66) 100%);
}

.case-board {
  position: relative;
  z-index: 2;
  width: min(94%, 470px);
  border-radius: 8px;
  box-shadow: 0 32px 62px rgba(17, 23, 24, 0.26);
}

.featured-project .case-board {
  width: min(92%, 540px);
}

.case-shot {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: min(39%, 136px);
  height: auto;
  border: 6px solid #101617;
  border-radius: 24px;
  background: #101617;
  outline: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 52px rgba(17, 23, 24, 0.34);
}

.featured-project .case-shot {
  width: min(31%, 164px);
}

.case-shot.is-left {
  left: 24%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.case-shot.is-center {
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(1.08);
}

.case-shot.is-right {
  left: 76%;
  transform: translate(-50%, -50%) rotate(8deg);
}

.case-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.92));
}

.case-study-card:not(.featured-project) .case-visual {
  min-height: 290px;
}

.case-study-card:not(.featured-project) .case-copy {
  min-height: 340px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.case-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.case-copy li {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(18, 63, 68, 0.14);
  border-radius: 999px;
  background: rgba(246, 248, 245, 0.78);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.play-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 9px 14px;
  border: 1px solid rgba(8, 116, 92, 0.28);
  border-radius: 999px;
  background: rgba(19, 197, 154, 0.08);
  color: var(--mint-dark);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.play-link:hover {
  background: rgba(19, 197, 154, 0.16);
  transform: translateY(-1px);
}

.more-work-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.more-work-strip h3 {
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.mini-project {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 250px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 23, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-project:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 23, 24, 0.12);
}

.mini-project img {
  width: 100%;
  height: 152px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
}

.mini-project span {
  color: var(--teal);
  font-weight: 900;
  line-height: 1.15;
}

.mini-project small {
  color: var(--muted);
  font-weight: 700;
}

.skills-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.skill-column {
  padding: 28px;
}

.skill-column h3 {
  margin-top: 0;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tags span {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px var(--line);
}

.testimonials-section {
  background: var(--paper);
}

.testimonial-grid,
.needs-grid,
.seo-grid {
  display: grid;
  gap: 18px;
}

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

.testimonial-grid article,
.needs-grid article,
.seo-grid article {
  padding: 26px;
  background: var(--white);
}

.testimonial-grid span {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-grid h3,
.needs-grid strong,
.seo-grid h3 {
  display: block;
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.testimonial-grid p,
.needs-grid p,
.seo-grid p {
  margin: 0;
  color: var(--muted);
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline-item {
  border: 0;
  border-radius: 0;
  padding: 26px;
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-weight: 800;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-panel strong {
  font-size: 22px;
  line-height: 1.12;
}

.trust-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.trust-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.needs-section {
  background: var(--paper);
}

.needs-grid {
  grid-template-columns: repeat(3, 1fr);
}

.needs-grid strong {
  margin-top: 0;
}

.faq-section {
  background: var(--paper-strong);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.seo-section {
  background: var(--paper);
}

.seo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 18px;
}

.quote-block,
.availability-card {
  padding: clamp(26px, 4vw, 42px);
}

.quote-block {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  background: var(--teal);
  color: var(--white);
}

.quote-block p {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.08;
}

.quote-block span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.availability-card {
  background: var(--white);
}

.availability-card p {
  max-width: 580px;
  margin: 22px 0 26px;
  font-size: 17px;
}

.contact-section {
  padding: 112px clamp(20px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(19, 197, 154, 0.18), transparent 44%),
    var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-inner .eyebrow {
  color: var(--mint);
}

.contact-inner p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 13px 14px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.62) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 38px;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(19, 197, 154, 0.22);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.contact-form .button {
  width: 100%;
  color: var(--ink);
  background: var(--mint);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: rgba(17, 23, 24, 0.72);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-panel {
    justify-items: start;
  }

  .phone-shell {
    width: min(100%, 330px);
    transform: rotate(0);
  }

  .stats-band,
  .fit-grid,
  .services-grid,
  .pricing-grid,
  .ios-detail-grid,
  .testimonial-grid,
  .needs-grid,
  .seo-grid,
  .timeline,
  .mini-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-grid,
  .more-work-strip,
  .work-proof-bar {
    grid-template-columns: 1fr;
  }

  .case-study-card,
  .case-study-card.featured-project {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .service-cta {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .section-heading.split,
  .availability-strip,
  .ios-android-layout,
  .about-layout,
  .proof-section,
  .trust-panel,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .trust-panel ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 96px 18px 42px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .phone-shell {
    display: none;
  }

  .stats-band,
  .skills-layout,
  .fit-grid,
  .services-grid,
  .pricing-grid,
  .ios-detail-grid,
  .testimonial-grid,
  .needs-grid,
  .seo-grid,
  .timeline,
  .mini-project-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card,
  .case-study-card.featured-project {
    grid-template-columns: 1fr;
  }

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

  .work-proof-bar a {
    width: 100%;
    white-space: normal;
  }

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

  .case-copy {
    padding: 24px;
  }

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

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

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

  .contact-form .button {
    font-size: 14px;
    white-space: nowrap;
  }

  .stats-band {
    margin-right: 18px;
    margin-left: 18px;
  }

  .availability-strip {
    margin-right: 18px;
    margin-left: 18px;
  }

  .section,
  .contact-section {
    padding: 72px 18px;
  }

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

  .case-shot {
    width: min(34%, 126px);
    border-width: 4px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-canvas {
    display: none;
  }
}
