@font-face {
  font-family: "Fixel Display";
  src: url("fonts/FixelDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Display";
  src: url("fonts/FixelDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Text";
  src: url("fonts/FixelText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Text";
  src: url("fonts/FixelText-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Text";
  src: url("fonts/FixelText-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Text";
  src: url("fonts/FixelText-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel Text";
  src: url("fonts/FixelText-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f0ea;
  --bg-warm: #f8f4ef;
  --paper: #fbf8f4;
  --surface: rgba(255, 251, 246, 0.76);
  --surface-strong: rgba(242, 234, 239, 0.92);
  --ink: #1f1a21;
  --muted: #655d66;
  --accent: #46234c;
  --accent-deep: #3a1b40;
  --accent-soft: #d8ced8;
  --tech-surface: #d6e0f4;
  --tech-surface-deep: #c3d1ec;
  --tech-line: rgba(73, 98, 138, 0.18);
  --tech-ink: #22324a;
  --line: rgba(70, 35, 76, 0.12);
  --line-strong: rgba(70, 35, 76, 0.2);
  --shadow-soft: 0 22px 48px rgba(33, 20, 36, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fixel Display", sans-serif;
  --font-text: "Fixel Text", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(70, 35, 76, 0.05), transparent 22%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 40rem), rgba(70, 35, 76, 0.025) calc(50% - 40rem), rgba(70, 35, 76, 0.025) calc(50% - 39.95rem), transparent calc(50% - 39.95rem), transparent 100%),
    linear-gradient(90deg, transparent 0, transparent calc(50% + 40rem), rgba(70, 35, 76, 0.025) calc(50% + 40rem), rgba(70, 35, 76, 0.025) calc(50% + 40.05rem), transparent calc(50% + 40.05rem), transparent 100%);
  opacity: 0.7;
}

body::after {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(70, 35, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 35, 76, 0.026) 1px, transparent 1px);
  background-size: 100% 9rem, 9rem 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
}

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

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

h1,
h2,
p {
  margin: 0;
}

::selection {
  background: rgba(70, 35, 76, 0.14);
}

.page-shell {
  overflow: clip;
}

.page {
  width: min(100% - clamp(1.75rem, 4vw, 4rem), 80rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 2.8vw, 2rem) 0 clamp(4.5rem, 8vw, 7rem);
  display: grid;
  gap: clamp(2.5rem, 4vw, 3.75rem);
}

.hero {
  position: relative;
  padding: clamp(0.95rem, 1.9vw, 1.4rem) clamp(2.1rem, 3.8vw, 3.25rem) clamp(2.5rem, 4.2vw, 3rem);
  border: 1px solid rgba(70, 35, 76, 0.1);
  background:
    radial-gradient(circle at 78% 22%, rgba(70, 35, 76, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 240, 244, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  left: clamp(2rem, 3.6vw, 3rem);
  right: clamp(2rem, 3.6vw, 3rem);
  top: 0.64rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0), rgba(70, 35, 76, 0.18) 24%, rgba(70, 35, 76, 0.08) 76%, rgba(70, 35, 76, 0));
}

.hero::after {
  inset: 1rem;
  border: 1px solid rgba(70, 35, 76, 0.05);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.84fr);
  grid-template-rows: 1fr auto;
  gap: clamp(1rem, 2vw, 1.6rem) clamp(2.2rem, 4.2vw, 3.4rem);
  min-height: clamp(24rem, 33vw, 28rem);
}

.hero-copy {
  position: relative;
  display: grid;
  align-content: start;
  align-self: start;
  min-width: 0;
  padding-top: 0;
  animation: rise 0.8s var(--ease) both;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 19rem);
  margin-bottom: clamp(0.2rem, 0.45vw, 0.35rem);
}

.hero-brand::before {
  content: "";
  width: 1px;
  height: 1.7rem;
  background: linear-gradient(180deg, rgba(70, 35, 76, 0), rgba(70, 35, 76, 0.28) 34%, rgba(70, 35, 76, 0.08));
}

.hero-brand::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0.18), rgba(70, 35, 76, 0.08) 56%, rgba(70, 35, 76, 0));
}

.brand-lockup {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.55vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--accent);
  opacity: 0.9;
}

