:root {
  --milk: #fffaf2;
  --paper: #f6efe3;
  --ink: #20201f;
  --muted: #6c665e;
  --line: #ded3c3;
  --rose: #f2a7a0;
  --lime: #d8ef73;
  --blue: #5f82ff;
  --apricot: #ffd081;
  --sage: #9fc8ac;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(32, 32, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 32, 31, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  background: var(--ink);
  color: var(--milk);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 62px 0 72px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 8.5vw, 102px);
  font-weight: 650;
  line-height: 0.92;
}

.hero-copy p:not(.kicker),
.page-heading > p:not(.kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-dark {
  background: var(--ink);
  color: var(--milk);
}

.button-light {
  background: var(--milk);
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.studio-board {
  position: relative;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 25% 18%, rgba(242, 167, 160, 0.42), transparent 24%),
    radial-gradient(circle at 83% 25%, rgba(216, 239, 115, 0.45), transparent 26%),
    radial-gradient(circle at 62% 88%, rgba(95, 130, 255, 0.32), transparent 26%),
    var(--paper);
  box-shadow: 0 30px 90px rgba(84, 63, 33, 0.16);
  overflow: hidden;
}

.studio-board::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(32, 32, 31, 0.2);
  border-radius: 26px;
}

.board-card,
.board-note {
  position: absolute;
  z-index: 2;
  width: min(250px, 44%);
  padding: 20px;
  border: 1px solid rgba(32, 32, 31, 0.18);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 12px 14px 0 rgba(32, 32, 31, 0.08);
}

.board-card span,
.board-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.board-card strong,
.board-note p {
  display: block;
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.card-site {
  left: 8%;
  top: 9%;
  transform: rotate(-5deg);
}

.card-report {
  right: 7%;
  top: 18%;
  transform: rotate(5deg);
}

.card-commerce {
  left: 12%;
  bottom: 13%;
  transform: rotate(3deg);
}

.board-note {
  right: 9%;
  bottom: 12%;
  background: var(--lime);
  transform: rotate(-4deg);
}

.mini-browser,
.bars,
.product-row {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mini-browser i,
.bars i,
.product-row i {
  display: block;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.9;
}

.mini-browser i {
  height: 10px;
}

.mini-browser i:nth-child(1) { width: 88%; background: var(--rose); }
.mini-browser i:nth-child(2) { width: 62%; }
.mini-browser i:nth-child(3) { width: 76%; background: var(--blue); }

.bars {
  align-items: end;
  grid-template-columns: repeat(4, 1fr);
  height: 70px;
}

.bars i {
  border-radius: 14px 14px 0 0;
}

.bars i:nth-child(1) { height: 35%; background: var(--sage); }
.bars i:nth-child(2) { height: 70%; background: var(--blue); }
.bars i:nth-child(3) { height: 48%; background: var(--apricot); }
.bars i:nth-child(4) { height: 92%; background: var(--rose); }

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

.product-row i {
  height: 48px;
  border-radius: 16px;
}

.product-row i:nth-child(1) { background: var(--apricot); }
.product-row i:nth-child(2) { background: var(--sage); }
.product-row i:nth-child(3) { background: var(--rose); }

.board-thread {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(32, 32, 31, 0.26);
  transform-origin: left center;
}

.thread-a {
  left: 28%;
  top: 46%;
  width: 48%;
  transform: rotate(12deg);
}

.thread-b {
  left: 34%;
  top: 60%;
  width: 39%;
  transform: rotate(-18deg);
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0 72px;
}

.intro-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.two-column {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 7vw, 88px);
}

h2 {
  margin-bottom: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 5.4vw, 70px);
  font-weight: 650;
  line-height: 0.96;
}

.text-stack p {
  color: var(--muted);
  font-size: 18px;
}

.text-stack p + p {
  margin-top: 20px;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 0 86px;
}

.showcase-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(32, 32, 31, 0.16);
  border-radius: 28px;
  color: var(--ink);
  text-decoration: none;
}

.showcase-card:hover {
  transform: translateY(-4px);
}

.showcase-card span,
.method-grid span,
.principles span,
.service-number,
.contact-aside span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 92px 0 12px;
  font-size: 26px;
  line-height: 1.05;
}

.showcase-card p {
  margin-bottom: 0;
  font-weight: 600;
}

