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

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

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

:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --surface-soft: #ebebeb;
  --text: #0d0d0d;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border: #e0e0e0;
  --accent: #d1ff99;
  --accent-2: #f2ff67;
  --accent-3: #c3dafe;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  .site-nav__link,
  .btn {
    transition: none;
  }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="ko"] body {
  word-break: keep-all;
}

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

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

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

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.selly-page {
  overflow-x: clip;
}

.container {
  width: min(100%, calc(100vw - 48px));
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  position: relative;
}

.section--muted {
  background: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 80px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: min(100%, calc(100vw - 80px));
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__composite {
  position: relative;
  display: block;
  width: 140px;
  height: 24px;
}

.brand__image {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__composite--footer {
  width: 162px;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  transition: opacity 180ms ease;
}

.site-nav__link:hover {
  opacity: 0.64;
}

.site-nav__link--current {
  opacity: 1;
}

.site-nav__item {
  position: relative;
}

.site-nav__trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  color: inherit;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border-radius: 16px;
  z-index: 50;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__dropdown.is-open {
  display: flex;
}

.site-nav__item:hover .site-nav__arrow,
.site-nav__item.is-open .site-nav__arrow {
  transform: rotate(180deg);
}

.site-nav__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 21px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #333333;
  transition: opacity 180ms ease;
  white-space: nowrap;
}

.site-nav__dropdown-link:hover {
  opacity: 0.64;
}

.site-nav__arrow {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.language-switch {
  position: relative;
}

.language-switch__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  list-style: none;
  cursor: pointer;
}

.language-switch__trigger::-webkit-details-marker {
  display: none;
}

.language-switch[open] .site-nav__arrow {
  transform: rotate(180deg);
}

.language-switch__icon {
  width: 24px;
  height: 24px;
}

.language-switch__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.language-switch__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  min-width: 84px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.12);
}

.language-switch:not([open]) .language-switch__menu {
  display: none;
}

.language-switch__option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  transition: background-color 180ms ease, opacity 180ms ease;
}

.language-switch__option:hover {
  background: var(--surface);
}

.language-switch__option[aria-current="page"] {
  background: var(--surface);
  pointer-events: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 80px;
  z-index: 35;
  background: #ffffff;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  min-width: 60px;
  min-height: 24px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border: 0;
  background: none;
}

.mobile-menu__expand {
  gap: 8px;
}

.mobile-menu__expand.is-open .mobile-menu__arrow {
  transform: rotate(180deg);
}

.mobile-menu__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mobile-menu__sub {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__expand.is-open + .mobile-menu__sub {
  display: flex;
}

.mobile-menu__sub-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #333333;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
}

.mobile-menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu__btn--outline {
  outline: 1px solid #BBBBBB;
  outline-offset: -1px;
  color: #666666;
}

.mobile-menu__btn--solid {
  background: #000000;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.1);
}

