:root {
  --primary: #7d5dc4;
  --primary-hover: #8c6bd6;
  --bg-app: #f8f7ff;
  --bg-card: #ffffff;
  --bg-input: #f3f0ff;
  --border-purple: #e8e5f0;
  --border-light: #f3f0ff;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-sub: #555555;
  --text-muted: #6b6b6b;
  --green: #4caf50;
  --green-dark: #2e7d32;
  --green-tint: #e8f5e9;
  --green-band: #edf8ee;
  --green-band-border: #cdeccf;
  --blue-dark: #1565c0;
  --blue-tint: #eaf5ff;
  --orange-dark: #e65100;
  --orange-tint: #fff3e0;
  --primary-tint: #f2edff;
  --primary-tint-deep: #e9e1fb;
  --primary-border: #ded4f5;
  --primary-deep: #5a3fa0;
  --ink: #211836;
  --ink-soft: #2e2447;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-app);
  color: var(--text-dark);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page {
  overflow: hidden;
  background: var(--bg-app);
}

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 88px;
  background: rgba(248, 247, 255, 0.98);
  border-bottom: 1px solid var(--border-purple);
}

.logo {
  width: 118px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  color: var(--text-sub);
}

.site-nav a {
  position: relative;
  padding: 34px 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.header-cta,
.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta {
  height: 44px;
  padding: 0 22px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.button-primary,
.button-secondary,
.button-ghost {
  height: 56px;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(125, 93, 196, 0.22);
}

.button-secondary {
  background: var(--white);
  color: var(--text-body);
  border: 1px solid var(--border-purple);
}

.button-ghost {
  background: var(--bg-input);
  color: var(--primary);
}

.header-cta,
.button-primary,
.button-secondary,
.button-ghost {
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--primary-hover);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(125, 93, 196, 0.3);
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button-ghost:hover {
  background: var(--primary-tint-deep);
}

.header-cta:active,
.button-primary:active,
.button-secondary:active,
.button-ghost:active {
  transform: translateY(1px);
}

.header-cta.active {
  background: var(--primary-hover);
  box-shadow: 0 0 0 3px rgba(125, 93, 196, 0.22);
}

a.proof-card,
a.service-card,
a.step-item {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.proof-card:hover,
a.service-card:hover,
a.step-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-border);
  box-shadow: 0 14px 30px rgba(125, 93, 196, 0.13);
}

:focus-visible {
  outline: 3px solid rgba(125, 93, 196, 0.5);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 84px 88px 82px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right 100px center;
  background-size: 580px auto;
}

.home-hero {
  background-image: url("assets/images/sale_bulk.png");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 255, 0.94) 0%,
    rgba(248, 247, 255, 0.72) 46%,
    rgba(248, 247, 255, 0.08) 72%,
    rgba(248, 247, 255, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.home-hero .hero-content {
  width: min(1264px, 100%);
  max-width: none;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.hero-title {
  margin: 0;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--text-dark);
}

.hero-title strong,
.text-primary {
  color: var(--primary);
  font-weight: 900;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-sub);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.proof {
  width: min(1264px, calc(100% - 176px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-card {
  min-height: 124px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-purple);
  background: rgba(255, 255, 255, 0.95);
}

.proof-step {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.proof-title {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--text-dark);
}

.proof-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-sub);
}

.section {
  width: min(1264px, calc(100% - 176px));
  margin: 70px auto 0;
}

.section:last-of-type {
  margin-bottom: 78px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.26;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--text-dark);
}

.section-copy {
  max-width: 390px;
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
  color: var(--text-muted);
}

.lead-section {
  padding: 72px 88px 36px;
}

.lead-inner {
  max-width: 1264px;
  margin: 0 auto;
}

.page-title {
  margin: 0;
  font-size: 54px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 900;
}

.page-copy {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.68;
  font-weight: 500;
  color: var(--text-sub);
}

.lead-section--semi {
  position: relative;
  min-height: 430px;
  padding-top: 72px;
  padding-bottom: 70px;
  overflow: hidden;
}

.lead-section--semi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 255, 0.98) 0%,
    rgba(248, 247, 255, 0.92) 50%,
    rgba(248, 247, 255, 0.48) 76%,
    rgba(248, 247, 255, 0.12) 100%
  );
  pointer-events: none;
}