.color-rose { background: var(--rose); }
.color-lime { background: var(--lime); }
.color-blue { background: var(--blue); color: white; }
.color-ink { background: var(--ink); color: var(--milk); }

.method {
  padding-bottom: 96px;
}

.method > h2 {
  max-width: 760px;
}

.method-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-grid article,
.principles article {
  padding: 30px;
  background: var(--milk);
}

.method-grid p,
.principles p {
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 72px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 36px;
  background: var(--apricot);
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.design-menu-heading {
  max-width: 1040px;
}

.design-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 0 90px;
}

.design-option {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(32, 32, 31, 0.16);
  border-radius: 32px;
  overflow: hidden;
}

.option-label {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.design-option h2 {
  margin-top: auto;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
}

.design-option p {
  min-height: 116px;
  color: rgba(32, 32, 31, 0.72);
  font-weight: 700;
}

.design-option .button {
  margin-top: 22px;
}

.swatches {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.swatches i {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 32, 31, 0.18);
  border-radius: 50%;
}

.option-boutique {
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 239, 115, 0.55), transparent 30%),
    radial-gradient(circle at 78% 36%, rgba(242, 167, 160, 0.5), transparent 28%),
    var(--paper);
}

.option-precision {
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.16), transparent 42%),
    #f7f9fc;
}

.option-catalog {
  background:
    linear-gradient(145deg, #143c33 0%, #143c33 38%, #fbfbf7 38%, #fbfbf7 100%);
  color: #fbfbf7;
}

.option-catalog p {
  color: rgba(251, 251, 247, 0.78);
}

.option-catalog .button-dark {
  background: #d7ff42;
  color: #143c33;
}

.option-advisory {
  background:
    linear-gradient(150deg, #071e2b 0%, #071e2b 42%, #edf5f4 42%, #edf5f4 100%);
  color: white;
}

.option-advisory p {
  color: rgba(255, 255, 255, 0.76);
}

.option-advisory .button-dark {
  background: #b7e85f;
  color: #071e2b;
}

.option-nearform {
  background:
    radial-gradient(circle at 24% 20%, rgba(82, 230, 164, 0.5), transparent 22%),
    radial-gradient(circle at 76% 50%, rgba(220, 220, 255, 0.9), transparent 28%),
    #eef4ff;
  color: #000e38;
}

.option-nearform h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.95;
}

.option-nearform .button-dark {
  background: #070b2f;
  color: white;
}

.alt-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
}

.alt-brand,
.alt-nav a {
  text-decoration: none;
}

.alt-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.alt-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
}

.alt-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.precision-page {
  background: #f7f9fc;
  color: #101820;
  font-family: "Archivo", Arial, sans-serif;
}

