@charset "UTF-8";
.operator-info {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.operator-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 8px;
}
.operator-details > div {
  display: flex;
  gap: 8px;
}
.operator-details dt {
  font-weight: 500;
}
.operator-details dd {
  margin: 0;
  color: var(--ink);
}
.operator-address {
  font-style: normal;
  margin-bottom: 12px;
}
.operator-address > span {
  margin-right: 8px;
}
.operator-copyright {
  margin: 0;
  font-size: 11px;
}
:root {
  --bg: oklch(97.7% 0.008 83);
  --surface: oklch(99.7% 0.002 83);
  --ink: oklch(24% 0.014 77);
  --muted: oklch(49% 0.014 78);
  --line: oklch(89% 0.014 83);
  --accent: oklch(81% 0.157 76);
  --accent-light: oklch(95% 0.048 79);
  --accent-dark: oklch(43% 0.094 63);
  --dark: oklch(23% 0.016 77);
  --green: oklch(41% 0.086 162);
  --green-light: oklch(95% 0.025 161);
  --red: oklch(47% 0.16 29);
  --red-light: oklch(97% 0.015 29);
  --radius: 14px;
  --shadow: 0 12px 40px oklch(30% 0.015 70 / 0.06);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button,
a,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.35;
  letter-spacing: -0.045em;
}
h1 {
  font-size: 34px;
  margin-bottom: 12px;
}
h2 {
  font-size: 22px;
  margin-bottom: 18px;
}
h3 {
  font-size: 18px;
}
p {
  margin-bottom: 18px;
}
small,
.small {
  font-size: 12px;
}
strong {
  font-weight: 700;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid oklch(57% 0.16 62);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.narrow {
  max-width: 780px;
}
.muted {
  color: var(--muted);
}
.wide {
  grid-column: 1/-1;
}
.accent-text {
  color: var(--accent-dark);
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
  color: var(--muted);
}
.text-link {
  font-weight: 650;
  font-size: 14px;
  text-underline-offset: 5px;
}
.text-link:hover {
  text-decoration: underline;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--dark);
  color: var(--surface);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.demo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  padding: 7px 16px;
  min-height: 34px;
}
.demo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-dark);
  border-radius: 50%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-period {
  color: var(--accent);
  margin-left: -8px;
  font-size: 30px;
}
.brand-mark {
  width: 35px;
  height: 35px;
  background: var(--accent);
  border-radius: 12px 12px 12px 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
  font:
    900 30px/1 Georgia,
    serif;
  font-style: italic;
  padding-bottom: 4px;
  letter-spacing: -4px;
  padding-right: 4px;
}
.brand-mark.small {
  width: 27px;
  height: 27px;
  font-size: 24px;
  border-radius: 9px 9px 9px 2px;
}
.brand-mark.large {
  width: 66px;
  height: 66px;
  font-size: 56px;
  border-radius: 22px 22px 22px 5px;
  margin-bottom: 24px;
}
.site-header {
  height: 86px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.site-header nav > a:not(.btn):hover {
  color: var(--accent-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 43px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: oklch(76% 0.16 76);
}
.btn-dark {
  background: var(--dark);
  color: var(--surface);
}
.btn-dark:hover {
  background: oklch(33% 0.015 77);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.btn-secondary:hover {
  background: var(--bg);
  border-color: oklch(75% 0.02 80);
}
.btn-danger {
  background: var(--red-light);
  border-color: oklch(85% 0.07 29);
  color: var(--red);
}
.btn-small {
  font-size: 12px;
  min-height: 34px;
  padding: 7px 13px;
}
.btn-large {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 15px;
}
.btn-full {
  width: 100%;
}
.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.section {
  padding-block: 90px;
}
.section-heading {
  margin-bottom: 54px;
}
.section-heading h2,
.pricing-section h2,
.faq-section h2 {
  font-size: 42px;
  font-weight: 760;
  letter-spacing: -0.06em;
}
.section-description {
  font-size: 17px;
  line-height: 1.8;
}
.site-footer {
  background: var(--surface);
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  padding-top: 10px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-note {
  margin-top: 26px;
  font-size: 11px;
  color: var(--muted);
}
/* Brand surfaces */
.hero {
  background: oklch(95.8% 0.045 82);
  overflow: hidden;
  padding: 78px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 76px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.21;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
  font-weight: 800;
}
.hero h1 span {
  color: var(--accent-dark);
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
  color: var(--accent-dark);
  font-size: 13px;
  margin-bottom: 24px;
}
.tiny-mango {
  width: 8px;
  height: 11px;
  border-radius: 70% 30% 50% 50%;
  background: var(--accent-dark);
  transform: rotate(30deg);
}
.hero-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
}
.workflow-visual {
  position: relative;
  background: var(--surface);
  padding: 27px 30px 21px;
  border: 1px solid oklch(87% 0.045 82);
  border-radius: 20px;
  box-shadow: 18px 20px 0 oklch(89.5% 0.08 79);
  margin-bottom: 15px;
}
.visual-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 14px;
}
.illustration-tag {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}
.source-chips {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.source-chips span {
  font-size: 10px;
  font-weight: 700;
  background: var(--bg);
  border-radius: 5px;
  padding: 7px 8px;
  white-space: nowrap;
}
.task-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.task-line > div,
.tracking-line > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.task-line strong,
.tracking-line strong {
  font-size: 14px;
}
.task-line div span,
.tracking-line div span {
  font-size: 11px;
  color: var(--muted);
}
.task-check {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
}
.task-status {
  font-size: 10px;
  color: var(--green);
  margin-left: auto;
  font-weight: 700;
}
.visual-connector {
  text-align: center;
  font-size: 26px;
  color: oklch(70% 0.03 80);
  line-height: 1.4;
  padding: 10px;
}
.tracking-line {
  background: var(--accent-light);
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 9px;
  padding: 17px;
}
.parcel-icon {
  font-size: 30px;
  color: var(--accent-dark);
  line-height: 1;
}
.tracking-arrow {
  margin-left: auto;
  font-size: 25px;
  color: var(--accent-dark);
}
.visual-footnote {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
  margin: 16px 0 0;
}
.floating-note {
  position: absolute;
  right: -24px;
  bottom: -26px;
  background: var(--dark);
  color: var(--surface);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 11px;
  line-height: 1.65;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}
.floating-note > span {
  position: absolute;
  left: -12px;
  top: -17px;
  color: var(--accent-dark);
  font-size: 29px;
}
.floating-note strong {
  font-size: 13px;
  color: var(--accent);
}
.market-strip {
  text-align: center;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--line);
}
.market-strip > p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.market-strip > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  flex-wrap: wrap;
}
.market-strip strong {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.market-strip .zara-word {
  font-family: Georgia, serif;
  font-size: 29px;
  letter-spacing: -3px;
}
.market-strip small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 20px;
}
.feature-editorial {
  display: grid;
  grid-template-columns: 60px 1.15fr 1fr;
  gap: 25px;
  padding-bottom: 64px;
}
.feature-editorial.second {
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
}
.feature-number {
  font-size: 17px;
  color: var(--accent-dark);
  font-weight: 700;
  padding-top: 3px;
}
.feature-editorial h3 {
  font-size: 31px;
  margin: 0 0 22px;
  font-weight: 750;
}
.feature-editorial p:not(.eyebrow) {
  font-size: 14px;
  max-width: 39ch;
  color: var(--muted);
  line-height: 1.9;
}
.feature-editorial .eyebrow {
  letter-spacing: 0;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.check-list li {
  padding: 6px 0;
  font-size: 14px;
}
.check-list li:before {
  content: "✓";
  display: inline-block;
  width: 25px;
  color: var(--green);
  font-weight: 800;
}
.time-comparison {
  padding: 30px 35px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-self: center;
}
.time-comparison > p {
  font-weight: 650;
  font-size: 13px !important;
  color: var(--ink) !important;
}
.time-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.time-row > span {
  font-size: 12px;
  color: var(--muted);
}
.time-row > strong {
  font-size: 25px;
}
.time-track {
  height: 9px;
  border-radius: 4px;
  background: var(--bg);
  margin-bottom: 21px;
}
.time-track > span {
  display: block;
  background: oklch(81% 0.013 80);
  height: 9px;
  border-radius: 4px;
  width: 100%;
}
.time-track.short > span {
  width: 12.5%;
  background: var(--accent);
}
.time-comparison small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
}
.process-list {
  align-self: center;
  padding: 10px 0 0 30px;
}
.process-list > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}
.process-list > div > span {
  width: 30px;
  height: 30px;
  background: var(--accent-light);
  border-radius: 50%;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 750;
  padding-top: 2px;
}
.process-list strong {
  font-size: 15px;
}
.process-list > p {
  font-size: 11px !important;
  margin: 15px 0 0;
}
.how-section {
  background: var(--dark);
  color: var(--surface);
  padding: 72px 0 75px;
}
.how-section .eyebrow {
  color: var(--accent);
}
.how-section h2 {
  font-size: 36px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  gap: 55px;
  margin: 0;
}
.steps li {
  border-top: 1px solid oklch(47% 0.015 77);
  padding-top: 22px;
}
.steps li > span {
  font-size: 12px;
  color: var(--accent);
}
.steps h3 {
  font-size: 20px;
  margin: 18px 0 12px;
}
.steps p {
  font-size: 13px;
  color: oklch(77% 0.01 77);
  line-height: 1.8;
  margin: 0;
}
.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pricing-section > .muted {
  font-size: 12px;
}
.price-panel {
  padding: 35px;
  border: 1px solid oklch(83% 0.08 78);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.price {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 20px 0 0;
}
.price > span {
  font-size: 15px;
  letter-spacing: 0;
  margin-left: 8px;
  font-weight: 500;
}
.price-panel > .muted {
  font-size: 11px;
  margin-bottom: 20px;
}
.price-panel .check-list {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 25px;
}
.price-footnote {
  font-size: 10px;
  color: var(--muted);
  margin: 14px 0 0;
  text-align: center;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  padding-top: 25px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 22px 28px 22px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-size: 15px;
  font-weight: 650;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 1px;
  font-size: 20px;
  font-weight: 400;
  top: 18px;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  padding-right: 20px;
}
.closing-cta {
  padding: 54px 0;
  background: var(--accent);
}
.closing-cta > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.closing-cta p {
  font-size: 13px;
  margin-bottom: 8px;
}
.closing-cta h2 {
  font-size: 34px;
  margin-bottom: 0;
  letter-spacing: -0.05em;
}
/* Auth and documents */
.auth-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 95px;
  min-height: 670px;
  padding-block: 70px;
}
.auth-intro h1 {
  font-size: 39px;
  line-height: 1.4;
}
.auth-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}
.auth-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}
.auth-benefit > p {
  font-size: 12px;
  line-height: 1.9;
  margin: 0;
}
.auth-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.auth-panel h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.auth-panel > .muted {
  font-size: 12px;
  margin-bottom: 30px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 22px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  min-height: 49px;
}
.social-btn span {
  position: absolute;
  left: 23px;
  font-size: 20px;
  font-weight: 900;
}
.social-btn.naver {
  background: oklch(49% 0.13 153);
  color: var(--surface);
}
.social-btn.kakao {
  background: oklch(93% 0.178 99);
  color: var(--dark);
}
.social-btn:hover {
  box-shadow: inset 0 0 0 2px oklch(25% 0.01 80 / 0.2);
}
.auth-help {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
  margin: 24px 0 0;
}
.demo-entry {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.demo-entry .eyebrow {
  color: var(--accent-dark);
  font-size: 10px;
}
.demo-entry p {
  font-size: 12px;
  margin-bottom: 15px;
}
.demo-entry .btn {
  margin-bottom: 8px;
}
.onboard-steps {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 32px 0;
  font-size: 12px;
  color: var(--muted);
}
.onboard-steps .active {
  color: var(--accent-dark);
  font-weight: 750;
}
.onboard-steps li {
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
  flex: 1;
}
.onboard-steps li.active {
  border-color: var(--accent);
}
.legal-document h1 {
  font-size: 35px;
}
.policy-nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
  margin-block: 30px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}
