/* d2ctap OMS — black/white theme with dark-green accent (~15%) */
:root {
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --color-primary: #0f3d2e;
  --color-primary-dark: #0a2e22;
  --color-primary-darker: #062018;
  --color-primary-light: #f2f7f4;
  --color-primary-border: #c5d9cf;
  --color-primary-muted: rgb(15 61 46 / 0.1);
  --color-primary-focus: rgb(15 61 46 / 0.12);
  --green: #0f3d2e;
  --green-mid: #1a5c45;
  --green-soft: #e8f2ec;

  --sidebar-bg: #111318;
  --sidebar-border: rgb(255 255 255 / 0.07);
  --bg-main: #f4f5f7;

  --color-text-1: #111827;
  --color-text-2: #6b7280;
  --color-text-3: #9ca3af;
  --color-surface: #ffffff;
  --color-surface-2: #fafafa;
  --color-border: #e5e7eb;

  --lp-ink: #111111;
  --lp-ink-soft: #525252;
  --lp-muted: #737373;
  --lp-line: #e5e5e5;
  --lp-nav-h: 60px;

  --radius: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06), 0 1px 2px rgb(0 0 0 / 0.04);
  --shadow: 0 4px 16px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 18px 50px rgb(17 24 39 / 0.12);
  --gradient-primary: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  --gradient-green: linear-gradient(135deg, #0a2e22 0%, #1a5c45 55%, #0f3d2e 100%);
  --gradient-green-soft: linear-gradient(135deg, rgb(15 61 46 / 0.12) 0%, rgb(26 92 69 / 0.06) 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.mk-body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-1);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* ===== Landing shell ===== */
.landing {
  font-family: var(--font-sans);
  color: var(--lp-ink);
  background: #fff;
  padding-top: var(--lp-nav-h);
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--lp-nav-h);
  background: rgb(255 255 255 / 0.86);
  backdrop-filter: saturate(1.35) blur(14px);
  -webkit-backdrop-filter: saturate(1.35) blur(14px);
  border-bottom: 1px solid rgb(229 231 235 / 0.9);
  transition: box-shadow 0.2s ease;
}

.nav.is-scrolled {
  box-shadow: 0 8px 30px rgb(17 24 39 / 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--lp-nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  flex-shrink: 0;
}

.brand__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.12);
}

.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand__text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #111;
}

.brand__mark {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1;
}

.nav__links {
  display: none;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #525252;
}

.nav__links a {
  position: relative;
  padding: 0.2rem 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__links a:hover { color: #111; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link {
  color: var(--lp-ink);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-link:hover {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.18);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-solid:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 32px rgb(0 0 0 / 0.22);
}

.btn-solid--lg {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-solid--pulse {
  animation: landing-cta-glow 2.8s ease-in-out infinite;
}

.btn-solid--dark {
  background: #111;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.18);
}

.btn-solid--dark:hover {
  background: #000;
  filter: none;
}

.btn-solid--invert {
  background: #fff;
  color: #111;
  box-shadow: none;
}

.btn-solid--invert:hover {
  background: #f5f5f5;
  filter: none;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text-1);
  font-weight: 650;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-ghost:hover {
  border-color: var(--color-primary-border);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 0 3rem;
  min-height: calc(100svh - var(--lp-nav-h));
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  filter: blur(72px);
  opacity: 0.55;
  border-radius: 50%;
  animation: landing-blob-drift 18s ease-in-out infinite alternate;
}

.blob--a {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgb(15 61 46 / 0.16) 0%, transparent 70%);
  animation-duration: 22s;
}

.blob--b {
  width: 520px;
  height: 520px;
  top: 40px;
  right: -120px;
  background: radial-gradient(circle, rgb(0 0 0 / 0.08) 0%, transparent 70%);
  animation-duration: 20s;
  animation-delay: -4s;
}

.blob--c {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: 35%;
  background: radial-gradient(circle, rgb(26 92 69 / 0.1) 0%, transparent 70%);
  opacity: 0.4;
  animation-duration: 16s;
  animation-delay: -8s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(0 0 0 / 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(0 0 0 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 35%, transparent 75%);
}

.hero__rings {
  position: absolute;
  right: -4%;
  top: 50%;
  width: min(420px, 48vw);
  opacity: 0.7;
  animation: landing-rings-spin 40s linear infinite;
  transform: translateY(-50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: landing-dot-pulse 2s ease-in-out infinite;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.05rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--lp-ink);
  max-width: 14ch;
}

.grad--shimmer {
  background: linear-gradient(
    90deg,
    #111 0%,
    #0f3d2e 40%,
    #1a5c45 50%,
    #111 70%,
    #111 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: landing-grad-shimmer 4s linear infinite;
}

.hero__sub {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--color-text-2);
  max-width: 42ch;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-cta-primary {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.78rem 1.4rem 0.72rem;
  line-height: 1.15;
}

.btn-cta-primary__main {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-cta-primary__label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-cta-primary__arrow {
  transition: transform 0.18s ease;
}

.btn-cta-primary:hover .btn-cta-primary__arrow {
  transform: translateX(3px);
}

.btn-cta-primary__hint {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero__marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__marketplace {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.hero__marketplace:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary-border);
}

.hero__marketplace img {
  height: 18px;
  width: auto;
}

.hero__marketplace[data-tone="meesho"] .hero__marketplace-name {
  color: #f43397;
}

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  animation: landing-hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--enter-delay, 0s);
}

/* Product panel */
.hero__panel {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(145deg, rgb(15 61 46 / 0.35), rgb(255 255 255 / 0.25), rgb(17 24 39 / 0.12));
  box-shadow: var(--shadow-lg);
  animation: landing-mockup-float 6s ease-in-out infinite;
}

.hero__panel--media {
  padding: 0;
  background: linear-gradient(145deg, rgb(15 61 46 / 0.28), rgb(255 255 255 / 0.35), rgb(17 24 39 / 0.1));
}

.hero__shot {
  margin: 0;
  border-radius: 21px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.85);
  line-height: 0;
}

.hero__shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero__panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.hero__panel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5e7eb;
}

