

:root {
  --ink-light: #f5f1ea;      
  --ink-soft: rgba(245, 241, 234, 0.62);
  --ink-faint: rgba(245, 241, 234, 0.38);

  --paper: #f5f2ec;          
  --paper-warm: #ede8de;
  --ink-dark: #161412;       
  --ink-mute: #5b5751;
  --line: #d3cebf;

  --concrete: #0d0e10;       

  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --font-meta: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(24px, 4vw, 64px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html, body {
  background: var(--paper);
  color: var(--ink-dark);
  font-family: var(--font-meta);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

html { scroll-behavior: smooth; }



html {
  -webkit-tap-highlight-color: transparent;
}


img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

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

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}


.eyebrow {
  font-family: var(--font-meta);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 500;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink-dark);
  max-width: 24ch;
  text-wrap: balance;
  margin-top: 22px;
}
.h-display em {
  font-style: italic;
  font-weight: 400;
}



.pinned-stack {
  position: relative;
  
}



.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  background: var(--concrete);
  color: var(--ink-light);
  overflow: hidden;
  z-index: 1;
}


.stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.stage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(0.15) saturate(0.7) contrast(1.05) brightness(0.85);
}

.stage__img--sharp {
  z-index: 1;
}

.stage__img--blur {
  z-index: 2;
  filter: grayscale(0.15) saturate(0.7) contrast(1.05) brightness(0.78) blur(28px);
  transform: scale(1.06);    
  
  -webkit-mask-image: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.85) 78%,
    rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.85) 78%,
    rgba(0,0,0,1) 100%);
}

.stage__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  
  background:
    linear-gradient(180deg,
      rgba(13,14,16,0.45) 0%,
      rgba(13,14,16,0.10) 22%,
      rgba(13,14,16,0.0) 50%,
      rgba(13,14,16,0.28) 100%),
    linear-gradient(90deg,
      rgba(13,14,16,0.28) 0%,
      rgba(13,14,16,0) 30%,
      rgba(13,14,16,0) 70%,
      rgba(13,14,16,0.28) 100%);
}

.stage__grain {
  position: absolute;
  inset: -50%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}



.canvas {
  position: relative;
  z-index: 5;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  padding: clamp(20px, 3.2vh, 40px) var(--gutter) clamp(80px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "tl tr"
    "claim claim"
    "signoff backed";
  gap: clamp(20px, 3.5vh, 40px);
}



.wordmark {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink-light);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.wordmark--tl {
  grid-area: tl;
  justify-self: start;
  align-self: start;
  
  display: inline-flex;
  align-items: baseline;
}
.wordmark--tr {
  grid-area: tr;
  justify-self: end;
  align-self: start;
  
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
}


.wordmark__serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
}
.wordmark__sans {
  font-family: var(--font-meta);
  font-weight: 500;
  font-size: 1em;            
  letter-spacing: 0.01em;
  color: var(--ink-light);
}


.claim {
  grid-area: claim;
  align-self: end;
  justify-self: start;
  margin: 0 0 clamp(8px, 2.5vh, 24px);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink-light);
  text-wrap: balance;
  font-size: clamp(72px, 15vw, 232px);
  display: flex;
  flex-direction: column;
  max-width: min(100%, 1200px);
}
.claim__line { display: block; }
.claim__line--1 { font-weight: 300; }
.claim__line--2 {
  margin-top: -0.06em;
  padding-left: 0.45em;
}
.claim__line--2 em {
  font-style: italic;
  font-weight: 400;
}


.signoff {
  grid-area: signoff;
  align-self: end;
  justify-self: start;
  max-width: 38ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signoff__rule {
  width: 48px;
  height: 1px;
  background: var(--ink-soft);
}
.signoff__text {
  
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
}


.backed {
  grid-area: backed;
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px;
  opacity: 0.78;
  transition: opacity 0.4s var(--ease);
}
.backed:hover { opacity: 1; }


.backed__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  white-space: nowrap;
}


.backed__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.backed__globe {
  width: 26px;
  height: 26px;
  display: block;
  
}

.backed__text {
  height: 26px;
  width: auto;
  display: block;
  
}


.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: block;
  width: 1px;
  height: 56px;
  cursor: pointer;
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--ink-soft);
  transform-origin: top;
  animation: scrollPulse 2.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50%      { transform: scaleY(1);    opacity: 1; }
}



.section {
  position: relative;
  padding: clamp(120px, 16vh, 200px) 0;
  background: var(--paper);
}


.section + .section {
  border-top: 1px solid rgba(22, 20, 18, 0.06);
}