.policy-nav a:hover {
  text-decoration: underline;
}
.legal-copy {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.95;
  overflow-wrap: anywhere;
}
.error-page {
  min-height: 480px;
}
/* Shared product UI */
.app-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: calc(100vh - 34px);
}
.sidebar {
  background: var(--dark);
  color: oklch(87% 0.012 77);
  padding: 30px 18px 25px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sidebar > .brand {
  color: var(--surface);
  margin: 0 12px 46px;
  font-size: 22px;
}
.nav-caption {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: oklch(67% 0.012 77);
  margin: 0 14px 15px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  background: transparent;
  text-align: left;
  color: inherit;
}
.nav-link > span {
  font-size: 20px;
  line-height: 1;
  width: 21px;
  text-align: center;
  opacity: 0.8;
}
.nav-link:hover {
  background: oklch(29% 0.012 77);
}
.nav-link.active {
  color: var(--accent);
  background: oklch(31% 0.024 77);
  font-weight: 750;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 50px;
}
.sidebar-bottom > p {
  font-size: 11px;
  color: oklch(64% 0.012 77);
  padding-left: 15px;
  line-height: 1.9;
}
.sidebar-bottom .nav-link {
  font-size: 12px;
}
.workspace {
  min-width: 0;
}
.workspace-top {
  height: 77px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-size: 12px;
  color: var(--muted);
}
.user-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.app-main {
  max-width: 1510px;
  padding: 36px 40px 48px;
}
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}
.page-head h1 {
  font-size: 29px;
  margin-bottom: 9px;
}
.page-head .eyebrow {
  font-size: 10px;
  letter-spacing: 1.3px;
  margin-bottom: 9px;
  color: var(--muted);
}
.page-head p {
  font-size: 13px;
  margin-bottom: 0;
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
  margin-bottom: 23px;
}
.toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.toolbar select {
  min-width: 140px;
  font-size: 12px;
  padding: 8px 32px 8px 10px;
  min-height: 37px;
}
.toolbar > .muted {
  margin-left: auto;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px 27px;
  margin-bottom: 24px;
  min-width: 0;
}
.panel > h2,
.panel-head h2 {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.panel > p {
  font-size: 13px;
  line-height: 1.85;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.panel-head h2 {
  margin-bottom: 0;
}
.panel-head p {
  margin: 7px 0 0;
}
.panel-head .text-link {
  font-size: 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-height: 135px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.stat-value {
  display: block;
  font-size: 29px;
  letter-spacing: -1px;
  line-height: 1.3;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.stat-value small {
  font-size: 12px;
  font-weight: 500;
  margin-left: 5px;
  letter-spacing: 0;
  color: var(--muted);
}
.stat-note {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.stat.highlight {
  background: var(--accent-light);
  border-color: oklch(88% 0.08 78);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.split-grid > .panel {
  height: calc(100% - 24px);
}
.notice {
  background: var(--accent-light);
  padding: 20px 23px;
  border: 1px solid oklch(89% 0.07 80);
  border-radius: 10px;
  font-size: 13px;
  margin: 20px 0;
  line-height: 1.8;
}
.notice.compact {
  font-size: 12px;
  padding: 15px 18px;
}
.notice h3 {
  font-size: 16px;
}
.notice p:last-child {
  margin-bottom: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.7;
  white-space: nowrap;
  background: var(--bg);
  color: var(--muted);
}
.badge.amber {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.badge.green {
  background: var(--green-light);
  color: var(--green);
}
.badge.red {
  background: var(--red-light);
  color: var(--red);
}
.badge.blue {
  background: oklch(95% 0.022 250);
  color: oklch(41% 0.12 250);
}
.empty {
  text-align: center;
  padding: 38px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.empty strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 8px;
}
.empty .btn {
  margin-top: 15px;
}
.loading-copy {
  font-size: 13px;
  color: var(--muted);
  padding: 20px 0;
}
.skeleton {
  background: linear-gradient(
    110deg,
    var(--surface) 20%,
    var(--bg) 45%,
    var(--surface) 70%
  );
  background-size: 200% 100%;
  animation: skeleton 1.8s linear infinite;
  min-height: 135px;
}
.chart-skeleton {
  height: 205px;
  border-radius: 8px;
}
@keyframes skeleton {
  to {
    background-position: -200% 0;
  }
}
.chart-legend {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: var(--muted);
}
.chart-legend span:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  margin-right: 7px;
  background: var(--accent);
}
.chart-legend .legend-tracking:before {
  background: var(--green);
}
.usage-chart svg {
  width: 100%;
  height: 220px;
  display: block;
  overflow: visible;
}
.chart-label {
  font-family: inherit;
  font-size: 10px;
  fill: var(--muted);
}
.data-disclosure {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.data-disclosure summary {
  cursor: pointer;
}
.data-disclosure .table-wrap {
  margin-top: 15px;
  max-height: 260px;
}
.table-wrap {
  overflow: auto;
}
.table-wrap table,
table.data-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 12px;
  white-space: nowrap;
}
.table-wrap th,
table.data-table th {
  font-size: 11px;
  font-weight: 650;
  color: var(--muted);
  padding: 11px 12px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.table-wrap td,
table.data-table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.table-wrap tr:last-child td {
  border-bottom: 0;
}
.table-wrap th:first-child,
.table-wrap td:first-child {
  padding-left: 12px;
}
.table-wrap tbody tr:hover {
  background: oklch(98% 0.008 83);
}
.subscription-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.subscription-row:first-child {
  padding-top: 0;
}
.subscription-row:last-child {
  border: 0;
  padding-bottom: 0;
}
.subscription-row h3 {
  font-size: 14px;
  margin-bottom: 6px;
}
.subscription-row p {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0;
}
.subscription-row .button-row {
  margin: 0;
}
.subscription-row .cancel-confirm {
  width: 100%;
  margin: 5px 0;
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.mini-list li:last-child {
  border: 0;
}
.mini-list span:first-child {
  color: var(--muted);
}
.mini-list span:last-child {
  text-align: right;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 17px;
  min-width: 0;
}
.form-grid .field {
  margin-bottom: 0;
}
input,
select,
textarea {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid oklch(81% 0.016 82);
  border-radius: 7px;
  min-height: 42px;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
}
select {
  padding-right: 25px;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: oklch(57% 0.014 80);
  font-size: 12px;
}
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  accent-color: var(--accent-dark);
  flex-shrink: 0;
  margin: 3px 0;
}
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 17px 0;
  font-size: 12px;
  font-weight: 500;
}
.check-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-form {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}
.inline-form .field {
  flex: 1;
  max-width: 430px;
  margin: 0;
}
.align-end {
  align-items: flex-start;
  justify-content: flex-end;
}
.form-message {
  padding: 14px 18px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid oklch(86% 0.06 29);
  border-radius: 8px;
  font-size: 13px;
  margin: 18px 0;
}
.form-message.success {
  background: var(--green-light);
  color: var(--green);
  border-color: oklch(82% 0.05 162);
}
.download-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.download-main {
  padding: 34px;
}
.download-main > h2 {
  font-size: 23px;
}
.download-main > .field {
  margin-top: 25px;
}
.release-item {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  margin-top: 17px;
}
.release-item h3 {
  font-size: 16px;
}
.release-item p {
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
}
.release-item .btn {
  margin-top: 10px;
}
.instruction-list {
  padding-left: 23px;
  margin: 25px 0;
}
.instruction-list li {
  padding: 0 0 18px 7px;
  font-size: 13px;
}
.instruction-list li::marker {
  font-weight: 750;
  color: var(--accent-dark);
}
.instruction-list li > p {
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 0;
  line-height: 1.8;
}
code {
  font-size: 11px;
  background: var(--bg);
  padding: 3px 5px;
  border-radius: 3px;
  word-break: break-all;
}
.message {
  padding: 17px 20px;
  background: var(--bg);
  border-radius: 9px;
  margin: 0 0 16px;
}
.message.from-admin {
  background: var(--accent-light);
}
.message-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 10px;
}
.message-body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.message-body p {
  margin: 0;
}
.add-mall {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 20px;
}
.add-mall > summary {
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.add-mall > p {
  margin-top: 14px;
}
.toast {
  position: fixed;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 23px;
  max-width: min(600px, 90vw);
  background: var(--dark);
  color: var(--surface);
  border: 1px solid oklch(46% 0.02 80);
  border-radius: 9px;
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 100;
}
.toast.is-error {
  background: var(--red);
}
.table-button {
  background: none;
  color: var(--accent-dark);
  text-align: left;
  font-weight: 650;
  padding: 0;
  font-size: 12px;
}
.table-button:hover {
  text-decoration: underline;
}
.inline-note {
  font-size: 11px;
  color: var(--muted);
}
@media (min-width: 1550px) {
  .app-main {
    padding: 45px 55px;
  }
  .workspace-top {
    padding-inline: 55px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 48px);
  }
  .hero-grid {
    gap: 42px;
  }
  .workflow-visual {
    padding: 23px 22px;
  }
  .source-chips span {
    padding: 6px;
    font-size: 9px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .pricing-section {
    gap: 55px;
  }
  .app-shell {
    grid-template-columns: 205px minmax(0, 1fr);
  }
  .sidebar {
    padding-inline: 12px;
  }
  .app-main {
    padding: 30px 25px;
  }
  .workspace-top {
    padding-inline: 25px;
  }
  .stats-grid {
    gap: 12px;
  }
  .stat {
    padding: 18px 17px;
  }
  .stat-value {
    font-size: 25px;
  }
  .panel {
    padding: 23px;
  }
  .split-grid {
    gap: 16px;
  }
  .auth-layout {
    gap: 50px;
  }
  .auth-panel {
    padding: 30px;
  }
  .market-strip > div {
    gap: 45px;
  }
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero .btn-large {
    font-size: 13px;
    padding: 13px 17px;
  }
  .floating-note {
    right: -10px;
  }
  .visual-top {
    font-size: 12px;
    gap: 6px;
  }
  .illustration-tag {
    font-size: 8px;
  }
  .task-line strong,
  .tracking-line strong {
    font-size: 12px;
  }
  .task-line div span,
  .tracking-line div span {
    font-size: 10px;
  }
  .task-line {
    gap: 10px;
  }
  .feature-editorial {
    grid-template-columns: 32px 1fr 1fr;
    gap: 20px;
  }
  .feature-editorial h3 {
    font-size: 25px;
  }
  .time-comparison {
    padding: 25px;
  }
  .app-shell {
    grid-template-columns: 175px minmax(0, 1fr);
  }
  .sidebar > .brand {
    font-size: 19px;
    margin-inline: 4px;
  }
  .sidebar .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .sidebar .nav-link {
    font-size: 12px;
    gap: 8px;
    padding: 11px 9px;
  }
  .nav-link > span {
    font-size: 17px;
    width: 18px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat {
    min-height: 125px;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .split-grid > .panel {
    height: auto;
  }
  .page-head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }
  .page-head h1 {
    font-size: 27px;
  }
  .page-head > .btn {
    font-size: 12px;
  }
  .download-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .auth-layout {
    gap: 35px;
  }
  .auth-intro h1 {
    font-size: 31px;
  }
  .auth-panel {
    padding: 27px;
  }
  .auth-panel h2 {
    font-size: 23px;
  }
  .auth-panel > .muted {
    font-size: 11px;
  }
  .header-inner nav {
    gap: 23px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 36px);
  }
  .demo-banner {
    font-size: 10px;
    gap: 5px;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.6;
    padding: 6px 12px;
  }
  .site-header {
    height: 70px;
  }
  .brand {
    font-size: 22px;
    gap: 8px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 26px;
  }
  .site-header nav > a:not(.btn) {
    display: none;
  }
  .header-inner nav {
    gap: 0;
  }
  .hero {
    padding: 45px 0 58px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero .eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-note {
    font-size: 11px;
  }
  .hero-actions .btn-large {
    min-height: 49px;
    font-size: 13px;
    padding-inline: 21px;
  }
  .hero-actions {
    gap: 18px;
  }
  .workflow-visual {
    margin: 10px 14px 0 0;
    padding: 23px;
    border-radius: 15px;
    box-shadow: 13px 14px 0 oklch(89.5% 0.08 79);
  }
  .visual-top {
    font-size: 14px;
  }
  .illustration-tag {
    font-size: 9px;
  }
  .source-chips span {
    font-size: 10px;
    padding: 7px 9px;
  }
  .task-line strong,
  .tracking-line strong {
    font-size: 13px;
  }
  .task-line div span,
  .tracking-line div span {
    font-size: 11px;
  }
  .floating-note {
    right: -16px;
    bottom: -22px;
  }
  .market-strip {
    padding-block: 28px;
  }
  .market-strip > div {
    gap: 17px;
    justify-content: space-between;
  }
  .market-strip strong {
    font-size: 12px;
  }
  .market-strip .zara-word {
    font-size: 22px;
  }
  .market-strip small {
    font-size: 9px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading h2,
  .pricing-section h2,
  .faq-section h2 {
    font-size: 34px;
  }
  .feature-editorial {
    grid-template-columns: 27px 1fr;
    gap: 13px;
    padding-bottom: 35px;
  }
  .feature-editorial h3 {
    font-size: 27px;
  }
  .feature-editorial p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  .time-comparison,
  .process-list {
    grid-column: 2;
  }
  .time-comparison {
    margin-top: 12px;
  }
  .feature-editorial.second {
    padding-top: 35px;
  }
  .process-list {
    padding: 5px 0;
  }
  .how-section {
    padding: 50px 0;
  }
  .how-section h2 {
    font-size: 31px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps li {
    position: relative;
    padding: 20px 0 0 42px;
  }
  .steps li > span {
    position: absolute;
    left: 0;
    top: 23px;
  }
  .steps h3 {
    margin: 0 0 8px;
  }
  .steps p br {
    display: none;
  }
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .price-panel {
    padding: 27px;
  }
  .price {
    font-size: 43px;
  }
  .price-head {
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 5px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 19px;
  }
  .closing-cta {
    padding: 37px 0;
  }
  .closing-cta > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
  .closing-cta h2 {
    font-size: 28px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links {
    gap: 14px;
    font-size: 11px;
  }
  .site-footer {
    padding-top: 30px;
  }
  .footer-note {
    font-size: 10px;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    padding-block: 37px;
    gap: 26px;
    min-height: 0;
  }
  .auth-intro h1 {
    font-size: 29px;
  }
  .auth-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .auth-intro .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .auth-benefit {
    display: none;
  }
  .auth-panel {
    padding: 27px 23px;
  }
  .app-shell {
    display: block;
  }
  .sidebar {
    padding: 14px 16px 0;
    display: block;
  }
  .sidebar > .brand {
    margin: 0 0 13px;
    font-size: 21px;
  }
  .sidebar nav {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    margin-inline: -4px;
    padding-bottom: 10px;
  }
  .sidebar .nav-link {
    white-space: nowrap;
    width: auto;
    flex-shrink: 0;
    margin: 0;
    padding: 9px 12px;
    font-size: 11px;
  }
  .sidebar .nav-link > span {
    display: none;
  }
  .nav-caption,
  .sidebar-bottom {
    display: none;
  }
  .workspace-top {
    height: 51px;
    padding-inline: 18px;
    font-size: 10px;
  }
  .workspace-top > span {
    max-width: 65%;
    font-size: 10px;
  }
  .user-chip {
    font-size: 10px;
  }
  .avatar {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
  .app-main {
    padding: 26px 18px 35px;
  }
  .page-head {
    margin-bottom: 24px;
  }
  .page-head h1 {
    font-size: 25px;
  }
  .page-head p {
    font-size: 12px;
  }
  .page-head > .btn {
    min-height: 38px;
  }
  .toolbar {
    gap: 10px;
    margin-bottom: 17px;
  }
  .toolbar label {
    font-size: 11px;
    gap: 7px;
  }
  .toolbar select {
    min-width: 107px;
    font-size: 11px;
    padding: 7px 20px 7px 8px;
    max-width: 150px;
  }
  .toolbar > .muted {
    width: 100%;
    margin: 0;
    font-size: 10px;
  }
  .stats-grid {
    gap: 10px;
    margin-bottom: 18px;
  }
  .stat {
    padding: 16px;
    min-height: 118px;
    border-radius: 10px;
  }
  .stat-label {
    font-size: 11px;
    margin-bottom: 9px;
  }
  .stat-value {
    font-size: 26px;
  }
  .stat-note {
    font-size: 9px;
  }
  .panel {
    padding: 20px 17px;
    margin-bottom: 18px;
    border-radius: 11px;
  }
  .panel-head {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 19px;
  }
  .panel-head h2,
  .panel > h2 {
    font-size: 16px;
  }
  .chart-legend {
    font-size: 10px;
  }
  .usage-chart svg {
    height: 180px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .inline-form {
    flex-wrap: wrap;
    gap: 13px;
  }
  .inline-form .field {
    flex-basis: 100%;
    max-width: none;
  }
  .button-row .btn {
    font-size: 12px;
  }
  .subscription-row {
    gap: 13px;
  }
  .subscription-row .button-row {
    width: 100%;
  }
  .notice {
    padding: 17px;
    font-size: 12px;
  }
  .download-main {
    padding: 24px;
  }
  .instruction-list {
    padding-left: 20px;
  }
  .onboard-steps {
    gap: 10px;
    font-size: 11px;
  }
  .legal-document h1 {
    font-size: 28px;
  }
  .policy-nav {
    gap: 13px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  .legal-copy {
    font-size: 13px;
  }
  .error-page h1 {
    font-size: 27px;
  }
  .toast {
    font-size: 12px;
    bottom: 17px;
    width: max-content;
    max-width: calc(100vw - 32px);
    padding: 12px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
