:root {
  --ink: #101820;
  --ink-soft: #44505c;
  --muted: #68737e;
  --night: #07131f;
  --night-2: #101f2e;
  --paper: #f6f6f1;
  --surface: #ffffff;
  --line: #dfe3e2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --violet: #5a47dc;
  --violet-bright: #725cff;
  --teal: #087f83;
  --teal-bright: #00a7a7;
  --coral: #e95e43;
  --yellow: #e6b91f;
  --blue: #3273dc;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 22px 60px rgba(10, 25, 38, 0.1);
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 280px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand,
.display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.035em;
}

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

img,
svg {
  display: block;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.wrap {
  width: min(100% - 48px, var(--maxw));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--night);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 246, 241, 0.88);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(18px);
}

.site-nav {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(90, 71, 220, 0.24);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 600;
}

.desktop-nav > a:not(.button) {
  position: relative;
  padding: 7px 0;
}

.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #fff;
  background: var(--night);
  border: 1px solid var(--night);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--night-2);
  box-shadow: 0 12px 26px rgba(7, 19, 31, 0.16);
  transform: translateY(-2px);
}

.button--accent {
  background: var(--violet);
  border-color: var(--violet);
}

.button--accent:hover {
  background: #4937c7;
}

.button--light {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 24, 32, 0.2);
}

.button--light:hover {
  background: #fff;
}

.button--white {
  color: var(--night);
  background: #fff;
  border-color: #fff;
}

.button svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  display: flex;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.mobile-nav[open] .menu-icon { background: transparent; }
.mobile-nav[open] .menu-icon::before { top: 0; transform: rotate(45deg); }
.mobile-nav[open] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.mobile-nav-panel {
  position: fixed;
  top: 78px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 16px 24px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(7, 19, 31, 0.08);
}

.mobile-nav-panel a {
  padding: 11px 4px;
  font-weight: 700;
}

.mobile-nav-panel .button {
  margin-top: 8px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 167, 167, 0.12);
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 17px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-heading p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(114, 92, 255, 0.15), rgba(114, 92, 255, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.hero-copy h1 {
  max-width: 10.5ch;
  margin-top: 24px;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.062em;
}

.hero-copy h1 span {
  color: var(--violet);
}

.hero-copy .lead {
  max-width: 56ch;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.81rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--teal-bright);
  border-radius: 50%;
}

.product-map {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 52% 44%, rgba(114, 92, 255, 0.26), transparent 34%),
    var(--night);
  background-size: 64px 64px, 64px 64px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 90px rgba(7, 19, 31, 0.24);
  isolation: isolate;
}

.product-map::before,
.product-map::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.product-map::before {
  inset: 86px 54px;
}

.product-map::after {
  inset: 154px 122px;
}

.map-label {
  position: absolute;
  top: 27px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aebbc7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #61d6b6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(97, 214, 182, 0.12);
}

.map-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 20px 40px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.map-hub img {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  border-radius: 13px;
}

.map-hub span {
  display: block;
  color: #dbe4ea;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.map-card {
  position: absolute;
  min-width: 150px;
  padding: 13px 15px;
  background: rgba(13, 28, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.map-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
}

.map-card span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  color: #aebbc7;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-card span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--node-color, var(--teal-bright));
  border-radius: 2px;
}