.btn--small {
  min-width: 60px;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.btn--medium {
  height: 48px;
  padding: 8px 24px 8px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.btn--light {
  border: 1px solid #d9d9d9;
  background: #ffffff;
}

.btn--dark {
  background: #000000;
  color: var(--text-light);
}

.hero {
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 720px 520px;
  justify-content: space-between;
  align-items: center;
  gap: 160px;
  min-height: 540px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hero__title {
  max-width: 720px;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero__description {
  max-width: 720px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-card {
  position: relative;
  width: 520px;
  height: 540px;
  overflow: clip;
  border-radius: var(--radius-xl);
  background: #d9d9d9;
}

.hero-card__bg {
  position: absolute;
  inset: -45px -407px auto -367px;
  width: 1334px;
  height: 889px;
  object-fit: cover;
  filter: blur(25px);
}

.hero-card__bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(217, 217, 217, 0.3);
}

.hero-card__pill {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.hero-card__pill-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-card__pill-check img {
  width: 12px;
  height: 12px;
}

.hero-card__character {
  position: absolute;
  top: 20px;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-card__message {
  position: absolute;
  bottom: 5.5%;
  left: 5.8%;
  right: 5.8%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-height: auto;
  padding: 4% 5%;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2;
}

.hero-card__message-icon {
  width: 80px;
  height: 72px;
  flex-shrink: 0;
}

.hero-card__message-icon img {
  width: 100%;
  height: 100%;
}

.hero-card__message-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #ffffff;
}

.hero-card__message-copy strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-card__message-copy p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.sourcing {
  padding: 128px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-heading--center {
  align-items: center;
  text-align: center;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-heading p {
  max-width: 1400px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

.buyer-list {
  display: grid;
  grid-template-columns: 500px 875px;
  gap: 25px;
  margin-top: 80px;
}

.buyer-list__visual,
.buyer-list__panel {
  position: relative;
  overflow: clip;
  border-radius: 24px;
}

.buyer-list__visual {
  height: 432px;
  background:
    linear-gradient(90deg, rgba(214, 230, 243, 1) 0%, rgba(214, 230, 243, 1) 100%),
    linear-gradient(90deg, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 1) 100%);
}

.buyer-list__photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.buyer-list__character {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 400px;
  max-width: 80%;
  height: 400px;
  max-height: 100%;
  transform: translateX(-50%);
  object-fit: contain
}

.buyer-list__stars {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 69%;
  aspect-ratio: 345 / 74;
  transform: translateX(-50%);
}

.buyer-list__stars img,
.buyer-list__chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.buyer-list__chip {
  position: absolute;
  left: 12%;
  top: 9%;
  width: 81.56px;
  height: 40px;
}

.buyer-list__panel {
  border: 1px solid #f0f0f0;
  background: #ffffff;
  padding: 24px 40px;
}

.buyer-list__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 20px;
  border-bottom: 1px solid #e0e0e0;
}

.buyer-list__panel-head h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.36px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  color: #0d0d0d;
}

.status-pill--dark {
  height: 37px;
  padding: 8px 16px;
  background: #000000;
  color: #ffffff;
}

.status-pill--green {
  background: #d1ff99;
}

.status-pill--yellow {
  background: #f2ff67;
}

.status-pill--blue {
  background: #c3dafe;
}

.status-pill__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex-shrink: 0;
}

.status-pill__dot--ring {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(209, 255, 153, 0.18);
  border-top-color: #d1ff99;
  border-left-color: #d1ff99;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.status-pill__dot--check {
  position: relative;
  background: #0d0d0d;
}

.status-pill__dot--check::before {
  content: "";
  width: 6px;
  height: 3px;
  border-left: 1.5px solid #d1ff99;
  border-bottom: 1.5px solid #d1ff99;
  transform: rotate(-45deg) translateY(-1px);
}

.buyer-list__rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.buyer-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr) 100px;
  align-items: center;
  column-gap: 60px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.5;
}

.buyer-list__row:last-child {
  border-bottom: 0;
}

.buyer-list__company {
  font-size: 16px;
  font-weight: 600;
}

.buyer-list__country {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333333;
}

.buyer-list__country img {
  width: 28px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 2px;
}

.buyer-list__signal {
  text-align: right;
}

.buyer-list__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.buyer-list__badge--green {
  background: #d1ff99;
}

.buyer-list__badge--yellow {
  background: #f2ff67;
}

.features {
  padding: 128px 0;
}

.features__rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: grid;
  align-items: center;
  gap: 128px;
}

.feature-row--text-left {
  grid-template-columns: 629px 643px;
}

.feature-row--visual-left {
  grid-template-columns: 643px 629px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.feature-copy h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.48px;
}

.feature-copy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 4px;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  line-height: 1.15;
}

.feature-visual {
  position: relative;
  overflow: clip;
  width: 643px;
  height: 420px;
  border-radius: 24px;
  background: var(--surface);
}

