:root {
  --ink: #17142d;
  --paper: #f5f0e5;
  --white: #fffdf8;
  --blue: #3026d9;
  --blue-dark: #2219ac;
  --orange: #ff5337;
  --yellow: #ffd84a;
  --cyan: #9ae5f4;
  --lime: #c6f275;
  --wine: #761b45;
  --muted: #625e6d;
  --border: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px clamp(18px, 4vw, 60px);
  border-bottom: 2px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(245, 240, 229, 0.94);
  border-color: var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--orange);
  font: 900 16px/1 var(--display);
  letter-spacing: -1px;
  transform: rotate(-5deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.2px;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 2px 2px 0 var(--orange);
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  font: 800 12px/1 var(--body);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.menu-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-icon i {
  width: 100%;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  padding: 130px clamp(24px, 6vw, 100px) 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 216, 74, 0.35) 0 10%, transparent 10.5%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 20, 45, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 45, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-tag,
.product-category {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 12px;
  background: var(--cyan);
  border: var(--border);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 900 clamp(64px, 8.5vw, 132px)/0.76 var(--display);
  letter-spacing: clamp(-7px, -0.55vw, -3px);
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 > span:nth-child(2) {
  color: var(--blue);
  margin-left: clamp(10px, 4vw, 60px);
}

.hero h1 .hero-accent {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.1em;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero-accent::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.05em -0.13em 0;
  background: var(--orange);
  border: 3px solid var(--ink);
  clip-path: polygon(2% 11%, 100% 0, 98% 91%, 0 100%);
}

.hero-intro {
  max-width: 610px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: -0.4px;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  border: var(--border);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(5px, 5px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.text-link {
  font-size: 14px;
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.hero-poster {
  width: min(100%, 530px);
  justify-self: center;
  padding: 35px;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 13px 13px 0 var(--ink);
  transform: rotate(2.2deg);
  overflow: hidden;
}

.portrait-card picture,
.portrait-card img {
  width: 100%;
  display: block;
}

.portrait-card picture {
  position: relative;
  z-index: 1;
  aspect-ratio: 2 / 3;
  background: #d8d1c5;
}

.portrait-card img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.portrait-card::before {
  content: none;
}

.portrait-card::after {
  content: none;
}

.portrait-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 128px;
  justify-content: center;
  padding: 19px 22px 22px;
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--ink);
}

.portrait-caption span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.portrait-caption strong {
  max-width: 360px;
  font: 900 clamp(23px, 2.3vw, 34px)/0.92 var(--display);
  letter-spacing: -1.6px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--ink);
}

.portrait-badge {
  position: absolute;
  z-index: 5;
  top: 43%;
  left: 1px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 5px;
  padding: 12px 13px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
  font: 900 19px/1 var(--display);
  letter-spacing: -1px;
  transform: rotate(-7deg);
}

.portrait-badge i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font: 900 14px/1 var(--display);
}

.poster-card {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 26px 32px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 13px 13px 0 var(--ink);
  text-align: center;
  transform: rotate(2.2deg);
  overflow: hidden;
}

.poster-card::before,
.poster-card::after {
  content: "";
  position: absolute;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

.poster-card::before {
  width: 420px;
  height: 420px;
  top: -155px;
  right: -220px;
}

.poster-card::after {
  width: 190px;
  height: 190px;
  bottom: -100px;
  left: -85px;
}

.poster-kicker {
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.poster-card strong {
  position: relative;
  z-index: 2;
  font: 900 clamp(48px, 5vw, 76px)/0.73 var(--display);
  letter-spacing: -4px;
}

.poster-card strong span {
  display: block;
}

.poster-card strong span:nth-child(2) {
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 3px 3px 0 var(--orange);
}

.poster-plus {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin: 22px 0 14px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font: 900 30px/1 var(--display);
  transform: rotate(-8deg);
}

.poster-card .poster-tech {
  color: var(--cyan);
}

.poster-footer {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.poster-footer i {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.poster-sticker {
  position: absolute;
  z-index: 4;
  display: inline-block;
  padding: 9px 13px;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sticker-top {
  top: -4px;
  right: -2px;
  background: var(--yellow);
  transform: rotate(7deg);
}

.sticker-bottom {
  bottom: -5px;
  left: 2px;
  background: var(--cyan);
  transform: rotate(-5deg);
}

.poster-orbit {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.orbit-one {
  width: 120px;
  height: 120px;
  top: -3px;
  left: -16px;
}

.orbit-two {
  width: 70px;
  height: 70px;
  right: -5px;
  bottom: 15px;
  background: var(--lime);
  border-color: var(--ink);
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: clamp(24px, 6vw, 100px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 42px;
  height: 2px;
  display: block;
  background: var(--ink);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  50% { transform: scaleX(0.45); transform-origin: left; }
}

.ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 17px 0;
  color: var(--ink);
  background: var(--yellow);
  border-block: var(--border);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  font: 900 18px/1 var(--display);
  letter-spacing: -0.4px;
  text-transform: uppercase;
  animation: ticker 25s linear infinite;
}

.ticker-track i {
  color: var(--orange);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
}

.section-tag span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
}

.section-tag-light span {
  color: var(--ink);
  background: var(--yellow);
}

.manifesto {
  position: relative;
  background: var(--paper);
}

.manifesto::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: 5vw;
  bottom: 55px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 35%, 100% 20%, 70% 50%, 100% 80%, 61% 65%, 50% 100%, 39% 65%, 0 80%, 30% 50%, 0 20%, 39% 35%);
  transform: rotate(8deg);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.manifesto-layout > *,
.section-heading > *,
.products-intro > *,
.product-card-content > *,
.method-heading > * {
  min-width: 0;
}

.display-title {
  margin: 0;
  font: 900 clamp(54px, 7.8vw, 126px)/0.84 var(--display);
  letter-spacing: clamp(-6px, -0.45vw, -2px);
  text-transform: uppercase;
}

.display-title em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.display-title em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}

.manifesto-content {
  padding-top: 12px;
}

.manifesto-content p {
  max-width: 600px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.manifesto-content .lead {
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.23;
  letter-spacing: -1.1px;
}

.classedigitale-callout {
  margin-top: 38px;
  padding: 24px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-0.6deg);
}

.classedigitale-kicker {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.classedigitale-callout h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font: 900 clamp(28px, 3vw, 43px)/0.95 var(--display);
  letter-spacing: -1.8px;
  text-transform: uppercase;
}

.manifesto-content .classedigitale-callout p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.classedigitale-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  animation: classedigitale-blink 1.6s steps(2, end) infinite;
}

.classedigitale-link:hover,
.classedigitale-link:focus-visible {
  animation-play-state: paused;
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

@keyframes classedigitale-blink {
  0%, 45% {
    color: var(--white);
    background: var(--blue);
    outline: 0 solid rgba(48, 38, 217, 0);
  }

  50%, 100% {
    color: var(--ink);
    background: var(--orange);
    outline: 5px solid rgba(255, 83, 55, 0.28);
  }
}

.manifesto-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding: 21px;
  background: var(--cyan);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(1deg);
}

.classedigitale-callout + .manifesto-note {
  margin-top: 28px;
}

.manifesto-note > span {
  font: 900 34px/1 var(--display);
}

.manifesto-note p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.expertise {
  color: var(--white);
  background: var(--blue);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .section-tag {
  align-self: start;
  margin-bottom: 0;
}

.section-heading h2,
.method-heading h2 {
  margin: 0;
  font: 900 clamp(48px, 6.3vw, 96px)/0.85 var(--display);
  letter-spacing: clamp(-5px, -0.4vw, -2px);
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 310px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 650;
}

.expertise-list {
  border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.expertise-item {
  display: grid;
  grid-template-columns: 54px 1.05fr 0.9fr 50px;
  align-items: center;
  gap: clamp(20px, 4vw, 65px);
  padding: 32px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.expertise-item:hover {
  color: var(--ink);
  background: var(--yellow);
  padding-inline: 24px;
}

.expertise-number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.expertise-title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.expertise-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
  background: var(--cyan);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.expertise-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-title h3 {
  margin: 0;
  font: 900 clamp(28px, 3.2vw, 50px)/0.95 var(--display);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.expertise-item p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.expertise-item:hover p {
  color: var(--ink);
}

.expertise-arrow {
  font-size: 28px;
  text-align: right;
}

.products {
  background: var(--paper);
}

.products-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.35fr 0.55fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}

.products-intro .section-tag {
  align-self: start;
  margin-bottom: 0;
}

.products-intro > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.product-list {
  display: grid;
  gap: 35px;
}

.product-card {
  position: relative;
  min-height: 590px;
  color: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}

.product-pournote {
  background: var(--wine);
}

.product-target {
  background: #2552d8;
}

.product-target-ds {
  background: linear-gradient(135deg, #b3261e 0%, #8a1c16 78%, #6f1611 100%);
}

.product-target-ds .product-copy h3 span {
  color: var(--yellow);
}

.product-docs {
  color: var(--ink);
  background: var(--lime);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 2px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: status-pulse 1.8s ease-in-out infinite;
}

.status-concept i {
  background: var(--orange);
}

@keyframes status-pulse {
  50% { opacity: 0.45; transform: scale(0.75); }
}

.product-card-content {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
}

.product-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 90px);
}

.product-category {
  display: inline-block;
  margin-bottom: 19px;
  opacity: 0.75;
}

.product-copy h3 {
  margin: 0 0 25px;
  font: 900 clamp(54px, 6vw, 100px)/0.8 var(--display);
  letter-spacing: clamp(-6px, -0.4vw, -3px);
  text-transform: uppercase;
}

.product-copy h3 span {
  display: block;
  color: var(--yellow);
}

.product-docs .product-copy h3 span {
  color: var(--blue);
}

.product-copy p {
  max-width: 540px;
  margin: 0 0 32px;
  font-size: 17px;
  font-weight: 590;
  line-height: 1.58;
}

.product-copy > a {
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.product-copy > a span {
  margin-left: 9px;
}

.product-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.pournote-visual {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 216, 74, 0.18) 48% 49%, transparent 49%),
    var(--orange);
}

.wine-ring {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  border: 60px solid rgba(118, 27, 69, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.phone {
  position: absolute;
  z-index: 2;
  width: 245px;
  height: 470px;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  border: 5px solid var(--ink);
  border-radius: 31px;
  box-shadow: 15px 18px 0 rgba(23, 20, 45, 0.28);
  transform: translate(-50%, -50%) rotate(7deg);
}

.phone-wine {
  color: var(--paper);
  background: var(--wine);
}

.phone-top {
  width: 76px;
  height: 17px;
  margin-top: -25px;
  margin-bottom: 26px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
}

.phone > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.wine-glass {
  position: relative;
  width: 75px;
  height: 100px;
  margin: 32px 0 25px;
  border: 4px solid var(--paper);
  border-top: 0;
  border-radius: 8px 8px 45px 45px;
  overflow: visible;
}

.wine-glass::before {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -39px;
  left: calc(50% - 2px);
  width: 4px;
  height: 39px;
  background: var(--paper);
}

.wine-glass::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 4px;
  bottom: -41px;
  left: calc(50% - 29px);
  background: var(--paper);
  border-radius: 4px;
}

.wine-glass i {
  position: absolute;
  right: 4px;
  bottom: 3px;
  left: 4px;
  height: 45px;
  background: var(--orange);
  border-radius: 3px 3px 35px 35px;
}

.phone strong {
  margin-top: 10px;
  font: 900 25px/0.95 var(--display);
  letter-spacing: -1px;
  text-align: center;
  text-transform: uppercase;
}

.rating {
  margin-top: auto;
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 4px;
}

.visual-label {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.target-visual {
  background-color: var(--cyan);
  background-image:
    linear-gradient(rgba(23, 20, 45, 0.13) 2px, transparent 2px),
    linear-gradient(90deg, rgba(23, 20, 45, 0.13) 2px, transparent 2px);
  background-size: 44px 44px;
}

.target-ds-visual {
  background-color: #fbeae8;
  background-image:
    linear-gradient(rgba(179, 38, 30, 0.14) 2px, transparent 2px),
    linear-gradient(90deg, rgba(179, 38, 30, 0.14) 2px, transparent 2px);
}

.radar {
  position: absolute;
  width: min(430px, 75%);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  background: rgba(48, 38, 217, 0.14);
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar i:nth-child(1) { width: 32%; height: 32%; }
.radar i:nth-child(2) { width: 62%; height: 62%; }
.radar i:nth-child(3) { width: 90%; height: 90%; }

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: var(--blue);
}

.radar::before { width: 2px; height: 100%; left: 50%; }
.radar::after { width: 100%; height: 2px; top: 50%; }

.radar span {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from -18deg at 50% 50%,
    rgba(255, 83, 55, 0.88) 0deg,
    rgba(255, 83, 55, 0.5) 42deg,
    transparent 44deg 360deg
  );
  transform-origin: 50% 50%;
  animation: sweep 4s linear infinite;
}

.radar b,
.radar em {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.radar b { top: 24%; left: 68%; }
.radar em { right: 18%; bottom: 25%; }

.radar-ds {
  background: rgba(179, 38, 30, 0.09);
}

.target-ds-visual .radar i {
  border-color: #b3261e;
}

.target-ds-visual .radar::before,
.target-ds-visual .radar::after {
  background: #b3261e;
}

.target-ds-visual .radar span {
  background: conic-gradient(
    from -18deg at 50% 50%,
    rgba(179, 38, 30, 0.9) 0deg,
    rgba(179, 38, 30, 0.48) 42deg,
    transparent 44deg 360deg
  );
}

.target-ds-visual .radar b,
.target-ds-visual .radar em {
  background: var(--yellow);
}

.target-ds-visual .signal-card span {
  color: #b3261e;
}

.radar-hub {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #b3261e;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font: 900 17px/1 var(--display);
  letter-spacing: 0.5px;
  transform: translate(-50%, -50%);
}

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

.signal-card {
  position: absolute;
  z-index: 5;
  width: 165px;
  padding: 13px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.signal-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.signal-card strong {
  font-size: 13px;
}

.signal-one { top: 17%; right: 6%; transform: rotate(4deg); }
.signal-two { bottom: 12%; left: 6%; transform: rotate(-3deg); }

.docs-visual {
  background-color: var(--yellow);
  background-image: radial-gradient(var(--orange) 2px, transparent 2px);
  background-size: 24px 24px;
}

.doc-sheet {
  position: absolute;
  width: 310px;
  height: 390px;
  top: 50%;
  left: 50%;
  padding: 40px 35px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.doc-sheet > span {
  height: 9px;
  display: block;
  margin: 18px 0;
  background: rgba(23, 20, 45, 0.2);
  border-radius: 4px;
}

.doc-sheet > span:nth-of-type(2) { width: 75%; }
.doc-sheet > span:nth-of-type(3) { width: 88%; }
.doc-sheet > span:nth-of-type(4) { width: 58%; }
.doc-back { transform: translate(-70%, -45%) rotate(-9deg); background: var(--orange); }
.doc-middle { transform: translate(-30%, -53%) rotate(8deg); background: var(--cyan); }
.doc-front { z-index: 3; transform: translate(-50%, -50%) rotate(-1deg); }

.doc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.doc-header i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.doc-sheet b {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: 10px;
  text-transform: uppercase;
}

.method {
  color: var(--white);
  background: var(--ink);
}

.method-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.method-heading h2 {
  color: var(--white);
}

.method-heading p {
  max-width: 460px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border: 2px solid var(--white);
  list-style: none;
}

.method-steps li {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 2px solid var(--white);
  transition: color 180ms ease, background 180ms ease;
}

.method-steps li:last-child {
  border-right: 0;
}

.method-steps li:hover {
  color: var(--ink);
  background: var(--yellow);
}

.method-steps span {
  margin-bottom: auto;
  font-size: 11px;
  font-weight: 900;
}

.method-steps strong {
  font: 900 clamp(22px, 2.4vw, 36px)/1 var(--display);
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.method-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.method-steps li:hover p {
  color: var(--ink);
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  background: var(--orange);
  text-align: center;
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.contact::before { top: -100px; left: -70px; }
.contact::after { right: -80px; bottom: -120px; }

.contact .eyebrow {
  position: relative;
  z-index: 2;
  background: var(--yellow);
}

.contact h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font: 900 clamp(72px, 11vw, 170px)/0.73 var(--display);
  letter-spacing: clamp(-9px, -0.65vw, -4px);
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--ink);
}

.contact h2 em {
  color: var(--yellow);
  font-style: normal;
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 45px auto 30px;
  font-size: 20px;
  font-weight: 750;
}

.button-contact {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--blue);
}

.contact-email {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.contact-burst {
  position: absolute;
  top: 16%;
  right: 12%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0, 61% 31%, 87% 13%, 75% 42%, 100% 50%, 70% 59%, 87% 87%, 60% 70%, 50% 100%, 39% 70%, 13% 87%, 30% 58%, 0 50%, 29% 41%, 13% 13%, 39% 31%);
  font-size: 30px;
  animation: spin-slow 18s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px clamp(24px, 6vw, 100px) 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 850;
}

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

.site-footer .footer-meta {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.4px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.21, 0.75, 0.25, 1);
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
    gap: 25px;
    padding-inline: 40px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 92px);
  }

  .poster-card {
    min-height: 490px;
  }

  .portrait-card {
    min-height: 0;
  }

  .section-heading,
  .products-intro {
    grid-template-columns: 0.4fr 1fr;
  }

  .section-heading > p,
  .products-intro > p {
    grid-column: 2;
  }

  .product-card-content {
    grid-template-columns: 0.85fr 1fr;
  }

  .product-copy {
    padding: 50px;
  }

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

  .site-footer > p:not(.footer-meta) {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding: 10px 18px;
    background: rgba(245, 240, 229, 0.96);
    border-bottom-color: var(--ink);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .menu-open .menu-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 90px 25px 30px;
    color: var(--white);
    background: var(--blue);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.7, 0, 0.3, 1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 20px 4px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font: 900 clamp(35px, 10vw, 58px)/1 var(--display);
    letter-spacing: -2px;
    text-transform: uppercase;
  }

  .main-nav .nav-cta {
    margin-top: 22px;
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 125px 22px 90px;
  }

  .hero-grid {
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 105px);
  }

  .hero-intro {
    margin-top: 34px;
    font-size: 18px;
  }

  .hero-poster {
    width: min(100%, 500px);
    margin-top: 35px;
  }

  .poster-card {
    min-height: 530px;
  }

  .portrait-card {
    min-height: 0;
  }

  .hero-scroll {
    display: none;
  }

  .manifesto-layout,
  .method-heading {
    grid-template-columns: 1fr;
  }

  .manifesto-content {
    padding-top: 0;
  }

  .manifesto::after {
    width: 70px;
    height: 70px;
    bottom: 30px;
  }

  .section-heading,
  .products-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading > p,
  .products-intro > p {
    grid-column: 1;
  }

  .expertise-item {
    grid-template-columns: 38px 1fr 36px;
  }

  .expertise-item p {
    grid-column: 2 / -1;
    padding-left: 88px;
  }

  .expertise-title h3 {
    font-size: 30px;
  }

  .product-card-content {
    grid-template-columns: 1fr;
  }

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

  .product-visual {
    min-height: 520px;
    border-top: 2px solid currentColor;
  }

  .method-heading {
    gap: 30px;
  }

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

  .method-steps li:nth-child(2) {
    border-right: 0;
  }

  .method-steps li:nth-child(-n + 2) {
    border-bottom: 2px solid var(--white);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy span {
    font-size: 8px;
  }

  .menu-label {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
    letter-spacing: -4px;
  }

  .hero h1 > span:nth-child(2) {
    margin-left: 8px;
  }

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

  .hero-poster {
    padding: 24px 9px;
  }

  .poster-card {
    min-height: 480px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .portrait-card {
    min-height: 0;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .portrait-caption {
    min-height: 112px;
    padding: 17px 18px 19px;
  }

  .portrait-caption strong {
    font-size: 23px;
  }

  .poster-card strong {
    font-size: 52px;
  }

  .sticker-top { right: -1px; }
  .sticker-bottom { left: -2px; }

  .section {
    padding-inline: 18px;
  }

  .display-title {
    font-size: clamp(42px, 11vw, 58px);
  }

  .section-tag {
    margin-bottom: 38px;
  }

  .manifesto-note {
    padding: 16px;
  }

  .classedigitale-callout {
    padding: 19px;
  }

  .classedigitale-link {
    width: 100%;
  }

  .section-heading h2,
  .method-heading h2 {
    font-size: 48px;
  }

  .expertise-item {
    grid-template-columns: 28px 1fr 24px;
    gap: 10px;
    padding-block: 25px;
  }

  .expertise-item:hover {
    padding-inline: 8px;
  }

  .expertise-title {
    gap: 13px;
  }

  .expertise-icon {
    width: 48px;
    height: 48px;
  }

  .expertise-icon svg {
    width: 28px;
  }

  .expertise-title h3 {
    font-size: 22px;
    letter-spacing: -1px;
  }

  .expertise-item p {
    grid-column: 2 / -1;
    padding-left: 61px;
    font-size: 13px;
  }

  .product-card {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .product-copy {
    min-height: 450px;
    padding: 45px 25px;
  }

  .product-copy h3 {
    font-size: clamp(45px, 14vw, 65px);
    letter-spacing: -3px;
  }

  .product-copy p {
    font-size: 15px;
  }

  .product-visual {
    min-height: 450px;
  }

  .phone {
    width: 220px;
    height: 420px;
  }

  .radar {
    width: 320px;
  }

  .signal-card {
    width: 140px;
  }

  .doc-sheet {
    width: 250px;
    height: 330px;
    padding: 30px 25px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps li,
  .method-steps li:nth-child(2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 2px solid var(--white);
  }

  .method-steps li:last-child {
    border-bottom: 0;
  }

  .contact h2 {
    font-size: clamp(52px, 15vw, 78px);
    letter-spacing: -5px;
  }

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

  .contact-burst {
    top: 8%;
    right: -25px;
    width: 75px;
    height: 75px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

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

  .classedigitale-link {
    animation: none;
  }
}