.precision-page::before {
  background:
    linear-gradient(rgba(16, 24, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: none;
}

.precision-header {
  border-bottom: 1px solid rgba(16, 24, 32, 0.13);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(16px);
}

.precision-header .alt-brand span {
  background: #1f6fff;
  color: white;
}

.precision-header .alt-nav a {
  color: #101820;
}

.precision-main {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.precision-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 70px 0;
}

.precision-kicker {
  margin: 0 0 18px;
  color: #1f6fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.precision-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(54px, 8.8vw, 118px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.precision-hero p:not(.precision-kicker) {
  max-width: 630px;
  color: #4f5d69;
  font-size: 20px;
}

.precision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.precision-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #101820;
  color: #101820;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.precision-button.primary {
  background: #101820;
  color: white;
}

.ops-console {
  padding: 22px;
  border: 1px solid rgba(16, 24, 32, 0.18);
  background: white;
  box-shadow: 18px 18px 0 rgba(31, 111, 255, 0.15);
}

.console-top,
.console-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.console-score {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  margin: 42px 0;
}

.console-score strong {
  color: #1f6fff;
  font-size: 150px;
  line-height: 0.8;
}

.console-score span {
  color: #4f5d69;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.console-rows {
  display: grid;
  gap: 12px;
}

.console-rows div {
  padding: 14px;
  border: 1px solid rgba(16, 24, 32, 0.12);
}

.console-rows i {
  flex: 1;
  height: 8px;
  background: linear-gradient(90deg, #1f6fff, #26d7ae);
}

.console-rows b {
  color: #1f6fff;
}

.precision-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 90px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  background: rgba(16, 24, 32, 0.14);
}

.precision-strip article {
  padding: 28px;
  background: white;
}

.precision-strip span,
.precision-service-list span {
  display: block;
  margin-bottom: 26px;
  color: #1f6fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.precision-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.precision-strip p,
.precision-service-list p {
  color: #4f5d69;
}

.precision-services {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 64px;
  padding: 0 0 96px;
}

.precision-services h2 {
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.precision-service-list {
  display: grid;
  gap: 1px;
  background: rgba(16, 24, 32, 0.14);
}

.precision-service-list p {
  margin: 0;
  padding: 24px;
  background: white;
  font-size: 17px;
}

.commerce-page {
  background: #fbfbf7;
  color: #143c33;
  font-family: "DM Sans", Arial, sans-serif;
}

.commerce-page::before {
  display: none;
}

.commerce-header {
  background: #143c33;
  color: #fbfbf7;
}

.commerce-header .alt-brand span {
  background: #ff5a3d;
  color: #fbfbf7;
}

.commerce-header .alt-nav a {
  color: #fbfbf7;
}

.commerce-main {
  width: min(1200px, calc(100% - 38px));
  margin: 0 auto;
}

.commerce-hero {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: clamp(38px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: 78px 0;
}

.commerce-title p {
  max-width: 560px;
  margin-bottom: 30px;
  color: #5a756d;
  font-size: 22px;
  font-weight: 700;
}

.commerce-title h1 {
  max-width: 860px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(56px, 9.5vw, 126px);
  font-weight: 700;
  line-height: 0.94;
}

.commerce-card-stack {
  position: relative;
  min-height: 520px;
}

.ticket {
  position: absolute;
  width: min(330px, 80%);
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 2px solid #143c33;
  box-shadow: 12px 12px 0 #143c33;
}

.ticket span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.ticket-one {
  top: 0;
  left: 8%;
  background: #d7ff42;
  transform: rotate(-5deg);
}

.ticket-two {
  top: 158px;
  right: 0;
  background: #ff5a3d;
  color: #fbfbf7;
  transform: rotate(4deg);
}

.ticket-three {
  bottom: 0;
  left: 0;
  background: #fbfbf7;
  transform: rotate(-2deg);
}

.commerce-manifesto {
  margin-bottom: 80px;
  padding: 36px 0;
  border-top: 2px solid #143c33;
  border-bottom: 2px solid #143c33;
}

.commerce-manifesto p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.commerce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 86px;
}

.commerce-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 2px solid #143c33;
  background: #fbfbf7;
}

.commerce-grid article:nth-child(2) {
  background: #d7ff42;
}

.commerce-grid article:nth-child(3) {
  background: #143c33;
  color: #fbfbf7;
}

.commerce-grid article:nth-child(4) {
  background: #ff5a3d;
  color: #fbfbf7;
}

.commerce-grid span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-grid h2 {
  margin-top: auto;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

.commerce-grid p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.commerce-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 72px;
  padding: 30px;
  border: 2px solid #143c33;
  background: #143c33;
  color: #fbfbf7;
}

.commerce-cta p {
  max-width: 700px;
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
}

.commerce-cta a {
  flex: 0 0 auto;
  padding: 15px 18px;
  background: #d7ff42;
  color: #143c33;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.advisory-page {
  background: #ffffff;
  color: #071e2b;
  font-family: "Inter", Arial, sans-serif;
}

.advisory-page::before {
  display: none;
}

.advisory-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid #cfdddc;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.advisory-brand,
.advisory-nav a {
  color: #071e2b;
  text-decoration: none;
}

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

.advisory-brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #071e2b;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.advisory-brand strong {
  font-size: 17px;
  font-weight: 900;
}

.advisory-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.advisory-nav a {
  padding: 11px 12px;
}

.advisory-nav .nav-cta {
  background: #b7e85f;
}

.advisory-main {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.advisory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: 70px 0;
}

.advisory-kicker {
  margin: 0 0 18px;
  color: #007d78;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.advisory-hero h1,
.advisory-difference h2,
.advisory-services h2,
.advisory-story h2,
.advisory-contact h2 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.advisory-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 0.92;
}

.advisory-hero-copy > p:not(.advisory-kicker) {
  max-width: 650px;
  color: #41515a;
  font-size: 21px;
}

.advisory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 20px;
  background: #071e2b;
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.advisory-button:hover,
.advisory-nav .nav-cta:hover {
  background: #007d78;
  color: white;
}

.advisory-panel {
  padding: 24px;
  background: #edf5f4;
  border: 1px solid #cfdddc;
}

.panel-label {
  margin-bottom: 18px;
  color: #007d78;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cfdddc;
}

.panel-map div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: white;
}