.hero-title {
  display: grid;
  gap: 0.04em;
  max-width: 9.95ch;
  margin-top: clamp(2.1rem, 4.2vw, 3.1rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 6.35rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-line-accent {
  color: var(--accent);
}

.hero-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(13rem, 15.4rem) minmax(16rem, 21rem) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.7rem);
  align-items: start;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(70, 35, 76, 0.14);
  position: relative;
}

.hero-meta::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - clamp(15rem, 22vw, 17rem));
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0.06), rgba(70, 35, 76, 0));
}

.hero-lead {
  display: grid;
  gap: 0.16rem;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 0.88vw, 0.9rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(70, 35, 76, 0.78);
  max-width: 12.5rem;
  padding-top: 0.1rem;
}

.hero-lead span {
  position: relative;
  display: block;
}

.hero-lead span:not(:last-child)::after {
  content: none;
}

.hero-text {
  max-width: 19rem;
  font-size: clamp(0.97rem, 1.02vw, 1.06rem);
  line-height: 1.66;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-figure {
  position: relative;
  align-self: end;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-top: clamp(2.2rem, 4.5vw, 3.2rem);
  padding-left: clamp(1.4rem, 2.8vw, 2.5rem);
  animation: settle 1s var(--ease) both;
}

.hero-figure::before,
.hero-figure::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-figure::before {
  top: 1.7rem;
  left: clamp(1.5rem, 3vw, 2.5rem);
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0.14), rgba(70, 35, 76, 0));
}

.hero-figure::after {
  bottom: clamp(1.15rem, 2vw, 1.45rem);
  left: clamp(0.8rem, 1.8vw, 1.35rem);
  width: clamp(5rem, 10vw, 8.4rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0.14), rgba(70, 35, 76, 0));
}

.hero-figure-shell {
  position: relative;
  width: min(100%, 23.4rem);
  aspect-ratio: 1 / 1.04;
  margin-left: auto;
  display: grid;
  place-items: center;
}

.hero-figure-shell::before,
.hero-figure-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-figure-shell::before {
  inset: 0.2rem 0 0.6rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(233, 226, 234, 0.52), rgba(247, 241, 245, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 1px rgba(70, 35, 76, 0.06);
  clip-path: polygon(18% 0, 100% 0, 100% 86%, 70% 90%, 64% 100%, 0 100%, 0 20%);
}

.hero-figure-shell::after {
  inset: 1.85rem 0.9rem 1.1rem 2.1rem;
  border: 1px solid rgba(70, 35, 76, 0.05);
  clip-path: polygon(18% 0, 100% 0, 100% 86%, 70% 90%, 64% 100%, 0 100%, 0 20%);
}

.hero-figure-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 18.2rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-figure-panel::before {
  content: "";
  position: absolute;
  inset: 0.2rem 0 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  clip-path: polygon(0 22%, 82% 22%, 100% 0, 100% 100%, 18% 100%, 0 78%);
  opacity: 0.22;
}

.hero-symbol {
  position: relative;
  z-index: 1;
  width: clamp(11.4rem, 63%, 15.1rem);
}

.section {
  position: relative;
}

.section::before {
  content: none;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(15rem, 16rem) minmax(0, 1fr);
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: start;
}

.section-copy {
  position: relative;
  padding-top: 0.5rem;
}

.section-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 1px;
  background: rgba(70, 35, 76, 0.22);
}

.section-title {
  max-width: none;
  font-family: var(--font-text);
  font-size: clamp(2.65rem, 3.15vw, 3.4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.section-title span {
  display: block;
}

.section-tasks .section-split {
  position: relative;
  grid-template-columns: minmax(11.75rem, 13rem) minmax(0, 1fr);
  gap: clamp(3rem, 4.8vw, 4.6rem);
  align-items: stretch;
  padding: clamp(2rem, 3.6vw, 3rem) clamp(2rem, 3.6vw, 3rem) clamp(2.25rem, 4vw, 3.1rem);
  border: 1px solid rgba(70, 35, 76, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 239, 243, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
}

.section-tasks .section-split::before,
.section-tasks .section-split::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-tasks .section-split::before {
  left: clamp(2rem, 3.6vw, 3rem);
  right: clamp(2rem, 3.6vw, 3rem);
  top: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0), rgba(70, 35, 76, 0.18) 24%, rgba(70, 35, 76, 0.08) 76%, rgba(70, 35, 76, 0));
}

.section-tasks .section-split::after {
  inset: 1rem;
  border: 1px solid rgba(70, 35, 76, 0.05);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
}

.section-tasks .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding-right: 0.6rem;
}

