:root {
  color-scheme: light;
  --blue: #3182f6;
  --blue-strong: #1769da;
  --blue-soft: #eaf3ff;
  --navy: #0b1730;
  --ink: #191f28;
  --text: #333d4b;
  --muted: #6b7684;
  --line: #e5e8eb;
  --surface: #ffffff;
  --surface-soft: #f6f8fa;
  --success: #03b26c;
  --warning: #dd7d02;
  --peach: #fff2e3;
  --content: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 64px rgba(25, 31, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(229, 232, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--content), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-kicker {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.concept-switcher {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(25, 31, 40, 0.14);
  backdrop-filter: blur(12px);
}

.concept-switcher span {
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.concept-switcher a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.concept-switcher a[aria-current="page"] {
  background: var(--blue);
  color: white;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 78px 0;
}

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

.section-blue {
  background: var(--blue-soft);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.display-title {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 1.2;
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.8;
}

.centered {
  text-align: center;
}

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

.accent {
  color: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-strong);
  box-shadow: 0 12px 26px rgba(49, 130, 246, 0.22);
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(49, 130, 246, 0.35);
  outline-offset: 3px;
}

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #b9d6ff;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 14px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.trust-line span {
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-description {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(25, 31, 40, 0.12);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.market-proof {
  aspect-ratio: 1.68 / 1;
}

.market-proof > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.privacy-mask {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(49, 130, 246, 0.22);
  background: rgba(244, 248, 255, 0.92);
  color: #526176;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-align: center;
  backdrop-filter: blur(10px);
}

.privacy-mask--editor-input {
  top: 7.05%;
  left: 11%;
  width: 11.9%;
  height: 4.9%;
  border-radius: 10px;
}

.privacy-mask--editor-table {
  top: 38%;
  bottom: 0;
  left: 44.8%;
  width: 10.8%;
}

.privacy-mask--sourcing {
  top: 27.5%;
  bottom: 5.5%;
  left: 30.4%;
  width: 10.2%;
}

.frame-label {
  position: absolute;
  display: none;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(11, 23, 48, 0.78);
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.dashboard-screen .frame-label {
  display: none;
}

.dashboard-kpis {
  position: absolute;
  z-index: 3;
  top: 60.7%;
  right: 0.7%;
  left: 23.5%;
  height: 13.3%;
  display: grid;
  grid-template-columns: 1.78fr 1fr;
  gap: 1.15%;
  color: #172033;
}

.dashboard-kpis article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 1.5% 2.5%;
  overflow: hidden;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 14px rgba(35, 52, 75, 0.06);
}

.dashboard-kpis article > span {
  color: #586a84;
  font-size: clamp(7px, 0.72vw, 12px);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-kpis em {
  margin-left: 4px;
  color: #3182f6;
  font-size: 0.72em;
  font-style: normal;
}

.dashboard-kpis strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: clamp(12px, 1.28vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-kpis small {
  margin-top: 3px;
  color: #7c8b9f;
  font-size: clamp(6px, 0.56vw, 9px);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-kpis article:first-child small {
  color: #11a36a;
}

.dashboard-analytics {
  position: absolute;
  z-index: 4;
  top: 75.5%;
  right: 0.15%;
  bottom: 0;
  left: 23.5%;
  display: grid;
  grid-template-columns: 2.12fr 0.92fr;
  gap: 1.15%;
  color: #172033;
}

.dashboard-analytics > section {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e6ebf2;
  border-radius: 15px 15px 0 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 14px rgba(35, 52, 75, 0.05);
}

.sales-trend-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 2.3% 2.5% 0;
}

.dashboard-chart-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-width: 0;
  color: #526176;
  font-size: clamp(6px, 0.62vw, 10px);
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-chart-title span,
.dashboard-chart-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-chart-title small {
  margin-left: 4px;
  padding: 2px 5px;
  border: 1px solid #e6ebf2;
  border-radius: 999px;
  color: #7c8b9f;
  font-size: 0.8em;
}

.dashboard-chart-title strong {
  color: #3182f6;
  font-size: 0.95em;
  letter-spacing: -0.025em;
}

.sales-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 4%;
  min-height: 0;
  margin-top: 4%;
  padding: 0 3%;
  border-bottom: 1px solid #dce7f6;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 31%, #edf2f8 32%, transparent 33%);
}

.sales-bars i {
  width: 7.5%;
  min-height: 10%;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #3182f6 0%, #9bc6ff 100%);
  box-shadow: 0 2px 7px rgba(49, 130, 246, 0.2);
}

.sales-bars i:nth-child(1) { height: 38%; }
.sales-bars i:nth-child(2) { height: 62%; }
.sales-bars i:nth-child(3) { height: 47%; }
.sales-bars i:nth-child(4) { height: 82%; }
.sales-bars i:nth-child(5) { height: 55%; }
.sales-bars i:nth-child(6) { height: 71%; }
.sales-bars i:nth-child(7) { height: 88%; }

.channel-chart-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 5.2% 5% 1%;
}

.channel-chart-content {
  display: flex;
  min-height: 0;
  align-items: center;
  gap: 6%;
}

.channel-donut {
  position: relative;
  display: grid;
  width: min(44%, 92px);
  flex: 0 0 auto;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#3182f6 0 62%, #7457df 62% 100%);
}

.channel-donut::after {
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  background: #fff;
  content: "";
}

.channel-donut > span {
  position: relative;
  z-index: 1;
  display: grid;
  text-align: center;
}

.channel-donut strong {
  font-size: clamp(6px, 0.68vw, 11px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.channel-donut small {
  margin-top: 2px;
  color: #7c8b9f;
  font-size: clamp(5px, 0.48vw, 8px);
  line-height: 1;
}

.channel-legend {
  display: grid;
  flex: 1;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.channel-legend li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.channel-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3182f6;
}

.channel-legend .is-coupang i {
  background: #7457df;
}

.channel-legend span {
  overflow: hidden;
  font-size: clamp(5px, 0.48vw, 8px);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-legend small {
  display: block;
  margin-top: 2px;
  color: #7c8b9f;
  font-size: 0.78em;
}

.channel-legend b {
  color: #3182f6;
  font-size: clamp(5px, 0.48vw, 8px);
}

.channel-legend .is-coupang b {
  color: #7457df;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-step {
  position: relative;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  padding: 4px;
  border: 0;
  border-radius: 14px;
  background: #f3f7ff;
  box-shadow: inset 0 0 0 1px rgba(49, 130, 246, 0.12);
  object-fit: contain;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  text-align: left;
}

.capability-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 14px 34px rgba(25, 31, 40, 0.055);
}

.capability-tag,
.status-label,
.market-mode,
.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.capability-card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.market-heading {
  margin: 64px 0 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.market-lead {
  margin: 0;
  color: var(--muted);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.market-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.market-card img {
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 18px;
  background: #f7f9fc;
  object-fit: contain;
}

.market-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.market-mode {
  min-height: 22px;
  padding: 3px 7px;
  background: #f1f5f9;
  color: #526176;
  font-size: 10px;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 28px;
}

.status-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.status-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.status-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.status-card.is-ready .status-label {
  background: #eaf9f2;
  color: #087d54;
}

.status-card.is-preparing .status-label {
  background: #fff4df;
  color: #a45a00;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: stretch;
}

.price-card,
.notice-card,
.privacy-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.price-card {
  box-shadow: var(--shadow);
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  margin: 22px 0 8px;
}

.plan-price del {
  color: #929baa;
  font-size: 20px;
  font-weight: 750;
}

.plan-price strong {
  color: var(--blue-strong);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-features,
.notice-list,
.privacy-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-features li,
.notice-list li,
.privacy-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.65;
}

.price-features li::before,
.notice-list li::before,
.privacy-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: "•";
  font-weight: 900;
}

.notice-stack {
  display: grid;
  gap: 20px;
}

.notice-card {
  border-color: #ffd7a3;
  background: #fff9ef;
}

.notice-card h3,
.privacy-card h3,
.price-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.notice-card .notice-strong {
  color: #ad5b00;
  font-weight: 900;
}

.privacy-card p {
  color: var(--muted);
  line-height: 1.7;
}

.collection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.collection-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #526176;
  font-size: 12px;
  font-weight: 800;
}

.form-note {
  padding: 15px 16px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.workflow-step b,
.feature-copy h3 {
  display: block;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.workflow-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 70px;
}

.feature-split.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.08fr);
}

.feature-split.reverse .feature-visual {
  order: 2;
}

.feature-split.reverse .feature-copy {
  order: 1;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 850;
  line-height: 1.25;
}

.feature-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.feature-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.outcome-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.outcome,
.benefit {
  padding: 28px;
  border-top: 3px solid var(--blue);
  background: var(--surface);
}

.outcome strong,
.benefit strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.outcome p,
.benefit p {
  margin: 0;
  color: var(--muted);
}

.automation-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: white;
}

.automation-copy {
  padding: 54px;
}

.automation-copy .eyebrow {
  color: #7fb5ff;
}

.automation-copy h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
}

.automation-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.automation-proof {
  min-height: 430px;
  background: #111d32;
}

.automation-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.policy-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.site-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
}

.site-count {
  font-size: 22px;
  font-weight: 850;
}

.site-search {
  width: min(100%, 320px);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.site-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-chip {
  padding: 10px 14px;
  border: 1px solid #d8e6fb;
  border-radius: 999px;
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.custom-site-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: white;
}

.custom-site-box strong {
  display: block;
  font-size: 24px;
}

.custom-site-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.price {
  color: #7fb5ff;
}

.faq-list {
  max-width: 860px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 4px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 4px 24px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: white;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
}

.final-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .button-secondary {
  border-color: white;
}

.site-footer {
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: white;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(11, 23, 48, 0.3);
}

dialog::backdrop {
  background: rgba(11, 23, 48, 0.68);
  backdrop-filter: blur(5px);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 0;
}

.dialog-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.dialog-header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.dialog-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.dialog-body {
  padding: 26px 30px 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  color: var(--ink);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.success-panel {
  padding: 18px 0 4px;
  text-align: center;
}

.success-panel h3 {
  margin: 0;
  font-size: 28px;
}

.success-panel p {
  color: var(--muted);
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 74px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 42px rgba(25, 31, 40, 0.25);
  font-size: 14px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .primary-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a:not(.button) {
    padding: 10px 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .feature-split,
  .feature-split.reverse,
  .automation-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .feature-split.reverse .feature-visual,
  .feature-split.reverse .feature-copy {
    order: initial;
  }

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

  .workflow-step {
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(2n) {
    border-right: 0;
  }

  .workflow-step:last-child {
    grid-column: 1 / -1;
  }

  .outcome-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .automation-proof {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .container {
    width: min(100% - 28px, var(--content));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  .display-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .hero-description,
  .section-lead,
  .feature-copy > p {
    font-size: 17px;
  }

  .button-row,
  .button-row .button,
  .final-cta .button-row {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:nth-child(2n) {
    border-right: 0;
  }

  .workflow-step:last-child {
    grid-column: auto;
  }

  .automation-copy {
    padding: 34px 26px;
  }

  .automation-proof {
    min-height: 280px;
  }

  .site-toolbar,
  .custom-site-box,
  .final-cta,
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-toolbar,
  .footer-inner {
    display: grid;
  }

  .site-search {
    width: 100%;
  }

  .custom-site-box,
  .final-cta {
    padding: 30px 24px;
  }

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

  .capability-grid,
  .market-grid,
  .platform-strip {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 24px;
  }

  .market-card {
    min-height: 104px;
  }

  .price-card,
  .notice-card,
  .privacy-card {
    padding: 28px 24px;
  }

  .privacy-mask {
    font-size: 7px;
  }

  .field-full {
    grid-column: auto;
  }

  .dialog-header,
  .dialog-body {
    padding-right: 22px;
    padding-left: 22px;
  }

  .dashboard-kpis {
    top: 60.7%;
    right: 0.45%;
    left: 23.25%;
    height: 13.5%;
    gap: 0.7%;
  }

  .dashboard-kpis article {
    padding: 2px 4px;
    border-radius: 6px;
  }

  .dashboard-kpis article > span {
    font-size: 5px;
  }

  .dashboard-kpis em {
    margin-left: 2px;
  }

  .dashboard-kpis strong {
    margin-top: 1px;
    font-size: 8px;
  }

  .dashboard-kpis small {
    margin-top: 1px;
    font-size: 4.5px;
  }

  .dashboard-analytics {
    top: 75.3%;
    right: 0;
    bottom: 0;
    left: 23.25%;
    gap: 0.7%;
  }

  .dashboard-analytics > section {
    border-radius: 6px 6px 0 0;
  }

  .sales-trend-card {
    padding: 4px 4px 0;
  }

  .dashboard-chart-title {
    gap: 2px;
    font-size: 4.5px;
  }

  .dashboard-chart-title small {
    margin-left: 2px;
    padding: 1px 2px;
  }

  .sales-bars {
    gap: 3%;
    margin-top: 2px;
  }

  .channel-chart-card {
    padding: 4px 3px 0;
  }

  .channel-chart-content {
    gap: 3px;
  }

  .channel-donut {
    width: 39%;
  }

  .channel-donut strong {
    font-size: 5.5px;
  }

  .channel-donut small,
  .channel-legend span,
  .channel-legend b {
    font-size: 4px;
  }

  .channel-legend {
    gap: 2px;
  }

  .channel-legend li {
    grid-template-columns: 3px minmax(0, 1fr) auto;
    gap: 2px;
  }

  .channel-legend i {
    width: 3px;
    height: 3px;
  }

  .channel-legend small {
    margin-top: 1px;
  }

  .concept-switcher span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