.hero__panel-dot:nth-child(1) { background: #0f3d2e; }
.hero__panel-dot:nth-child(2) { background: #9ca3af; }
.hero__panel-dot:nth-child(3) { background: #e5e7eb; }

.hero__panel-title {
  margin-left: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-2);
  letter-spacing: -0.01em;
}

.hero__panel-body {
  padding: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.kpi {
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.kpi__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 0.25rem;
}

.kpi__value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.kpi--accent {
  background: linear-gradient(180deg, #f2f7f4, #fff);
  border-color: var(--color-primary-border);
}

.kpi--accent .kpi__value { color: var(--color-primary-dark); }

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.panel-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.86rem;
  font-weight: 650;
}

.panel-list__meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.hero-floater {
  position: absolute;
  z-index: 2;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 750;
  color: #111;
  backdrop-filter: blur(8px);
  animation: landing-floater-bob 5s ease-in-out infinite;
}

.hero-floater--a {
  top: 12%;
  left: -4%;
}

.hero-floater--b {
  bottom: 14%;
  right: -3%;
  animation-delay: 0.8s;
}

.hero-floater span {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  color: var(--color-text-2);
  margin-top: 0.1rem;
}

/* ===== Sections ===== */
.section {
  padding: 4.75rem 0;
  position: relative;
}

.section--muted {
  background:
    radial-gradient(640px 240px at 8% 0%, rgb(15 61 46 / 0.06), transparent 62%),
    var(--color-surface-2);
}

.section--dark {
  background:
    radial-gradient(720px 300px at 88% 18%, rgb(15 61 46 / 0.28), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #111318 55%, #0d0d0d 100%);
  color: #fff;
}

.section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section--dark .section__eyebrow { color: #8fbfa8; }

.section__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  max-width: 16ch;
}

.section__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--lp-ink-soft);
  font-size: 1.05rem;
}

.section--dark .section__lead { color: rgb(255 255 255 / 0.72); }

.section__head { margin-bottom: 2.25rem; }

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary-border);
  box-shadow: 0 16px 36px rgb(0 0 0 / 0.1);
}

.feature-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  border: 1px solid var(--color-primary-border);
}

.feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.feature-item p {
  margin: 0;
  color: var(--lp-muted);
  max-width: 48ch;
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 4.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.04em;
  color: #fff;
  background: var(--gradient-green);
  box-shadow: 0 8px 18px rgb(15 61 46 / 0.25);
}

.step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
}

.faq details {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 0.7rem;
  background: #fff;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  flex: none;
}

.faq details[open] summary::after { content: "–"; }

.faq details[open] {
  border-color: var(--color-primary-border);
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.06);
}

.faq p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--lp-muted);
  max-width: 62ch;
}

.cta-band {
  display: grid;
  gap: 1.35rem;
  align-items: center;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--lp-line);
  font-size: 0.9rem;
  color: var(--lp-muted);
  background: #fff;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