.panel-map span,
.advisory-proof span,
.advisory-service-grid span,
.advisory-insights span {
  color: #007d78;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-map strong {
  margin-top: auto;
  font-size: 30px;
  line-height: 1;
}

.panel-map p {
  margin: 8px 0 0;
  color: #41515a;
}

.advisory-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 88px;
}

.advisory-promos a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #071e2b;
  color: white;
  text-decoration: none;
}

.advisory-promos a:nth-child(2) {
  background: #007d78;
}

.advisory-promos a:nth-child(3) {
  background: #b7e85f;
  color: #071e2b;
}

.advisory-promos span,
.advisory-promos em {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.advisory-promos strong {
  margin-top: auto;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.advisory-promos em {
  margin-top: 24px;
}

.advisory-difference {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid #cfdddc;
  border-bottom: 1px solid #cfdddc;
}

.advisory-difference h2,
.advisory-services h2,
.advisory-story h2,
.advisory-contact h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}

.advisory-difference > p {
  color: #41515a;
  font-size: 20px;
}

.advisory-proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0 0 88px;
  background: #cfdddc;
}

.advisory-proof div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #edf5f4;
}

.advisory-proof strong {
  font-size: 20px;
  line-height: 1.1;
}

.advisory-services {
  padding: 0 0 88px;
}

.advisory-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.advisory-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cfdddc;
}

.advisory-service-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: white;
}

.advisory-service-grid h3 {
  margin: auto 0 12px;
  font-size: 26px;
  line-height: 1.06;
}

.advisory-service-grid p {
  margin-bottom: 0;
  color: #41515a;
}

.advisory-story {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 88px;
  padding: 36px;
  background: #071e2b;
  color: white;
}

.advisory-story p:not(.advisory-kicker) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.advisory-story a {
  padding: 15px 18px;
  background: #b7e85f;
  color: #071e2b;
  font-weight: 900;
  text-decoration: none;
}

.advisory-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 88px;
}

.advisory-insights article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #cfdddc;
  background: #edf5f4;
}

.advisory-insights h3 {
  margin-top: 52px;
  font-size: 24px;
  line-height: 1.08;
}

.advisory-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 80px;
  padding: 42px;
  border: 1px solid #cfdddc;
  background: #edf5f4;
}

.advisory-contact h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.advisory-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 52px);
  background: #071e2b;
  color: white;
}

.peru-inspired-page {
  background: #ffffff;
  color: #092635;
  font-family: "Mulish", Arial, sans-serif;
}

.peru-inspired-page::before {
  display: none;
}

.peru-inspired-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #ffffff;
}

.peru-inspired-brand,
.peru-inspired-nav a {
  color: inherit;
  text-decoration: none;
}

.peru-inspired-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  font-weight: 700;
}

.peru-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50% 46% 52% 42%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.peru-inspired-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 16px;
  font-weight: 800;
}

.peru-nav-cta,
.peru-button {
  background: #ff6b35;
  color: #092635 !important;
}

.peru-nav-cta {
  padding: 15px 21px;
}

.peru-inspired-main {
  overflow: hidden;
}

.peru-inspired-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  padding: 118px clamp(18px, 7vw, 120px) 120px;
  background:
    linear-gradient(90deg, rgba(6, 45, 63, 0.94), rgba(6, 45, 63, 0.78) 46%, rgba(6, 45, 63, 0.55)),
    radial-gradient(circle at 80% 34%, rgba(41, 199, 186, 0.28), transparent 26%),
    #062d3f;
  color: white;
}

.hero-veil {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(255, 255, 255, 0.18) 54% 55%, transparent 55%),
    linear-gradient(120deg, transparent 0 62%, rgba(255, 255, 255, 0.13) 62% 63%, transparent 63%);
}

.peru-hero-copy,
.peru-advisor-visual {
  position: relative;
  z-index: 1;
}

.peru-kicker {
  margin: 0 0 18px;
  color: #5e737c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.peru-inspired-hero .peru-kicker {
  color: #b9d5d5;
}

