:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #666666;
  --soft: #f8f8f8;
  --green: #05c878;
  --blue: #2563eb;
  --yellow: #f6b900;
  --pink: #ff72ae;
  --line: #eeeeee;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100vw - 32px));
  min-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: hidden;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.brand-mark {
  width: 22px;
  height: 22px;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 999px 999px 999px 2px;
}

.brand-mark::before {
  width: 13px;
  height: 9px;
  left: 2px;
  top: 4px;
  transform: rotate(30deg);
}

.brand-mark::after {
  width: 9px;
  height: 13px;
  right: 2px;
  bottom: 3px;
  transform: rotate(-35deg);
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}

.nav a {
  padding: 4px 0;
}

.nav a.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}

.page {
  padding: 42px 56px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 530px;
}

.hero-copy h1 {
  max-width: 490px;
  margin: 0;
  font-size: 54px;
  line-height: 1.18;
  font-weight: 900;
}

.accent {
  color: var(--green);
}

.lead {
  max-width: 470px;
  margin: 28px 0 0;
  color: #555555;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background: #111111;
}

.btn.secondary {
  color: #111111;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.orbit {
  position: absolute;
  inset: 78px auto auto 20px;
  width: 310px;
  height: 140px;
  border: 2px solid rgba(5, 200, 120, 0.28);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.tag {
  position: absolute;
  z-index: 4;
  display: none;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.tag.design {
  top: 32px;
  left: 150px;
  background: #1463ff;
}

.tag.product {
  top: 190px;
  left: 112px;
  background: var(--green);
}

.tag.experience {
  top: 316px;
  left: 22px;
  min-height: 24px;
  background: #111111;
  font-size: 10px;
}

.card-stack {
  position: absolute;
  top: -77px;
  right: auto;
  left: 63px;
  width: 474px;
  height: 452px;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f3f3;
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.16);
  transform-origin: center bottom;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card.main {
  left: 0;
  top: 0;
  z-index: 6;
  width: 220px;
  height: 430px;
  transform: rotate(-2deg);
  box-shadow: 0 36px 62px rgba(0, 0, 0, 0.21);
}

.stack-card.blue {
  left: 175px;
  top: 22px;
  z-index: 5;
  width: 174px;
  height: 400px;
  transform: rotate(5deg);
}

.stack-card.yellow {
  left: 280px;
  top: 44px;
  z-index: 4;
  width: 158px;
  height: 374px;
  transform: rotate(8deg);
}

.stack-card.pink {
  display: none;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 56px 0 24px;
  font-size: 18px;
  font-weight: 900;
}

.spark {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
  background: #fbfbfb;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: center;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
}

.feature h3,
.feature p {
  margin: 0;
}

.feature h3 {
  font-size: 14px;
  font-weight: 900;
}

.feature p {
  margin-top: 7px;
  color: #777777;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.feature:nth-child(1) .feature-icon {
  color: var(--green);
  background: #ddf9eb;
}

.feature:nth-child(2) .feature-icon {
  color: var(--blue);
  background: #e7eeff;
}

.feature:nth-child(3) .feature-icon {
  color: var(--yellow);
  background: #fff3cf;
}

.feature:nth-child(4) .feature-icon {
  color: var(--pink);
  background: #ffe1ef;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  background: white;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.68;
  object-fit: cover;
}

.work-meta {
  padding: 15px 16px 18px;
}

.work-meta h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.work-meta p {
  margin: 6px 0 0;
  color: #888888;
  font-size: 11px;
  font-weight: 650;
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 46px;
  padding: 28px 42px;
  background: #fbfbfb;
  border-radius: 12px;
  color: #777777;
  font-size: 18px;
  font-weight: 800;
}

.partners span:first-child {
  color: #888888;
  font-size: 12px;
}

.content-header {
  max-width: 430px;
  margin-bottom: 58px;
}

.content-header h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.content-header p {
  margin: 16px 0 0;
  color: #666666;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.split-list {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #777777;
  font-size: 13px;
  font-weight: 800;
}

.filters .active {
  color: #111111;
}

.product-list,
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.product-row,
.blog-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.product-row img,
.blog-row img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-row img {
  height: 126px;
  border-radius: 9px;
}

.row-copy h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.row-copy .eyebrow {
  margin: 6px 0 12px;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.row-copy p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.arrow-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f7f7f7;
  font-weight: 900;
}

.tabs {
  display: flex;
  gap: 38px;
  margin-bottom: 48px;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.tabs .active {
  position: relative;
  color: #111111;
}

.tabs .active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.blog-row {
  grid-template-columns: 175px minmax(0, 1fr) 82px;
}

.date {
  align-self: start;
  color: #999999;
  font-size: 12px;
  font-weight: 650;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 70px;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.pagination .active {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: #111111;
  border-radius: 8px;
}

.article-body {
  max-width: 850px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: #555555;
  font-size: 12px;
  font-weight: 800;
}

.article-body h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.article-meta {
  margin: 16px 0 28px;
  color: #888888;
  font-size: 12px;
  font-weight: 650;
}

.article-hero {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.article-body p {
  color: #555555;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 46px;
  font-size: 22px;
}

.quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px 30px 0;
  padding: 26px;
  background: #fbfbfb;
  border-radius: 10px;
  color: #888888;
  font-size: 18px;
  font-weight: 800;
}

.join-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: start;
}

.team-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 46px 0 42px;
  padding: 24px;
  background: #fbfbfb;
  border-radius: 10px;
}

.values h3 {
  margin: 0 0 6px;
  font-size: 12px;
}

.values p {
  margin: 0;
  color: #666666;
  font-size: 11px;
  font-weight: 650;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.job-detail {
  max-width: 650px;
}

.badges {
  display: flex;
  gap: 14px;
  margin: 12px 0 42px;
  color: #777777;
  font-size: 11px;
  font-weight: 800;
}

.badges span:first-child {
  color: var(--green);
}

.job-detail h1 {
  margin: 0;
  font-size: 28px;
}

.job-detail h2 {
  margin: 34px 0 16px;
  font-size: 16px;
}

.job-detail p,
.job-detail li {
  color: #555555;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.8;
}

.job-detail ul {
  padding-left: 18px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: stretch;
  min-height: 390px;
}

.about-panel {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 24%, rgba(5, 200, 120, 0.2), transparent 28%),
    linear-gradient(135deg, #fbfbfb 0%, #ffffff 52%, #eefaf4 100%);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.06);
}

.about-panel::before,
.about-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(5, 200, 120, 0.28);
  border-radius: 50%;
}

.about-panel::before {
  width: 240px;
  height: 110px;
  right: 42px;
  top: 64px;
  transform: rotate(-18deg);
}

.about-panel::after {
  width: 140px;
  height: 140px;
  right: -30px;
  bottom: -48px;
}

.about-dot {
  position: absolute;
  right: 54px;
  top: 56px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green);
  box-shadow: 0 18px 44px rgba(5, 200, 120, 0.28);
  transform: rotate(12deg);
}

.about-panel h2,
.about-panel p {
  position: relative;
  z-index: 1;
}

.about-panel h2 {
  max-width: 360px;
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
}

.about-panel p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.about-stats article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbfb;
}