/* ===== Auth ===== */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  font-family: var(--font-sans);
  background:
    radial-gradient(1000px 420px at 8% -8%, rgb(15 61 46 / 0.1), transparent 55%),
    radial-gradient(800px 380px at 92% 0%, rgb(26 92 69 / 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-main) 45%, #f4f5f7 100%);
}

.auth-page--marketplaces { padding: 1.25rem; }

.auth-shell {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 24px 60px rgb(17 24 39 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.7);
}

.auth-shell--wide { width: min(1000px, 100%); }

.auth-aside {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2.15rem 1.9rem;
  background:
    radial-gradient(circle at 90% 85%, rgb(15 61 46 / 0.35), transparent 45%),
    linear-gradient(165deg, #0a0a0a 0%, #111318 50%, #161616 100%);
  color: #fff;
  border-right: 1px solid var(--sidebar-border);
  position: relative;
  overflow: hidden;
}

.auth-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 30% 20%, #000 20%, transparent 70%);
  pointer-events: none;
}

.auth-aside > * { position: relative; z-index: 1; }

.auth-aside__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.auth-aside__brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgb(15 61 46 / 0.28);
}

.auth-aside__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fbfa8;
}

.auth-aside__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.auth-aside__sub {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.78);
}

.auth-aside__bullets {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-aside__bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: rgb(255 255 255 / 0.9);
}

.auth-aside__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--color-primary);
}

.auth-marketplaces {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-marketplace {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.2);
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.14);
}

.auth-marketplace img {
  height: 20px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
}

.auth-marketplace__name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f43397;
}

.auth-marketplace[data-tone="flipkart"] {
  background: linear-gradient(180deg, #fff, #e8f0fe);
}

.auth-marketplace[data-tone="meesho"] {
  background: linear-gradient(180deg, #fff, #fff0f8);
}

.auth-marketplace[data-tone="citymall"] {
  background: linear-gradient(180deg, #fff, #fce4ec);
}

.auth-marketplace[data-tone="myntra"] {
  background: linear-gradient(180deg, #fff, #fff5f7);
}

.auth-markets-one {
  display: none;
  margin: 0 0 1.15rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-2);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
}

.auth-card {
  padding: 2rem 1.5rem 1.85rem;
  background: var(--color-surface);
}

.brand-home-link {
  display: none;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.12);
}

.brand-heading {
  margin: 0 0 0.3rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-align: center;
  color: var(--color-text-1);
}

.brand-subtitle {
  margin: 0 0 1.2rem;
  text-align: center;
  color: var(--color-text-2);
  font-size: 0.95rem;
}

.banner-error,
.banner-info,
.banner-ok {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.banner-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.banner-ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.banner-info {
  background: var(--color-primary-light);
  color: var(--color-primary-darker);
  border: 1px solid var(--color-primary-border);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.field-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-1);
}

.field-input {
  width: 100%;
  min-height: 46px;
  padding: 0 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text-1);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.field-input:hover { border-color: #d1d5db; }

.field-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-focus);
}

.otp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}

.btn-otp {
  min-height: 46px;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--color-primary-border);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.btn-otp:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary-darker);
  background: #e8f2ec;
}

.btn-otp:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  width: 100%;
  min-height: 48px;
  margin-top: 0.3rem;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.2);
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #000;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.helper-text {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-2);
}

.secondary-row {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--color-text-2);
}

.secondary-row a {
  color: var(--color-primary);
  font-weight: 750;
}

.secondary-row a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes landing-cta-glow {
  0%, 100% { box-shadow: 0 10px 28px rgb(0 0 0 / 0.18); }
  50% {
    box-shadow:
      0 14px 34px rgb(0 0 0 / 0.26),
      0 0 0 6px rgb(15 61 46 / 0.1);
  }
}

@keyframes landing-blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.04); }
  100% { transform: translate(-10px, 20px) scale(0.98); }
}

@keyframes landing-rings-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes landing-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgb(15 61 46 / 0.2); }
  50% { box-shadow: 0 0 0 8px rgb(26 92 69 / 0.12); }
}

@keyframes landing-grad-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes landing-hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes landing-floater-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes landing-mockup-float {
  0%, 100% { transform: perspective(1200px) rotateX(2deg) rotateY(-2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(1deg) rotateY(-1deg) translateY(-10px); }
}

@media (min-width: 760px) {
  .nav__links { display: flex; }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cta-band { grid-template-columns: 1.35fr auto; }
  .hero__title { max-width: 15ch; }
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.25rem;
  }
}