.peru-hero-copy h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 400;
  line-height: 1.02;
}

.peru-hero-copy h1 em {
  display: block;
  color: #ff6b35;
  font-style: italic;
}

.peru-hero-copy p:not(.peru-kicker) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.45;
}

.peru-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
}

.peru-advisor-visual {
  min-height: 455px;
}

.advisor-portrait {
  position: absolute;
  right: 0;
  top: 4%;
  width: min(430px, 86%);
  min-height: 430px;
  padding: 28px;
  background:
    radial-gradient(circle at 54% 26%, rgba(255, 255, 255, 0.36), transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.advisor-portrait span {
  display: block;
  width: 58%;
  height: 210px;
  margin: 22px auto 44px;
  border-radius: 46% 46% 42% 42%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(41, 199, 186, 0.28)),
    #2e5d6d;
}

.advisor-portrait strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
}

.advisor-note {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: min(320px, 74%);
  padding: 22px;
  background: #ffffff;
  color: #092635;
  box-shadow: 16px 16px 0 rgba(41, 199, 186, 0.65);
}

.advisor-note span {
  color: #ff6b35;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.advisor-note p {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.peru-pathway-band {
  position: relative;
  z-index: 2;
  width: min(992px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: -88px 0 120px auto;
  padding: 38px clamp(22px, 4vw, 44px);
  background: #29c7ba;
}

.peru-pathway-band a {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  color: #092635;
  text-decoration: none;
}

.peru-pathway-band span,
.peru-pathway-band em,
.peru-service-cards span,
.peru-value-strip span,
.peru-insights span,
.engagement-panel span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.peru-pathway-band strong {
  margin-top: auto;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.peru-pathway-band em {
  margin-top: 14px;
  color: rgba(9, 38, 53, 0.7);
}

.peru-difference {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 7vw, 94px);
  align-items: start;
  margin: 0 auto;
  padding: 0 0 108px;
}

.peru-difference h2,
.peru-section-heading h2,
.peru-engagement h2,
.peru-insights h2,
.peru-final-cta h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

.peru-difference h2 {
  font-size: clamp(46px, 6vw, 82px);
}

.peru-difference-copy p {
  color: #092635;
  font-size: 25px;
  line-height: 1.34;
}

.peru-difference-copy p + p {
  color: #5e737c;
  font-size: 19px;
}

.peru-value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d5e3e3;
  border-bottom: 1px solid #d5e3e3;
  background: #eaf4f4;
}

.peru-value-strip div {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid #d5e3e3;
}

.peru-value-strip div:last-child {
  border-right: 0;
}

.peru-value-strip span {
  color: #007d78;
}

.peru-value-strip strong {
  max-width: 240px;
  font-size: 24px;
  line-height: 1.08;
}

.peru-services {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
}

.peru-section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.peru-section-heading h2 {
  font-size: clamp(42px, 5.6vw, 78px);
}

.peru-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.peru-service-cards article {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #d5e3e3;
  background: #ffffff;
}

.service-art {
  height: 150px;
  margin-bottom: 28px;
  background: #eaf4f4;
}

