:root {
  --green-900: #143d2a;
  --green-800: #195033;
  --green-600: #218a52;
  --green-100: #e8f6ee;
  --orange-600: #ea6f1d;
  --orange-100: #fff1e6;
  --ink: #172033;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f7faf8;
  --shadow: 0 24px 70px rgba(20, 61, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.login-link:hover,
.text-link:hover {
  color: var(--green-600);
}

.login-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 138, 82, 0.14), transparent 28%),
    radial-gradient(circle at 80% 16%, rgba(234, 111, 29, 0.14), transparent 32%),
    linear-gradient(135deg, #f8fcf9 0%, #ffffff 50%, #fff8f1 100%);
}

.hero-login-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: min(100%, 520px);
  margin: 0 0 clamp(28px, 4vw, 44px);
  padding: clamp(22px, 3vw, 30px) clamp(24px, 3.5vw, 34px);
  border: 2px solid var(--green-600);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  box-shadow: 0 18px 40px rgba(33, 138, 82, 0.14);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.hero-login-banner:hover {
  transform: translateY(-2px);
  border-color: var(--green-700);
  box-shadow: 0 22px 48px rgba(33, 138, 82, 0.2);
}

.hero-login-eyebrow {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-login-title {
  color: var(--green-900);
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.hero-login-desc {
  color: #475467;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.channels-section h2,
.beta-section h2 {
  margin: 0;
  color: var(--green-900);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
  word-break: keep-all;
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 82px);
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: clamp(18px, 2vw, 22px);
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.primary-btn,
.price-card a {
  color: #fff;
  background: var(--orange-600);
  box-shadow: 0 14px 28px rgba(234, 111, 29, 0.25);
}

.secondary-btn {
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
}

.primary-btn:hover,
.secondary-btn:hover,
.price-card a:hover {
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  border: 1px solid rgba(33, 138, 82, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hero-board {
  position: relative;
  border: 1px solid rgba(25, 80, 51, 0.12);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tracking-preview {
  transform: translateY(10px);
}

.tracking-topbar,
.tracking-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tracking-topbar {
  color: var(--muted);
  font-size: 13px;
}

.tracking-topbar strong {
  color: var(--green-600);
}

.tracking-section-title {
  margin: 16px 0 12px;
}

.tracking-section-title b {
  color: var(--green-900);
  font-size: 15px;
}

.tracking-section-title button {
  position: relative;
  z-index: 4;
  border: 0;
  border-radius: 9px;
  padding: 7px 11px;
  color: #fff;
  background: #2563eb;
  font-size: 11px;
  font-weight: 800;
  overflow: visible;
}

.register-target {
  animation: registerClick 11s ease-in-out infinite;
}

.register-target::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  animation: registerClickSpot 11s ease-in-out infinite;
}

.button-cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 17px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 6px 8px rgba(15, 23, 42, 0.28));
  transform: translate(-2px, -2px) scale(0.9);
  animation: buttonCursorClick 11s ease-in-out infinite;
}

.button-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111827;
  clip-path: polygon(0 0, 0 100%, 36% 74%, 56% 100%, 75% 88%, 54% 63%, 100% 63%);
}

.drag-file-ghost {
  position: absolute;
  left: 38px;
  top: 112px;
  z-index: 6;
  min-width: 142px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  animation: dragFileToDrop 11s ease-in-out infinite;
}

.drag-file-ghost span {
  display: block;
  color: #15803d;
  font-size: 10px;
  font-weight: 900;
}

.drag-file-ghost strong {
  display: block;
  margin-top: 2px;
  color: #1e293b;
  font-size: 13px;
}

.preview-cursor {
  position: absolute;
  left: 72px;
  top: 142px;
  z-index: 7;
  width: 17px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 6px 8px rgba(15, 23, 42, 0.22));
  animation: cursorTrackingDemo 11s ease-in-out infinite;
}

.preview-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111827;
  clip-path: polygon(0 0, 0 100%, 36% 74%, 56% 100%, 75% 88%, 54% 63%, 100% 63%);
}

.register-complete-toast {
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: 8;
  width: 190px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 14px 16px;
  background: #eff6ff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  animation: completeToast 11s ease-in-out infinite;
}

.register-complete-toast strong {
  display: block;
  color: #1d4ed8;
  font-size: 16px;
}

