:root {
  --bg: #edf2ec;
  --bg-strong: #f7faf5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #162228;
  --muted: #60706b;
  --line: rgba(22, 34, 40, 0.1);
  --line-strong: rgba(22, 34, 40, 0.2);
  --panel: #101917;
  --panel-soft: #16231f;
  --blue: #2553ff;
  --teal: #0f7c6a;
  --lime: #c8fb66;
  --coral: #ee6b4d;
  --shadow: 0 20px 60px rgba(16, 25, 23, 0.1);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(to right, rgba(37, 83, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 83, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #f2f6ef 0%, #edf2ec 100%);
  background-size: 80px 80px, 80px 80px, 100% 100%;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.section,
.proof-strip,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.topbar,
.hero,
.proof-strip,
.section-heading,
.work-layout,
.offer-grid,
.timeline,
.about-layout,
.contact-shell,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  backdrop-filter: blur(20px);
  background: rgba(247, 250, 245, 0.82);
  border-bottom: 1px solid rgba(22, 34, 40, 0.08);
}

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

.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.desktop-nav a {
  position: relative;
  padding-bottom: 4px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cta-link,
.primary-btn,
.secondary-btn,
.filter-chip,
.project-card,
.menu-toggle {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.cta-link,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(37, 83, 255, 0.22);
}

.primary-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 700;
}

.cta-link:hover,
.primary-btn:hover,
.secondary-btn:hover,
.filter-chip:hover,
.project-card:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-panel {
  position: fixed;
  inset: 89px 0 0;
  z-index: 18;
  padding: 0 24px 24px;
  background: rgba(247, 250, 245, 0.74);
  backdrop-filter: blur(16px);
}

@media (min-width: 821px) {
  .mobile-panel {
    display: none !important;
  }
}

.mobile-nav {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(247, 250, 245, 0.97);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 34, 40, 0.08);
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-cta {
  margin-top: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 40px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 56px;
}

.eyebrow,
.section-kicker,
.offer-index,
.note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  border: 2px solid var(--teal);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.about-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.lede,
.section-heading p,
.offer-card li,
.timeline-step p,
.about-copy p,
.contact-copy p,
.project-summary,
.project-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.lede {
  max-width: 39rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding: 16px;
  border-top: 1px solid var(--line-strong);
}

.hero-proof strong,
.proof-value,
.metric-value,
.panel-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero-proof strong {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.portrait-wrap {
  position: relative;
  height: 100%;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(37, 83, 255, 0.08), rgba(15, 124, 106, 0.14)),
    linear-gradient(to right, rgba(22, 34, 40, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 34, 40, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  border: 1px solid rgba(22, 34, 40, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.portrait-wrap img {
  width: min(100%, 510px);
  margin-left: auto;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
  will-change: transform;
  animation: portrait-float 5.6s ease-in-out infinite;
}

.portrait-note {
  position: absolute;
  top: 30px;
  left: 30px;
  width: min(260px, calc(100% - 60px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 34, 40, 0.08);
  box-shadow: 0 18px 40px rgba(22, 34, 40, 0.08);
}

.portrait-note strong {
  display: block;
  line-height: 1.5;
}

.note-label {
  margin-bottom: 8px;
  color: var(--teal);
}

.signal-board {
  position: absolute;
  left: -32px;
  bottom: 24px;
  width: min(370px, calc(100% - 24px));
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: var(--panel);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(16, 25, 23, 0.24);
  overflow: hidden;
  transform-origin: bottom left;
  will-change: transform, opacity;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    box-shadow 260ms ease;
}

.signal-board div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-board div:first-child {
  padding-top: 0;
  border-top: 0;
}

.signal-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(200, 251, 102, 0.12);
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.signal-board p {
  margin: 0;
  line-height: 1.55;
}

.portrait-wrap:focus-visible {
  outline: 2px solid rgba(37, 83, 255, 0.38);
  outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 821px) {
  .hero-stage .signal-board {
    transform: translateY(calc(100% - 78px));
    opacity: 0.94;
    box-shadow: 0 14px 28px rgba(16, 25, 23, 0.18);
  }

  .hero-stage:hover .signal-board,
  .hero-stage:focus-within .signal-board,
  .hero-stage.is-active .signal-board {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 24px 60px rgba(16, 25, 23, 0.24);
  }
}

@keyframes portrait-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 22px;
}

.proof-item {
  padding: 22px 0 18px;
  border-top: 1px solid var(--line-strong);
}

.proof-value {
  font-size: 2.1rem;
  color: var(--coral);
}

.proof-item:nth-child(2) .proof-value {
  color: var(--teal);
}

.proof-item:nth-child(3) .proof-value {
  color: var(--blue);
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: end;
}

.section-heading h2,
.contact-copy h2,
.about-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-heading p {
  margin: 0;
}

.work-section {
  color: #f6fbf8;
  background:
    linear-gradient(180deg, rgba(200, 251, 102, 0.05), transparent 18%),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--panel) 0%, #0d1412 100%);
  background-size: 100% 100%, 60px 60px, 60px 60px, 100% 100%;
}

.work-section .section-kicker,
.work-section .section-heading p,
.work-section .section-heading h2 {
  color: inherit;
}

.work-section .section-kicker::before {
  border-color: rgba(200, 251, 102, 0.7);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--lime);
  color: #0d1412;
  border-color: transparent;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.project-card {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.project-card.is-active {
  border-color: rgba(200, 251, 102, 0.85);
  box-shadow: 0 0 0 1px rgba(200, 251, 102, 0.35) inset;
}

.project-card figure {
  margin: 0;
  aspect-ratio: 1.6;
  overflow: hidden;
}

.project-card img {
  height: 100%;
  object-fit: cover;
}

.project-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.project-meta,
.project-stack,
.panel-stack,
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-meta span,
.project-stack span,
.panel-stack span,
.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.project-meta span {
  background: rgba(200, 251, 102, 0.12);
  color: var(--lime);
}

.project-stack span,
.about-tags span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.project-card h3,
.offer-card h3,
.timeline-step h3,
.project-panel h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.22;
}

.project-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.project-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.project-panel figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.project-panel img {
  aspect-ratio: 1.66;
  object-fit: cover;
}

.panel-header {
  display: grid;
  gap: 12px;
}

.panel-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.panel-stat {
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-stat strong {
  font-size: 1.6rem;
  color: var(--lime);
}

.panel-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.panel-block {
  display: grid;
  gap: 10px;
}

.panel-block h4 {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.54);
}

.panel-block ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.panel-actions,
.card-actions,
.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.panel-actions {
  margin-top: 4px;
}

.offers-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

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

.offer-card,
.timeline-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(22, 34, 40, 0.04);
}

.offer-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.card-actions {
  margin-top: 20px;
}

.offer-link,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.offer-link {
  color: var(--teal);
}

.text-link {
  color: var(--ink);
}

.offer-link::after,
.text-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.offer-link::after {
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.text-link::after {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.offer-link:hover::after,
.offer-link:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.offer-card li + li {
  margin-top: 10px;
}

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

.timeline-step {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

.about-section {
  background:
    linear-gradient(to right, rgba(15, 124, 106, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 124, 106, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  background-size: 64px 64px, 64px 64px, 100% 100%;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: center;
}

.about-copy p {
  margin: 20px 0 0;
}

.about-visual {
  display: grid;
  gap: 14px;
}

.about-visual img {
  max-width: 420px;
  justify-self: end;
  aspect-ratio: 0.85;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-caption,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.about-caption {
  padding: 18px;
}

.about-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 28px;
}

.contact-copy p {
  margin: 20px 0 0;
}

.contact-actions {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: min(100%, 320px);
}

.link-cluster {
  margin-top: 22px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  color: var(--muted);
}

.page-main {
  padding-bottom: 56px;
}

.page-hero,
.page-section {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 30px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 48px;
}

.page-hero-copy {
  display: grid;
  gap: 18px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.crumbs a {
  color: var(--teal);
  font-weight: 700;
}

.page-hero h1,
.page-section h2,
.page-section h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.96;
  max-width: 12ch;
}

.page-intro,
.page-section p,
.detail-card li,
.related-card p,
.page-caption {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.page-intro {
  margin: 0;
  max-width: 42rem;
}

.page-meta,
.note-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta {
  margin-top: 14px;
}

.date-pill,
.note-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.date-pill {
  background: rgba(15, 124, 106, 0.1);
  color: var(--teal);
}

.note-tag {
  background: rgba(37, 83, 255, 0.08);
  color: var(--blue);
}

.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-hero-visual,
.detail-card,
.related-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 28px rgba(22, 34, 40, 0.05);
}

.page-hero-visual {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.page-hero-visual img,
.related-card img {
  border-radius: 8px;
  object-fit: cover;
}

.page-hero-visual img {
  aspect-ratio: 1.28;
}

.page-caption {
  margin: 0;
}

.page-section {
  display: grid;
  gap: 24px;
  padding-top: 32px;
}

.page-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.section-stack {
  display: grid;
  gap: 14px;
}

.detail-grid,
.related-grid,
.page-split {
  display: grid;
  gap: 18px;
}

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

.page-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  align-items: start;
}

.detail-card {
  padding: 22px;
}

.detail-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list li + li {
  margin-top: 10px;
}

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

.related-card {
  overflow: hidden;
}

.related-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.related-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.cta-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.cta-panel h3 {
  font-size: 1.7rem;
  line-height: 1.1;
}

.cta-panel p {
  margin: 0;
}

.fresh-section {
  background:
    linear-gradient(180deg, rgba(15, 124, 106, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(37, 83, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 83, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 70px 70px, 70px 70px;
}

.note-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.note-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(22, 34, 40, 0.04);
}

.note-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

@media (max-width: 1080px) {
  .hero,
  .work-layout,
  .about-layout,
  .section-heading-row,
  .contact-shell,
  .page-hero,
  .page-split {
    grid-template-columns: 1fr;
  }

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

  .project-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 32px;
  }

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

  .signal-board {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-proof,
  .proof-strip,
  .offer-grid,
  .timeline,
  .project-grid,
  .panel-stats,
  .detail-grid,
  .related-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    justify-self: start;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .section,
  .proof-strip,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding: 16px;
  }

  .mobile-panel {
    inset: 81px 0 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-copy span {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .lede,
  .section-heading p,
  .project-summary,
  .project-panel p,
  .offer-card li,
  .timeline-step p,
  .about-copy p,
  .contact-copy p,
  .page-intro,
  .page-section p,
  .detail-card li,
  .related-card p,
  .page-caption {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

  .portrait-wrap {
    padding: 18px;
  }

  .portrait-note {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .project-card-body,
  .project-panel,
  .offer-card,
  .timeline-step,
  .contact-shell,
  .about-caption,
  .page-hero-visual,
  .detail-card,
  .related-card-body,
  .cta-panel {
    padding: 18px;
  }

  .site-footer {
    padding-top: 8px;
    padding-bottom: 24px;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .signal-board,
  .portrait-wrap img {
    transition: none;
    animation: none;
    transform: none;
  }
}