.sections {
  position: relative;
  z-index: 2;          
  background: var(--paper);
}


.section--intro {
  position: relative;
  
  min-height: 140vh;
  display: flex;
  align-items: center;
  padding: clamp(160px, 22vh, 240px) 0;
  
  background: var(--paper-warm);
}


.section--process {
  min-height: 140vh;
  display: flex;
  align-items: center;
  padding: clamp(160px, 22vh, 240px) 0;
}


.section--assistant,
.section--people {
  min-height: 140vh;
  display: flex;
  align-items: center;
  padding: clamp(160px, 22vh, 240px) 0;
}


.section--assistant {
  background: var(--paper-warm);
}




.progressive-blur {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12vh;                                
  
  transform: translateY(calc(-100% + 8px));
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}



.progressive-blur__layer {
  position: absolute;
  inset: 0;
}


.progressive-blur__layer:nth-child(1) {
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%, #000 14%, #000 28%, transparent 42%);
  mask-image: linear-gradient(to bottom,
    transparent 0%, #000 14%, #000 28%, transparent 42%);
}
.progressive-blur__layer:nth-child(2) {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 14%, #000 28%, #000 42%, transparent 56%);
  mask-image: linear-gradient(to bottom,
    transparent 14%, #000 28%, #000 42%, transparent 56%);
}
.progressive-blur__layer:nth-child(3) {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 28%, #000 42%, #000 56%, transparent 70%);
  mask-image: linear-gradient(to bottom,
    transparent 28%, #000 42%, #000 56%, transparent 70%);
}
.progressive-blur__layer:nth-child(4) {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 42%, #000 56%, #000 70%, transparent 84%);
  mask-image: linear-gradient(to bottom,
    transparent 42%, #000 56%, #000 70%, transparent 84%);
}
.progressive-blur__layer:nth-child(5) {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 56%, #000 70%, #000 84%, transparent 95%);
  mask-image: linear-gradient(to bottom,
    transparent 56%, #000 70%, #000 84%, transparent 95%);
}
.progressive-blur__layer:nth-child(6) {
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 70%, #000 84%, #000 100%);
  mask-image: linear-gradient(to bottom,
    transparent 70%, #000 84%, #000 100%);
}
.progressive-blur__layer:nth-child(7) {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 84%, #000 100%);
  mask-image: linear-gradient(to bottom,
    transparent 84%, #000 100%);
}


.progressive-blur__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 70%,
    rgba(237, 232, 222, 0.35) 90%,
    var(--paper-warm) 100%);
}


.canvas { z-index: 10; }
.scroll-cue { z-index: 11; }
.backed { position: relative; z-index: 12; }
.signoff { position: relative; z-index: 12; }


@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .progressive-blur__layer { display: none; }
  .progressive-blur__gradient {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(13, 14, 16, 0.7) 60%,
      var(--paper) 100%
    );
  }
  .section--assistant .progressive-blur__gradient {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(13, 14, 16, 0.7) 60%,
      var(--paper-warm) 100%
    );
  }
}


@media (prefers-reduced-transparency: reduce) {
  .progressive-blur__layer { display: none; }
  .progressive-blur__gradient {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(13, 14, 16, 0.7) 60%,
      var(--paper) 100%
    );
  }
  .section--assistant .progressive-blur__gradient {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(13, 14, 16, 0.7) 60%,
      var(--paper-warm) 100%
    );
  }
}




.intro {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink-dark);
  max-width: 28ch;
  text-wrap: balance;
  margin-top: 28px;
}



.steps {
  list-style: none;
  margin-top: clamp(56px, 8vh, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  counter-reset: step;
}

.step {
  border-top: 1px solid var(--ink-dark);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  text-transform: lowercase;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.018em;
  color: var(--ink-dark);
}

.step__body {
  font-family: var(--font-meta);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 38ch;
  letter-spacing: 0.005em;
}



.section--principles {
  background: var(--paper-warm);
}

.principles {
  margin-top: clamp(56px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vh, 80px);
}

.principle {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--ink-dark);
}

.principle__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink-dark);
}

.principle__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-dark);
  max-width: 16ch;
  text-wrap: balance;
}
.principle__title em {
  font-style: italic;
  font-weight: 400;
}


.principle__photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}


.principle__role {
  margin-top: 16px;
  font-family: var(--font-meta);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.principle__body {
  margin-top: 22px;
  font-family: var(--font-meta);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 56ch;
  letter-spacing: 0.005em;
}




.people-grid {
  list-style: none;
  margin-top: clamp(48px, 7vh, 88px);
  display: grid;
  
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 52px);
}