.section-tasks .section-copy::after {
  content: "";
  position: absolute;
  top: clamp(8.4rem, 12vw, 9.6rem);
  bottom: 0.1rem;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(70, 35, 76, 0.16), rgba(70, 35, 76, 0.08) 70%, rgba(70, 35, 76, 0));
}

.tasks-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.85rem;
  width: 100%;
  padding-top: 0.55rem;
  isolation: isolate;
}

.tasks-board::before,
.tasks-board::after {
  content: none;
}

.task-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.55rem 0 1.55rem;
  border-top: 1px solid rgba(70, 35, 76, 0.14);
}

.task-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 98, 138, 0.14);
  clip-path: polygon(0 0.8rem, 0.8rem 0, 100% 0, 100% calc(100% - 0.8rem), calc(100% - 0.8rem) 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(221, 230, 248, 0.98), rgba(197, 210, 238, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34) inset, 0 18px 34px rgba(36, 50, 73, 0.06);
}

.task-icon::before,
.task-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.task-icon::before {
  inset: 0.45rem;
  border: 1px solid rgba(73, 98, 138, 0.08);
  clip-path: polygon(0 0.55rem, 0.55rem 0, 100% 0, 100% calc(100% - 0.55rem), calc(100% - 0.55rem) 100%, 0 100%);
}

.task-icon::after {
  top: 0.7rem;
  left: 0.7rem;
  width: 1.1rem;
  height: 1px;
  background: rgba(73, 98, 138, 0.24);
}

.task-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--tech-ink);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.task-copy {
  display: grid;
  gap: 0.38rem;
  align-content: start;
  padding-top: 0.1rem;
}

.task-name {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(1.46rem, 1.52vw, 1.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.task-description {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(1rem, 1.02vw, 1.08rem);
  line-height: 1.52;
  color: var(--muted);
  text-wrap: pretty;
}

.task-item:nth-child(-n + 2) {
  padding-top: 0.2rem;
}

.section-results {
  margin-top: clamp(-0.25rem, -1vw, -0.5rem);
}

.results-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 16rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 4vw, 3.75rem);
  padding: clamp(2rem, 3.6vw, 3rem) clamp(2rem, 3.6vw, 3rem) clamp(2.3rem, 4vw, 3.2rem);
  border: 1px solid rgba(70, 35, 76, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 239, 243, 0.84)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
}

.results-shell::before,
.results-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.results-shell::before {
  left: clamp(2rem, 3.6vw, 3rem);
  right: clamp(2rem, 3.6vw, 3rem);
  top: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(70, 35, 76, 0), rgba(70, 35, 76, 0.18) 24%, rgba(70, 35, 76, 0.08) 76%, rgba(70, 35, 76, 0));
}

.results-shell::after {
  inset: 1rem;
  border: 1px solid rgba(70, 35, 76, 0.05);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 80% 93%, 75% 100%, 0 100%);
}

.results-intro {
  max-width: 17ch;
  margin-top: 1.4rem;
  font-size: clamp(1.08rem, 1.16vw, 1.18rem);
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.results-list {
  position: relative;
  display: grid;
  gap: 0;
  padding-top: 0.15rem;
}

.results-list::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  top: 0.25rem;
  bottom: 0.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(70, 35, 76, 0), rgba(70, 35, 76, 0.14) 14%, rgba(70, 35, 76, 0.14) 86%, rgba(70, 35, 76, 0));
}

.result-row {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1.45rem 0 1.5rem;
  border-top: 1px solid rgba(70, 35, 76, 0.14);
}

.result-row:first-child {
  padding-top: 0.3rem;
}

.result-index {
  position: relative;
  display: block;
  padding-top: 0.18rem;
  font-family: var(--font-text);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(70, 35, 76, 0.68);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.92), rgba(251, 248, 244, 0.92));
}

.result-index::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 2.05rem;
  right: 0.25rem;
  height: 1px;
  background: rgba(70, 35, 76, 0.18);
}

