/* ==========================================================================
   Importrix — styles.css
   Light theme marketing site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg:             #f8f9fc;
  --surface:        #ffffff;
  --blue-tint:      #eff6ff;

  /* Text */
  --navy:           #0f1629;
  --body:           #4a5568;
  --muted:          #94a3b8;
  --border:         #e2e8f2;

  /* Brand */
  --blue:           #1877f2;
  --blue-hover:     #1567d3;
  --blue-light:     #eff6ff;
  --green:          #059669;
  --green-light:    #ecfdf5;
  --amber:          #d97706;
  --amber-light:    #fffbeb;

  /* Radius */
  --r-btn:          10px;
  --r-card:         16px;
  --r-pill:         100px;
  --r-large:        24px;

  /* Shadows */
  --shadow-card:    0 1px 3px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.04);
  --shadow-elev:    0 4px 24px rgba(15,23,42,0.10), 0 1px 4px rgba(15,23,42,0.06);
  --shadow-blue:    0 8px 32px rgba(24,119,242,0.18);

  /* Typography */
  --font:           'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:          1200px;
  --transition:     200ms cubic-bezier(0.4,0,0.2,1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248,249,252,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(15,23,42,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-actions {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% -5%, rgba(24,119,242,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(24,119,242,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(24,119,242,0.2);
  padding: 5px 13px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  max-width: 460px;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Trust inline strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}

.hero-trust-item svg {
  flex-shrink: 0;
  stroke: var(--green);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: all var(--transition);
  border-radius: var(--r-btn);
  padding: 13px 24px;
}

.btn:active {
  transform: scale(0.98) !important;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 3px rgba(24,119,242,0.3);
}

.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Hero visual — Import Panel mock
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.import-panel {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-large);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}

.import-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.import-panel-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.import-panel-btn {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  padding: 5px 13px;
  cursor: default;
  line-height: 1;
}

.import-panel-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.import-asin-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.import-asin-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.asin-line {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.5;
}

.asin-line--muted {
  color: var(--muted);
}

.asin-cursor {
  display: inline-block;
  width: 8px;
  height: 13px;
  background: var(--blue);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  margin-top: 2px;
}

.import-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.import-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.import-thumb {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
}

.import-result-meta {
  flex: 1;
  min-width: 0;
}

.import-result-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.import-result-price {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.import-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.import-badge--green {
  background: var(--green-light);
  color: var(--green);
}

.import-panel-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--green-light);
  border-top: 1px solid rgba(5,150,105,0.15);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(5,150,105,0.2);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(5,150,105,0.2); }
  50%       { box-shadow: 0 0 0 4px rgba(5,150,105,0.12); }
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 7px 15px;
  border-radius: var(--r-pill);
}

.trust-pill svg {
  color: var(--blue);
  stroke: var(--blue);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Section headers (shared)
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Features — Alternating rows
   -------------------------------------------------------------------------- */
.features-section {
  background: var(--bg);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  margin-bottom: 80px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 0.7;
}

.feature-row-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.feature-row-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
}

.feature-row-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.feature-row-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231877f2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature visual cards */
.feature-row-visual {
  position: relative;
}

.fv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}

.fv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.fv-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.fv-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.fv-tag--blue {
  background: var(--blue-light);
  color: var(--blue);
}

.fv-tag--green {
  background: var(--green-light);
  color: var(--green);
}

