:root {
  --green: #062b46;
  --green-dark: #0b3b5d;
  --green-deep: #031c2e;
  --blue: #38b6ff;
  --lime: #9edcff;
  --paper: #f4f8fb;
  --white: #ffffff;
  --ink: #062b46;
  --muted: #5c7284;
  --line: rgba(6, 43, 70, 0.15);
  --shadow: 0 24px 70px rgba(6, 43, 70, 0.12);
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/* WordPress and Astra integration */
.niepce-site,
.niepce-site #page,
.niepce-site .site-content,
.niepce-site .ast-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.niepce-site .site-header .custom-logo-link {
  display: block;
  width: 100%;
}

.niepce-site .site-header nav .menu-item {
  display: contents;
}

.niepce-site .footer-logo .custom-logo-link {
  display: block;
}

.niepce-site .footer-logo img {
  width: 215px;
  max-height: 72px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-content {
  min-height: 240px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.wp-content > * {
  max-width: 980px;
}

.form-notice {
  padding: 14px 16px;
  border-radius: 7px;
  font-weight: 650;
}

.form-notice.success {
  background: rgba(56, 182, 255, 0.14);
  color: var(--green);
}

.form-notice.error {
  background: rgba(174, 17, 44, 0.1);
  color: #8b1026;
}

.product-card[hidden],
#catalogue-empty[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Aptos", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.niepce-site,
body.niepce-site h1,
body.niepce-site h2,
body.niepce-site h3,
body.niepce-site h4,
body.niepce-site h5,
body.niepce-site h6,
body.niepce-site p,
body.niepce-site a,
body.niepce-site button,
body.niepce-site input,
body.niepce-site select,
body.niepce-site textarea {
  --font-geist-sans: "Geist";
  font-family: var(--font-geist-sans), "Aptos", Arial, sans-serif;
}

body.niepce-site .eyebrow,
body.niepce-site .section-kicker,
body.niepce-site .service-card-top,
body.niepce-site .how-steps span,
body.niepce-site .solution-list span,
body.niepce-site .project-image span,
body.niepce-site .product-code,
body.niepce-site .contact-details span {
  --font-geist-mono: "Geist Mono";
  font-family: var(--font-geist-mono), monospace;
}

body::selection {
  background: var(--lime);
  color: var(--green-deep);
}

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

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

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

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

.section-pad {
  padding-left: max(5vw, 28px);
  padding-right: max(5vw, 28px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 max(4vw, 24px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    height 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 78px;
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(6, 43, 70, 0.08);
}

.brand {
  display: inline-flex;
  width: 215px;
  height: 72px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 0 0 transparent);
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.2vw, 42px);
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 620;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.site-header nav a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--green-deep);
}

.header-cta span {
  color: var(--blue);
  font-size: 20px;
}

.menu-toggle {
  display: none;
}

.network-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 190px max(5vw, 28px) 90px;
  background:
    linear-gradient(rgba(6, 43, 70, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 70, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 54%, rgba(56, 182, 255, 0.14), transparent 29%),
    var(--paper);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.network-hero::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -13vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(56, 182, 255, 0.22);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 55vw);
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow::after {
  content: "";
  width: 110px;
  height: 1px;
  background: var(--blue);
}

.eyebrow span {
  padding: 5px 8px;
  background: var(--lime);
}

.hero-copy h1 {
  max-width: 730px;
  margin-bottom: 30px;
  font-size: clamp(58px, 5.5vw, 92px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 680;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary span {
  color: var(--blue);
  font-size: 20px;
}

.button-secondary {
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
}

.button-light {
  background: var(--white);
  color: var(--green);
}

.button-light span {
  color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(6, 43, 70, 0.35);
  padding: 8px 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 650;
}

.text-link span {
  color: var(--blue);
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-connector {
  position: absolute;
  z-index: 2;
  top: 150px;
  right: 3vw;
  width: min(46vw, 680px);
  height: 560px;
}

.connector-core {
  position: absolute;
  z-index: 3;
  top: 205px;
  left: 130px;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 182, 255, 0.5);
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 18px rgba(56, 182, 255, 0.18),
    0 20px 70px rgba(6, 43, 70, 0.22);
  color: white;
  animation: coreFloat 5s ease-in-out infinite;
}

.connector-core span {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.connector-core small {
  margin-top: 7px;
  color: var(--lime);
  font-size: 10px;
}

.hero-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-connector .path {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 8 11;
  stroke-width: 1.4;
  animation: routeMove 8s linear infinite;
}

.hero-services {
  position: absolute;
  z-index: 5;
  top: 155px;
  right: 4vw;
  width: 300px;
}

.hero-service {
  position: absolute;
  width: 225px;
  min-height: 118px;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  align-items: start;
  gap: 10px;
  padding: 23px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: var(--green);
  box-shadow: var(--shadow);
  color: white;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero-service:hover {
  z-index: 8;
  transform: translateX(-10px) scale(1.03);
  background: var(--green-deep);
}

.hero-service span {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.hero-service strong {
  font-size: 16px;
  line-height: 1.3;
}

.hero-service i {
  color: var(--blue);
  font-style: normal;
}

.hero-service-1 {
  top: 0;
  right: 0;
}

.hero-service-2 {
  top: 142px;
  right: 64px;
}

.hero-service-3 {
  top: 284px;
  right: 0;
}

.hero-service-4 {
  top: 426px;
  right: 64px;
}

.hero-globe {
  position: absolute;
  z-index: 1;
  right: -80px;
  bottom: -175px;
  width: min(44vw, 610px);
  aspect-ratio: 1;
}

.globe-halo {
  position: absolute;
  inset: -9%;
  border: 1px solid rgba(56, 182, 255, 0.14);
  border-radius: 50%;
  animation: globeHalo 4.5s ease-in-out infinite;
}

.globe-halo::before,
.globe-halo::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(6, 43, 70, 0.12);
  border-radius: 50%;
}

.globe-halo::after {
  inset: 18%;
  border-style: solid;
  border-color: rgba(56, 182, 255, 0.12);
}

.globe-sphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 70, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(56, 182, 255, 0.25), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(56, 182, 255, 0.12));
  box-shadow:
    inset -32px -24px 75px rgba(6, 43, 70, 0.08),
    0 28px 90px rgba(6, 43, 70, 0.12);
}

.globe-spin {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  animation: globeTurn 28s linear infinite;
}

.globe-longitude,
.globe-latitude {
  position: absolute;
  border: 1px solid rgba(6, 43, 70, 0.16);
  border-radius: 50%;
}

.globe-longitude {
  top: 1%;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.longitude-one {
  width: 34%;
}

.longitude-two {
  width: 67%;
}

.longitude-three {
  width: 96%;
}

.globe-latitude {
  right: 1%;
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
}

.latitude-one {
  height: 34%;
}

.latitude-two {
  height: 67%;
}

.latitude-three {
  height: 96%;
}

.globe-continent {
  position: absolute;
  display: block;
  background: rgba(6, 43, 70, 0.1);
  border: 1px solid rgba(6, 43, 70, 0.14);
  filter: blur(0.1px);
}

.continent-americas {
  top: 26%;
  left: 16%;
  width: 19%;
  height: 43%;
  border-radius: 64% 36% 58% 42% / 38% 56% 44% 62%;
  transform: rotate(-18deg);
}

.continent-europe {
  top: 27%;
  left: 48%;
  width: 14%;
  height: 10%;
  border-radius: 52% 48% 62% 38%;
  transform: rotate(8deg);
}

.continent-africa {
  top: 39%;
  left: 49%;
  width: 18%;
  height: 28%;
  border-radius: 45% 55% 62% 38% / 34% 41% 59% 66%;
  transform: rotate(9deg);
}

.continent-asia {
  top: 25%;
  left: 59%;
  width: 30%;
  height: 25%;
  border-radius: 36% 64% 48% 52% / 46% 39% 61% 54%;
  transform: rotate(-5deg);
}

.continent-oceania {
  top: 65%;
  left: 76%;
  width: 12%;
  height: 8%;
  border-radius: 54% 46% 65% 35%;
  transform: rotate(-12deg);
}

.globe-routes {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
}

.globe-routes path {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  stroke-width: 1.35;
  animation: routeMove 8s linear infinite;
}

.globe-routes path:nth-child(2) {
  animation-duration: 11s;
}

.globe-routes path:nth-child(3) {
  animation-direction: reverse;
  animation-duration: 9s;
}

.globe-marker {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.globe-marker span {
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow:
    0 0 0 5px rgba(56, 182, 255, 0.18),
    0 0 18px rgba(56, 182, 255, 0.65);
  animation: markerPulse 2.8s ease-in-out infinite;
}

.globe-marker small {
  padding: 5px 7px;
  border: 1px solid rgba(6, 43, 70, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(7px);
}

.marker-americas {
  top: 46%;
  left: 12%;
}

.marker-europe {
  top: 27%;
  left: 48%;
}

.marker-africa {
  top: 55%;
  left: 50%;
}

.marker-middle-east {
  top: 44%;
  left: 66%;
}

.marker-asia {
  top: 35%;
  left: 77%;
}

@keyframes routeMove {
  to { stroke-dashoffset: -120; }
}

@keyframes globeTurn {
  to { transform: rotate(360deg); }
}

@keyframes globeHalo {
  50% { transform: scale(1.025); opacity: 0.72; }
}

@keyframes markerPulse {
  50% { transform: scale(1.28); }
}

@keyframes coreFloat {
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.statement {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 12vw;
  background: var(--white);
}

.statement h2,
.section-heading h2,
.expertise-copy h2,
.founder-copy h2,
.catalogue-teaser h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.7vw, 76px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.statement-side p,
.section-heading > .reveal:last-child p,
.expertise-copy > p,
.founder-copy > p,
.catalogue-teaser > .reveal > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.statement-side .text-link {
  margin-top: 22px;
}

.services-section {
  padding-top: 130px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(42px, 4vw, 68px);
}

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

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(155deg, var(--white), rgba(56, 182, 255, 0.14));
  box-shadow: var(--shadow);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.service-card-top i {
  font-style: normal;
  font-size: 20px;
}

.service-card h3 {
  max-width: 230px;
  margin: 84px 0 18px;
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card-line {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 50%;
}

.service-card-line::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(6, 43, 70, 0.16);
  border-radius: 50%;
}

.how-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  padding-top: 130px;
  padding-bottom: 130px;
  background: var(--green-deep);
  color: var(--white);
}

.section-kicker.light {
  color: var(--lime);
}

.how-intro h2 {
  max-width: 580px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.how-intro p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.how-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.how-steps article {
  display: grid;
  grid-template-columns: 60px 0.6fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 0.3s ease, background 0.3s ease;
}

.how-steps article:hover {
  padding: 0 18px;
  background: rgba(56, 182, 255, 0.07);
}

.how-steps span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.how-steps h3 {
  margin: 0;
  font-size: 22px;
}

.how-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.expertise-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  padding-top: 150px;
  padding-bottom: 150px;
  background: var(--white);
}

.expertise-copy > p {
  max-width: 600px;
  margin: 28px 0 34px;
}

.solution-list {
  border-top: 1px solid var(--line);
}

.solution-list .reveal > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.25s ease,
    color 0.25s ease;
}

.solution-list .reveal > div:hover {
  padding-left: 14px;
  color: var(--blue);
}

.solution-list span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.solution-list strong {
  font-size: 19px;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
}

.founder-image {
  position: relative;
}

.founder-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -30px;
  right: -30px;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  background: var(--lime);
}

.founder-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.founder-copy > p {
  max-width: 650px;
  margin: 28px 0;
}

.founder-copy blockquote {
  max-width: 640px;
  margin: 34px 0;
  padding: 25px 0 25px 28px;
  border-left: 3px solid var(--blue);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.45;
}

.projects-section {
  padding-top: 140px;
  padding-bottom: 150px;
  background: var(--white);
}

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

.project-card {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.project-image {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 15px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-image span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 26px 0 13px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.project-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.catalogue-teaser {
  min-height: 710px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  padding-top: 130px;
  padding-bottom: 130px;
  background:
    radial-gradient(circle at 88% 20%, rgba(56, 182, 255, 0.12), transparent 26%),
    var(--paper);
}

.catalogue-teaser > .reveal > p {
  max-width: 590px;
  margin: 28px 0 34px;
}

.lock-mark {
  float: right;
  padding: 7px 10px;
  border: 1px solid rgba(6, 43, 70, 0.25);
  border-radius: 999px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.catalogue-visual {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.catalogue-search {
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
}

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

.catalogue-mini-grid span {
  height: 170px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(56, 182, 255, 0.24), rgba(6, 43, 70, 0.04)),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
}

.closing-cta {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(56, 182, 255, 0.14), transparent 32%),
    var(--green);
  color: var(--white);
}

.closing-cta p {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-cta h2 {
  max-width: 950px;
  margin-bottom: 38px;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.site-footer {
  padding: 80px max(5vw, 28px) 30px;
  background: var(--green-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding-bottom: 70px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 20px;
}

.footer-main > div:first-child p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.inner-page {
  padding-top: 100px;
}

.page-hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 110px;
  padding-bottom: 95px;
  background:
    radial-gradient(circle at 80% 25%, rgba(56, 182, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
}

.page-hero-clean {
  background:
    linear-gradient(rgba(6, 43, 70, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 70, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 60px 60px;
  color: var(--green);
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 26px;
  font-size: clamp(60px, 7.5vw, 120px);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.page-hero > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero-clean > p:last-child {
  color: var(--muted);
}

.about-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
}

.about-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.about-copy h2,
.solutions-page h2 {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 150px;
}

.values-grid article {
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  background: white;
}

.values-grid span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.values-grid h3 {
  margin: 90px 0 18px;
  font-size: 24px;
}

.values-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.expertise-detail {
  padding-top: 120px;
  padding-bottom: 130px;
}

.expertise-detail article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.expertise-detail article > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
}

.expertise-detail h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 68px);
  font-weight: 620;
  letter-spacing: -0.05em;
}

.expertise-detail p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.solutions-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  padding-top: 130px;
  padding-bottom: 140px;
  background: white;
}

.solutions-page > div:last-child {
  border-top: 1px solid var(--line);
}

.solutions-page > div:last-child span {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: 82px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.solutions-page i {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-style: normal;
}

.project-list {
  padding-top: 120px;
  padding-bottom: 150px;
}

.project-list article {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  margin-bottom: 130px;
}

.project-list article.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.project-list article.reverse .project-list-image {
  order: 2;
}

.project-list-image {
  position: relative;
  height: 600px;
}

.project-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.project-list-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 6px;
  background: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.project-list article > div:last-child > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.project-list h2 {
  margin: 24px 0;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.project-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-page {
  min-height: 850px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  padding-top: 130px;
  padding-bottom: 140px;
}

.contact-intro h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 95px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.contact-intro > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 55px;
}

.contact-details a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 20px;
  font-weight: 600;
}

.contact-details span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-form,
.gate-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

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

.contact-form label,
.gate-form label,
.catalogue-toolbar label,
.product-copy label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.gate-form input,
.catalogue-toolbar input,
.catalogue-toolbar select,
.product-copy select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select,
.gate-form input,
.catalogue-toolbar input,
.catalogue-toolbar select,
.product-copy select {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  padding: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.gate-form input:focus,
.catalogue-toolbar input:focus,
.catalogue-toolbar select:focus,
.product-copy select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.12);
}

.contact-form small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.catalogue-main {
  min-height: 800px;
}

.catalogue-gate {
  min-height: 780px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  background:
    linear-gradient(rgba(6, 43, 70, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 70, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

.gate-visual {
  position: relative;
  min-height: 500px;
}

.gate-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(56, 182, 255, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: globeTurn 20s linear infinite;
}

.gate-ring::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 20%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.ring-one { width: 420px; height: 420px; }
.ring-two { width: 290px; height: 290px; animation-direction: reverse; }

.gate-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 22px rgba(56, 182, 255, 0.18), var(--shadow);
  color: white;
  font-size: 58px;
  font-weight: 680;
  transform: translate(-50%, -50%);
}

.gate-copy h1,
.catalogue-heading h1 {
  margin-bottom: 25px;
  font-size: clamp(50px, 5.5vw, 86px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.gate-copy > p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.gate-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 14px;
  margin-top: 35px;
  padding: 20px;
}

.gate-form label {
  margin-bottom: 0;
}

.gate-actions {
  display: flex;
  gap: 25px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 650;
}

.gate-actions a,
.gate-actions button {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.catalogue-page {
  padding-top: 90px;
  padding-bottom: 140px;
}

.catalogue-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}

.catalogue-heading > div:first-child > p:last-child {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.account-chip > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
}

.account-chip div {
  display: flex;
  flex-direction: column;
}

.account-chip strong {
  font-size: 12px;
}

.account-chip small {
  color: var(--muted);
}

.catalogue-toolbar {
  position: sticky;
  z-index: 20;
  top: 92px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 35px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.catalogue-toolbar label {
  margin-bottom: 0;
}

.result-count {
  padding: 18px 10px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-image-placeholder {
  position: relative;
  height: 270px;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(rgba(6, 43, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 70, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, rgba(56, 182, 255, 0.24), rgba(6, 43, 70, 0.04));
  background-size: 24px 24px, 24px 24px, auto;
}

.product-image-placeholder > span {
  position: relative;
  z-index: 2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.part-drawing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 95px;
  border: 3px solid var(--green);
  border-radius: 10px;
  transform: translate(-50%, -50%) skewX(-8deg);
}

.part-drawing i {
  position: absolute;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.part-drawing i:nth-child(1) { width: 32px; height: 32px; top: 28px; left: 22px; }
.part-drawing i:nth-child(2) { width: 20px; height: 20px; top: 34px; right: 30px; }
.part-drawing i:nth-child(3) { width: 8px; height: 8px; top: 41px; left: 84px; background: var(--green); }

.product-image-placeholder small {
  position: absolute;
  right: 16px;
  bottom: 13px;
  max-width: 190px;
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.product-copy {
  padding: 24px;
}

.product-code {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.product-copy h2 {
  margin: 9px 0 12px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.product-copy > p {
  min-height: 68px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.variant-count {
  display: inline-flex;
  margin-top: 2px;
  padding: 5px 9px;
  border: 1px solid rgba(56, 182, 255, 0.38);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(56, 182, 255, 0.09);
  font-size: 10px;
  font-weight: 700;
}

.product-copy dl {
  margin: 20px 0;
  border-top: 1px solid var(--line);
}

.product-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.product-copy dt {
  color: var(--muted);
}

.product-copy dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.product-enquiry {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 650;
}

.product-enquiry span {
  color: var(--blue);
}

.empty-state {
  padding: 100px 30px;
  text-align: center;
}

.empty-state p {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: 58vw;
  }

  .hero-connector {
    right: -5vw;
  }

  .hero-services {
    right: 1vw;
  }

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

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

@media (max-width: 900px) {
  .site-header {
    height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 185px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--green);
  }

  .site-header nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 25px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header nav a {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .network-hero {
    min-height: 1050px;
    padding-top: 145px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 10vw, 78px);
  }

  .hero-connector {
    top: 610px;
    left: 4vw;
    right: auto;
    width: 92vw;
    height: 360px;
  }

  .connector-core {
    top: 100px;
    left: 42%;
    width: 110px;
    height: 110px;
  }

  .hero-services {
    top: 650px;
    right: 3vw;
    width: 94vw;
  }

  .hero-service {
    width: 200px;
    min-height: 90px;
    padding: 17px 14px;
  }

  .hero-service-1 { top: 0; left: 0; right: auto; }
  .hero-service-2 { top: 0; right: 0; }
  .hero-service-3 { top: 120px; left: 0; right: auto; }
  .hero-service-4 { top: 120px; right: 0; }

  .hero-globe {
    right: -100px;
    bottom: -165px;
    width: 560px;
  }

  .statement,
  .section-heading,
  .how-section,
  .expertise-band,
  .founder-section,
  .catalogue-teaser,
  .about-story,
  .solutions-page,
  .contact-page,
  .catalogue-gate {
    grid-template-columns: 1fr;
  }

  .statement {
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading {
    gap: 25px;
  }

  .how-section {
    gap: 80px;
  }

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

  .project-image {
    height: 520px;
  }

  .project-list article,
  .project-list article.reverse {
    grid-template-columns: 1fr;
  }

  .project-list article.reverse .project-list-image {
    order: initial;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .catalogue-toolbar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .search-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding-left: 22px;
    padding-right: 22px;
  }

  .network-hero {
    min-height: 1080px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-copy h1 {
    font-size: 51px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-connector {
    top: 670px;
  }

  .hero-services {
    top: 720px;
  }

  .hero-service {
    width: calc(50% - 7px);
    grid-template-columns: 24px 1fr;
    min-height: 108px;
  }

  .hero-service i {
    display: none;
  }

  .hero-globe {
    right: -145px;
    bottom: -110px;
    width: 470px;
  }

  .globe-marker small {
    padding: 4px 5px;
    font-size: 7px;
  }

  .statement h2,
  .section-heading h2,
  .expertise-copy h2,
  .founder-copy h2,
  .catalogue-teaser h2 {
    font-size: 42px;
  }

  .service-grid,
  .values-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .how-steps article {
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .how-steps p {
    grid-column: 2;
  }

  .project-image,
  .project-list-image {
    height: 430px;
  }

  .catalogue-mini-grid span {
    height: 120px;
  }

  .footer-links,
  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero h1 {
    font-size: 55px;
  }

  .expertise-detail article {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }

  .contact-form {
    padding: 24px;
  }

  .gate-visual {
    min-height: 360px;
  }

  .ring-one { width: 320px; height: 320px; }
  .ring-two { width: 220px; height: 220px; }

  .catalogue-heading {
    grid-template-columns: 1fr;
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }
}

/* 1.1.2 — test-site font, shared hero container and real world map */
.network-hero {
  padding-left: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.hero-globe {
  right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.hero-services {
  right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.hero-connector {
  right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.globe-spin {
  inset: 4%;
  overflow: hidden;
  animation: none;
}

.globe-map-track {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 400%;
  height: 100%;
  display: flex;
  align-items: stretch;
  animation: globeMapTravel 34s linear infinite;
}

.globe-map-track img {
  width: 50%;
  height: 100%;
  max-width: none;
  flex: 0 0 50%;
  object-fit: fill;
}

.globe-longitude,
.globe-latitude {
  z-index: 2;
}

.globe-routes {
  z-index: 3;
}

@keyframes globeMapTravel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .hero-globe {
    right: -85px;
  }

  .hero-services {
    right: var(--content-gutter);
  }

  .hero-connector {
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .globe-map-track {
    transform: translateX(-12%);
  }
}

/* ==========================================================
   1.2.0 — narrative homepage, system explorer and access flow
   ========================================================== */

.section-kicker {
  letter-spacing: 0.08em;
  text-transform: none;
}

.network-hero {
  min-height: 850px;
}

.hero-copy {
  z-index: 7;
  width: min(590px, 48vw);
}

.hero-globe {
  z-index: 1;
  right: max(10px, calc((100vw - var(--content-width)) / 2 - 120px));
  bottom: -285px;
  width: min(60vw, 850px);
  transform: none;
}

.globe-axis {
  position: absolute;
  inset: 0;
  transform: rotate(23.45deg);
  transform-origin: center;
}

.globe-map-track {
  animation-name: globeMapClockwise;
  animation-duration: 42s;
}

.globe-map-panel {
  position: relative;
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
}

.globe-map-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}

.map-marker {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.map-marker i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 182, 255, 0.2);
}

.map-marker small {
  padding: 3px 6px;
  border: 1px solid rgba(6, 43, 70, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.map-americas { top: 43%; left: 22%; }
.map-europe { top: 30%; left: 50%; }
.map-africa { top: 53%; left: 51%; }
.map-middle-east { top: 43%; left: 59%; }
.map-asia { top: 36%; left: 72%; }

@keyframes globeMapClockwise {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.hero-connector {
  z-index: 5;
}

.connector-core img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.connector-core small {
  max-width: 92px;
  text-align: center;
}

.hero-services {
  z-index: 6;
  transform: scale(0.82);
}

.atmosphere-story {
  width: min(1440px, calc(100% - 40px));
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.72fr;
  gap: 14px;
  margin: 0 auto 100px;
}

.atmosphere-story figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.atmosphere-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.atmosphere-story figure:hover img {
  transform: scale(1.045);
}

.atmosphere-main {
  grid-row: span 2;
}

.atmosphere-side,
.atmosphere-detail {
  min-height: 250px;
}

.atmosphere-main::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(3, 28, 46, 0.82));
}

.atmosphere-main figcaption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  left: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: white;
}

.atmosphere-main figcaption span {
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.atmosphere-main figcaption strong {
  max-width: 540px;
  color: white;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 580;
  line-height: 1.08;
  text-align: right;
}

.system-story {
  padding-top: 110px;
  padding-bottom: 115px;
  background:
    radial-gradient(circle at 90% 8%, rgba(56, 182, 255, 0.16), transparent 24%),
    var(--green-deep);
  color: white;
}

.system-story-heading {
  max-width: 880px;
  margin-bottom: 56px;
}

.system-story-heading .section-kicker {
  color: var(--lime);
}

.system-story-heading h2 {
  margin-bottom: 24px;
  color: white;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.system-story-heading > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
}

.system-explorer {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.system-tabs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.system-tab {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 15px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease, padding 0.25s ease;
}

.system-tab span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.system-tab strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.25;
}

.system-tab i {
  color: var(--blue);
  font-style: normal;
}

.system-tab:hover,
.system-tab.is-active {
  padding-left: 22px;
  background: rgba(56, 182, 255, 0.12);
  color: white;
}

.system-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.system-panels,
.system-panel {
  min-height: 565px;
}

.system-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  overflow: hidden;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  animation: systemPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.system-panel[hidden] {
  display: none;
}

@keyframes systemPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.system-panel-image {
  position: relative;
  min-height: 565px;
  overflow: hidden;
}

.system-panel-image::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(3, 28, 46, 0.54));
}

.system-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-panel-image > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.system-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 58px);
}

.system-panel-copy h3 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.system-panel-copy > p:not(.section-kicker) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.system-panel-copy ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.system-panel-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 620;
}

.system-panel-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.access-request-section {
  padding-top: 90px;
  padding-bottom: 110px;
  background: white;
}

.access-request-section[hidden] {
  display: none;
}

.access-request-intro,
.access-confirmation {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.access-request-intro h2,
.access-confirmation h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.access-request-intro > p:last-child,
.access-confirmation > p {
  color: var(--muted);
}

.access-request-form {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.access-request-form > label:not(.privacy-check),
.access-request-form .field-row label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
}

.access-request-form input:not([type="checkbox"]),
.access-request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: white;
  color: var(--ink);
}

.access-request-form input:not([type="checkbox"]) {
  height: 52px;
  padding: 0 15px;
}

.access-request-form textarea {
  padding: 15px;
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 5px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-check input {
  margin-top: 3px;
}

.access-request-form > small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.access-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.request-access-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-weight: 650;
}

.request-access-toggle span {
  color: var(--blue);
}

.access-status-card {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 10px;
  background: rgba(56, 182, 255, 0.09);
}

.access-status-card strong {
  color: var(--green);
}

.access-status-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.access-confirmation {
  max-width: 820px;
  margin-bottom: 0;
  padding: clamp(35px, 6vw, 72px);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(56, 182, 255, 0.16), transparent 38%),
    var(--paper);
}

.access-confirmation-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 26px;
}

.access-confirmation .text-link {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .hero-globe {
    right: -120px;
    bottom: -240px;
    width: 720px;
  }

  .atmosphere-story {
    min-height: 450px;
  }

  .system-explorer {
    grid-template-columns: 1fr;
  }

  .system-tabs {
    overflow-x: auto;
    flex-direction: row;
    border: 0;
    scrollbar-width: thin;
  }

  .system-tab {
    min-width: 215px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .network-hero {
    min-height: 980px;
  }

  .hero-globe {
    right: -180px;
    bottom: -210px;
    width: 650px;
  }

  .hero-services {
    display: none;
  }

  .atmosphere-story {
    width: calc(100% - 28px);
    min-height: 620px;
    grid-template-columns: 1fr 1fr;
  }

  .atmosphere-main {
    min-height: 360px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .atmosphere-main figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .atmosphere-main figcaption strong {
    text-align: left;
  }

  .system-story {
    padding-top: 80px;
    padding-bottom: 85px;
  }

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

  .system-panel-image,
  .system-panels,
  .system-panel {
    min-height: 0;
  }

  .system-panel-image {
    height: 360px;
  }

  .access-request-form {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .hero-globe {
    right: -240px;
    bottom: -170px;
    width: 610px;
  }

  .hero-connector {
    display: none;
  }

  .atmosphere-story {
    min-height: 760px;
    grid-template-columns: 1fr;
  }

  .atmosphere-main {
    grid-column: auto;
  }

  .atmosphere-side,
  .atmosphere-detail {
    min-height: 185px;
  }

  .system-tab {
    min-width: 190px;
  }

  .system-panel-image {
    height: 300px;
  }

  .system-panel-copy {
    padding: 28px 22px 32px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   1.1.1 — compact container, typography and colour correction
   ========================================================== */

:root {
  --content-width: 1240px;
  --content-gutter: clamp(22px, 4vw, 54px);
}

body.niepce-site {
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.section-pad {
  padding-left: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
}

.site-header {
  height: 84px;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  gap: clamp(20px, 2.5vw, 38px);
  padding-left: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  padding-right: max(var(--content-gutter), calc((100vw - var(--content-width)) / 2));
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.site-header.is-scrolled {
  height: 70px;
}

.brand {
  width: 180px;
  height: 62px;
}

.site-header nav {
  gap: clamp(16px, 1.8vw, 28px);
}

.site-header nav a {
  color: var(--ink);
  font-size: 13px;
}

.header-cta {
  min-height: 44px;
  gap: 18px;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
}

.inner-page {
  padding-top: 84px;
}

.network-hero {
  min-height: 760px;
  padding-top: 145px;
  padding-bottom: 70px;
  color: var(--ink);
}

.hero-copy {
  width: min(620px, 52vw);
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(46px, 4.6vw, 72px);
  line-height: 1;
}

.hero-intro {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-services {
  transform: scale(0.88);
  transform-origin: right center;
}

.hero-globe {
  transform: scale(0.88);
  transform-origin: right bottom;
}

.statement {
  min-height: 0;
  gap: clamp(50px, 8vw, 110px);
  padding-top: 110px;
  padding-bottom: 110px;
  color: var(--ink);
}

.statement h2,
.section-heading h2,
.expertise-copy h2,
.founder-copy h2,
.catalogue-teaser h2 {
  color: var(--ink);
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.06;
}

.statement-side p,
.section-heading > .reveal:last-child p,
.expertise-copy > p,
.founder-copy > p,
.catalogue-teaser > .reveal > p {
  font-size: 16px;
}

.services-section,
.projects-section {
  padding-top: 110px;
  padding-bottom: 115px;
  color: var(--ink);
}

.section-heading {
  gap: clamp(50px, 7vw, 95px);
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(36px, 3.3vw, 52px);
}

.service-card {
  min-height: 300px;
  padding: 25px;
}

.service-card h3 {
  margin-top: 58px;
  color: var(--ink);
  font-size: 22px;
}

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

.how-section {
  min-height: 0;
  gap: clamp(55px, 8vw, 105px);
  padding-top: 105px;
  padding-bottom: 105px;
  background: var(--green-deep);
  color: var(--white);
}

.how-section h2,
.how-section h3 {
  color: var(--white);
}

.how-section .section-kicker,
.how-section .section-kicker.light {
  color: var(--lime);
}

.how-intro h2 {
  font-size: clamp(38px, 3.6vw, 55px);
}

.how-intro p:last-child,
.how-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.how-steps article {
  min-height: 100px;
}

.how-steps h3 {
  font-size: 19px;
}

.expertise-band,
.founder-section {
  gap: clamp(55px, 8vw, 100px);
  padding-top: 115px;
  padding-bottom: 115px;
  color: var(--ink);
}

.solution-list strong {
  color: var(--ink);
  font-size: 17px;
}

.solution-list .reveal > div {
  min-height: 76px;
}

.founder-image img {
  max-height: 570px;
}

.founder-copy blockquote {
  color: var(--ink);
  font-size: 19px;
}

.project-image {
  height: 370px;
}

.project-card h3 {
  color: var(--ink);
  font-size: 21px;
}

.catalogue-teaser {
  min-height: 0;
  gap: clamp(55px, 7vw, 95px);
  padding-top: 110px;
  padding-bottom: 110px;
  color: var(--ink);
}

.catalogue-mini-grid span {
  height: 135px;
}

.closing-cta {
  min-height: 420px;
  padding-top: 85px;
  padding-bottom: 85px;
  background:
    radial-gradient(circle at center, rgba(56, 182, 255, 0.18), transparent 34%),
    var(--green);
  color: var(--white);
}

.closing-cta h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1;
}

.closing-cta p {
  color: var(--lime);
}

.closing-cta .button-light {
  background: var(--white);
  color: var(--green);
}

.site-footer {
  padding: 65px max(var(--content-gutter), calc((100vw - var(--content-width)) / 2)) 28px;
  background: var(--green-deep);
  color: var(--white);
}

.site-footer a,
.site-footer strong,
.site-footer .footer-links > div > span {
  color: var(--white);
}

.footer-main {
  padding-bottom: 52px;
}

.footer-main > div:first-child p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  min-height: 500px;
  padding-top: 90px;
  padding-bottom: 72px;
  color: var(--white);
}

.page-hero:not(.page-hero-clean) h1 {
  color: var(--white);
}

.page-hero:not(.page-hero-clean) .section-kicker {
  color: var(--lime);
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.98;
}

.page-hero > p:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.page-hero-clean,
.page-hero-clean h1 {
  color: var(--ink);
}

.page-hero-clean .section-kicker {
  color: var(--green);
}

.page-hero-clean > p:last-child {
  color: var(--muted);
}

.about-story,
.solutions-page {
  gap: clamp(55px, 8vw, 100px);
  padding-top: 105px;
  padding-bottom: 105px;
  color: var(--ink);
}

.about-photo img {
  max-height: 600px;
}

.about-copy h2,
.solutions-page h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
}

.about-copy p,
.expertise-detail p,
.project-list p {
  font-size: 16px;
}

.values-grid {
  padding-bottom: 110px;
}

.values-grid article {
  min-height: 270px;
  padding: 26px;
  color: var(--ink);
}

.values-grid h3 {
  margin-top: 65px;
  color: var(--ink);
  font-size: 21px;
}

.expertise-detail,
.project-list {
  padding-top: 95px;
  padding-bottom: 110px;
  color: var(--ink);
}

.expertise-detail article {
  padding: 45px 0;
}

.expertise-detail h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 50px);
}

.project-list article {
  gap: clamp(50px, 7vw, 90px);
  margin-bottom: 95px;
}

.project-list-image {
  height: 470px;
}

.project-list h2 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
}

.contact-page {
  min-height: 0;
  gap: clamp(55px, 8vw, 100px);
  padding-top: 100px;
  padding-bottom: 110px;
  color: var(--ink);
}

.contact-intro h1 {
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1;
}

.contact-intro > p {
  font-size: 16px;
}

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

.catalogue-gate {
  min-height: 650px;
  gap: clamp(55px, 8vw, 100px);
}

.gate-visual {
  min-height: 420px;
  transform: scale(0.86);
}

.gate-copy,
.catalogue-page {
  color: var(--ink);
}

.gate-copy h1,
.catalogue-heading h1 {
  color: var(--ink);
  font-size: clamp(40px, 4.2vw, 62px);
}

.catalogue-page {
  padding-top: 75px;
  padding-bottom: 110px;
}

.product-copy h2 {
  color: var(--ink);
  font-size: 22px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 175px minmax(0, 1fr) auto;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a {
    font-size: 12px;
  }

  .hero-services,
  .hero-globe {
    transform: scale(0.8);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .inner-page {
    padding-top: 70px;
  }

  .network-hero {
    min-height: 940px;
    padding-top: 120px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 8vw, 62px);
  }

  .hero-services {
    transform: scale(0.82);
    transform-origin: center top;
  }

  .hero-globe {
    transform: scale(0.75);
    transform-origin: right bottom;
  }

  .statement,
  .section-heading,
  .how-section,
  .expertise-band,
  .founder-section,
  .catalogue-teaser,
  .about-story,
  .solutions-page,
  .contact-page,
  .catalogue-gate {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .project-list-image {
    height: 390px;
  }
}

@media (max-width: 620px) {
  :root {
    --content-gutter: 20px;
  }

  .brand {
    width: 160px;
  }

  .network-hero {
    min-height: 900px;
    padding-top: 110px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .service-grid,
  .values-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .statement,
  .services-section,
  .how-section,
  .expertise-band,
  .founder-section,
  .projects-section,
  .catalogue-teaser,
  .about-story,
  .solutions-page,
  .expertise-detail,
  .project-list,
  .contact-page,
  .catalogue-page {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .statement h2,
  .section-heading h2,
  .expertise-copy h2,
  .founder-copy h2,
  .catalogue-teaser h2,
  .about-copy h2,
  .solutions-page h2 {
    font-size: 36px;
  }

  .page-hero {
    min-height: 420px;
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .page-hero h1,
  .contact-intro h1,
  .gate-copy h1,
  .catalogue-heading h1 {
    font-size: 43px;
  }

  .project-image,
  .project-list-image {
    height: 350px;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

/* ==========================================================
   1.2.1 — corrected globe and dedicated screen parts story
   ========================================================== */

.hero-globe {
  right: clamp(-210px, -10vw, -105px);
}

.globe-axis {
  transform: rotate(-23.45deg);
}

/* Geographic anchor points on the 2:1 equirectangular map. */
.map-americas { top: 35%; left: 22%; }
.map-europe { top: 23%; left: 50%; }
.map-africa { top: 43%; left: 51%; }
.map-middle-east { top: 34%; left: 59%; }
.map-asia { top: 27%; left: 72%; }

.screen-parts-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  background: white;
}

.screen-parts-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--green-deep);
  box-shadow: 0 32px 90px rgba(6, 43, 70, 0.16);
}

.screen-parts-visual::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(3, 28, 46, 0.72));
}

.screen-parts-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-parts-visual:hover img {
  transform: scale(1.035);
}

.screen-parts-visual > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-geist-mono), "Aptos", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.screen-parts-copy h2 {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.screen-parts-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.screen-parts-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.screen-parts-categories span {
  padding: 8px 11px;
  border: 1px solid rgba(6, 43, 70, 0.13);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  font-size: 11px;
  font-weight: 650;
}

.screen-parts-access {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(56, 182, 255, 0.18), transparent 30%),
    var(--green-deep);
  color: white;
}

.screen-parts-access .lock-mark {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.screen-parts-access .section-kicker {
  margin-top: 18px;
  color: var(--blue);
}

.screen-parts-access h3 {
  max-width: 760px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.screen-parts-access p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.screen-parts-actions {
  min-width: 215px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.light-link {
  color: white;
}

@media (max-width: 1000px) {
  .hero-globe {
    right: -230px;
  }

  .screen-parts-story {
    grid-template-columns: 1fr;
  }

  .screen-parts-visual,
  .screen-parts-visual img {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .hero-globe {
    right: -280px;
  }

  .screen-parts-story {
    padding-top: 82px;
  }

  .screen-parts-visual,
  .screen-parts-visual img {
    min-height: 390px;
  }

  .screen-parts-access {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .hero-globe {
    right: -335px;
  }

  .screen-parts-visual,
  .screen-parts-visual img {
    min-height: 320px;
  }

  .screen-parts-access {
    padding: 28px 22px;
  }
}

/* ==========================================================
   1.3.0 — protected product, quote basket and account flows
   ========================================================== */

.catalogue-account-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.forgot-password-panel {
  max-width: 520px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.forgot-password-panel summary {
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 680;
}

.forgot-password-panel form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 9px;
  background: var(--paper);
}

.forgot-password-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 650;
}

.forgot-password-panel input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  background: white;
}

.forgot-password-panel button {
  justify-self: start;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.account-chip {
  text-decoration: none;
}

.basket-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px 8px 13px;
  border: 1px solid rgba(5, 49, 70, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(6, 43, 70, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.selection-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.basket-chip .selection-icon {
  color: #178dce;
}

.basket-chip strong,
.catalogue-subnav a span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--green-deep);
  font-size: 10px;
}

.product-card {
  position: relative;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.quick-view-button {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(6, 43, 70, 0.86);
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.quick-view-button:hover {
  background: var(--blue);
  color: var(--green-deep);
}

.quick-view-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: white;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.quick-view-dialog::backdrop {
  background: rgba(3, 28, 46, 0.72);
  backdrop-filter: blur(6px);
}

.quick-view-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--green);
  cursor: pointer;
  font-size: 25px;
  box-shadow: 0 8px 24px rgba(6, 43, 70, 0.16);
}

.quick-view-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
}

.quick-view-image {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  color: var(--muted);
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-copy {
  padding: clamp(34px, 5vw, 62px);
}

.quick-view-copy h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.quick-view-description {
  color: var(--muted);
  font-size: 14px;
}

.quick-view-copy dl,
.product-detail-copy dl,
.account-security-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}

.quick-view-copy dl div,
.product-detail-copy dl div,
.account-security-card dl div {
  padding: 13px;
  border-radius: 7px;
  background: var(--paper);
}

.quick-view-copy dt,
.product-detail-copy dt,
.account-security-card dt {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-view-copy dd,
.product-detail-copy dd,
.account-security-card dd {
  margin: 4px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 680;
}

.quick-view-specifications {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
}

.quick-view-specifications ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.quick-view-copy form,
.add-to-basket-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px;
  gap: 13px;
  margin-top: 22px;
}

.quick-view-copy form label,
.add-to-basket-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 650;
}

.quick-view-copy form input,
.quick-view-copy form select,
.add-to-basket-form input,
.add-to-basket-form select,
.add-to-basket-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  background: white;
}

.quick-view-copy form .button {
  grid-column: 1 / -1;
}

.quick-product-link {
  margin-top: 18px;
}

.catalogue-subnav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.catalogue-subnav > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.catalogue-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding-top: 90px;
  padding-bottom: 110px;
  background: white;
}

.product-detail-image {
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
  color: var(--muted);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  padding: clamp(24px, 4vw, 54px);
  object-fit: contain;
  background: #fff;
}

.product-detail-copy {
  padding-top: 15px;
}

.product-detail-copy h1 {
  margin: 12px 0 25px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-description {
  color: var(--muted);
}

.product-specifications {
  margin: 28px 0;
  padding: 24px;
  border-radius: 10px;
  background: var(--paper);
}

.product-specifications h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 17px;
}

.product-specifications ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-sheet-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  padding: 16px 18px;
  border: 1px solid rgba(56, 182, 255, 0.38);
  border-radius: 9px;
  background: rgba(56, 182, 255, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-sheet-link span {
  color: #178dce;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.product-sheet-link:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: rgba(56, 182, 255, 0.14);
}

.add-to-basket-form {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.add-to-basket-form .basket-note,
.add-to-basket-form .button,
.inline-success {
  grid-column: 1 / -1;
}

.inline-success {
  color: #19724c;
  font-size: 12px;
  font-weight: 650;
}

.quote-basket,
.account-dashboard,
.password-setup {
  padding-top: 85px;
  padding-bottom: 110px;
  background: var(--paper);
}

.quote-basket-heading,
.account-dashboard-intro,
.password-setup-intro {
  max-width: 800px;
  margin-bottom: 45px;
}

.quote-basket-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.selection-emblem {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 141, 206, 0.2);
  border-radius: 16px;
  background: rgba(56, 182, 255, 0.1);
  color: #178dce;
}

.selection-emblem .selection-icon {
  width: 34px;
  height: 34px;
}

.empty-state .selection-emblem {
  margin: 0 auto 22px;
}

.selection-subnav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.selection-subnav-link .selection-icon {
  width: 19px;
  height: 19px;
  color: #178dce;
}

.quote-basket-heading h1,
.account-dashboard-intro h1,
.password-setup-intro h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(45px, 6vw, 76px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.basket-items {
  display: grid;
  gap: 12px;
}

.basket-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 110px auto;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.basket-item-image {
  height: 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 9px;
}

.basket-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basket-item-copy h2 {
  margin: 3px 0;
  font-size: 20px;
}

.basket-item-copy h2 a {
  color: var(--ink);
  text-decoration: none;
}

.basket-item-copy p,
.basket-item-copy small {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.basket-item > label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.basket-item > label input {
  width: 90px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
}

.basket-remove {
  border: 0;
  background: transparent;
  color: #a04444;
  cursor: pointer;
  font-size: 11px;
}

.basket-update {
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quote-submit-form {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  margin-top: 55px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 16px;
  background: var(--green-deep);
  color: white;
}

.quote-submit-form h2 {
  color: white;
  font-size: clamp(30px, 3vw, 44px);
}

.quote-submit-form p {
  color: rgba(255, 255, 255, 0.7);
}

.manual-review-note {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 8px 11px;
  border: 1px solid rgba(56, 182, 255, 0.28);
  border-radius: 999px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.quote-submit-form label,
.account-profile-form label,
.password-setup-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 17px;
  font-size: 11px;
  font-weight: 650;
}

.quote-submit-form input,
.quote-submit-form textarea,
.account-profile-form input,
.password-setup-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 13px;
  outline: none;
  background: white;
  color: var(--ink);
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.account-profile-form,
.account-security-card,
.password-setup-form {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.account-profile-form h2,
.account-security-card h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: 30px;
}

.account-profile-form label,
.password-setup-form label {
  color: var(--green);
}

.account-profile-form input,
.password-setup-form input {
  border-color: var(--line);
}

.account-profile-form label small {
  color: var(--muted);
  font-weight: 400;
}

.account-security-card {
  background:
    radial-gradient(circle at 90% 5%, rgba(56, 182, 255, 0.18), transparent 34%),
    var(--green-deep);
  color: white;
}

.account-security-card h2,
.account-security-card dd {
  color: white;
}

.account-security-card p {
  color: rgba(255, 255, 255, 0.7);
}

.account-security-card dl {
  grid-template-columns: 1fr;
  margin-top: 35px;
}

.account-security-card dl div {
  background: rgba(255, 255, 255, 0.08);
}

.account-password-form {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.account-password-form h3 {
  margin: 0 0 5px;
  color: white;
  font-size: 17px;
}

.account-password-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 650;
}

.account-password-form input {
  width: 100%;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.account-password-form button {
  justify-self: start;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.account-quote-history {
  margin-top: 70px;
}

.account-quote-history h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
}

.account-quote-list {
  display: grid;
  gap: 8px;
}

.account-quote-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.account-quote-list article > div {
  display: flex;
  flex-direction: column;
}

.account-quote-list strong {
  color: var(--ink);
}

.account-quote-list small,
.account-no-quotes {
  color: var(--muted);
}

.account-quote-list article > span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(56, 182, 255, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 680;
}

.account-quote-list a {
  color: var(--green);
  font-size: 11px;
  font-weight: 680;
}

.password-setup {
  min-height: calc(100vh - 84px);
}

.password-setup-intro,
.password-setup-form {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.password-setup-form {
  box-shadow: 0 26px 80px rgba(6, 43, 70, 0.13);
}

.password-setup-form input[name="verification_code"] {
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-align: center;
}

.password-setup-form > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .quick-view-layout,
  .product-detail,
  .quote-submit-form,
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .quick-view-image,
  .product-detail-image,
  .product-detail-image img {
    min-height: 420px;
  }

  .basket-item {
    grid-template-columns: 90px minmax(0, 1fr) 100px;
  }

  .basket-remove {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .account-quote-list article {
    grid-template-columns: 1fr auto;
  }

  .account-quote-list article > span {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .catalogue-account-actions {
    align-items: flex-start;
  }

  .catalogue-page .basket-chip {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    min-height: 52px;
    border-color: rgba(56, 182, 255, 0.32);
    background: var(--green-deep);
    box-shadow: 0 18px 48px rgba(6, 43, 70, 0.28);
    color: white;
  }

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

  .catalogue-subnav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .catalogue-subnav > div {
    flex-wrap: wrap;
  }

  .quick-view-image,
  .product-detail-image,
  .product-detail-image img {
    min-height: 300px;
  }

  .quick-view-copy {
    padding: 30px 22px;
  }

  .quick-view-copy form,
  .add-to-basket-form {
    grid-template-columns: 1fr;
  }

  .quick-view-copy form .button,
  .add-to-basket-form .basket-note,
  .add-to-basket-form .button,
  .inline-success {
    grid-column: auto;
  }

  .basket-item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .basket-item > label,
  .basket-remove {
    grid-column: 2;
  }

  .account-quote-list article {
    grid-template-columns: 1fr;
  }

  .account-quote-list article > span {
    grid-column: auto;
  }
}

/* ==========================================================
   1.7.0 — private catalogue presentation
   ========================================================== */

.catalogue-page {
  background:
    radial-gradient(circle at 82% 2%, rgba(56, 182, 255, 0.08), transparent 27rem),
    var(--paper);
}

.catalogue-toolbar {
  border-color: rgba(6, 43, 70, 0.11);
  background: rgba(248, 251, 253, 0.94);
  box-shadow: 0 18px 52px rgba(6, 43, 70, 0.07);
}

.product-grid {
  grid-auto-rows: 1fr;
  gap: 24px;
}

.product-card {
  height: 100%;
  border-color: rgba(6, 43, 70, 0.14);
  border-radius: 14px;
  background: #f3f7fa;
  box-shadow: 0 12px 38px rgba(6, 43, 70, 0.065);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.product-card:hover {
  border-color: rgba(56, 182, 255, 0.6);
  box-shadow: 0 24px 58px rgba(6, 43, 70, 0.14);
  transform: translateY(-6px);
}

.product-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-placeholder {
  height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  border-bottom: 2px solid rgba(56, 182, 255, 0.82);
  background: #fff;
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 42%;
  transform: translateY(-12px) scale(0.78);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image-placeholder img {
  transform: translateY(-14px) scale(0.83);
}

.product-copy {
  min-height: 360px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px 25px 24px;
  background: #f3f7fa;
}

.product-copy h2 {
  min-height: 2.2em;
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 11px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.1;
}

.product-copy > p {
  min-height: 4.8em;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 17px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.product-meta-tags span {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(6, 43, 70, 0.11);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-enquiry {
  margin-top: 19px;
  padding-top: 15px;
  border-top-color: rgba(6, 43, 70, 0.11);
}

.quick-view-button {
  top: 16px;
  right: 16px;
  border: 1px solid rgba(6, 43, 70, 0.1);
  padding: 9px 12px;
  background: rgba(6, 43, 70, 0.93);
  box-shadow: 0 9px 24px rgba(6, 43, 70, 0.16);
  letter-spacing: 0.035em;
}

.quick-view-image {
  background: #fff;
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  padding: clamp(30px, 5vw, 64px);
  object-fit: contain;
  object-position: 50% 42%;
  transform: translateY(-10px) scale(0.82);
}

.product-detail-image {
  position: relative;
  border: 1px solid rgba(6, 43, 70, 0.11);
  background: #fff;
  box-shadow: 0 26px 72px rgba(6, 43, 70, 0.1);
}

.product-detail-image img {
  object-position: 50% 42%;
  transform: translateY(-10px) scale(0.82);
}

.product-image-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  border: 1px solid rgba(56, 182, 255, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(244, 249, 252, 0.9);
  color: #178dce;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .product-image-placeholder {
    height: 280px;
  }

  .product-copy {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .product-image-placeholder {
    height: 260px;
    padding: 25px;
  }

  .product-copy {
    min-height: 0;
  }

  .product-detail-image img,
  .quick-view-image img {
    transform: translateY(-6px) scale(0.86);
  }
}

/* v1.8.0 — restrained private catalogue experience */
.basket-chip {
  min-width: 250px;
  padding: 11px 13px;
  border-color: rgba(56, 182, 255, 0.38);
  background: #062b46;
  color: #fff;
}

.basket-chip > span {
  display: grid;
  line-height: 1.08;
}

.basket-chip small {
  margin-bottom: 4px;
  color: #7ed2ff;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.basket-chip em {
  margin-left: auto;
  color: #7ed2ff;
  font-size: 10px;
  font-style: normal;
}

.basket-chip strong {
  background: #38b6ff;
  color: #062b46;
}

.catalogue-workflow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -10px 0 28px;
  padding: 16px 20px;
  border: 1px solid rgba(6, 43, 70, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #5e7382;
  font-size: 11px;
}

.catalogue-workflow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.catalogue-workflow b {
  color: #178dce;
  font-family: var(--font-geist-mono), monospace;
}

.catalogue-workflow i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(56, 182, 255, 0.55), rgba(6, 43, 70, 0.08));
}

.selection-toast {
  position: fixed;
  z-index: 10020;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  padding: 15px 18px;
  border: 1px solid rgba(56, 182, 255, 0.45);
  border-radius: 10px;
  background: #062b46;
  box-shadow: 0 24px 70px rgba(6, 43, 70, 0.25);
  color: #fff;
  font-size: 12px;
}

.selection-toast a {
  margin-left: 7px;
  color: #7ed2ff;
}

.product-card.is-inspecting {
  border-color: #38b6ff;
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.16), 0 24px 58px rgba(6, 43, 70, 0.14);
}

.quick-view-dialog {
  width: min(860px, calc(100vw - 24px));
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  border-radius: 22px 0 0 22px;
  animation: niepce-drawer-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-view-dialog::backdrop {
  background: rgba(6, 43, 70, 0.28);
  backdrop-filter: blur(3px);
}

.quick-view-layout {
  min-height: 100%;
}

@keyframes niepce-drawer-in {
  from { opacity: 0; transform: translateX(44px); }
  to { opacity: 1; transform: translateX(0); }
}

.verified-identity {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 3px solid #38b6ff;
  border-radius: 7px;
  background: #eef7fc;
}

.verified-identity span,
.verified-identity small {
  color: #617786;
  font-size: 10px;
}

@media (max-width: 700px) {
  .catalogue-workflow {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-workflow i {
    width: 1px;
    height: 14px;
    flex: none;
    margin-left: 12px;
  }

  .quick-view-dialog {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }

  .basket-chip {
    min-width: 0;
  }
}