.result-row p {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(1.76rem, 2.32vw, 2.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.result-row:nth-child(3) p {
  max-width: 12ch;
}

@media (max-width: 64rem) {
  body::before {
    display: none;
  }

  .page {
    width: min(100% - 2.25rem, 80rem);
  }

  .hero-stage,
  .section-split,
  .results-shell {
    grid-template-columns: 1fr;
  }

  .section-tasks .section-split {
    grid-template-columns: 1fr;
  }

  .section-tasks .section-copy::after {
    display: none;
  }

  .hero-copy,
  .hero-figure,
  .section-copy {
    max-width: 42rem;
  }

  .hero-stage {
    grid-template-rows: auto auto;
    min-height: auto;
    gap: 1.55rem;
  }

  .hero-figure {
    width: min(100%, 24rem);
    padding-left: 0;
    justify-content: flex-start;
  }

  .hero-figure::before,
  .hero-figure::after {
    left: 0;
  }

  .hero-figure-shell {
    margin-left: 0;
  }

  .hero-brand {
    width: min(100%, 16rem);
    margin-bottom: 1rem;
  }

  .hero-title {
    max-width: 8.8ch;
    font-size: clamp(3.6rem, 9.1vw, 5.8rem);
  }

  .hero-meta {
    grid-template-columns: minmax(12rem, 14rem) minmax(0, 18rem) minmax(0, 1fr);
  }

  .hero-meta::after {
    left: calc(100% - 10rem);
  }

  .results-intro {
    max-width: 24rem;
  }
}

@media (max-width: 44rem) {
  body::after {
    background-size: 100% 7rem, 7rem 100%;
    opacity: 0.12;
  }

  .page {
    width: min(100% - 1.5rem, 80rem);
    gap: 3rem;
    padding-top: 1rem;
  }

  .hero {
    padding: 0.7rem 1.2rem 2.35rem;
  }

  .brand-lockup {
    font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  }

  .hero-brand {
    width: min(100%, 13.25rem);
    gap: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .hero-brand::before {
    height: 1.2rem;
  }

  .hero-title {
    max-width: 6.4ch;
    margin-top: 1rem;
    font-size: clamp(2.05rem, 8.7vw, 3.2rem);
    line-height: 0.88;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 0.95rem;
  }

  .hero-meta::after {
    display: none;
  }

  .hero-lead {
    max-width: 14rem;
    gap: 0.18rem;
    font-size: 0.78rem;
  }

  .hero-text {
    max-width: 19rem;
    font-size: 0.98rem;
  }

  .hero-figure {
    width: min(100%, 17rem);
    padding-top: 1.2rem;
  }

  .hero-figure-shell {
    width: min(100%, 16rem);
  }

  .hero-figure-panel {
    width: min(100%, 13rem);
  }

  .section::before {
    top: -0.45rem;
  }

  .section-title {
    font-family: var(--font-text);
    font-size: clamp(2.2rem, 8.7vw, 2.8rem);
  }

  .tasks-board {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    min-height: auto;
    padding: 0.6rem 0 0;
  }

  .tasks-board::before,
  .tasks-board::after,
  .results-shell,
  .results-shell::after {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 84% 96%, 80% 100%, 0 100%);
  }

  .task-item {
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1rem 0 1.05rem;
  }

  .task-item:nth-child(-n + 2) {
    padding-top: 1rem;
  }

  .task-icon {
    width: 4.4rem;
  }

  .task-icon svg {
    width: 2.65rem;
    height: 2.65rem;
  }

  .task-name {
    max-width: none;
    font-size: clamp(1.26rem, 6.2vw, 1.75rem);
  }

  .task-description {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .results-shell {
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .results-shell::before {
    left: 1.25rem;
    right: 1.25rem;
  }

  .results-intro {
    max-width: 18rem;
    margin-top: 1rem;
    font-size: 0.98rem;
  }

  .result-row {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1rem 0 1.05rem;
  }

  .result-index {
    padding-top: 0.18rem;
    font-size: 0.76rem;
  }

  .result-index::after {
    top: 0.7rem;
    left: 1.45rem;
    right: 0.15rem;
  }

  .results-list::before {
    left: 1rem;
  }

  .result-row p,
  .result-row:nth-child(3) p {
    max-width: none;
    font-size: clamp(1.28rem, 6.4vw, 1.9rem);
    line-height: 0.97;
  }
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