.art-commerce {
  background:
    linear-gradient(90deg, #ff6b35 0 28%, transparent 28%),
    repeating-linear-gradient(90deg, #eaf4f4 0 22px, #d5e3e3 22px 24px);
}

.art-marketing {
  background:
    radial-gradient(circle at 30% 42%, #29c7ba 0 18%, transparent 19%),
    radial-gradient(circle at 66% 62%, #ff6b35 0 14%, transparent 15%),
    #eaf4f4;
}

.art-ai {
  background:
    linear-gradient(135deg, transparent 0 44%, #29c7ba 44% 54%, transparent 54%),
    linear-gradient(45deg, transparent 0 52%, #ff6b35 52% 58%, transparent 58%),
    #062d3f;
}

.peru-service-cards span {
  color: #007d78;
}

.peru-service-cards h3 {
  margin: auto 0 20px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.peru-service-cards a {
  color: #092635;
  font-weight: 900;
}

.peru-engagement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: 88px clamp(18px, 7vw, 120px);
  background: #062d3f;
  color: white;
}

.peru-engagement .peru-kicker {
  color: #29c7ba;
}

.peru-engagement h2 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 82px);
}

.peru-engagement p:not(.peru-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.engagement-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.engagement-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.engagement-panel span {
  color: #29c7ba;
}

.engagement-panel strong {
  font-size: 28px;
}

.peru-insights {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1px;
  margin: 108px auto;
  background: #d5e3e3;
}

.peru-insights > div,
.peru-insights article {
  min-height: 295px;
  padding: 26px;
  background: #ffffff;
}

.peru-insights > div {
  background: #eaf4f4;
}

.peru-insights h2 {
  margin-top: 58px;
  font-size: clamp(34px, 4vw, 56px);
}

.peru-insights span {
  color: #007d78;
}

.peru-insights h3 {
  margin-top: 72px;
  font-size: 24px;
  line-height: 1.08;
}

.peru-final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
  padding: 42px;
  background: #eaf4f4;
}

.peru-final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 70px);
}

.peru-inspired-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 32px clamp(18px, 4vw, 48px);
  background: #062d3f;
  color: white;
}

.nearform-inspired-page {
  background: #ffffff;
  color: #000e38;
  font-family: "Inter", Arial, sans-serif;
}

.nearform-inspired-page::before {
  display: none;
}

.nf-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 20px clamp(18px, 8vw, 160px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nf-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  color: #000e38;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.nf-brand span {
  width: 12px;
  height: 4px;
  margin-bottom: 3px;
  background: #52e6a4;
}

.nf-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 16px;
  font-weight: 600;
}

.nf-nav a {
  color: #000e38;
  text-decoration: none;
}

.nf-nav-pill {
  padding: 12px 22px;
  border: 2px solid #000e38;
  border-radius: 999px;
  background: #000e38;
  color: #ffffff !important;
}

.nf-main {
  overflow: hidden;
}

.nf-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: end;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 8vw, 160px);
  background: #070b2f;
  color: white;
}

.nf-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.nf-terrain {
  position: absolute;
  inset: 14% -6% 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.74), transparent 18%),
    radial-gradient(ellipse at 45% 42%, rgba(82, 230, 164, 0.32), transparent 20%),
    linear-gradient(160deg, transparent 0 42%, rgba(238, 244, 255, 0.2) 42% 43%, transparent 43%),
    linear-gradient(20deg, #10184c 0%, #122564 38%, #50617d 58%, #eef4ff 100%);
  clip-path: polygon(0 34%, 18% 27%, 32% 41%, 48% 20%, 63% 40%, 79% 29%, 100% 48%, 100% 100%, 0 100%);
  opacity: 0.9;
}

.nf-terrain::before,
.nf-terrain::after {
  content: "";
  position: absolute;
  inset: 18% 0 0;
  background:
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.7), transparent 2%),
    radial-gradient(circle at 58% 58%, rgba(82, 230, 164, 0.45), transparent 2%),
    repeating-linear-gradient(105deg, transparent 0 38px, rgba(255, 255, 255, 0.18) 38px 40px);
  opacity: 0.55;
}

.nf-terrain::after {
  filter: blur(20px);
  opacity: 0.35;
}

.nf-signal {
  position: absolute;
  border: 1px solid rgba(82, 230, 164, 0.7);
  border-radius: 50%;
}

.nf-signal-a {
  width: 300px;
  height: 300px;
  right: 14%;
  top: 24%;
}

.nf-signal-b {
  width: 150px;
  height: 150px;
  left: 18%;
  bottom: 16%;
}

.nf-hero-word {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 8vw, 160px);
  top: 8%;
  color: white;
  font-size: clamp(96px, 18vw, 240px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.nf-hero-word span {
  color: #52e6a4;
}

.nf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 260px;
}

.nf-hero-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Bitter", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.nf-hero-content h1 {
  margin: 20px 0 0;
  font-size: clamp(44px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 0.94;
}

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

.nf-hero-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #52e6a4;
  color: #000e38;
  font-weight: 900;
  text-decoration: none;
}

.nf-hero-actions a:nth-child(2) {
  background: #ffffff;
}

.nf-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
  width: min(1280px, calc(100% - 36px));
  margin: 72px auto;
}

.nf-feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #000e38;
  text-decoration: none;
  overflow: hidden;
}

.nf-feature-card span,
.nf-section-heading span,
.nf-pillars span,
.nf-commitment span,
.nf-tags span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nf-feature-card strong {
  margin-top: auto;
  max-width: 640px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
}

