@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #11131a;
  --ink-2: #20232c;
  --paper: #f5f2eb;
  --white: #ffffff;
  --muted: #62656e;
  --line: rgba(17, 19, 26, 0.13);
  --cyan: #00a9d6;
  --magenta: #e00072;
  --yellow: #ffd20a;
  --black: #11131a;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(10, 12, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "DM Sans", Arial, sans-serif;
}

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

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

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

h1,
h2,
h3,
.brand__name strong {
  font-family: "Manrope", "DM Sans", Arial, sans-serif;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.cmyk-rail {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 5px;
}

.cmyk-rail i:nth-child(1) {
  background: var(--cyan);
}

.cmyk-rail i:nth-child(2) {
  background: var(--magenta);
}

.cmyk-rail i:nth-child(3) {
  background: var(--yellow);
}

.cmyk-rail i:nth-child(4) {
  background: var(--black);
}

.topline {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 5px;
  font-size: 12px;
  letter-spacing: 0.055em;
}

.topline__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline p {
  margin: 0;
}

.topline p span {
  color: var(--yellow);
  margin: 0 8px;
}

.topline__inner > div {
  display: flex;
  gap: 25px;
}

.topline a:hover {
  color: var(--white);
}

.header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 19, 26, 0.08);
}

.header__inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

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

.brand__mark {
  position: relative;
  width: 46px;
  height: 46px;
}

.brand__mark i,
.brand__mark b {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.brand__mark .c {
  top: 0;
  left: 0;
  background: var(--cyan);
}

.brand__mark .m {
  top: 0;
  right: 0;
  background: var(--magenta);
}

.brand__mark .y {
  left: 10px;
  bottom: 0;
  background: var(--yellow);
}

.brand__mark b {
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font: 700 9px/1 "Manrope", sans-serif;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand__name small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--magenta);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.header__phone {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  line-height: 1.15;
}

.header__phone span {
  color: var(--muted);
  font-size: 11px;
}

.header__phone strong {
  margin-top: 5px;
  font: 800 19px/1 "Manrope", sans-serif;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero__photo {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0.96) 0%, rgba(10, 12, 18, 0.84) 35%, rgba(10, 12, 18, 0.28) 65%, rgba(10, 12, 18, 0.06) 100%),
    linear-gradient(0deg, rgba(10, 12, 18, 0.4), transparent 50%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) 300px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 88px;
  padding-bottom: 70px;
}

.hero__copy {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #6a6d74;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--magenta) 33% 66%, var(--yellow) 66%);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #d7eaf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions,
.location__actions,
.final__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  min-width: 238px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--magenta);
  color: white;
  box-shadow: 0 14px 34px rgba(224, 0, 114, 0.28);
}

.button--primary span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button--primary strong {
  font: 800 21px/1 "Manrope", sans-serif;
}

.button--glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero__micro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.hero__card {
  padding: 27px 28px 25px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__card > p {
  margin-bottom: 5px;
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__card > strong {
  display: block;
  margin-bottom: 15px;
  font: 800 24px/1.2 "Manrope", sans-serif;
}

.hero__card address {
  margin-bottom: 20px;
  color: var(--muted);
  font-style: normal;
}

.hero__card > div {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hero__card > div b {
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
}

.hero__card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-weight: 800;
}

.trust {
  position: relative;
  z-index: 3;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 19, 26, 0.05);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 22px;
  border-right: 1px solid var(--line);
}

.trust__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust__dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(17, 19, 26, 0.04);
}

.trust__dot--c {
  background: var(--cyan);
}

.trust__dot--m {
  background: var(--magenta);
}

.trust__dot--y {
  background: var(--yellow);
}

.trust__dot--k {
  background: var(--black);
}

.trust p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.trust strong {
  font-size: 14px;
}

.trust small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.section-head {
  max-width: 770px;
  margin-bottom: 55px;
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.section-head h2,
.process h2,
.location h2,
.faq h2,
.final h2,
.service h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-head > p:last-child,
.section-head--split > p,
.location__lead,
.faq__intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.story {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 169, 214, 0.08), transparent 26%),
    var(--paper);
}