.lead-section--semi .lead-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 48px;
  align-items: center;
}

.lead-copy {
  min-width: 0;
}

.lead-section--semi .lead-copy {
  max-width: 760px;
}

.lead-mascot {
  justify-self: end;
  align-self: end;
  width: min(30vw, 360px);
  height: 338px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
  filter: drop-shadow(0 22px 26px rgba(33, 24, 54, 0.16));
  transform: translateY(18px);
}

.lead-section--services .lead-mascot {
  width: min(28vw, 310px);
  height: 360px;
  background-image: url("assets/images/semi_services.png");
}

.lead-section--process .lead-mascot {
  width: min(31vw, 340px);
  height: 350px;
  background-image: url("assets/images/semi_process.png");
}

.lead-section--partners .lead-mascot {
  width: min(33vw, 370px);
  height: 350px;
  background-image: url("assets/images/semi_partners.png");
}

.lead-section--report .lead-mascot {
  width: min(31vw, 330px);
  height: 342px;
  background-image: url("assets/images/semi_report.png");
}

.lead-section--contact .lead-mascot {
  width: min(30vw, 320px);
  height: 316px;
  background-image: url("assets/images/semi_contact.png");
}

/* --- Editorial feature list (replaces boxed card grids) --- */
.feature-list {
  border-top: 2px solid var(--text-dark);
}

.feature-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border-purple);
  color: inherit;
}

.feature-item.linked {
  grid-template-columns: 72px 1fr 28px;
}

.fi-no {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.fi-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--bg-input);
  color: var(--primary);
}

.fi-icon svg {
  width: 24px;
  height: 24px;
}

.fi-body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

.fi-body p {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-sub);
  max-width: 680px;
}

.fi-arrow {
  color: var(--text-muted);
  transition: transform 0.18s ease, color 0.18s ease;
}

.fi-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

a.feature-item:hover {
  background: var(--bg-input);
}

a.feature-item:hover .fi-body h3 {
  color: var(--primary);
}

a.feature-item:hover .fi-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* Icon chips shared by feature list, contact list, step numbers */
.step-no,
.contact-icon {
  display: grid;
  place-items: center;
  background: var(--bg-input);
  color: var(--primary);
  font-weight: 900;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.step-no svg {
  width: 20px;
  height: 20px;
}

.green-icon {
  background: var(--green-tint);
  color: var(--green-dark);
}

.blue-icon {
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.orange-icon {
  background: var(--orange-tint);
  color: var(--orange-dark);
}

.process-band,
.cta-band {
  border-radius: 26px;
}

.process-band {
  border: 1px solid var(--green-band-border);
  background: var(--green-band);
}

.process-band {
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.process-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.28;
  font-weight: 900;
}

.process-copy p,
.cta-band p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-sub);
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-item {
  min-height: 78px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
}

.step-no {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 15px;
}

.step-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.step-item span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Metric strip (replaces metric card grid) --- */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--text-dark);
}

.metric-item {
  padding: 26px 24px 24px 24px;
  border-right: 1px solid var(--border-purple);
}

.metric-item:first-child {
  padding-left: 0;
}

.metric-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric-item .metric-en {
  display: block;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.metric-item strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--text-dark);
}

.metric-item p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-sub);
}

/* --- Contact list (replaces contact cards) --- */
.contact-list {
  border-top: 2px solid var(--text-dark);
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border-purple);
}

.contact-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.contact-item p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--border-purple);
  background: var(--white);
}

.panel.green {
  border-color: var(--green-band-border);
  background: var(--green-band);
}

.panel h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 900;
}

.panel p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sub);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.form-card {
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border-purple);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 900;
  color: var(--text-body);
}

.input-box {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 14px;
  border: 1px solid var(--border-purple);
  background: var(--bg-app);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.input-box::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}

