@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --background: #f7f7f4;
  --surface: #efefeb;
  --ink: #20211f;
  --ink-soft: #656762;
  --line: rgba(32, 33, 31, 0.13);
  --charcoal: #30312f;
  --blue: #ccdae5;
  --sand: #eee4c9;
  --mist: #e3e3df;
  --sage: #d8dfd7;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 28px;
  --section-space: clamp(88px, 11vw, 156px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--background);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.7vw, 6.25rem);
  font-weight: 520;
}

.hero h1 > span {
  display: block;
}

.hero-title-subtitle {
  margin-top: 0.18em;
  color: var(--ink-soft);
  font-size: 0.58em;
  font-weight: 430;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  font-weight: 510;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 560;
}

h4 {
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid #60625d;
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 244, 0.93);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 36px);
  color: #454642;
  font-size: 0.9rem;
  font-weight: 570;
}

.site-nav > a:not(.button) {
  transition: color 150ms ease;
}

.site-nav > a:not(.button):hover {
  color: #000;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #111210;
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
}

.button--light {
  background: #f5f5f1;
  color: var(--ink);
}

.button--light:hover {
  background: #fff;
}

.hero {
  min-height: min(860px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(96px, 14vh, 152px) 0 clamp(120px, 18vh, 190px);
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin-bottom: 20px;
  color: #555752;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 560px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-heading--wide {
  max-width: 920px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.outcome-heading {
  margin-bottom: clamp(38px, 5vw, 58px);
}

.outcome-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list__item {
  --accent: var(--ink);
  --accent-soft: var(--ink-soft);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  padding: clamp(22px, 2.3vw, 30px) 0;
  border-top: 1px solid var(--line);
}

.outcome-list__item--blue {
  --accent: #3c657f;
  --accent-soft: #91a7b6;
}

.outcome-list__item--sand {
  --accent: #6c551e;
  --accent-soft: #ab9b71;
}

.outcome-list__item--mist {
  --accent: #464944;
  --accent-soft: #9c9e99;
}

.outcome-list__item--sage {
  --accent: #3b6046;
  --accent-soft: #90a394;
}

.outcome-list h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.08em;
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.75rem);
}

.outcome-list h3 span {
  color: var(--accent-soft);
  font-weight: 390;
}

.outcome-list h3 strong {
  color: var(--accent);
  font-weight: 720;
}

.outcome-points {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}

.outcome-points li {
  position: relative;
  padding-left: 1.1em;
}

.outcome-points li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
}

.outcome-points li + li {
  margin-top: 0.35em;
}

.carousel-section {
  overflow: hidden;
}

.carousel {
  position: relative;
  width: calc(100vw - max(var(--gutter), calc((100vw - var(--shell)) / 2)));
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((min(calc(100vw - (2 * var(--gutter))), var(--shell)) - 48px) / 3.16);
  gap: 24px;
  padding: 3px 3px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  position: relative;
  min-height: 520px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.card--charcoal {
  background: var(--charcoal);
  color: #f7f7f2;
}

.card--blue {
  background: var(--blue);
}

.card--sand {
  background: var(--sand);
}

.card--mist {
  background: var(--mist);
}

.card--sage {
  background: var(--sage);
}

.card-number {
  display: block;
  margin-bottom: 52px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  opacity: 0.62;
}

.carousel-card > p,
.product-card > div > p {
  max-width: 32rem;
  color: currentColor;
  font-size: 0.98rem;
  line-height: 1.62;
  opacity: 0.77;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  min-height: 2.2em;
}

.keyword-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 650;
}