.register-complete-toast span {
  display: block;
  margin-top: 4px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.supplier-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.supplier-mini-card {
  border: 1px solid #f2c94c;
  border-radius: 14px;
  padding: 12px;
  background: #fffdf5;
  animation: trackingCardAutoRegister 11s ease-in-out infinite;
}

.supplier-mini-card:nth-child(1) { --fly-x: 210px; --fly-y: -104px; }
.supplier-mini-card:nth-child(2) { --fly-x: 58px; --fly-y: -104px; }
.supplier-mini-card:nth-child(3) { --fly-x: 210px; --fly-y: -184px; }
.supplier-mini-card:nth-child(4) { --fly-x: 58px; --fly-y: -184px; }
.supplier-mini-card:nth-child(5) { --fly-x: 210px; --fly-y: -264px; }
.supplier-mini-card:nth-child(6) { --fly-x: 58px; --fly-y: -264px; }

.supplier-mini-card.active {
  border-color: #22c55e;
  background: #f0fdf4;
}

.supplier-mini-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.supplier-mini-card strong {
  color: #1e293b;
  font-size: 13px;
}

.supplier-mini-card span {
  border-radius: 999px;
  padding: 2px 6px;
  color: #475569;
  background: #e0f2fe;
  font-size: 9px;
  font-weight: 800;
}

.supplier-mini-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 9px 0;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
}

.supplier-mini-card em {
  color: #b45309;
  font-style: normal;
}

.supplier-mini-card small {
  display: inline-flex;
  border-radius: 8px;
  padding: 5px 9px;
  color: #fff;
  background: #2563eb;
  font-size: 10px;
  font-weight: 800;
}

.upload-preview {
  margin-top: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.upload-drop {
  position: relative;
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  animation: uploadGlow 11s ease-in-out infinite;
}

.upload-drop::after {
  content: "여기에 드롭";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  padding: 5px 10px;
  color: #15803d;
  background: rgba(220, 252, 231, 0.94);
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  animation: dropHint 11s ease-in-out infinite;
}

.upload-drop span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.upload-drop strong {
  display: block;
  margin-top: 4px;
  color: var(--green-900);
  font-size: 14px;
}

.scan-steps {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.scan-steps p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.scan-steps b {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

@keyframes dragFileToDrop {
  0%, 6% {
    opacity: 0;
    transform: translate(0, 0) scale(0.96);
  }
  10%, 24% {
    opacity: 1;
    transform: translate(28px, 18px) scale(1);
  }
  32%, 39% {
    opacity: 1;
    transform: translate(112px, 302px) scale(0.86);
  }
  44%, 100% {
    opacity: 0;
    transform: translate(112px, 302px) scale(0.68);
  }
}

@keyframes cursorTrackingDemo {
  0%, 6% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10%, 24% {
    opacity: 1;
    transform: translate(156px, 98px);
  }
  32%, 39% {
    opacity: 1;
    transform: translate(226px, 358px);
  }
  48%, 53% {
    opacity: 0;
    transform: translate(226px, 358px);
  }
  54%, 100% {
    opacity: 0;
    transform: translate(226px, 358px);
  }
}

@keyframes completeToast {
  0%, 39% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  43%, 54% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  59%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
  }
}

@keyframes registerClick {
  0%, 53%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  57% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.28);
  }
  60% {
    transform: scale(0.94);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.2);
  }
  63% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 99, 235, 0);
  }
}

@keyframes registerClickSpot {
  0%, 56%, 65%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  59% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  62% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

@keyframes buttonCursorClick {
  0%, 49%, 66%, 100% {
    opacity: 0;
    transform: translate(-2px, -2px) scale(0.9);
  }
  53%, 57% {
    opacity: 1;
    transform: translate(-2px, -2px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translate(-2px, -2px) scale(0.78);
  }
  63% {
    opacity: 1;
    transform: translate(-2px, -2px) scale(0.9);
  }
}

@keyframes trackingCardAutoRegister {
  0%, 40%, 100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    border-color: #f2c94c;
    background: #fffdf5;
    box-shadow: none;
  }
  47%, 59% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    border-color: #93c5fd;
    background: #eff6ff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.13);
  }
  87%, 94% {
    opacity: 0;
    transform: translate(var(--fly-x), var(--fly-y)) scale(0.16);
    border-color: #2563eb;
    background: #dbeafe;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
  }
  97%, 99% {
    opacity: 0;
    transform: translate(0, 0) scale(0.92);
  }
}