.about-stats strong {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.about-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.about-sections article {
  padding: 30px;
  border-radius: 14px;
  background: var(--soft);
}

.about-sections h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.about-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.not-found {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 260px;
  align-items: center;
  min-height: 360px;
}

.not-found h1 {
  margin: 0;
  font-size: 74px;
  line-height: 1;
}

.not-found h2 {
  margin: 18px 0 10px;
}

.not-found p {
  color: #666666;
  font-size: 13px;
  font-weight: 650;
}

.not-found img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 24px;
  transform: rotate(-8deg);
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr) 1.35fr;
  gap: 46px;
  padding: 52px 56px 34px;
  background: white;
  border-top: 1px solid #f1f1f1;
}

.footer p,
.footer a {
  color: #555555;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.8;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: white;
  background: #111111;
  border-radius: 50%;
  font-size: 11px;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: #888888;
  font-size: 11px;
}

@media (max-width: 900px) {
  .topbar,
  .page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero,
  .join-hero,
  .about-hero,
  .split-list,
  .not-found {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .features,
  .work-grid,
  .values,
  .about-stats,
  .about-sections,
  .partners,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .product-row,
  .blog-row {
    grid-template-columns: 110px 1fr;
  }

  .date,
  .arrow-button {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100vw - 16px);
    margin: 8px;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .features,
  .work-grid,
  .values,
  .about-stats,
  .about-sections,
  .partners,
  .footer {
    grid-template-columns: 1fr;
  }

  .card-stack {
    right: auto;
    left: 0;
    transform: scale(0.78);
    transform-origin: left top;
  }
}

.board-viewport {
  min-height: 100vh;
  padding: 14px;
  overflow: auto;
  background: #f3f3f3;
}

.pencil-board {
  --board-scale: 1;
  position: relative;
  width: 3060px;
  height: 3000px;
  transform: scale(var(--board-scale));
  transform-origin: top left;
  background: #f3f3f3;
  color: #111111;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.board-title {
  position: absolute;
  left: 32px;
  top: 28px;
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.45;
}

.board-page {
  position: absolute;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.06);
}