.input-box:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(125, 93, 196, 0.16);
}

.input-box.textarea {
  min-height: 130px;
  resize: vertical;
}

.cta-band {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--primary-border);
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--primary-tint-deep) 100%);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer {
  padding: 52px 88px 46px;
  background: var(--white);
  border-top: 1px solid var(--border-purple);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  width: 104px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-desc {
  max-width: 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-sub);
}

.footer-contact {
  margin-top: 22px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-dark);
}

.footer-links {
  display: grid;
  gap: 11px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-muted);
}

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

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-sub);
}

.footer-policies .policy-em {
  color: var(--text-dark);
  font-weight: 900;
}

.footer-policies a:hover {
  color: var(--primary);
}

/* ===================================================================
   Platform landing components (RESET marketplace positioning)
   =================================================================== */

/* Header dual CTA (users + pro partners) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-ghost {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  background: var(--white);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.header-ghost:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
}

/* Brand-purple eyebrow (replaces green dot on the platform pages) */
.eyebrow-brand {
  color: var(--primary);
}

.eyebrow-brand::before {
  background: var(--primary);
}

/* Hero refinements */
.hero-copy b {
  color: var(--text-dark);
  font-weight: 800;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-sub);
}

/* --- Three core actions: the RESET identity --- */
.core-section {
  margin-top: 60px;
}

.core-head {
  align-items: flex-start;
}

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

.core-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 26px;
  border-radius: 22px;
  border: 1px solid var(--border-purple);
  background: var(--white);
  color: inherit;
  min-height: 240px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.core-card::before {
  content: "";
  width: 46px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.core-card.green::before { background: var(--green); }
.core-card.blue::before { background: var(--blue-dark); }
.core-card.orange::before { background: var(--orange-dark); }

.core-card.green { background: var(--green-band); border-color: var(--green-band-border); }
.core-card.blue { background: var(--blue-tint); border-color: #cfe6fb; }
.core-card.orange { background: var(--orange-tint); border-color: #ffe0b8; }

.core-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(125, 93, 196, 0.16);
}

.core-emoji {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
}

.core-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.core-card.green .core-tag { color: var(--green-dark); }
.core-card.blue .core-tag { color: var(--blue-dark); }
.core-card.orange .core-tag { color: var(--orange-dark); }

.core-title {
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text-dark);
}

.core-desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--text-sub);
}

.core-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
}

.core-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.core-card:hover .core-link svg {
  transform: translateX(4px);
}

/* --- Hybrid model: two paths --- */
.hybrid-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.hybrid-col {
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-purple);
  background: var(--white);
}

.hybrid-col.bulk {
  border-color: var(--primary-border);
  background: linear-gradient(160deg, var(--primary-tint) 0%, var(--primary-tint-deep) 100%);
}

.hybrid-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-dark);
  background: var(--green-tint);
}

.hybrid-badge.bulk-badge {
  color: var(--white);
  background: var(--primary);
}

.hybrid-top h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
  color: var(--text-dark);
}

.hybrid-top p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-sub);
}

.hybrid-list {
  margin: 22px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--border-purple);
  display: grid;
  gap: 12px;
}

.hybrid-col.bulk .hybrid-list {
  border-top-color: var(--primary-border);
}

.hybrid-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-body);
}

.hybrid-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e7d32' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.hybrid-col.bulk .hybrid-list li::before {
  background-color: var(--primary-tint-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d5dc4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.hybrid-list b {
  font-weight: 900;
  color: var(--text-dark);
}

.hybrid-foot {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
}

.hybrid-foot.bulk-foot {
  color: var(--primary);
}

.hybrid-vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* --- Differentiators --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-purple);
  background: var(--white);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--primary-tint);
  color: var(--primary);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--text-dark);
}

.why-card p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-sub);
}

/* --- App mockups --- */
.showcase-section {
  padding: 52px 88px 54px;
  width: auto;
  margin: 70px 0 0;
  background: linear-gradient(180deg, var(--primary-tint) 0%, var(--bg-app) 100%);
  border-top: 1px solid var(--primary-border);
  border-bottom: 1px solid var(--primary-border);
}