@keyframes uploadGlow {
  0%, 30%, 100% { border-color: #cbd5e1; background: #fff; }
  32%, 47% {
    border-color: #22c55e;
    background: #f0fdf4;
    box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.08);
  }
}

@keyframes dropHint {
  0%, 28%, 48%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  32%, 41% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.pain-section,
.order-collect-section,
.workflow-section,
.pricing-section,
.channels-section,
.beta-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.channels-section h2,
.beta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.pain-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pain-grid article,
.step,
.price-card,
.beta-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.pain-grid span {
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
}

.pain-grid h3,
.step h3,
.price-card h3 {
  margin: 10px 0 8px;
  color: var(--green-900);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.pain-grid p,
.step p,
.channels-section p,
.beta-section p,
.price-card li,
.beta-card p {
  margin: 0;
  color: var(--muted);
}

.order-collect-section {
  background: linear-gradient(180deg, #f8fcf9 0%, #ffffff 100%);
}

.order-collect-demo {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.09);
}

.collect-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.collect-topbar strong {
  color: var(--green-900);
  font-size: 16px;
}

.collect-topbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.collect-topbar button,
.collect-filter button {
  border: 0;
  border-radius: 7px;
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.collect-secondary { background: #16a34a; }
.collect-primary {
  position: relative;
  background: #f97316;
  animation: collectButtonClick 8s ease-in-out infinite;
}
.collect-blue { background: #2563eb; }

.collect-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  padding: 12px;
  background: #fff;
}

.collect-summary span {
  text-align: center;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.collect-summary b {
  display: block;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.1;
}

.collect-summary span:nth-child(3) b {
  color: #2563eb;
  animation: collectCountPop 8s ease-in-out infinite;
}

.count-animate {
  font-variant-numeric: tabular-nums;
}

.count-animate::after {
  content: counter(orderCount);
}

.collect-summary b.count-total,
.collect-summary b.count-paid,
.collect-summary b.count-new {
  color: #2563eb;
  font-size: 0;
}

.collect-summary b.count-total {
  counter-reset: orderCount 22;
  animation: countTotalOrders 8s steps(20, end) infinite;
}

.collect-summary b.count-paid,
.collect-summary b.count-new {
  counter-reset: orderCount 0;
  animation: countTwentyOrders 8s steps(20, end) infinite;
}

.collect-summary b.count-total::after,
.collect-summary b.count-paid::after,
.collect-summary b.count-new::after {
  font-size: 22px;
}

.collect-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.collect-filter span {
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 7px 10px;
  color: #475569;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.collect-filter span:first-child,
.collect-filter button {
  color: #fff;
  background: #2563eb;
}

.collect-table {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 14px;
}

.collect-head,
.collect-row {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.6fr 2fr 0.5fr 0.8fr;
  gap: 8px;
  align-items: center;
  min-width: 760px;
}

.collect-head {
  padding: 10px 12px;
  color: #475569;
  background: #eef6ff;
  font-size: 11px;
  font-weight: 900;
}

.collect-rows {
  height: 304px;
  overflow: hidden;
  background: #fff;
}

.collect-row {
  height: 30px;
  padding: 0 12px;
  border-top: 1px solid #f1f5f9;
  color: #334155;
  font-size: 11px;
  opacity: 0;
  transform: translateY(-6px);
  animation: collectRowFill 8s linear infinite;
  animation-delay: calc(3.2s + (var(--row-i) - 1) * 0.075s);
}

.collect-row b {
  display: inline-block;
  border-radius: 6px;
  padding: 2px 6px;
  color: #92400e;
  background: #ffedd5;
  font-size: 10px;
}

.collect-cursor {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 8;
  width: 18px;
  height: 26px;
  opacity: 0;
  filter: drop-shadow(0 7px 9px rgba(15, 23, 42, 0.22));
  animation: collectCursorMove 8s ease-in-out infinite;
}

.collect-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111827;
  clip-path: polygon(0 0, 0 100%, 36% 74%, 56% 100%, 75% 88%, 54% 63%, 100% 63%);
}

.collect-robot-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 152px;
  height: 116px;
  border: 1px solid #bbf7d0;
  border-radius: 22px;
  background: rgba(240, 253, 244, 0.96);
  box-shadow: 0 20px 54px rgba(22, 163, 74, 0.18);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  animation: robotCollectLoader 8s ease-in-out infinite;
}

.collect-robot-loader span {
  font-size: 34px;
  animation: robotHeadBounce 0.55s ease-in-out infinite alternate;
}

.collect-robot-loader strong {
  color: #15803d;
  font-size: 13px;
}

@keyframes collectCursorMove {
  0%, 8% {
    opacity: 0;
    transform: translate(0, 0);
  }
  16% {
    opacity: 1;
    transform: translate(0, 0);
  }
  28%, 34% {
    opacity: 1;
    transform: translate(342px, -206px) scale(0.9);
  }
  39%, 100% {
    opacity: 0;
    transform: translate(342px, -206px) scale(0.9);
  }
}

@keyframes collectButtonClick {
  0%, 27%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  32% {
    transform: scale(0.94);
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.18);
  }
  36% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(249, 115, 22, 0);
  }
}

@keyframes robotCollectLoader {
  0%, 36%, 62%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  41%, 56% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes robotHeadBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

@keyframes collectRowFill {
  0%, 39% {
    opacity: 0;
    transform: translateY(-6px);
  }
  45%, 90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes collectCountPop {
  0%, 42% { transform: scale(1); }
  50%, 70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes countTotalOrders {
  0%, 46% { counter-reset: orderCount 22; }
  48% { counter-reset: orderCount 24; }
  50% { counter-reset: orderCount 26; }
  52% { counter-reset: orderCount 28; }
  54% { counter-reset: orderCount 30; }
  56% { counter-reset: orderCount 32; }
  58% { counter-reset: orderCount 34; }
  60% { counter-reset: orderCount 36; }
  62% { counter-reset: orderCount 38; }
  64% { counter-reset: orderCount 40; }
  66%, 100% { counter-reset: orderCount 42; }
}

@keyframes countTwentyOrders {
  0%, 46% { counter-reset: orderCount 0; }
  48% { counter-reset: orderCount 2; }
  50% { counter-reset: orderCount 4; }
  52% { counter-reset: orderCount 6; }
  54% { counter-reset: orderCount 8; }
  56% { counter-reset: orderCount 10; }
  58% { counter-reset: orderCount 12; }
  60% { counter-reset: orderCount 14; }
  62% { counter-reset: orderCount 16; }
  64% { counter-reset: orderCount 18; }
  66%, 100% { counter-reset: orderCount 20; }
}

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

.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: var(--green-600);
}

.channels-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 42px;
  align-items: center;
  background: var(--green-900);
}

.channels-section .eyebrow {
  color: #d9f7e7;
  background: rgba(255, 255, 255, 0.1);
}

.channels-section h2,
.channels-section p {
  color: #fff;
}

.channels-section p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.channel-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.channel-list .ready {
  color: var(--green-900);
  background: #d9f7e7;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  padding: 32px;
}

.price-card.featured {
  border-color: rgba(234, 111, 29, 0.35);
  background: linear-gradient(135deg, #fffaf5, #ffffff);
}

.plan-label {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 13px;
  font-weight: 900;
}

.price {
  margin: 20px 0;
  color: var(--green-900);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-600);
  font-weight: 900;
}

.price-card a {
  width: 100%;
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, var(--green-100), #fff);
}

.beta-section p {
  margin-top: 18px;
  font-size: 18px;
}

.beta-card strong {
  display: block;
  color: var(--green-900);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.beta-card .primary-btn {
  width: 100%;
  margin-top: 22px;
}

.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 24, 40, 0.58);
}

.beta-modal.show {
  display: flex;
}

.beta-modal-box {
  position: relative;
  width: min(100%, 560px);
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.28);
}

.beta-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #667085;
  background: #f2f4f7;
  font-size: 22px;
  cursor: pointer;
}

.beta-modal-box h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.beta-modal-box p,
.beta-modal-box li {
  color: var(--muted);
}

.beta-modal-box ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.beta-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.text-link {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #101828;
}

.footer-brand span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

.footer-info {
  display: grid;
  gap: 5px;
  font-size: 13px;
}

.footer-info a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .channels-section,
  .beta-section {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .login-link {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn,
  .hero-login-banner {
    width: 100%;
  }

  .pain-grid,
  .workflow,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