.nf-card-mint {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.85), transparent 20%),
    #52e6a4;
}

.nf-card-lavender {
  background:
    linear-gradient(135deg, transparent 0 55%, rgba(0, 14, 56, 0.1) 55%),
    #dcdcff;
}

.nf-card-navy {
  background: #070b2f;
  color: #ffffff;
}

.nf-intro {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  padding-top: 46px;
  border-top: 1px solid #dfe5f2;
}

.nf-intro h2 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.96;
}

.nf-intro p {
  max-width: 760px;
  color: #4d5870;
  font-family: "Bitter", Georgia, serif;
  font-size: 24px;
  line-height: 1.36;
}

.nf-difference {
  padding: 92px clamp(18px, 8vw, 160px);
  background: #070b2f;
  color: white;
}

.nf-section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.nf-section-heading span {
  color: #52e6a4;
}

.nf-section-heading h2 {
  margin: 14px 0 0;
  color: inherit;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.96;
}

.nf-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.nf-pillars article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.nf-pillars span {
  color: #52e6a4;
}

.nf-pillars h3 {
  margin: auto 0 12px;
  font-size: 28px;
  line-height: 1.04;
}

.nf-pillars p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.nf-commitment {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  margin: 104px auto;
}

.nf-portrait-block {
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 18%, #52e6a4 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 62%, rgba(0, 14, 56, 0.3), transparent 34%),
    linear-gradient(145deg, #eef4ff, #dcdcff);
  clip-path: polygon(0 0, 100% 9%, 88% 100%, 8% 92%);
}

.nf-commitment span {
  color: #000e38;
}

.nf-commitment h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 0.96;
}

.nf-commitment p {
  color: #4d5870;
  font-family: "Bitter", Georgia, serif;
  font-size: 22px;
}

.nf-commitment a {
  color: #000e38;
  font-weight: 900;
}

.nf-work {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
}

.nf-work .nf-section-heading span {
  color: #000e38;
}

.nf-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.nf-work-grid article {
  display: grid;
  gap: 22px;
}

.nf-work-art {
  min-height: 360px;
}

.art-one {
  background:
    radial-gradient(circle at 70% 24%, #52e6a4 0 11%, transparent 12%),
    linear-gradient(135deg, transparent 0 56%, rgba(82, 230, 164, 0.5) 56% 57%, transparent 57%),
    #070b2f;
}

.art-two {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), transparent 12%),
    linear-gradient(160deg, #dcdcff, #eef4ff 52%, #52e6a4);
}

.nf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nf-tags span {
  padding: 7px 11px;
  border: 1px solid #dfe5f2;
  border-radius: 999px;
}

.nf-work-grid h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.nf-cta {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 0 auto 96px;
  padding: 38px;
  background: #52e6a4;
  color: #000e38;
}

.nf-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
}

.nf-cta a {
  flex: 0 0 auto;
  padding: 15px 22px;
  border-radius: 999px;
  background: #000e38;
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.nf-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 8vw, 160px);
  background: #070b2f;
  color: #ffffff;
}

.page-heading {
  max-width: 940px;
  padding: 86px 0 72px;
}

.page-heading h1 {
  max-width: 940px;
}

.service-list {
  padding-bottom: 80px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(270px, 0.52fr);
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
}

.service-row p,
.service-row li {
  color: var(--muted);
}

.service-row ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.service-row li + li {
  margin-top: 8px;
}

.featured-row {
  margin-inline: -18px;
  padding-inline: 18px;
  border-radius: 26px;
  background: rgba(95, 130, 255, 0.12);
}

.about-heading {
  max-width: 1000px;
}

.portrait-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 48%),
    var(--sage);
  box-shadow: 0 24px 70px rgba(84, 63, 33, 0.12);
}