.story__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.story__photo {
  position: relative;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(10, 12, 18, 0.76));
}

.story__photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.story__photo figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  color: white;
}

.story__photo figcaption span {
  font: 800 25px/1.2 "Manrope", sans-serif;
}

.story__photo figcaption strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story__needs article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.story__needs article:first-child {
  border-top: 1px solid var(--line);
}

.story__needs article > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story__needs h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.story__needs p {
  margin-bottom: 10px;
  color: var(--muted);
}

.story__needs small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 28px;
  color: var(--magenta);
  font-weight: 800;
}

.ink-section {
  color: white;
  background:
    radial-gradient(circle at 85% 18%, rgba(224, 0, 114, 0.2), transparent 24%),
    radial-gradient(circle at 15% 90%, rgba(0, 169, 214, 0.18), transparent 24%),
    var(--ink);
}

.ink-section .section-head > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.solutions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.solution {
  position: relative;
  min-height: 330px;
  padding: 30px 24px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.solution:not(:first-child) {
  padding-left: 24px;
}

.solution:last-child {
  border-right: 0;
}

.solution__index {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 800;
}

.solution i {
  display: block;
  width: 46px;
  height: 46px;
  margin: 48px 0 31px;
  border-radius: 50%;
  box-shadow: 18px 12px 0 rgba(255, 255, 255, 0.05);
}

.solution--cyan i {
  background: var(--cyan);
}

.solution--magenta i {
  background: var(--magenta);
}

.solution--yellow i {
  background: var(--yellow);
}

.solution--black i {
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution h3 {
  margin-bottom: 13px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.solution p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.ink-section__callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
}

.ink-section__callout p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.ink-section__callout p span {
  color: rgba(255, 255, 255, 0.56);
}

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

.brands-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 214, 0.1), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(224, 0, 114, 0.08), transparent 24%),
    #f8f6f0;
}

.brands-section::before {
  content: "HP · CANON · EPSON · BROTHER";
  position: absolute;
  top: 35px;
  right: -14px;
  color: rgba(17, 19, 26, 0.035);
  font: 800 clamp(54px, 8vw, 118px)/1 "Manrope", sans-serif;
  letter-spacing: -0.065em;
  white-space: nowrap;
  pointer-events: none;
}

.brands-section > .shell {
  position: relative;
  z-index: 1;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(17, 19, 26, 0.07);
}

.brand-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.brand-card:last-child {
  border-right: 0;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--ink);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.brand-card--hp::after {
  background: var(--cyan);
}

.brand-card--canon::after {
  background: var(--magenta);
}

.brand-card--epson::after {
  background: #5967e8;
}

.brand-card--brother::after {
  background: var(--yellow);
}

.brand-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
}

.brand-card__mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: 0 12px 25px rgba(17, 19, 26, 0.08);
  font: 800 18px/1 "Manrope", sans-serif;
}

.brand-card--hp .brand-card__mark {
  color: #0086c9;
}

.brand-card--canon .brand-card__mark {
  color: #d00055;
}

.brand-card--epson .brand-card__mark {
  color: #3449be;
}

.brand-card__top small {
  color: #9a9ca1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.brand-card > strong {
  min-height: 38px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.brand-card > p {
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.brand-card__phrase {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.brands-guide {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.25fr;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: white;
}

.brands-guide > div,
.brands-guide > a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.brands-guide > a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  border-right: 0;
  background: var(--ink);
  color: white;
  font-size: 12px;
}

.brands-guide > a strong {
  color: var(--yellow);
  font-size: 14px;
}

.brands-guide__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper);
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
}

.brands-guide p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.brands-guide p strong {
  font-size: 14px;
}

.brands-guide p small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.process {
  background: white;
}

.process__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 85px;
  align-items: center;
}

.process__copy h2 {
  margin-bottom: 42px;
}

.process ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.process li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.process li strong {
  font: 800 17px/1.3 "Manrope", sans-serif;
}

.process li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process__photo {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.process__photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.process__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, 80%);
  padding: 26px 28px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
}

