:root {
  --ink: #080908;
  --muted: #666766;
  --paper: #fbfaf7;
  --card: #f0efec;
  --line: #dedcd6;
  --rose: #f04b75;
  --aqua: #22c9c5;
  --blue: #3866d6;
  --green: #c8ff4d;
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

.site-header,
.site-footer,
main {
  width: min(100% - 56px, 1360px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #777;
  font-weight: 800;
}

.brand-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #ecebe8;
  color: var(--rose);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.site-nav {
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.site-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #666;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

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

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #ecebe8;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 86px);
  padding: clamp(76px, 9vw, 140px) 0 72px;
  text-align: center;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1260px;
  margin: 0 auto;
  font-size: clamp(3.6rem, 9.2vw, 9.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
  margin-top: clamp(56px, 8vw, 92px);
  text-align: left;
}

.hero-card {
  min-width: 0;
  min-height: 358px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.08);
  transform: rotate(var(--rotate));
}

.hero-card strong {
  display: block;
  margin-top: 24px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-card > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.card-lead {
  --rotate: -2.8deg;
  background: #e9ffbf;
}

.card-report {
  --rotate: 1.2deg;
  background: #e8eafd;
}

.card-support {
  --rotate: -1deg;
  background: #fff0f4;
}

.card-finance {
  --rotate: 2.4deg;
  background: #e8f8f7;
}

.card-visual {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.signal {
  position: absolute;
  border-radius: 999px;
}

.signal-a {
  width: 160px;
  height: 160px;
  border: 3px solid rgba(240, 75, 117, 0.5);
  transform: translate(-44px, -8px);
}

.signal-b {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--aqua));
  transform: rotate(-18deg);
}

.module {
  position: absolute;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.module-a {
  left: 28px;
  top: 38px;
}

.module-b {
  right: 28px;
  bottom: 38px;
}

.bar {
  align-self: end;
  width: 34px;
  height: var(--h);
  margin: 0 8px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(var(--rose), var(--aqua));
}

.ticket,
.invoice {
  display: block;
}

.ticket {
  width: 150px;
  margin: 8px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: white;
  font-weight: 900;
}

.ticket.muted {
  opacity: 0.58;
}

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

.invoice {
  position: absolute;
  width: 116px;
  height: 150px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--rose), var(--aqua)) 22px 112px / 72px 6px no-repeat,
    linear-gradient(#d7d7d7, #d7d7d7) 22px 44px / 68px 3px no-repeat,
    linear-gradient(#d7d7d7, #d7d7d7) 22px 62px / 54px 3px no-repeat,
    white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transform: rotate(-8deg);
}

.invoice.second {
  transform: translate(36px, 18px) rotate(7deg);
  opacity: 0.72;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 108px);
  padding: clamp(86px, 11vw, 150px) 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.2vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.56rem);
  font-weight: 600;
  line-height: 1.55;
}

.intro-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding-left: 1.1em;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 0 clamp(86px, 10vw, 140px);
}

.capabilities span {
  padding: 20px 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f5f5f;
  font-size: clamp(1.25rem, 2.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.featured-card,
.chat-card {
  min-height: 420px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--card);
}

.workflow-map {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.node {
  padding: 16px 18px;
  border-radius: 18px;
  background: white;
  font-weight: 900;
}

.workflow-map i {
  width: 48px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), var(--aqua));
}

.featured-card p {
  max-width: 720px;
  margin-top: 80px;
  color: var(--muted);
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.5;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: clamp(90px, 11vw, 160px);
}

.workflow-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
}

.workflow-grid span,
.approach-list span,
.person-card span {
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-grid h3 {
  margin: 74px 0 12px;
  font-size: 1.8rem;
  letter-spacing: -0.045em;
}

.workflow-grid p,
.approach-list p,
.person-card p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 54px;
}

.approach-list p {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.approach-list span {
  display: block;
  margin-bottom: 12px;
  color: #a3a3a3;
}

.approach-list strong {
  color: var(--ink);
}

.team {
  padding: clamp(86px, 10vw, 140px) 0;
}

.section-heading {
  margin-bottom: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.person-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
}

.person-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.person-card div {
  padding: 24px;
}

.person-card h3 {
  margin: 12px 0 6px;
  font-size: 1.8rem;
  letter-spacing: -0.045em;
}

.contact {
  align-items: stretch;
}

.chat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bubble {
  width: fit-content;
  max-width: 560px;
  margin: 0;
  padding: 16px 20px;
  border-radius: 999px;
  background: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.site-footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #777;
}

.site-footer div {
  gap: 20px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-rail,
  .workflow-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1360px);
  }

  .site-header {
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    background: rgba(251, 250, 247, 0.95);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    padding-top: 58px;
    text-align: left;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-rail,
  .workflow-grid,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    min-height: 310px;
    transform: none;
  }

  .capabilities span {
    width: 100%;
    padding: 17px 22px;
  }

  .workflow-map i {
    width: 28px;
  }

  .featured-card,
  .chat-card {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }
}