.person {
  border-top: 1px solid var(--ink-dark);
  padding-top: 24px;
}

.person__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink-dark);
}

.person__role {
  margin-top: 10px;
  font-family: var(--font-meta);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.person__body {
  margin-top: 18px;
  font-family: var(--font-meta);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--ink-mute);
  max-width: 46ch;
}



.linkedin {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-meta);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-dark);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.3s var(--ease);
}

.linkedin:hover {
  opacity: 0.6;
}

.linkedin:focus-visible {
  outline: 1px solid var(--ink-dark);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .linkedin {
    transition: none;
  }
}



.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-family: var(--font-meta);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}




.section--reach {
  background: var(--concrete);
  color: var(--ink-light);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(96px, 14vh, 160px);
  padding-bottom: clamp(96px, 14vh, 160px);
}

.section--reach .eyebrow { color: var(--ink-faint); }

.section--reach .h-display {
  color: var(--ink-light);
  max-width: 22ch;
}
.section--reach .h-display em { color: var(--ink-light); }


.channels {
  list-style: none;
  margin-top: clamp(56px, 8vh, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
  border-bottom: 1px solid rgba(245, 241, 234, 0.18);
}

.channel {
  border-right: 1px solid rgba(245, 241, 234, 0.18);
}
.channel:last-child {
  border-right: none;
}

.channel__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vh, 88px) 0;
  min-height: 140px;
  transition: background 0.4s var(--ease);
}
.channel__link:hover {
  background: rgba(245, 241, 234, 0.04);
}

.channel__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.channel__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.channel__link:hover .channel__icon {
  color: var(--ink-light);
  transform: translateY(-2px);
}


.portfolio-link-wrap {
  margin-top: clamp(72px, 12vh, 128px);
  text-align: center;
}
.portfolio-link {
  font-family: var(--font-meta);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  transition: opacity 0.3s var(--ease);
}
.portfolio-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink-light);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}
.portfolio-link:hover {
  opacity: 0.85;
}
.portfolio-link:hover::after {
  opacity: 1;
}



.footer {
  background: var(--concrete);
  color: var(--ink-light);
  border-top: 1px solid rgba(245, 241, 234, 0.10);
  padding: 48px 0 56px;       
}


/* Three columns: copyright and "ask an AI" on the left, legal links in the
   middle, the OFF mark on the right. */
.footer__wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px 40px;
}

.footer__col--left {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}


.footer__meta {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ink-light);
}


.footer__legal {
  grid-column: 2;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__legal a,
.footer__legal [aria-current="page"] {
  font-family: var(--font-meta);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

/* Tekst jest juz najjasniejszy w palecie, wiec hover przygasza zamiast rozjasniac. */
.footer__legal a:hover { opacity: 0.7; }


/* Pointer for AI assistants. Stays in the markup and in the layout -- opacity
   rather than display:none -- but invisible and inert for readers. */
.footer__legal-ai {
  opacity: 0;
  pointer-events: none;
}


.footer__legal [aria-current="page"] {
  opacity: 0.62;
  cursor: default;
}

.footer__legal-sep {
  display: none;
}


.footer__backed {
  grid-column: 3;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  opacity: 0.95;
  transition: opacity 0.3s var(--ease);
}
.footer__backed:hover { opacity: 1; }

.footer__backed-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-light);
  /* Keeps "backed by" on one line where the three columns get tight. */
  white-space: nowrap;
}

.footer__backed-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__backed-globe {
  width: 26px;
  height: 26px;
  display: block;
}

.footer__backed-text {
  height: 26px;
  width: auto;
  display: block;
}


.footer__ask {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer__ask-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-light);
}

.footer__ask-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  /* Cancels the tap-target padding below so the first mark lines up with the
     left edge of the label. */
  margin-left: -10px;
}

.footer__ask-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 24px mark + 2x10px = 44px touch target. */
  padding: 10px;
  color: var(--ink-light);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer__ask-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.footer__ask-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer__ask-btn:focus-visible {
  outline: 1px solid var(--ink-soft);
  outline-offset: 2px;
}


