:root {
  --blue: #fe8329;
  --blue-dark: #e55f00;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --white: #ffffff;
  --parchment: #f5f5f7;
  --warm-section: #fff7f0;
  --dark: #272729;
  --dark-2: #2a2a2c;
  --hairline: #e0e0e0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.global-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 80px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 16px;
  letter-spacing: -0.12px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 142px;
  height: 32px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

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

.tile {
  min-height: auto;
  padding: 80px max(24px, calc((100vw - 1180px) / 2));
}

.light {
  background: var(--white);
}

.parchment {
  background: var(--parchment);
}

.dark {
  color: #fff;
  background: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.hero .copy {
  max-width: 840px;
}

.about-hero {
  min-height: 720px;
  padding-top: 116px;
  padding-bottom: 124px;
}

.copy,
.center-copy {
  max-width: 820px;
}

.center-copy {
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.224px;
}

.dark .eyebrow {
  color: #cccccc;
}

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

h1 {
  margin-bottom: 20px;
  font-family: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.28px;
}

.line-keep {
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-family: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.28px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0.231px;
}

p {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #333;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: 0;
}

.lead.centered {
  margin-right: auto;
  margin-left: auto;
}

.dark p {
  color: #e8e8ed;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 9999px;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.374px;
  transition: transform 140ms ease, background 140ms ease;
}

.button:hover {
  background: var(--blue-dark);
}

.button:active {
  transform: scale(0.95);
}

.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.button.secondary {
  color: var(--blue);
  background: transparent;
}

.button.small {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
}

.inline-figure,
.wide-figure {
  margin: 32px 0 0;
}

.inline-figure img,
.wide-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
}

.wide-figure {
  max-width: 1080px;
  margin: 0 auto 36px;
}

.hero-media {
  margin-top: 8px;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article {
  min-height: 180px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 18px;
}

.feature-grid.image-cards article {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 18px 42px;
}

.feature-grid.image-cards img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid.image-cards article > div {
  padding: 24px;
}

.dark .feature-grid article {
  color: #fff;
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.feature-grid p {
  color: var(--muted);
}

.dark .feature-grid p {
  color: #cccccc;
}

.team-link {
  display: block;
}

.team-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.team-photo {
  display: block;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.team-link h3::after {
  content: "LinkedIn";
  display: inline-block;
  margin-left: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  vertical-align: middle;
}

.team-link small {
  display: block;
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.team-person small {
  margin-bottom: 0;
}

.experience-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}

.experience-list img,
.experience-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border: 1px solid var(--hairline);
  border-radius: 7px;
  background: #fff;
}

.experience-list img.wide-experience-logo {
  width: 34px;
  height: 34px;
  padding: 1px;
}

.text-experience-logo {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.experience-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 64px;
}

.media-split {
  align-items: start;
}

.media-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.fashion-section {
  background: var(--parchment);
  padding-top: 88px;
  padding-bottom: 96px;
}

.tech-section {
  background: var(--white);
  padding-top: 88px;
  padding-bottom: 96px;
}

.idol-section {
  padding-top: 88px;
  padding-bottom: 96px;
}

.team-section {
  background: var(--warm-section);
  padding-top: 88px;
  padding-bottom: 96px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 36px;
}

.case-study h2 {
  max-width: 520px;
}

.customer-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 2px 0 24px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
}

.customer-proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.customer-proof img {
  display: block;
  width: 148px;
  max-height: 34px;
}

.idol-section .feature-grid article {
  min-height: 152px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.process.three-products {
  grid-template-columns: repeat(3, 1fr);
}

.process > div {
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
}

.process strong,
.process span {
  display: block;
}

.process strong {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.14;
}

.process span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.product-logo {
  display: block;
  flex: 0 0 auto;
}

.harpy-product-logo {
  width: 112px;
}

.hecto-product-logo {
  width: 124px;
}

.astrsk-product-logo {
  width: 108px;
}

.view-link {
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.12px;
}

.view-link:hover {
  color: var(--orange);
}

.closing {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.closing.compact {
  min-height: 440px;
}

.detail-hero {
  padding-top: 96px;
  padding-bottom: 88px;
}

.detail-grid-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.funded-by {
  margin: 46px 0 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.backers {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.backer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 148px;
  padding: 28px 34px;
  background: #fff;
  border: 0;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 12px 28px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.backer-button:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0 16px 34px;
}

.backer-button:active {
  transform: scale(0.98);
}

.backer-button img {
  display: block;
  max-width: 100%;
  max-height: 54px;
}

.backer-button.tips-logo img {
  max-width: 300px;
  max-height: 112px;
}

.backer-button.tips-logo {
  padding: 12px 18px;
}

.site-footer {
  padding: 70px max(24px, calc((100vw - 1180px) / 2)) 36px;
  color: #fff;
  background: var(--dark);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.footer-top img {
  display: block;
  width: 178px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  text-align: right;
  width: 100%;
}

.footer-links a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.4;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
}

.footer-social-link svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-social-link:hover {
  color: var(--blue);
}

@media (max-width: 900px) {
  .global-nav {
    height: 64px;
  }

  .brand-mark {
    width: 124px;
  }

  .tile {
    min-height: auto;
    padding: 64px 20px;
  }

  .hero,
  .split,
  .case-study {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .feature-grid.three,
  .feature-grid.four,
  .process,
  .backers {
    grid-template-columns: 1fr;
  }

  .media-section,
  .tech-section,
  .fashion-section,
  .idol-section,
  .team-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .center-copy {
    margin-bottom: 32px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }

  .button.small {
    width: auto;
  }

  .footer-top {
    display: grid;
    gap: 32px;
    padding-bottom: 44px;
  }

  .footer-links {
    gap: 12px;
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
  }
}