.keyword-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.keyword-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.card-watermark {
  position: absolute;
  right: 18px;
  bottom: -40px;
  font-size: clamp(8rem, 13vw, 13rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.09em;
  opacity: 0.07;
  user-select: none;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
}

.product-card .card-number {
  margin-bottom: 28px;
}

.product-card img {
  width: 100%;
  height: 245px;
  align-self: end;
  object-fit: contain;
  object-position: center bottom;
}

.carousel-controls {
  width: min(calc(100vw - (2 * var(--gutter))), var(--shell));
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e7e7e2;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 150ms ease, opacity 150ms ease;
}

.carousel-controls button:hover:not(:disabled) {
  background: #dcdcd6;
}

.carousel-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.use-case-list {
  margin-top: clamp(46px, 7vw, 82px);
}

.use-case {
  display: grid;
  grid-template-columns: 64px minmax(240px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
}

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

.use-case > span {
  color: #777972;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.use-case h3 {
  margin: 0;
}

.use-case p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.founder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.founder-intro img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.founder-intro > div > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 110px);
  margin-top: clamp(76px, 10vw, 130px);
}

.founder-profile {
  min-width: 0;
}

.founder-profile h3 {
  margin-bottom: 12px;
}

.profile-lead {
  min-height: 3.3em;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.founder-profile > ul,
.founder-profile details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #4f514c;
}

.founder-profile details {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-profile summary {
  padding: 20px 2px;
  font-weight: 650;
  cursor: pointer;
}

.founder-profile details ul {
  padding: 0 0 24px 22px;
  font-size: 0.92rem;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #b3b4ae;
  text-underline-offset: 4px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 0;
}

.contact-section {
  padding-bottom: clamp(52px, 7vw, 90px);
}

.contact-panel {
  padding: clamp(48px, 8vw, 104px);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #f7f7f2;
  text-align: center;
}

.contact-panel .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.contact-panel h2 {
  max-width: 830px;
  margin-inline: auto;
}

.contact-panel > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.site-footer {
  padding: 28px 0 42px;
  color: #777972;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
}

.footer-inner a:hover {
  color: var(--ink);
}

.legal-page .site-header {
  position: static;
}

.legal-main {
  width: min(calc(100% - (2 * var(--gutter))), 760px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 0;
}

.legal-main h1 {
  margin-bottom: 64px;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-main h2 {
  margin: 44px 0 14px;
  font-size: 1.35rem;
}

.legal-main p {
  color: #565853;
}

.legal-main a {
  text-decoration: underline;
  text-decoration-color: #b3b4ae;
  text-underline-offset: 4px;
}

.legal-main .legal-address {
  color: inherit;
  text-decoration: none;
}

.legal-back {
  display: inline-block;
  margin-top: 38px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .founder-intro {
    grid-template-columns: 1fr;
  }

  .founder-intro {
    gap: 48px;
  }

  .founder-intro img {
    max-height: 640px;
  }

  .carousel-track {
    grid-auto-columns: calc((min(calc(100vw - (2 * var(--gutter))), var(--shell)) - 24px) / 2.16);
  }

  .use-case {
    grid-template-columns: 48px 0.8fr 1fr;
    gap: 24px;
  }

  .outcome-list__item {
    grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1.15fr);
    gap: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 22px;
    --section-space: 82px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    min-height: 68px;
  }

  .js .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
  }

  .js .site-nav {
    position: absolute;
    top: 62px;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    padding: 18px;
    border-radius: 20px;
    background: #ecece7;
  }

  .js .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-nav > a:not(.button) {
    display: block;
    padding: 10px 4px;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    transform: translateY(3.25px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .hero {
    min-height: 680px;
    padding: 96px 0 118px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .section-heading--wide {
    margin-bottom: 42px;
  }

  .carousel-track {
    grid-auto-columns: calc((100vw - (2 * var(--gutter))) * 0.92);
    gap: 16px;
  }

  .carousel-card {
    min-height: 500px;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .use-case {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 30px 0 34px;
  }

  .use-case p {
    grid-column: 2;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .profile-lead {
    min-height: 0;
  }

  .contact-panel {
    text-align: left;
  }

  .contact-panel h2,
  .contact-panel > p:not(.eyebrow) {
    margin-inline: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .outcome-list__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 26px 0 30px;
  }

  .outcome-list h3 {
    font-size: 2rem;
  }

  .outcome-points {
    max-width: 330px;
  }
}

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

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