/* ===== Register compact ===== */
.auth-page--compact {
  padding: 0.85rem;
}

.auth-shell--register {
  width: min(820px, 100%);
}

.auth-page--compact .auth-aside {
  gap: 0.55rem;
  padding: 1.35rem 1.25rem;
}

.auth-page--compact .auth-aside__brand {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.auth-page--compact .auth-aside__brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.auth-page--compact .auth-aside__eyebrow {
  font-size: 0.65rem;
}

.auth-page--compact .auth-aside__title {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.auth-page--compact .auth-aside__sub {
  font-size: 0.82rem;
  line-height: 1.4;
}

.auth-page--compact .auth-marketplace {
  min-height: 2rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.55rem;
}

.auth-page--compact .auth-marketplace img {
  height: 16px;
}

.auth-page--compact .auth-marketplace__name {
  font-size: 0.78rem;
}

.auth-page--compact .auth-aside__bullets {
  margin-top: 0.45rem;
  gap: 0.3rem;
}

.auth-page--compact .auth-aside__bullets li {
  font-size: 0.8rem;
}

.auth-page--compact .auth-card {
  padding: 1.15rem 1.1rem 1.1rem;
}

.auth-page--compact .brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.auth-page--compact .brand-heading {
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
}

.auth-page--compact .brand-subtitle {
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
}

.auth-page--compact .auth-markets-one {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.55rem;
}

.auth-page--compact .banner-info,
.auth-page--compact .banner-error,
.auth-page--compact .banner-ok {
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  border-radius: 8px;
}

.auth-page--compact .field {
  margin-bottom: 0.55rem;
  gap: 0.2rem;
}

.auth-page--compact .field-label {
  font-size: 0.72rem;
}

.auth-page--compact .field-input {
  min-height: 36px;
  padding: 0 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.auth-page--compact .btn-otp {
  min-height: 36px;
  padding: 0 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
}

.auth-page--compact .helper-text {
  margin: -0.2rem 0 0.45rem;
  font-size: 0.72rem;
}

.auth-page--compact .btn-primary {
  min-height: 38px;
  margin-top: 0.15rem;
  border-radius: 8px;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.16);
}

.auth-page--compact .secondary-row {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.auth-page--compact #register-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.55rem;
}

.auth-page--compact #register-form .field:nth-child(1),
.auth-page--compact #register-form .field:nth-child(2),
.auth-page--compact #register-form .field:nth-child(3),
.auth-page--compact #register-form .field:nth-child(4),
.auth-page--compact #register-form .helper-text,
.auth-page--compact #register-form .btn-primary {
  grid-column: 1 / -1;
}

.auth-page--compact #register-form .field--half,
.auth-page--compact #setup-company-form .field--half {
  grid-column: span 1;
}

.auth-page--compact #setup-company-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.55rem;
}

.auth-page--compact #setup-company-form .field:not(.field--half),
.auth-page--compact #setup-company-form .btn-primary {
  grid-column: 1 / -1;
}

.auth-page--compact select.field-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #737373 50%),
    linear-gradient(135deg, #737373 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.setup-skip {
  border: 0;
  background: transparent;
  color: var(--color-text-2);
  font: inherit;
  font-weight: 650;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.setup-skip:hover {
  color: var(--color-primary-dark);
}

.auth-shell--setup {
  width: min(860px, 100%);
}

@media (max-width: 520px) {
  .auth-page--compact #register-form,
  .auth-page--compact #setup-company-form {
    grid-template-columns: 1fr;
  }
  .auth-page--compact #register-form .field--half,
  .auth-page--compact #setup-company-form .field--half {
    grid-column: 1 / -1;
  }
}

@media (min-width: 880px) {
  .auth-shell { grid-template-columns: 1.05fr 1fr; }
  .auth-aside { display: flex; }
  .auth-card {
    padding: 2.4rem 2.1rem 2.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .brand-heading,
  .brand-subtitle { text-align: left; }
  .brand-home-link { display: none; }

  .auth-page--compact .auth-card {
    padding: 1.35rem 1.35rem 1.25rem;
  }
  .auth-shell--register {
    width: min(820px, 100%);
  }
}

@media (max-width: 879px) {
  .brand-home-link { display: flex; }
  .auth-markets-one { display: block; }
  .nav__cta .btn-link { display: none; }
  .hero-floater { display: none; }
  .hero {
    min-height: auto;
    padding: 2.5rem 0 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