.process__photo figcaption strong {
  font: 800 20px/1.2 "Manrope", sans-serif;
}

.process__photo figcaption span {
  margin-top: 5px;
  font-size: 13px;
}

.service {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--ink);
}

.service__photo {
  min-height: 610px;
  overflow: hidden;
}

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

.service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(40px, 7vw, 120px);
  color: white;
}

.service__copy h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 3.7vw, 54px);
}

.service__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.service__copy > a {
  width: fit-content;
  display: flex;
  gap: 35px;
  margin-top: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--cyan);
  font-weight: 800;
}

.location {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 10, 0.22), transparent 23%),
    #efebe1;
}

.location::after {
  content: "POZNAŃ";
  position: absolute;
  right: -0.05em;
  bottom: -0.24em;
  color: rgba(17, 19, 26, 0.035);
  font: 800 clamp(140px, 22vw, 330px)/1 "Manrope", sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.location__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.location__lead {
  margin-top: 26px;
}

.location__address {
  display: flex;
  flex-direction: column;
  margin: 44px 0 30px;
  padding-left: 22px;
  border-left: 5px solid var(--magenta);
}

.location__address span {
  color: var(--muted);
  font-size: 12px;
}

.location__address strong {
  margin: 4px 0;
  font: 800 27px/1.2 "Manrope", sans-serif;
}

.location__address p {
  margin: 0;
  color: var(--muted);
}

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

.button--outline {
  border-color: var(--ink);
}

.routes {
  background: rgba(255, 255, 255, 0.8);
  padding: 34px 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.routes > p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.routes article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.routes article > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.routes article div {
  display: flex;
  flex-direction: column;
}

.routes article small {
  margin-top: 3px;
  color: var(--muted);
}

.routes__nearby {
  padding-top: 22px;
}

.routes__nearby p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.ecosystem {
  padding: 105px 0;
  background: white;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.ecosystem__grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.ecosystem__grid a:last-child {
  border-right: 0;
}

.ecosystem__grid a:hover {
  background: var(--ink);
  color: white;
}

.ecosystem__grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem__grid strong {
  margin-top: 24px;
  font: 800 20px/1.35 "Manrope", sans-serif;
}

.ecosystem__grid span {
  margin-top: auto;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
}

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

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 40px;
}

.faq__intro h2 {
  margin-bottom: 25px;
}

.faq__intro a {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--magenta);
  font-weight: 800;
}

.faq__list details {
  border-top: 1px solid var(--line);
}

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

.faq__list summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font: 700 17px/1.35 "Manrope", sans-serif;
}

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

.faq__list summary > span {
  color: var(--magenta);
  font: 800 10px/1 "DM Sans", sans-serif;
}

.faq__list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq__list summary i::before,
.faq__list summary i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ink);
}

.faq__list summary i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq__list details[open] summary i::after {
  transform: rotate(0);
}

.faq__list details > p {
  margin: -5px 38px 28px 58px;
  color: var(--muted);
}

.final {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(0, 169, 214, 0.13), transparent 34%),
    linear-gradient(300deg, rgba(224, 0, 114, 0.15), transparent 35%),
    var(--ink);
  color: white;
}

.final__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.final h2 {
  margin-bottom: 20px;
}

.final__inner > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.final__actions {
  justify-content: flex-end;
}

.footer {
  padding: 65px 0 25px;
  background: #0b0c10;
  color: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 60px;
}

.brand--footer {
  color: white;
}

.brand--footer .brand__name small {
  color: rgba(255, 255, 255, 0.45);
}

.footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__grid > div:first-child p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer__grid > div > strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__grid > div > a,
.footer__grid > div > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer__grid a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.mobile-contact {
  display: none;
}

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

  .hero__inner {
    grid-template-columns: minmax(0, 650px) 260px;
  }

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

  .trust__grid > div {
    border-bottom: 1px solid var(--line);
  }

  .story__layout,
  .process__layout,
  .location__layout,
  .faq__layout {
    gap: 55px;
  }

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

  .solution:nth-child(2),
  .ecosystem__grid a:nth-child(2),
  .brand-card:nth-child(2) {
    border-right: 0;
  }

  .solution:nth-child(-n + 2),
  .ecosystem__grid a:nth-child(-n + 2),
  .brand-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ecosystem__grid a:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .brand-card:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .brand-card:nth-child(4) {
    border-right: 0;
  }

  .brands-guide {
    grid-template-columns: 1fr 1fr;
  }

  .brands-guide > div:nth-child(2) {
    border-right: 0;
  }

  .brands-guide > a {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .topline__inner > div a:last-child,
  .header__phone span {
    display: none;
  }

  .header__phone {
    padding-left: 18px;
  }

  .hero {
    min-height: 770px;
  }

  .hero__photo {
    object-position: 64% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(10, 12, 18, 0.93) 0%, rgba(10, 12, 18, 0.75) 60%, rgba(10, 12, 18, 0.28));
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero__card {
    display: none;
  }

  .hero__copy {
    max-width: 620px;
  }

  .section-head--split,
  .story__layout,
  .process__layout,
  .location__layout,
  .faq__layout,
  .final__inner {
    grid-template-columns: 1fr;
  }

  .section-head--split {
    gap: 24px;
  }

  .story__photo,
  .process__photo {
    min-height: 530px;
  }

  .process__photo {
    order: -1;
  }

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

  .service__photo {
    min-height: 440px;
  }

  .service__copy {
    padding: 70px max(24px, calc((100% - 680px) / 2));
  }

  .faq__intro {
    position: static;
  }

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

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 64px;
  }

  .topline {
    display: none;
  }

  .header__inner {
    height: 75px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__mark i,
  .brand__mark b {
    width: 22px;
    height: 22px;
  }

  .brand__name strong {
    font-size: 17px;
  }

  .brand__name small {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .hero {
    min-height: 735px;
  }

  .hero__photo {
    object-position: 69% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(10, 12, 18, 0.97) 0%, rgba(10, 12, 18, 0.72) 66%, rgba(10, 12, 18, 0.22) 100%),
      linear-gradient(90deg, rgba(10, 12, 18, 0.6), rgba(10, 12, 18, 0.12));
  }

  .hero__inner {
    align-items: end;
    padding-bottom: 38px;
  }

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

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions,
  .location__actions,
  .final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button--primary {
    align-items: center;
  }

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

  .trust__grid > div {
    min-height: 82px;
  }

  .section-head h2,
  .process h2,
  .location h2,
  .faq h2,
  .final h2 {
    font-size: 37px;
  }

  .story__photo,
  .process__photo {
    min-height: 450px;
  }

  .story__layout {
    gap: 42px;
  }

  .solutions,
  .ecosystem__grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .solution,
  .solution:not(:first-child) {
    min-height: 250px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .solution i {
    margin: 30px 0 20px;
  }

  .ink-section__callout {
    align-items: stretch;
    flex-direction: column;
  }

  .service__photo {
    min-height: 360px;
  }

  .service__copy {
    padding: 60px 20px;
  }

  .routes {
    padding: 27px 22px;
  }

  .ecosystem__grid a {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .brand-card,
  .brand-card:nth-child(2),
  .brand-card:nth-child(4) {
    min-height: 365px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-card:last-child {
    border-bottom: 0;
  }

  .brands-guide {
    grid-template-columns: 1fr;
  }

  .brands-guide > div,
  .brands-guide > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brands-guide > a {
    grid-column: auto;
  }

  .faq__list summary {
    grid-template-columns: 30px 1fr 20px;
    font-size: 15px;
  }

  .faq__list details > p {
    margin-left: 44px;
  }

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

  .footer__bottom {
    gap: 18px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 80;
    inset: auto 0 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    background: white;
    box-shadow: 0 -10px 25px rgba(17, 19, 26, 0.15);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }

  .mobile-contact a:last-child {
    flex-direction: column;
    background: var(--magenta);
    color: white;
    line-height: 1.15;
  }

  .mobile-contact a:last-child strong {
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