.mini-header {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  font-size: 12px;
  font-weight: 900;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-mark {
  width: 20px;
  height: 20px;
  position: relative;
}

.mini-mark::before,
.mini-mark::after {
  content: "";
  position: absolute;
  background: #05c878;
  border-radius: 999px 999px 999px 2px;
}

.mini-mark::before {
  width: 12px;
  height: 8px;
  left: 2px;
  top: 4px;
  transform: rotate(30deg);
}

.mini-mark::after {
  width: 8px;
  height: 12px;
  right: 2px;
  bottom: 3px;
  transform: rotate(-35deg);
}

.mini-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.mini-nav .on {
  color: #05c878;
  border-bottom: 2px solid #05c878;
}

.mini-hero-copy {
  position: absolute;
  left: 68px;
  top: 230px;
  width: 470px;
}

.mini-hero-copy h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 950;
  line-height: 1.18;
}

.mini-hero-copy h2 span {
  color: #05c878;
}

.mini-hero-copy p {
  width: 470px;
  margin: 28px 0 0;
  color: #565656;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}

.mini-hero-copy div {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.mini-hero-copy button,
.mini-404 button,
.mini-job button {
  height: 45px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: #111111;
  font-size: 13px;
  font-weight: 900;
}

.mini-hero-copy em {
  display: grid;
  min-width: 100px;
  height: 45px;
  place-items: center;
  border-radius: 999px;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.mini-hero-copy small {
  display: grid;
  height: 24px;
  padding: 0 18px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: #111111;
  font-size: 10px;
  font-weight: 900;
}

.mini-orbit {
  position: absolute;
  left: 540px;
  top: 265px;
  width: 300px;
  height: 135px;
  border: 2px solid rgba(34, 201, 143, 0.28);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.mini-tag {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 78px;
  height: 34px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.tag-d {
  left: 610px;
  top: 210px;
  background: #1463ff;
}

.tag-p {
  left: 585px;
  top: 392px;
  background: #08c780;
}

.mini-stack {
  position: absolute;
  left: 690px;
  top: 212px;
  width: 430px;
  height: 365px;
}

.mini-stack img {
  position: absolute;
  top: 28px;
  width: 124px;
  height: 286px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.21);
  transform-origin: center bottom;
}

.mini-stack .s1 {
  left: 106px;
  top: 0;
  z-index: 6;
  width: 158px;
  height: 322px;
  transform: rotate(-1deg);
}

.mini-stack .s2 {
  left: 228px;
  top: 24px;
  z-index: 5;
  transform: rotate(2deg) scale(0.985);
}

.mini-stack .s3 {
  left: 283px;
  top: 49px;
  z-index: 4;
  transform: rotate(4deg) scale(0.965);
}

.mini-stack .s4 {
  left: 335px;
  top: 73px;
  z-index: 3;
  transform: rotate(7deg) scale(0.945);
}

.mini-features {
  position: absolute;
  left: 68px;
  top: 760px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 1060px;
  height: 145px;
  padding: 32px;
  background: #fbfbfb;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04);
}

.mini-features div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.mini-features i {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: span 2;
  place-items: center;
  border-radius: 12px;
  color: #05c878;
  background: #ddf9eb;
  font-style: normal;
  font-weight: 900;
}

.mini-features strong {
  font-size: 14px;
}

.mini-features span {
  color: #777777;
  font-size: 11px;
  font-weight: 650;
}

.mini-section-title {
  position: absolute;
  left: 68px;
  top: 972px;
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.mini-work-grid {
  position: absolute;
  left: 68px;
  top: 1032px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 1060px;
  height: 245px;
}

.mini-work-card {
  overflow: hidden;
  background: white;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.mini-work-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.mini-work-card strong,
.mini-work-card span {
  display: block;
  margin-left: 16px;
}

.mini-work-card strong {
  margin-top: 14px;
  font-size: 13px;
}

.mini-work-card span {
  margin-top: 5px;
  color: #888888;
  font-size: 11px;
  font-weight: 650;
}

.mini-partners {
  position: absolute;
  left: 68px;
  top: 1248px;
  display: grid;
  grid-template-columns: 1.2fr repeat(6, 1fr);
  gap: 28px;
  align-items: center;
  width: 1060px;
  height: 94px;
  padding: 28px 42px;
  color: #777777;
  background: #fbfbfb;
  border-radius: 12px;
  font-size: 16px;
}

.mini-partners span {
  color: #888888;
  font-size: 12px;
}

.mini-page-title {
  position: absolute;
  left: 42px;
  top: 160px;
  width: 360px;
}

.mini-page-title h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.mini-page-title p {
  color: #666666;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.mini-products-layout {
  position: absolute;
  left: 42px;
  top: 330px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 52px;
  width: 675px;
}

.mini-products-layout aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #777777;
  font-size: 13px;
  font-weight: 800;
}

.mini-products-layout aside b {
  color: #111111;
}

.mini-products-layout main {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.mini-product-row {
  display: grid;
  grid-template-columns: 160px 1fr 24px;
  gap: 24px;
  align-items: center;
  min-height: 148px;
}

.mini-product-row img {
  width: 160px;
  height: 148px;
  object-fit: cover;
  border-radius: 10px;
}

.mini-product-row strong,
.mini-blog-row strong {
  display: block;
  font-size: 17px;
  font-weight: 950;
}

.mini-product-row span {
  display: block;
  margin-top: 7px;
  color: #666666;
  font-size: 12px;
  font-weight: 750;
}

.mini-product-row p,
.mini-product-row small,
.mini-blog-row p {
  color: #666666;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}

.mini-tabs {
  position: absolute;
  left: 42px;
  top: 285px;
  display: flex;
  gap: 38px;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.mini-tabs b {
  color: #111111;
  border-bottom: 2px solid #05c878;
  padding-bottom: 10px;
}

.mini-blog-list {
  position: absolute;
  left: 42px;
  top: 390px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 670px;
}

.mini-blog-row {
  display: grid;
  grid-template-columns: 175px 1fr 78px;
  gap: 28px;
  align-items: center;
  min-height: 126px;
}

.mini-blog-row img {
  width: 175px;
  height: 126px;
  object-fit: cover;
  border-radius: 9px;
}

.mini-blog-row time {
  align-self: start;
  color: #999999;
  font-size: 12px;
  font-weight: 650;
}

.mini-pages {
  position: absolute;
  left: 300px;
  top: 1180px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}

.mini-pages b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: #111111;
}

.mini-article {
  position: absolute;
  left: 42px;
  top: 82px;
  width: 850px;
}

.mini-article span,
.mini-article small {
  color: #555555;
  font-size: 10px;
  font-weight: 800;
}

.mini-article h2 {
  margin: 18px 0 10px;
  font-size: 26px;
}

.mini-article img {
  display: block;
  width: 850px;
  height: 130px;
  margin-top: 16px;
  object-fit: cover;
  border-radius: 8px;
}

.mini-article p {
  color: #555555;
  font-size: 10px;
  font-weight: 650;
}

.mini-join-copy {
  position: absolute;
  left: 42px;
  top: 90px;
  width: 360px;
}

.mini-join-copy h2 {
  margin: 0;
  font-size: 28px;
}

.mini-join-copy p {
  color: #555555;
  font-size: 11px;
  line-height: 1.5;
}

.mini-team {
  position: absolute;
  left: 555px;
  top: 68px;
  width: 330px;
  height: 135px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-values {
  position: absolute;
  left: 42px;
  top: 220px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  width: 880px;
  height: 54px;
  padding: 14px 22px;
  background: #fbfbfb;
  border-radius: 9px;
}

.mini-values b {
  display: block;
  font-size: 10px;
}

.mini-values small {
  color: #555555;
  font-size: 10px;
}

.mini-jobs-title {
  position: absolute;
  left: 42px;
  top: 286px;
  margin: 0;
  font-size: 15px;
}

.mini-jobs {
  position: absolute;
  left: 42px;
  top: 312px;
  width: 880px;
}

.mini-jobs p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 26px;
  margin: 0 0 8px;
  padding: 0 14px;
  border-radius: 6px;
  background: white;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
  font-size: 9px;
}

.mini-job {
  position: absolute;
  left: 42px;
  top: 88px;
  width: 610px;
}

.mini-job span,
.mini-job small,
.mini-job p,
.mini-job li {
  color: #555555;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.6;
}

.mini-job h2 {
  margin: 18px 0 10px;
  font-size: 25px;
}

.mini-job h3 {
  margin: 18px 0 8px;
  font-size: 13px;
}

.mini-job button {
  width: 82px;
  height: 30px;
  padding: 0;
  border-radius: 7px;
  font-size: 10px;
}

.mini-404 {
  position: absolute;
  left: 150px;
  top: 108px;
}

.mini-404 h2 {
  margin: 0;
  font-size: 74px;
  line-height: 1;
}

.mini-404 strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}

.mini-404 p {
  width: 380px;
  color: #666666;
  font-size: 13px;
  font-weight: 650;
}

.mini-404 button {
  width: 112px;
  height: 36px;
  padding: 0;
  font-size: 12px;
}

.notfound-page > img {
  position: absolute;
  left: 625px;
  top: 108px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  transform: rotate(-12deg);
}

.footer-page .mini-header {
  left: 170px;
  top: 45px;
  right: auto;
}

.footer-page .mini-nav {
  display: none;
}

.mini-footer-desc {
  position: absolute;
  left: 170px;
  top: 82px;
  width: 290px;
  color: #333333;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.mini-social {
  position: absolute;
  left: 170px;
  top: 145px;
  display: flex;
  gap: 18px;
}

.mini-social span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111111;
}

.mini-footer-col {
  position: absolute;
  top: 48px;
  font-size: 13px;
  line-height: 1.7;
}

.mini-footer-col b {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
}

.mini-footer-col span {
  color: #333333;
  font-weight: 650;
}

.mini-footer-col.c0 { left: 610px; }
.mini-footer-col.c1 { left: 820px; }
.mini-footer-col.c2 { left: 1030px; }
.mini-footer-col.c3 { left: 1260px; }

.footer-page > small {
  position: absolute;
  left: 755px;
  bottom: 20px;
  color: #666666;
  font-size: 12px;
  font-weight: 650;
}