.feature-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual__export {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual__glass {
  position: absolute;
  top: 27px;
  left: 55px;
  width: 534px;
  height: 366px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-visual--row2::before,
.feature-visual--row3::before,
.feature-visual--row4::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 55px;
  width: 534px;
  height: 366px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-visual__stack {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
}

.feature-visual__stack--top {
  top: 51px;
  left: 107px;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.mini-chip img {
  width: 14px;
  height: 14px;
}

.mini-chip--dark {
  background: #000000;
  color: #ffffff;
}

.mini-chip--accent {
  background: var(--accent);
  color: #000000;
}

.mini-chip--accent-small {
  padding-right: 10px;
}

.mini-chip__spark {
  font-size: 13px;
  line-height: 1;
}

.translation-card {
  position: absolute;
  top: 83px;
  left: 107px;
  width: 431px;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}

.translation-card__languages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  background: #f5f5f5;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.language-pill--active {
  background: #000000;
  color: #ffffff;
}

.translation-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.translation-card__subject {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.translation-card__divider {
  height: 1px;
  background: #e5e5e5;
}

.translation-card__message {
  font-size: 12px;
  line-height: 1.15;
}

.translation-card__meta {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.15;
}

.followup-board {
  position: absolute;
  inset: 0;
}

.followup-board__timeline {
  position: absolute;
  left: 178px;
  top: 75px;
  width: 208px;
  height: 190px;
  border: 1px dashed #d8d8d8;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
}

.sequence-card {
  position: absolute;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 205px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.sequence-card--day1 {
  top: 44px;
}

.sequence-card--day3 {
  top: 102px;
}

.sequence-card--day5 {
  top: 160px;
}

.sequence-card--day8 {
  top: 218px;
}

.sequence-card__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sequence-card__copy small {
  font-size: 12px;
  line-height: 1.15;
}

.sequence-card__copy strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  flex-shrink: 0;
}

.icon-box--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.icon-box--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.08 4.18 2 2 0 0 1 5.06 2h3a2 2 0 0 1 2 1.72l.33 2.2a2 2 0 0 1-.57 1.7l-1.35 1.35a16 16 0 0 0 6.56 6.56l1.35-1.35a2 2 0 0 1 1.7-.57l2.2.33A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.icon-box--bell {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%230d0d0d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 5a2 2 0 1 1 4 0c2.76 0 5 2.24 5 5v3.59l1.7 2.55A1 1 0 0 1 19.86 18H4.14a1 1 0 0 1-.84-1.56L5 13.59V10c0-2.76 2.24-5 5-5'/%3E%3Cpath d='M9 18a3 3 0 0 0 6 0'/%3E%3C/svg%3E");
}

.icon-box--accent {
  background-color: var(--accent);
}

.followup-board__hub {
  position: absolute;
  top: 116px;
  right: 78px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.meeting-board {
  position: absolute;
  inset: 0;
}

.meeting-card {
  position: absolute;
  left: 74px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 132px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.meeting-card--one {
  top: 67px;
}

.meeting-card--two {
  top: 125px;
}

.meeting-card--three {
  top: 183px;
}

.meeting-card strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
}

.meeting-card span {
  font-size: 11px;
  line-height: 1.15;
}

.meeting-board__line {
  position: absolute;
  border-color: rgba(255, 255, 255, 0.8);
  border-style: dashed;
  border-width: 0;
}

.meeting-board__line--main {
  left: 222px;
  top: 95px;
  width: 122px;
  height: 120px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.meeting-board__line--top {
  left: 222px;
  top: 124px;
  width: 96px;
  height: 1px;
  border-top-width: 1px;
}

.meeting-board__line--bottom {
  left: 222px;
  top: 182px;
  width: 96px;
  height: 1px;
  border-top-width: 1px;
}

.meeting-board__hub {
  position: absolute;
  top: 126px;
  right: 99px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.meeting-board__alert {
  position: absolute;
  top: 148px;
  right: 39px;
}

.meeting-board__alert-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff2020;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.approval-board {
  position: absolute;
  inset: 0;
}

.approval-grid {
  position: absolute;
  top: 86px;
  left: 45px;
  display: grid;
  grid-template-columns: repeat(2, 178px);
  gap: 8px;
}

.approval-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 79px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.approval-card strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.approval-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.15;
}

.approval-card__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.approval-card__status--green::before {
  background: #12c26d;
}

.approval-card__status--orange::before {
  background: #ff9d00;
}

.approval-card__status--red::before {
  background: #ff4f4f;
}

.icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.icon-tile--check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.icon-tile--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E");
}

.icon-tile--file {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
}

.icon-tile--warning {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0Z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}

.support {
  padding: 128px 0;
}

.feature-visual--row1 .feature-visual__stack--top {
  top: 51px;
  left: 107px;
}

.feature-visual--row4 .feature-visual__stack--top {
  top: 54px;
  left: 45px;
}

.section-heading--support p {
  max-width: 557px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 453px);
  gap: 20px;
  margin-top: 60px;
}

.support-card {
  overflow: clip;
  border-radius: 24px;
  background: #ffffff;
}

.support-card__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 200px;
  padding: 40px;
}

.support-card__copy h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.42px;
}

.support-card__copy p {
  font-size: 18px;
  line-height: 1.5;
}

.support-card--sand .support-card__copy {
  background: #d7d3cf;
}

.support-card--cool .support-card__copy {
  background: #dfe3e4;
}

.support-card--gray .support-card__copy {
  background: #d5d5d5;
}

.support-card__visual {
  position: relative;
  height: 320px;
  overflow: clip;
  background: #d9d9d9;
}

.support-card__visual > img:first-child,
.support-card__cutout {
  position: absolute;
  max-width: none;
}

.support-card__visual > img:first-child {
  object-fit: contain;
}

.support-card__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.support-card--sand .support-card__fade {
  background: linear-gradient(180deg, #d7d3cf 8.45%, rgba(215, 211, 207, 0) 50.1%);
}

.support-card--cool .support-card__fade {
  background: linear-gradient(180deg, #dfe3e4 14.03%, rgba(223, 227, 228, 0) 66.03%);
}

.support-card--gray .support-card__fade {
  background: linear-gradient(180deg, #d5d5d5 0%, rgba(213, 213, 213, 0) 56.66%);
}

.support-card__cutout {
  pointer-events: none;
  z-index: 2;
}

.support-card--sand .support-card__cutout {
  left: -97px;
  top: 0;
  width: 736px;
  height: 489px;
}

.support-card--sand .support-card__visual > img:first-child {
  left: -97px;
  top: 0;
  width: 736px;
  height: 489px;
}

.support-card--cool .support-card__cutout {
  left: -105px;
  top: -38px;
  width: 674px;
  height: 449px;
}

.support-card--cool .support-card__visual > img:first-child {
  left: -105px;
  top: -38px;
  width: 674px;
  height: 449px;
}

.support-card--gray .support-card__cutout {
  left: -117px;
  top: 0;
  width: 601px;
  height: 399px;
}

.support-card--gray .support-card__visual > img:first-child {
  left: -117px;
  top: 0;
  width: 601px;
  height: 399px;
}

.cta {
  padding: 60px 0;
}

.cta-banner {
  position: relative;
  overflow: clip;
  min-height: 358px;
  max-width: 1352px;
  margin: 0 auto;
  border-radius: 24px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.cta-banner__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 136px;
  min-height: 358px;
  z-index: 1;
}

.cta-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 452px;
}

.cta-banner__btn {
  margin-top: 0;
  flex-shrink: 0;
}

.cta-banner__copy h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.48px;
}

.cta-banner__copy p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.cta-banner__visual {
  position: relative;
  width: 300px;
  height: 358px;
}

.cta-banner__character {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 300px;
  height: 300px;
  transform: translateX(-50%);
  object-fit: contain;
}

.cta-banner__stars {
  position: absolute;
  left: 50%;
  bottom: 110px;
  width: 270px;
  height: 84px;
  transform: translateX(-50%);
  object-fit: contain;
}

.cta-banner__btn {
  margin-top: 16px;
  width: fit-content;
}

@media (max-width: 1510px) {
  .hero,
  .sourcing,
  .features,
  .support {
    padding: 88px 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
    gap: 56px;
    min-height: 520px;
  }

  .hero-card {
    width: 100%;
    max-width: 520px;
    justify-self: end;
  }

  .buyer-list {
    grid-template-columns: minmax(420px, 500px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .buyer-list__panel {
    width: 100%;
    padding-inline: 28px;
  }

  .buyer-list__row {
    grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr) 100px;
    column-gap: 24px;
  }

  .feature-row {
    gap: 56px;
  }

  .feature-row--text-left {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 643px);
  }

  .feature-row--visual-left {
    grid-template-columns: minmax(520px, 643px) minmax(0, 1fr);
  }

  .feature-visual {
    width: 100%;
    max-width: 643px;
  }

  .support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .support-card,
  .cta-banner {
    width: 100%;
  }

  .cta-banner__content {
    gap: 32px;
  }

  .footer__top {
    flex-direction: column;
  }
  .support-card {
    display: flex;
    flex-direction: column;
  }
  
  .support-card__visual {
    flex-grow: 1;
  }
  .support-card__copy {
    height: auto;
    padding: 32px 24px;
  }
  .support-card--sand .support-card__cutout,
  .support-card--sand .support-card__visual > img:first-child,
  .support-card--cool .support-card__cutout,
  .support-card--cool .support-card__visual > img:first-child,
  .support-card--gray .support-card__cutout,
  .support-card--gray .support-card__visual > img:first-child {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: top;
  }
}

@media (max-width: 1399px) {
  .site-header__inner {
    width: min(100%, calc(100vw - 48px));
    gap: 40px;
  }

  .site-nav {
    gap: 0;
  }
}

@media (max-width: 1280px) {
  .buyer-list,
  .cta-banner__content {
    grid-template-columns: 1fr;
  }

  .cta-banner__content {
    justify-items: center;
  }

  .feature-row--text-left,
  .feature-row--visual-left {
    grid-template-columns: 1fr 1fr; 
  }

  .buyer-list,
  .support-grid {
    gap: 32px;
  }

  .feature-visual {
    height: auto;
    aspect-ratio: 643 / 420;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 404px);
    gap: 80px;
    min-height: 420px;
  }

  .hero-card {
    width: 404px;
    height: 420px;
    justify-self: end;
  }

  .hero-card__character {
    top: 20px;
  }

  .hero-card__message-icon {
    width: 62px;
    height: 56px;
  }

  .hero-card,
  .feature-visual,
  .buyer-list__visual,
  .buyer-list__panel {
    justify-self: stretch;
  }

  .hero__content,
  .feature-copy {
    max-width: 760px;
  }

.cta-banner__content {
    gap: 20px;
  }

  .cta-banner__copy {
    width: 320px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 80px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero__title {
    font-size: 44px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .buyer-list__row {
    grid-template-columns: 1.2fr 1fr 1.1fr auto;
  }

  .footer__columns {
    grid-template-columns: repeat(2, minmax(120px, auto));
    row-gap: 28px;
  }
}

@media (max-width: 860px) {
.cta-banner__content {
    flex-direction: column;
    padding: 40px 16px 0 16px;
    gap: 20px;
  }

  .cta-banner__copy {
    order: 1;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .cta-banner__copy h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .cta-banner__btn {
    order: 2;
    width: auto;
  }

  .cta-banner__visual {
    order: 3;
    height: 237px;
    margin: 0 auto;
  }

  .cta-banner__character {
    width: 245px;
    height: auto;
    bottom: 0;
  }

  .cta-banner__stars {
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
  }
  
  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .container {
    width: min(100%, calc(100vw - 32px));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .hero__content .btn {
    align-self: center;
  }

  .hero__title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero__description,
  .section-heading p,
  .feature-copy p,
  .support-card__copy p {
    font-size: 16px;
  }

  .hero-card,
  .feature-visual,
  .buyer-list__visual {
    height: auto;
    aspect-ratio: 643 / 420;
  }

  .hero-card {
    width: 320px;
    height: 332px;
    justify-self: center;
    aspect-ratio: auto;
  }

  .buyer-list__character {
    width: 80%;
  }

  .buyer-list__stars {
    top: 49%;
  }

  .hero-card {
    width: 320px;
    height: 332px;
    justify-self: center;
  }

  .hero-card__message {
    gap: 5px;
  }

  .hero-card__message-icon {
    width: 40px;
    height: 38px;
  }

  .hero-card__message-copy strong {
    font-size: 11px;
  }

  .hero-card__message-copy p {
    font-size: 9px;
  }

  .hero-card__character {
    top: 10px;
  }

  .buyer-list__panel {
    padding: 24px 20px;
  }

  .buyer-list__panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .buyer-list__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .buyer-list__row {
    display: flex;
    align-items: center;
    gap: 9px;
    grid-template-columns: unset;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .buyer-list__country {
    order: -1;
  }

  .buyer-list__country span {
    display: none;
  }

  .buyer-list__signal {
    display: none;
  }

  .buyer-list__company {
    font-size: 14px;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .buyer-list__badge {
    margin-left: auto;
    flex-shrink: 0;
  }

  .feature-visual__glass,
  .translation-card,
  .feature-visual__stack--top,
  .followup-board__hub,
  .approval-grid,
  .meeting-board__hub {
    transform: scale(0.82);
    transform-origin: top left;
  }

  .translation-card {
    top: 96px;
  }

  .support-grid {
    gap: 16px;
  }

  .cta-banner__copy h2 {
    font-size: 28px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .feature-row--text-left,
  .feature-row--visual-left {
    grid-template-columns: 1fr;
  }
  
  .feature-copy {
    order: 1;
  }
  
  .feature-visual {
    order: 2;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .support-card__copy {
    height: auto;
    padding: 24px;
  }
  .support-card__copy h3 {
    font-size: 24px;
  }

  .support-card__visual {
    height: 240px;
  }
}