.showcase-section .section-head {
  max-width: 1264px;
  margin-left: auto;
  margin-right: auto;
}

.phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1100px;
  margin: 8px auto 0;
}

.phone {
  margin: 0;
  width: 248px;
  text-align: center;
}

.phone-screen {
  height: 500px;
  padding: 16px 14px;
  border-radius: 34px;
  background: var(--bg-app);
  border: 7px solid var(--ink);
  box-shadow: 0 26px 50px rgba(33, 24, 54, 0.24);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  text-align: left;
}

.phone figcaption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
}

.ps-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-sub);
}

.ps-logo { color: var(--primary); font-size: 15px; font-weight: 900; }
.ps-loc { color: var(--text-muted); }
.ps-back { font-size: 20px; font-weight: 900; color: var(--text-dark); }
.ps-title { font-weight: 900; color: var(--text-dark); font-size: 13px; }
.ps-safe { font-size: 13px; }

.ps-hero {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 2px;
}

.ps-chips { display: flex; gap: 6px; }

.chip {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.chip.g { background: var(--green-tint); color: var(--green-dark); }
.chip.b { background: var(--blue-tint); color: var(--blue-dark); }
.chip.o { background: var(--orange-tint); color: var(--orange-dark); }

.ps-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-purple);
}

.ps-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-tint-deep);
  flex-shrink: 0;
}

.ps-thumb.b { background: var(--blue-tint); }

.ps-rowtxt { display: flex; flex-direction: column; gap: 3px; }
.ps-rowtxt b { font-size: 13px; font-weight: 900; color: var(--text-dark); }
.ps-rowtxt i { font-size: 11px; font-style: normal; font-weight: 700; color: var(--text-muted); }

.ps-auction {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
}

.ps-auction-label { font-size: 11px; font-weight: 700; color: #c9bdf0; }
.ps-auction-price { font-size: 24px; font-weight: 900; letter-spacing: -0.01em; }
.ps-auction-time { font-size: 11px; font-weight: 700; color: #b9a9ee; }

.ps-bid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border-purple);
}

.ps-bid-name { font-size: 12px; font-weight: 800; color: var(--text-body); }
.ps-bid-amt { font-size: 13px; font-weight: 900; color: var(--primary); }
.ps-bid-amt.blur { color: var(--text-muted); letter-spacing: 0.06em; }

.ps-cta {
  margin-top: auto;
  padding: 13px;
  text-align: center;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.ps-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.bubble.in {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--border-purple);
  color: var(--text-body);
  border-bottom-left-radius: 5px;
}

.bubble.out {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 5px;
}

.ps-escrow {
  align-self: center;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}

.ps-input {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-purple);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Trust / safety --- */
.trust-band {
  padding: 44px;
  border-radius: 26px;
  border: 1px solid var(--primary-border);
  background: var(--white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.trust-head h2 {
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 900;
  color: var(--text-dark);
}

.trust-head p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-sub);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-app);
  border: 1px solid var(--border-purple);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--primary-tint);
  color: var(--primary);
}

.trust-icon svg { width: 24px; height: 24px; }

.trust-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--text-dark);
}

.trust-item span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-sub);
}

/* --- Stats / numbers --- */
.stats-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 26px;
}

.stats-head .section-title { text-align: center; }

.beta-pill {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 30px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border-purple);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat strong span {
  font-size: 20px;
  font-weight: 900;
  margin-left: 2px;
}

.stat p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-sub);
}

.stats-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Pro partner recruitment (inverted band) --- */
.pro-band {
  padding: 48px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary-deep) 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow-invert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9cdff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.eyebrow-invert::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b79bff;
}

.pro-copy h2 {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--white);
}

.pro-copy p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #d6ccf0;
}

.pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-invert,
.button-invert-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button-invert {
  background: var(--white);
  color: var(--primary-deep);
}

.button-invert:hover { background: #f0eaff; }

.button-invert-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button-invert-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.button-invert:active,
.button-invert-ghost:active { transform: translateY(1px); }

.pro-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.pro-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 700;
  color: #ece6fb;
}