@media (max-width: 720px) {
  
  /* Three columns do not fit on a phone: the left column and the OFF mark
     share the first row, the legal links drop below them. */
  .footer__wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 16px;
    text-align: left;
  }
  /* Stretch so the content can wrap instead of pushing the OFF mark
     off the right edge. */
  .footer__col--left {
    grid-row: 1;
    justify-self: stretch;
    align-items: stretch;
    min-width: 0;
    gap: 16px;
  }
  .footer__meta {
    font-size: 12px;
  }
  .footer__backed {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 0;
  }
  .footer__backed-label { display: none; }
  .footer__backed-logo { gap: 8px; }
  .footer__backed-globe { width: 16px; height: 16px; }
  .footer__backed-text { height: 16px; }

  .footer__legal {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .footer__ask {
    gap: 14px;
  }
  .footer__ask-label { font-size: 13px; }
  /* Cancels the tap-target padding so the first mark lines up with the
     left edge of the label. */
  .footer__ask-list { gap: 6px; margin-left: -8px; }
  .footer__ask-btn { padding: 8px; }
  .footer__ask-icon { width: 21px; height: 21px; }
}



@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.seal, .claim, .signoff, .backed { animation: fadeUp 1.4s var(--ease) both; }
.seal--tl { animation-delay: 0.10s; }
.seal--tr { animation-delay: 0.18s; }
.claim    { animation: fadeUp 1.8s var(--ease) 0.30s both; }
.signoff  { animation-delay: 1.20s; animation-duration: 1.6s; }
.backed   { animation-delay: 1.40s; }
.scroll-cue { animation: fade 1.4s var(--ease) 1.6s both; }

.stage__img--sharp { animation: fade 1.6s var(--ease) both; }
.stage__img--blur  { animation: fade 1.6s var(--ease) 0.1s both; }
.stage__veil       { animation: fade 1.6s var(--ease) 0.05s both; }

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



@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step__body { max-width: none; }

  .principle {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .principle__num {
    font-size: clamp(56px, 18vw, 96px);
  }
  .principle__body { max-width: none; }

  
  .person__body { max-width: none; }

  .section { padding: clamp(72px, 10vh, 120px) 0; }
}

@media (max-width: 720px) {
  
  .canvas {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas:
      "tl  tr"
      "claim claim"
      "signoff signoff"
      "backed backed";
    padding: 20px 22px 72px;
    gap: 24px;
  }

  
  .wordmark {
    font-size: 15px;
  }
  .wordmark--tr {
    font-size: 13px;
  }

  .claim {
    font-size: clamp(56px, 18vw, 96px);
    line-height: 0.95;
    margin-top: clamp(40px, 12vh, 100px);
    margin-bottom: 8px;
  }
  .claim__line--2 { padding-left: 0.35em; }

  .signoff {
    max-width: none;
    grid-area: signoff;
  }
  .signoff__text {
    font-size: 14.5px;
    line-height: 1.45;
  }
  .signoff__rule { width: 36px; }

  
  .backed {
    grid-area: backed;
    justify-self: center;
    margin-top: 4px;
    opacity: 0.85;
    position: relative;
    z-index: 12;
  }
  .backed__logo { height: 24px; }

  
  .scroll-cue { bottom: 16px; height: 36px; }

  
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  
  .section { padding: clamp(96px, 14vh, 160px) 0; }
  .section--intro {
    min-height: 130vh;
    padding: clamp(120px, 18vh, 160px) 0;
  }
  .section--process {
    min-height: 130vh;
    padding: clamp(120px, 18vh, 160px) 0;
  }
  .section--assistant,
  .section--people {
    min-height: 130vh;
    padding: clamp(120px, 18vh, 160px) 0;
  }
  .intro {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.28;
    margin-top: 20px;
  }

  .h-display {
    font-size: clamp(28px, 7.5vw, 38px);
    margin-top: 20px;
  }

  
  .step__num { font-size: 16px; }
  .step__title { font-size: 22px; }
  .step__body { font-size: 14.5px; }

  
  .principle {
    padding-top: 22px;
  }
  .principle__num {
    font-size: clamp(64px, 22vw, 96px);
    line-height: 0.85;
    margin-bottom: 4px;
  }
  .principle__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.05;
  }
  .principle__body {
    font-size: 14.5px;
    margin-top: 16px;
  }

  
  .channels {
    margin-top: clamp(40px, 6vh, 64px);
    grid-template-columns: repeat(4, 1fr);
  }
  .channel__link {
    padding: 28px 0;
    min-height: 88px;
  }
  .channel__icon { width: 24px; height: 24px; }

  
  .footer { padding: 36px 0 44px; }
}

@media (max-width: 400px) {
  .canvas { padding: 18px 18px 64px; gap: 20px; }
  .claim { font-size: 52px; }
  .intro { font-size: 22px; }
  .h-display { font-size: 26px; }
  .channel__link { padding: 24px 0; }
  .channel__icon { width: 22px; height: 22px; }
}


@media (max-width: 360px) {
  .claim { font-size: 48px; }
  .seal--tr .seal__line { font-size: 9px; letter-spacing: 0.18em; }
}