.portrait-card span {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portrait-card strong {
  max-width: 420px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.large-copy p {
  font-size: 20px;
}

.principles {
  margin: 0 0 80px;
}

.principles h2 {
  margin-top: 52px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-heading {
  max-width: 860px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  padding: 0 0 86px;
}

.contact-aside {
  display: grid;
  gap: 14px;
  align-self: start;
}

.contact-aside div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.contact-aside span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-aside a {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.contact-aside p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  font: 16px "Manrope", Arial, sans-serif;
  padding: 14px 16px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-showcase,
  .method-grid,
  .principles,
  .design-menu-grid,
  .precision-strip,
  .commerce-grid,
  .advisory-promos,
  .advisory-service-grid,
  .advisory-insights,
  .nf-featured,
  .nf-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 70px 1fr;
  }

  .service-row ul {
    grid-column: 2;
  }

  .precision-hero,
  .precision-services,
  .commerce-hero,
  .advisory-hero,
  .advisory-difference,
  .advisory-story,
  .peru-inspired-hero,
  .peru-difference,
  .peru-engagement,
  .nf-commitment {
    grid-template-columns: 1fr;
  }

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

  .peru-pathway-band,
  .peru-service-cards,
  .peru-value-strip,
  .peru-insights,
  .nf-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .peru-pathway-band {
    width: min(100% - 36px, 900px);
    margin: -70px auto 90px;
  }

  .commerce-card-stack {
    min-height: 620px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .studio-board {
    min-height: 560px;
    border-radius: 26px;
  }

  .board-card,
  .board-note {
    width: 72%;
  }

  .card-report {
    top: 27%;
  }

  .card-commerce {
    bottom: 21%;
  }

  .board-note {
    bottom: 4%;
  }

  .service-showcase,
  .method-grid,
  .principles,
  .service-row,
  .design-menu-grid,
  .precision-strip,
  .commerce-grid,
  .advisory-promos,
  .advisory-service-grid,
  .advisory-insights,
  .advisory-proof,
  .panel-map,
  .nf-featured,
  .nf-pillars,
  .nf-work-grid {
    grid-template-columns: 1fr;
  }

  .service-row ul {
    grid-column: auto;
  }

  .cta-panel,
  .site-footer,
  .alt-header,
  .commerce-cta,
  .advisory-header,
  .advisory-contact,
  .advisory-footer,
  .peru-inspired-header,
  .peru-final-cta,
  .peru-inspired-footer,
  .nf-header,
  .nf-cta,
  .nf-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .alt-nav,
  .advisory-nav,
  .peru-inspired-nav,
  .nf-nav {
    justify-content: flex-start;
  }

  .design-option {
    min-height: 430px;
  }

  .precision-main,
  .commerce-main {
    width: min(100% - 28px, 1220px);
  }

  .precision-hero,
  .commerce-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .ops-console {
    box-shadow: 10px 10px 0 rgba(31, 111, 255, 0.15);
  }

  .console-score {
    grid-template-columns: 1fr;
  }

  .console-score strong {
    font-size: 112px;
  }

  .ticket {
    width: 88%;
  }

  .ticket-two {
    top: 180px;
  }

  .ticket-three {
    bottom: 24px;
  }

  .advisory-main {
    width: min(100% - 28px, 1220px);
  }

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

  .advisory-promos a,
  .advisory-service-grid article {
    min-height: 230px;
  }

  .advisory-story,
  .advisory-contact {
    padding: 26px;
  }

  .peru-inspired-header {
    position: static;
    background: #062d3f;
  }

  .peru-inspired-hero {
    min-height: auto;
    padding: 52px 18px 118px;
  }

  .peru-advisor-visual {
    min-height: 500px;
  }

  .advisor-portrait {
    width: 88%;
  }

  .peru-pathway-band,
  .peru-service-cards,
  .peru-value-strip,
  .peru-insights {
    grid-template-columns: 1fr;
  }

  .peru-pathway-band {
    margin-top: -86px;
  }

  .peru-value-strip div {
    border-right: 0;
    border-bottom: 1px solid #d5e3e3;
  }

  .peru-final-cta {
    padding: 28px;
  }

  .nf-header {
    position: static;
    display: flex;
    padding: 18px;
  }

  .nf-nav {
    gap: 12px;
  }

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

  .nf-hero-word {
    position: relative;
    left: auto;
    top: auto;
    font-size: clamp(88px, 28vw, 150px);
  }

  .nf-hero-content {
    margin-top: 220px;
  }

  .nf-feature-card {
    min-height: 270px;
  }

  .nf-difference {
    padding: 64px 18px;
  }

  .nf-pillars article {
    min-height: 230px;
  }

  .nf-portrait-block,
  .nf-work-art {
    min-height: 280px;
  }

  .nf-cta {
    padding: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