.pro-points li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #b79bff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

/* --- App download band --- */
.download-band {
  padding: 46px;
  border-radius: 26px;
  border: 1px solid var(--primary-border);
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--primary-tint-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.download-copy h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 900;
  color: var(--text-dark);
}

.download-copy p {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-sub);
}

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

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 62px;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.store-btn:hover { background: var(--ink-soft); }
.store-btn:active { transform: translateY(1px); }

.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.store-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn i { font-size: 11px; font-style: normal; font-weight: 600; color: #cfc6e6; }
.store-btn b { font-size: 18px; font-weight: 900; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-content,
.lead-inner {
  animation: rise-in 0.55s ease-out both;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero {
    background-size: 440px auto;
    background-position: right 32px center;
  }

  .hero-content {
    max-width: 580px;
  }

  .proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .lead-section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    height: auto;
    min-height: 78px;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  .hero,
  .home-hero {
    background-position: right -60px bottom 20px;
    background-size: 300px auto;
  }

  .hero::before {
    background: rgba(248, 247, 255, 0.6);
  }

  .hero-content,
  .hero-copy,
  .lead-inner,
  .page-copy {
    max-width: 100%;
  }

  .lead-section--semi .lead-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lead-section--semi {
    min-height: auto;
    padding-bottom: 30px;
  }

  .lead-section--semi::before {
    background: linear-gradient(180deg, rgba(248, 247, 255, 0.98) 0%, rgba(248, 247, 255, 0.72) 100%);
  }

  .lead-mascot,
  .lead-section--services .lead-mascot,
  .lead-section--process .lead-mascot,
  .lead-section--partners .lead-mascot,
  .lead-section--report .lead-mascot,
  .lead-section--contact .lead-mascot {
    justify-self: end;
    width: min(62vw, 270px);
    height: 220px;
    transform: none;
  }

  .section,
  .proof {
    width: calc(100% - 48px);
  }

  .hero-title,
  .page-title {
    font-size: 42px;
  }

  .proof,
  .metric-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .metric-item {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-purple);
  }

  .metric-item:last-child {
    border-bottom: 0;
  }

  .feature-item,
  .feature-item.linked {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .feature-item.linked .fi-arrow {
    display: none;
  }

  .section-head,
  .split,
  .process-band,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-copy,
  .footer-desc {
    max-width: 100%;
  }

  /* --- Platform landing: stack on mobile --- */
  .header-actions {
    order: 2;
    gap: 8px;
  }

  .header-ghost {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .core-grid,
  .why-grid,
  .stats-strip,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .hybrid-vs {
    justify-self: center;
    width: 46px;
    height: 46px;
  }

  .trust-band,
  .pro-band {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .download-band {
    padding: 32px 24px;
  }

  .showcase-section {
    margin-left: 0;
    margin-right: 0;
  }

  .phones {
    gap: 32px;
  }

  .core-title,
  .trust-head h2,
  .pro-copy h2,
  .download-copy h2 {
    font-size: 26px;
  }

  .stat strong {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  html,
  body,
  .page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 100vw;
  }

  .site-header > a:first-child {
    justify-self: start;
  }

  .site-nav {
    order: 2;
    width: calc(100vw - 48px);
    max-width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    justify-self: start;
    width: calc(100vw - 48px);
    min-width: 0;
    max-width: calc(100vw - 48px);
  }

  .header-ghost,
  .header-cta {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .lead-section--semi {
    width: 100%;
    max-width: 100vw;
    padding-top: 52px;
  }

  .lead-section--semi .lead-inner,
  .lead-section--semi .lead-copy {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .page-title {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .page-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .lead-mascot,
  .lead-section--services .lead-mascot,
  .lead-section--process .lead-mascot,
  .lead-section--partners .lead-mascot,
  .lead-section--report .lead-mascot,
  .lead-section--contact .lead-mascot {
    justify-self: center;
    width: min(68vw, 230px);
    height: 192px;
  }
}