.map-card--etn { top: 92px; left: 28px; --node-color: #58a6ff; }
.map-card--print { top: 104px; right: 24px; --node-color: #f3c84b; }
.map-card--legal { bottom: 86px; left: 25px; --node-color: #d6abff; }
.map-card--news { right: 24px; bottom: 98px; --node-color: #f36b4d; }
.map-card--crm { right: 50%; bottom: 22px; --node-color: #61d6b6; transform: translateX(50%); }

.map-status {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #aebbc7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
}

.operating-strip {
  padding: 0 0 78px;
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.operating-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 25px 28px;
}

.operating-item + .operating-item {
  border-left: 1px solid var(--line);
}

.operating-number {
  color: var(--violet);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.operating-item strong {
  display: block;
  font-size: 0.88rem;
}

.operating-item span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
}

/* Portfolio */
.products-section {
  padding: 104px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.products-intro .side-note {
  max-width: 30ch;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.product-card {
  --card-accent: var(--violet);
  position: relative;
  display: flex;
  min-height: 318px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--card-bg, #f4f3ff);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.product-card:hover {
  border-color: rgba(16, 24, 32, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card--featured {
  grid-column: span 7;
  min-height: 420px;
  color: #fff;
  --card-bg: var(--night);
  --card-accent: #61d6b6;
}

.product-card--print {
  grid-column: span 5;
  min-height: 420px;
  --card-bg: #fff4d3;
  --card-accent: #8a6100;
}

.product-card--legal {
  grid-column: span 4;
  --card-bg: #f3ebff;
  --card-accent: #7a3eb1;
}

.product-card--news {
  grid-column: span 4;
  --card-bg: #ffe9e3;
  --card-accent: #ba422f;
}

.product-card--crm {
  grid-column: span 4;
  --card-bg: #dff5f1;
  --card-accent: #056d70;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--card-accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 13px;
}

.product-card--featured .product-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.product-icon svg {
  width: 23px;
  height: 23px;
}

.product-type {
  color: var(--card-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-body {
  position: relative;
  z-index: 2;
  max-width: 48ch;
}

.product-card h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.08;
}

.product-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.product-card--featured p {
  max-width: 44ch;
  color: #b8c5d1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--card-accent);
  font-size: 0.83rem;
  font-weight: 800;
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

a.product-card:hover .product-link svg {
  transform: translate(3px, -3px);
}

.message-visual {
  position: absolute;
  top: 90px;
  right: 34px;
  width: 200px;
  height: 166px;
  opacity: 0.96;
}

.message-bubble {
  position: absolute;
  max-width: 150px;
  padding: 12px 15px;
  color: var(--night);
  background: #fff;
  border-radius: 16px 16px 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.message-bubble:first-child {
  top: 0;
  right: 0;
}

.message-bubble:nth-child(2) {
  top: 62px;
  left: 0;
  color: #fff;
  background: var(--violet-bright);
  border-radius: 16px 16px 16px 5px;
}

.message-bubble:nth-child(3) {
  right: 8px;
  bottom: 0;
  padding: 9px 12px;
  color: #61d6b6;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.print-visual {
  position: absolute;
  top: 102px;
  right: -10px;
  width: 190px;
  height: 190px;
}

.photo-frame {
  position: absolute;
  width: 118px;
  height: 145px;
  padding: 8px 8px 28px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(83, 55, 0, 0.16);
}

.photo-frame::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 24%, #ffd669 0 8%, transparent 9%),
    linear-gradient(145deg, transparent 45%, #5a47dc 46% 67%, #00a7a7 68%);
}

.photo-frame:first-child { top: 15px; left: 3px; transform: rotate(-9deg); }
.photo-frame:last-child { top: 25px; right: 0; transform: rotate(9deg); }

/* Capabilities */
.capabilities-section {
  padding: 108px 0;
}

.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 110px);
}

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

.capability {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.capability-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--violet);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability h3 {
  font-size: 1.17rem;
  letter-spacing: -0.02em;
}

.capability p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* Approach */
.approach-section {
  padding: 108px 0;
  color: #fff;
  background: var(--night);
}

.approach-section .kicker {
  color: #61d6b6;
}

.approach-section .section-heading p {
  color: #b8c5d1;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 52px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.principle {
  min-height: 258px;
  padding: 28px;
  background: var(--night);
}

.principle-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #61d6b6;
  background: rgba(97, 214, 182, 0.1);
  border: 1px solid rgba(97, 214, 182, 0.18);
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.principle h3 {
  margin-top: 50px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.principle p {
  margin-top: 10px;
  color: #aebbc7;
  font-size: 0.88rem;
}

.platform-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  color: #aebbc7;
  font-size: 0.8rem;
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-chips span {
  padding: 6px 11px;
  color: #dce5eb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Contact */
.contact-section {
  padding: 110px 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 76px);
  color: #fff;
  background: var(--violet);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(90, 71, 220, 0.2);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 90px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-panel .kicker {
  color: #d8d1ff;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.contact-panel h2 {
  max-width: 13ch;
  margin-top: 20px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.99;
}

.contact-panel p {
  max-width: 52ch;
  margin-top: 21px;
  color: #e2ddff;
}

.contact-email {
  display: inline-block;
  overflow-wrap: anywhere;
  margin-top: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.44);
  text-underline-offset: 5px;
}

.company-address {
  margin-top: 26px;
  color: #d8d1ff;
  font-size: 0.76rem;
  font-style: normal;
}

/* Footer */
.site-footer {
  padding: 38px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand {
  font-size: 1rem;
}

.site-footer .brand-mark {
  width: 29px;
  height: 29px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.footer-meta a {
  color: var(--ink-soft);
  font-weight: 700;
}

/* CRM page compatibility */
.subpage-hero {
  padding: 82px 0 70px;
  background: radial-gradient(circle at 80% 0, rgba(0, 167, 167, 0.12), transparent 38%);
}

.crumb {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.84rem;
}

.crumb a {
  color: var(--violet);
  font-weight: 700;
}

.subpage-hero h1 {
  max-width: 20ch;
  margin-top: 20px;
  font-size: clamp(2.4rem, 5.4vw, 4.7rem);
  line-height: 1;
}

.subpage-hero .lead {
  max-width: 66ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.18rem);
}

.content-section {
  padding: 96px 0;
}

.content-section--white {
  background: #fff;
  border-block: 1px solid var(--line);
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 7vw, 5.2rem);
  }

  .product-map { min-height: 510px; }
  .map-card { min-width: 132px; }
  .message-visual { opacity: 0.48; }
  .principles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 36px, var(--maxw));
  }

  .desktop-nav { display: none; }
  .mobile-nav { display: block; }

  .hero {
    padding-top: 64px;
  }

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

  .hero-copy h1 {
    max-width: 11ch;
  }

  .product-map {
    width: min(100%, 600px);
    min-height: 520px;
    margin-inline: auto;
  }

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

  .operating-item + .operating-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .products-intro {
    align-items: start;
    flex-direction: column;
  }

  .product-card--featured,
  .product-card--print {
    grid-column: span 12;
  }

  .product-card--legal,
  .product-card--news {
    grid-column: span 6;
  }

  .product-card--crm {
    grid-column: span 12;
  }

  .capabilities-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, var(--maxw));
  }

  .site-nav { min-height: 70px; }
  .mobile-nav-panel { top: 70px; }
  .brand { font-size: 1.04rem; }
  .brand-mark { width: 31px; height: 31px; }

  .hero {
    padding: 50px 0 58px;
  }

  .hero-copy h1 {
    margin-top: 19px;
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .hero-copy .lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-map {
    min-height: 470px;
    border-radius: 25px;
  }

  .product-map::before { inset: 85px 16px; }
  .product-map::after { inset: 150px 66px; }
  .map-hub { width: 116px; height: 116px; }
  .map-hub img { width: 40px; height: 40px; }
  .map-label { top: 22px; left: 20px; }
  .map-status { top: 23px; right: 20px; }
  .map-card { min-width: 116px; padding: 10px 11px; }
  .map-card strong { font-size: 0.78rem; }
  .map-card span { font-size: 0.57rem; }
  .map-card--etn { top: 82px; left: 14px; }
  .map-card--print { top: 92px; right: 12px; }
  .map-card--legal { bottom: 76px; left: 12px; }
  .map-card--news { right: 12px; bottom: 88px; }

  .operating-strip { padding-bottom: 60px; }
  .operating-item { padding: 20px; }

  .products-section,
  .capabilities-section,
  .approach-section,
  .contact-section,
  .content-section {
    padding: 76px 0;
  }

  .product-grid { gap: 14px; margin-top: 36px; }
  .product-card,
  .product-card--featured,
  .product-card--print,
  .product-card--legal,
  .product-card--news,
  .product-card--crm {
    grid-column: span 12;
    min-height: 315px;
    padding: 24px;
  }

  .product-card--featured,
  .product-card--print {
    min-height: 380px;
  }

  .message-visual {
    top: 88px;
    right: -8px;
    transform: scale(0.78);
  }

  .print-visual {
    top: 94px;
    right: -30px;
    transform: scale(0.8);
  }

  .capability {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .capability-icon { width: 42px; height: 42px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 220px; }
  .principle h3 { margin-top: 34px; }

  .contact-panel {
    padding: 34px 25px;
    border-radius: 24px;
  }

  .contact-panel h2 { font-size: clamp(2.3rem, 12vw, 3.5rem); }
  .company-address { max-width: 25ch; }
}

@media (max-width: 360px) {
  .map-status { display: none; }
}

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