/* ASIN input display */
.fv-asin-input {
  margin: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.fv-asin-line {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.6;
}

/* Progress product list */
.fv-progress-list {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fv-progress-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.fv-progress-row--active {
  border-color: rgba(24,119,242,0.25);
  background: var(--blue-light);
}

.fv-pt {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.fv-pname {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.fv-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Price chart */
.fv-chart {
  padding: 14px;
}

.fv-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 12px;
}

.fv-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  height: 100%;
  justify-content: flex-end;
}

.fv-bar {
  width: 100%;
  background: rgba(24,119,242,0.2);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.fv-bar--updated {
  background: var(--blue);
}

.fv-bar--today {
  background: rgba(24,119,242,0.5);
}

.fv-bar-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.fv-bar-update-tag {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.fv-bar-update-tag--today {
  color: var(--muted);
  background: var(--bg);
}

.fv-chart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.fv-chart-stat {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.fv-chart-stat--green {
  color: var(--green);
}

/* Variants */
.fv-variants {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-variant-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.fv-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 1px var(--border);
}

.fv-variant-info {
  flex: 1;
  min-width: 0;
}

.fv-variant-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-variant-price {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.fv-img-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   How It Works — vertical timeline
   -------------------------------------------------------------------------- */
.how-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding-bottom: 56px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 4px;
}

.step-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 0 transparent;
  background: linear-gradient(135deg, var(--blue) 0%, rgba(24,119,242,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 12px;
  align-self: center;
  margin-right: 0;
  border-radius: 1px;
}

.step-item-main {
  padding-bottom: 0;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
}

/* Step snippet blocks */
.step-snippet {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Step 1 — credential fields */
.snippet-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.snippet-field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.snippet-field-val--masked {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.snippet-connected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* Step 2 — textarea */
.snippet-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.snippet-textarea span {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.6;
}

.snippet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: var(--r-btn);
  padding: 9px 16px;
  cursor: default;
  align-self: flex-start;
}

/* Step 3 — product list */
.snippet-products {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.snippet-product-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
}

.sp-thumb {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  flex-shrink: 0;
}

.sp-name {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  flex-shrink: 0;
}

.snippet-sync-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   Value band — blue full-width
   -------------------------------------------------------------------------- */
.value-band {
  background: var(--blue);
  padding: 80px 0;
}

.value-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.value-band-headline {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.value-band-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.value-band-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.value-compare-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-compare-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.value-compare-heading--bad {
  color: rgba(255,255,255,0.45);
}

.value-compare-heading--good {
  color: #6ee7b7;
}

.value-compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.value-compare-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.value-compare-divider {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  align-self: center;
}

/* --------------------------------------------------------------------------
   Checklist strip
   -------------------------------------------------------------------------- */
.checklist-strip {
  background: var(--blue-tint);
  padding: 72px 0;
  border-top: 1px solid rgba(24,119,242,0.12);
  border-bottom: 1px solid rgba(24,119,242,0.12);
}

.checklist-header {
  text-align: center;
  margin-bottom: 40px;
}

.checklist-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 48px;
  max-width: 720px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 4px 0;
}

.checklist-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  padding: 3px;
  stroke: var(--blue);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-section {
  background: var(--bg);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Comparison table */
.pricing-comparison {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-large);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.comparison-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr 1.1fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  align-items: center;
  border-radius: 8px;
}

.comparison-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  background: var(--bg);
}

.comparison-row {
  color: var(--body);
}

.comparison-row:nth-child(even) {
  background: var(--bg);
}

.comp-check {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}

.comp-cross {
  color: var(--muted);
  font-size: 13px;
}

.comp-partial {
  color: var(--amber);
  font-size: 11px;
  font-weight: 500;
}

.comp-importrix-price {
  font-weight: 700;
  color: var(--blue);
}

.comp-other-price {
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
}

.comparison-row--price {
  margin-top: 6px;
  background: var(--blue-light) !important;
  border: 1px solid rgba(24,119,242,0.15);
}

.price-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* Early access card — dark contrast */
.pricing-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-large);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,23,42,0.22);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60b4ff, var(--green));
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(24,119,242,0.18);
  border: 1px solid rgba(24,119,242,0.35);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.pricing-card-headline {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.pricing-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.pricing-perks li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-perks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(5,150,105,0.2);
  color: #6ee7b7;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.access-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-btn);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-input:focus {
  border-color: #60b4ff;
  box-shadow: 0 0 0 3px rgba(24,119,242,0.22);
}

.form-input.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.15);
}

.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

.form-success {
  display: none;
  padding: 14px;
  background: rgba(5,150,105,0.15);
  border: 1px solid rgba(5,150,105,0.3);
  border-radius: var(--r-btn);
  font-size: 13px;
  color: #6ee7b7;
  text-align: center;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

.btn-cta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  font-family: var(--font);
}

.btn-cta-submit:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-cta-submit:active {
  transform: scale(0.98);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.footer-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--navy);
}

.footer-link--brand {
  color: var(--blue);
  font-weight: 600;
}

.footer-link--brand:hover {
  color: var(--blue-hover);
}

.footer-powered {
  font-size: 13px;
  color: var(--body);
  padding-top: 4px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for feature rows */
.feature-row:nth-child(1).animate-fade-up { transition-delay: 0ms; }
.feature-row:nth-child(2).animate-fade-up { transition-delay: 80ms; }
.feature-row:nth-child(3).animate-fade-up { transition-delay: 160ms; }

/* Stagger for step items */
.step-item:nth-child(1).animate-fade-up { transition-delay: 0ms; }
.step-item:nth-child(2).animate-fade-up { transition-delay: 100ms; }
.step-item:nth-child(3).animate-fade-up { transition-delay: 200ms; }

/* --------------------------------------------------------------------------
   Responsive — Tablet 768–1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 48px;
  }

  .feature-row {
    gap: 48px;
  }

  .value-band-inner {
    gap: 48px;
  }

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

/* --------------------------------------------------------------------------
   Responsive — Mobile 769px and below
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 0;
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    z-index: 199;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--body);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    padding: 72px 0 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .eyebrow {
    align-self: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
  }

  .import-panel {
    max-width: 100%;
  }

  /* Features */
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .feature-row--reverse {
    direction: ltr;
  }

  /* How it works */
  .steps-timeline {
    max-width: 100%;
  }

  .step-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .step-num {
    font-size: 22px;
  }

  /* Value band */
  .value-band {
    padding: 56px 0;
  }

  .value-band-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-band-compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-compare-divider {
    display: none;
  }

  /* Checklist */
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  /* Section header */
  .section-title {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Small 480px and below
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 34px;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-pills {
    gap: 7px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.2fr 0.7fr 1fr;
    font-size: 11px;
    padding: 8px 8px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .step-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .step-line {
    display: none;
  }
}
