:root {
  --bg: #fafaf9;
  --bg-2: #f5f5f4;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --surface-3: #e8e8e4;
  --surface-4: #E5E5E5;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-dim: #a8a29e;
  --green: #2E7D32;
  --green-light: #43A047;
  --green-bg: #e8f5e9;
  --amber: #FF8F00;
  --info: #1565C0;
  --tomato: #c62828;
  --orange: #ef6c00;
  --gold: #f9a825;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.55;
  min-height: 100vh; -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 740px; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250,250,249,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-3);
}

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: relative;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  text-decoration: none; color: var(--text);
  flex: 0 0 auto;
}

.logo-mark { display: block; width: 24px; height: 24px; object-fit: contain; color: var(--green); }

.nav-links {
  display: flex; gap: clamp(14px, 1.7vw, 28px); align-items: center; flex: 0 1 auto;
  white-space: nowrap; flex-wrap: nowrap;
}

.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-login { font-weight: 600 !important; }

.nav-link-button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

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

.nav-auth-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(46, 125, 50, 0.28);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.nav-auth-cta:hover {
  background: var(--green-bg);
  transform: scale(1.02);
}

.nav-cta {
  background: var(--green); color: #fff !important; padding: 9px clamp(14px, 1.4vw, 20px);
  border-radius: 8px; font-weight: 600 !important; font-size: 14px !important;
  transition: opacity 0.2s, transform 0.12s;
}

.nav-cta:hover { opacity: 0.92; transform: scale(1.02); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--surface-3);
  border-radius: 8px; background: var(--surface); color: var(--text);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  cursor: pointer; flex: 0 0 auto;
}

.nav-toggle span {
  width: 20px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.navbar.nav-collapsed .nav-toggle { display: inline-flex; }

.navbar.nav-collapsed .nav-links {
  display: none; position: absolute; top: calc(100% + 10px); right: 28px;
  width: min(260px, calc(100vw - 56px)); padding: 10px;
  background: var(--surface); border: 1px solid var(--surface-3);
  border-radius: 8px; box-shadow: var(--shadow);
  flex-direction: column; align-items: stretch; gap: 4px; white-space: normal;
}

.navbar.nav-collapsed.nav-open .nav-links { display: flex; }

.navbar.nav-collapsed .nav-links a {
  display: block; width: 100%; padding: 11px 12px; border-radius: 8px;
}

.navbar.nav-collapsed .nav-links a:hover { background: var(--surface-2); }

.navbar.nav-collapsed .nav-cta {
  text-align: center; margin-top: 4px; padding: 12px 16px;
}

.navbar.nav-collapsed .nav-cta + .nav-cta {
  margin-top: 0;
}

.navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.nav-measuring .nav-links {
  display: flex; position: static; visibility: hidden; pointer-events: none;
  flex-direction: row; align-items: center; gap: 28px; white-space: nowrap;
}

.navbar.nav-measuring .nav-toggle { display: none; }

@media (min-width: 1120px) {
  .navbar.nav-collapsed .nav-links {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(14px, 1.7vw, 28px);
    white-space: nowrap;
  }

  .navbar.nav-collapsed .nav-links a,
  .navbar.nav-collapsed .nav-links button {
    width: auto;
  }

  .navbar.nav-collapsed .nav-toggle {
    display: none;
  }
}

/* Hero */
.hero { padding: 130px 0 60px; }

.hero-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-bg); border: 1px solid #c8e6c9;
  padding: 6px 14px; border-radius: 40px; font-size: 13px; color: var(--green);
  margin-bottom: 20px;
}

.pill-badge {
  background: var(--green); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 12px; letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.08; color: var(--text);
}

.text-green { color: var(--green); }

.hero-desc {
  font-size: 17px; color: var(--text-muted); margin-top: 18px; max-width: 460px;
  line-height: 1.6;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; padding: 14px 28px;
  border: 0;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s, transform 0.12s;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.92; transform: scale(1.02); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); color: var(--text); padding: 14px 24px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--surface-3);
  transition: background 0.2s, transform 0.12s;
}

.btn-secondary:hover { background: var(--bg-2); transform: scale(1.02); }

.hero-social {
  display: flex; align-items: center; gap: 14px; margin-top: 32px;
  flex-wrap: wrap;
}

.avatar-group { display: flex; }

.avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg); margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.stars { display: flex; gap: 2px; }

.stars svg { width: 16px; height: 16px; }

.trust-text { font-size: 13px; color: var(--text-dim); }

.hero-visual { display: flex; justify-content: center; }

.hero-menu-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

.menu-popover {
  position: absolute;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(232,230,226,0.9);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  color: var(--text);
}

.menu-popover .popover-label {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.menu-popover strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.item-card {
  left: -24px;
  top: 30px;
  width: min(230px, 58%);
  padding: 14px 16px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
}

.price-row span {
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: line-through;
}

.price-row b {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.update-card {
  right: -18px;
  bottom: 34px;
  width: min(245px, 62%);
  padding: 14px 16px;
}

.update-card small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 5px;
}

.sync-arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.arrow-one {
  left: 39%;
  top: 29%;
}

.arrow-two {
  right: 25%;
  bottom: 28%;
}

/* Benefit Bar */
.benefit-bar { padding: 32px 0; border-top: 1px solid var(--surface-3); }

.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.benefit {
  display: flex; align-items: flex-start; gap: 14px;
}

.benefit-icon svg { width: 28px; height: 28px; }

.benefit h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }

.benefit p { font-size: 13px; color: var(--text-dim); line-height: 1.45; }

/* Integrations */
.integrations { padding: 24px 0; text-align: center; }

.integrations-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
}

.logo-row {
  display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap;
}

.logo-item {
  font-size: 15px; font-weight: 700; color: var(--text-muted);
  opacity: 0.7; transition: opacity 0.2s;
}

.logo-item:hover { opacity: 1; }

.text-green-bold { color: var(--green); opacity: 1; }

.text-orange { color: var(--orange); }

/* Sections */
section { padding: 72px 0; }

.section-head { text-align: center; margin-bottom: 44px; }

.section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 8px auto 0;
}

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); background: var(--green-bg);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.8px;
}

/* Import Section */
.import-section { background: var(--bg-2); }

.import-card {
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); text-align: center;
}

.import-form {
  display: flex; gap: 12px; max-width: 560px; margin: 0 auto;
}

.import-form input {
  flex: 1; background: var(--bg); border: 1px solid var(--surface-3); color: var(--text);
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.import-form input:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.import-form input::placeholder { color: var(--text-dim); }

.import-form button {
  background: var(--green); border: none; color: #fff; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 15px; transition: opacity 0.2s, transform 0.12s; white-space: nowrap;
}

.import-form button:hover { opacity: 0.92; }

.import-form button:active { transform: scale(0.97); }

.import-form button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.import-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.55;
}

.extract-capabilities {
  margin-top: 18px;
  text-align: left;
}

.extract-capability-intro {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.extract-capability-intro strong {
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}

.extract-capability-intro span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.extract-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.extract-capability {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.extract-capability svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

/* Loading */
.loading {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 40px 0; color: var(--text-muted); font-size: 15px;
}

.spinner-ring { position: relative; width: 40px; height: 40px; }

.spinner-track, .spinner-fill {
  position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--surface-3);
}

.spinner-fill {
  border-color: var(--green) transparent transparent transparent;
  animation: spin 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

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

/* Error */
.error-banner {
  background: #fff; border: 1px solid #ffcdd2; color: var(--text);
  padding: 22px; border-radius: var(--radius-sm); text-align: left;
  font-size: 15px; max-width: 640px; margin: 20px auto 0;
  box-shadow: var(--shadow-sm);
}

.error-banner h3 {
  font-size: 18px;
  line-height: 1.3;
  color: var(--tomato);
  margin-bottom: 8px;
}

.error-banner p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.extraction-help-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.extraction-help-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.extraction-help-form label:first-of-type {
  grid-column: 1 / -1;
}

.extraction-help-form input {
  height: 44px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  background: var(--bg);
}

.extraction-help-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.extraction-help-form button {
  grid-column: 1 / -1;
  height: 46px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.extraction-help-form button:disabled {
  opacity: 0.65;
  cursor: progress;
}

.extraction-help-status {
  margin-top: 12px;
  font-weight: 700;
}

.extraction-help-status.success {
  color: var(--green);
}

.extraction-help-status.error {
  color: var(--tomato);
}

/* Results */
.results { animation: fadeUp 0.5s ease; margin-top: 24px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.results-topbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-bottom: 20px;
}

.restaurant-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--surface-3); padding: 8px 16px;
  border-radius: 40px; font-weight: 700; font-size: 15px;
}

.badge-tag {
  font-size: 12px; color: var(--text-dim); background: var(--bg-2); padding: 4px 10px;
  border-radius: 20px;
}

.results-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.category {
  background: var(--surface); border: 1px solid var(--surface-3);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}

.category-header {
  display: block; position: relative; padding: 14px 44px 14px 20px; cursor: pointer;
  user-select: none; transition: background 0.2s;
}

.restaurant-hero-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 0 0 14px;
}

.restaurant-hero-preview img {
  width: 140px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-2);
}

.restaurant-hero-preview strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 2px;
}

.restaurant-hero-preview span {
  color: var(--text-dim);
  font-size: 12px;
}

.category-header:hover { background: var(--bg-2); }

.category-title-row {
  display: flex; align-items: center;
  gap: 12px;
}

.category-preview-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.item-preview-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.category-header h3 { font-size: 15px; font-weight: 700; flex: 1; margin: 0; }

.category-count {
  font-size: 12px; color: var(--text-dim); background: var(--bg-2); padding: 3px 10px;
  border-radius: 20px; white-space: nowrap;
}

.category-desc {
  font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.3;
}

.chevron {
  position: absolute; right: 16px; top: 16px;
  width: 18px; height: 18px; transition: transform 0.25s; color: var(--text-dim);
}

.category.collapsed .chevron { transform: rotate(-90deg); }

.category.collapsed .category-body { display: none; }

.category-body { padding: 0 20px 18px; }

.item {
  display: grid; gap: 4px 14px;
  padding: 12px 0; border-bottom: 1px solid var(--surface-2);
}
.item.has-image { grid-template-columns: 64px 1fr auto; }
.item.no-image { grid-template-columns: 1fr auto; }

.item:last-child { border-bottom: none; }

.item-main { min-width: 0; align-self: center; }

.item-name { font-weight: 600; font-size: 14px; }

.item-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.item-price { font-weight: 700; font-size: 14px; white-space: nowrap; color: var(--green); align-self: start; text-align: right; }

.item-meta {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px;
}

@media (max-width: 640px) {
  .item.has-image { grid-template-columns: 56px 1fr; }
  .item.has-image .item-price { grid-column: 2; text-align: left; }
  .item.no-image { grid-template-columns: 1fr; }
  .item.no-image .item-price { text-align: left; }
}

.meta-pill {
  font-size: 11px; color: var(--text-dim); background: var(--bg-2); padding: 2px 7px;
  border-radius: 4px;
}

/* Conversion Panel */
.conversion-panel {
  margin-top: 32px; padding: 28px;
  background: var(--green-bg); border: 1px solid #c8e6c9;
  border-radius: var(--radius); text-align: center;
}

.conversion-panel h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; color: var(--green); }

.conversion-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.btn-export {
  padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: opacity 0.2s, transform 0.1s; border: none;
}

.btn-export.ghost {
  background: var(--surface); color: var(--text); border: 1px solid var(--surface-3);
}

.btn-export.ghost:hover { background: var(--bg-2); transform: scale(1.02); }

.btn-export.primary {
  background: var(--green); color: #fff;
}

.btn-export.primary:hover { opacity: 0.92; }

.btn-export.import-package-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 16px 22px;
  background: var(--green);
  color: #fff;
  text-align: left;
  border: 1px solid var(--green);
  box-shadow: 0 18px 42px rgba(46, 125, 50, 0.22);
}

.btn-export.import-package-btn:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.extraction-complete-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, auto);
  gap: 24px;
  align-items: center;
  margin: 0 0 22px;
  padding: 28px 34px;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(46, 125, 50, 0.22);
}

.bottom-complete-actions {
  margin-top: 22px;
  margin-bottom: 0;
}

.extraction-complete-status {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.extraction-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.sync-platform-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  justify-self: stretch;
  min-height: 62px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  box-shadow: none;
}

.sync-platform-btn span {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
}

.btn-export.import-package-btn > small,
.sync-platform-btn small {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.btn-export.import-package-btn > small {
  color: rgba(255, 255, 255, 0.88);
}

.sync-platform-btn small {
  color: rgba(255, 255, 255, 0.86);
}

.sync-platform-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.forkntable-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.forkntable-mark img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.import-package-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
  color: #fff;
}

.import-package-copy > span {
  color: #fff;
  font-size: 19px;
  line-height: 1.12;
  font-weight: 900;
}

.import-package-copy small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.download-now-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 54px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  border: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  padding: 14px 24px;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.72);
  animation: downloadPulse 1.8s ease-out infinite;
}

@keyframes downloadPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.72); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .download-now-pill { animation: none; }
}

@media (max-width: 720px) {
  .extraction-complete-actions {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .extraction-action-buttons {
    grid-template-columns: 1fr;
  }
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.42);
}

.download-modal-card {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.22);
  text-align: center;
}

.download-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.download-modal-status {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
}

.download-modal-status svg {
  width: 24px;
  height: 24px;
}

.download-modal-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.download-modal-card > p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.download-modal-feature {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #73BF43;
  color: #fff;
  text-align: left;
}

.download-modal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.download-modal-brand > img {
  width: 120px;
  max-height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.download-modal-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.download-modal-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.download-modal-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.download-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.download-modal-primary,
.download-modal-secondary {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.download-modal-primary {
  border: 0;
  background: #73BF43;
  color: #fff;
}

.download-modal-primary:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.download-modal-secondary {
  border: 1px solid var(--surface-3);
  background: var(--surface);
  color: var(--text);
}

.download-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.download-format-grid button {
  min-height: 44px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.download-format-grid button:hover {
  border-color: var(--green);
  color: var(--green);
}

.download-section-checklist,
.download-format-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  text-align: left;
}

.download-choice-title {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0;
}

.download-section-checklist {
  margin-top: 8px;
}

.download-format-checklist {
  margin-top: 8px;
}

.download-section-checklist label,
.download-format-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.download-section-checklist input,
.download-format-checklist input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.forkntable-detail-button {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.forkntable-promo-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.forkntable-package-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.forkntable-package-check input {
  width: 16px;
  height: 16px;
  accent-color: #fff;
}

.paywall-processor-note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.paywall-account-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.paywall-card {
  width: min(100%, 430px);
  padding: 22px;
}

.paywall-card .download-modal-status {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.paywall-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.paywall-card > p {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.38;
}

.paywall-card .paywall-account-note {
  padding: 8px 10px;
}

.paywall-card .download-modal-actions {
  position: sticky;
  bottom: -22px;
  margin: 14px -22px -22px;
  padding: 12px 22px 18px;
  background: linear-gradient(rgba(255, 255, 255, 0.88), #fff 28%);
}

.account-modal-card,
.menus-modal-card {
  text-align: left;
}

.account-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  margin: 16px 0;
  border-radius: 8px;
  background: var(--surface-2);
}

.account-mode-toggle button {
  border: 0;
  border-radius: 7px;
  padding: 10px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 800;
  cursor: pointer;
}

.account-mode-toggle button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.account-form input {
  height: 44px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.account-form textarea {
  min-height: 104px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.account-error {
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.menus-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  margin-top: 14px;
}

.account-support-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-3);
}

.account-support-panel h4 {
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 4px;
}

.account-support-panel > p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.account-support-status {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.account-support-status.success {
  color: var(--green);
}

.account-support-status.error {
  color: #b42318;
}

.menu-history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
}

.menu-history-item strong,
.menu-history-item span {
  display: block;
}

.menu-history-item strong {
  color: var(--text);
  font-size: 14px;
}

.menu-history-item span {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 3px;
}

.menu-history-actions {
  display: flex;
  gap: 8px;
}

.menu-history-actions button {
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  padding: 9px 10px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.menu-history-actions button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.paywall-card {
  text-align: center;
}

.paywall-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 14px;
  padding: 14px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  text-align: left;
}

.paywall-summary strong,
.paywall-summary span {
  display: block;
}

.paywall-summary strong {
  color: var(--text);
  font-size: 14px;
}

.paywall-summary span {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 3px;
}

.paywall-price {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.paywall-format-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 4px;
}

.paywall-format-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.admin-paid-toggle {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px dashed rgba(46, 125, 50, 0.38);
  border-radius: 8px;
  background: var(--green-bg);
  text-align: left;
}

.admin-paid-toggle label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
}

.paywall-card .paywall-format-list {
  gap: 6px;
  margin: 10px 0 0;
}

.paywall-card .paywall-format-list span {
  padding: 6px 9px;
  font-size: 11px;
}

.paywall-card .paywall-summary {
  margin: 12px 0 10px;
  padding: 12px;
}

.paywall-card .paywall-price {
  font-size: 22px;
}

.paywall-card .admin-paid-toggle {
  margin-bottom: 8px;
  padding: 8px 10px;
}

.download-next-step,
.sync-next-step {
  border-radius: var(--radius);
  margin: 16px 0;
  padding: 22px 24px;
}

.download-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  box-shadow: var(--shadow-sm);
}

.download-next-step h4,
.sync-next-step h4 {
  margin: 4px 0 6px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.download-next-step p,
.sync-next-step p {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.download-next-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.sync-next-step {
  background: var(--green-bg);
  border: 1px solid #c8e6c9;
}

.sync-next-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.sync-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.sync-destinations a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid rgba(46, 125, 50, 0.18);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.sync-destinations a:hover {
  border-color: var(--green);
  color: var(--green);
}

@media (max-width: 640px) {
  .download-modal-card {
    padding: 24px 18px;
  }

  .download-modal-actions {
    flex-direction: column;
  }

  .download-format-grid {
    grid-template-columns: 1fr;
  }

  .download-next-step,
  .sync-next-header {
    flex-direction: column;
    align-items: stretch;
  }

  .download-next-actions {
    justify-content: stretch;
  }

  .download-next-actions > * {
    flex: 1 1 100%;
  }
}

.btn-sync {
  display: inline-block; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--gold); color: #3e2723; text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
}

.btn-sync:hover { opacity: 0.92; transform: scale(1.02); }

/* How It Works */
.how-it-works { background: var(--surface); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.step {
  text-align: center; padding: 18px 18px 28px;
  background: var(--bg); border: 1px solid var(--surface-3); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-visual {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  aspect-ratio: 16 / 10;
}

.step-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step .step-num {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); font-weight: 700; font-size: 16px; color: #fff;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.22);
}

.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }

.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Export Options */
.exports { background: var(--bg-2); }

.export-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.export-card {
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius);
  padding: 32px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.export-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.export-icon { width: 48px; height: 48px; margin: 0 auto 16px; }

.export-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }

.export-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Pricing */
.pricing { background: var(--surface); text-align: center; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; justify-content: center; align-items: stretch;
}

.pricing-card {
  display: flex; flex-direction: column; width: 100%; margin: 0 auto;
  background: var(--bg); border: 2px solid var(--green); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
}

.pricing-badge {
  display: inline-block; background: var(--green-bg); color: var(--green);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 18px;
}

.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }

.pricing-price { font-size: 42px; font-weight: 800; color: var(--green); margin-bottom: 6px; }

.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-dim); }

.pricing-note { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }

.pricing-features { text-align: left; margin-bottom: 28px; }

.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted); padding: 8px 0;
  border-bottom: 1px solid var(--surface-2);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.btn-pricing {
  display: block; width: 100%; margin-top: auto; background: var(--green); color: #fff;
  padding: 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}

.btn-pricing:hover { opacity: 0.92; }

.coming-soon-card {
  border-color: #9ccc9f;
}

.coming-soon-card .pricing-price {
  font-size: 34px;
}

.coming-soon-btn {
  background: var(--surface);
  color: var(--green);
  border: 1px solid var(--green);
}

.ib-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.ib-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.final-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Final CTA */
.final-cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

.final-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.8px; }

.final-cta p { color: var(--text-muted); margin-top: 12px; font-size: 16px; max-width: 480px; margin-inline: auto; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--surface-3);
  padding: 22px 0 18px;
}

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

.footer-brand .nav-logo {
  font-size: 16px;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--green); }

.footer-col strong {
  display: block; font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 12px; letter-spacing: 0.3px;
}

.footer-col a {
  display: block; font-size: 13px; color: var(--text-muted);
  text-decoration: none; padding: 4px 0; transition: color 0.15s;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-col a:hover { color: var(--green); }

.footer-bottom {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--surface-3);
}

.footer-bottom p { font-size: 13px; color: var(--text-dim); margin: 0; }

@media (max-width: 860px) {
  .footer-compact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-footer { padding: 20px 0 16px; }

  .footer-links {
    gap: 8px 14px;
  }
}

.hidden { display: none !important; }

/* Wizard */
.wizard-hero {
  padding: 132px 28px 56px;
  background:
    linear-gradient(135deg, rgba(46,125,50,0.10), rgba(255,255,255,0) 52%),
    var(--bg);
  border-bottom: 1px solid var(--surface-3);
}

.wizard-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.wizard-hero-copy { min-width: 0; }

.wizard-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.wizard-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text);
  margin: 0;
}

.wizard-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.wizard-hero-actions a { text-decoration: none; }

.wizard-hero-visual {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.wizard-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.wizard-visual-caption {
  padding: 14px 8px 4px;
}

.wizard-visual-caption strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.wizard-visual-caption span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.extract-hero {
  padding: 132px 28px 54px;
  background:
    linear-gradient(135deg, rgba(46,125,50,0.10), rgba(255,255,255,0) 52%),
    var(--bg);
  border-bottom: 1px solid var(--surface-3);
}

.extract-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: center;
}

.extract-hero-copy { min-width: 0; }

.extract-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text);
  margin: 0;
}

.extract-hero p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.extract-hero-actions a { text-decoration: none; }

.extract-hero-visual {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.extract-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.wizard-section { padding-top: 48px; }

.wizard-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.wizard-progress span {
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  padding: 9px 10px;
}

.wizard-progress span.active {
  background: var(--green);
  color: #fff;
}

.wizard-step {
  animation: fadeIn 0.25s ease-in;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
}

.wizard-step-heading {
  margin-bottom: 24px;
}

.wizard-step-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin: 8px 0 8px;
}

.wizard-step-heading p {
  color: var(--text-muted);
  margin: 0;
  font-size: 16px;
}

.migration-route-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 24px;
}

.migration-route-examples span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c8e6c9;
  background: var(--green-bg);
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.migration-route-examples strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.wizard-selectors { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: end; margin-bottom: 24px; }
.wizard-arrow { font-size: 24px; color: var(--text-dim); text-align: center; padding-bottom: 16px; }
.select-group label { display: block; font-size: 14px; font-weight: 800; color: var(--text-muted); margin-bottom: 8px; }
.wizard-select { width: 100%; min-height: 58px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--surface-3); background: var(--surface-2); color: var(--text); font-size: 16px; }
.wizard-hint { font-size: 13px; color: var(--text-dim); margin-top: 10px; margin-bottom: 0; }
.platform-summary { margin-bottom: 24px; }
.summary-card { display: flex; align-items: center; gap: 20px; background: var(--green-bg); border: 1px solid #c8e6c9; border-radius: 14px; padding: 16px 20px; }
.summary-from, .summary-to { flex: 1; font-size: 14px; }
.summary-arrow { font-size: 24px; color: var(--text-dim); }
.migration-handoff-summary { margin-top: 10px; padding: 10px 12px; border: 1px solid #c8e6c9; border-radius: var(--radius-sm); background: var(--green-bg); }
.migration-handoff-summary strong { display: block; color: var(--text); font-size: 13px; margin-bottom: 2px; }
.migration-handoff-summary span { display: block; color: var(--text-muted); font-size: 12px; line-height: 1.35; }
.wizard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.wizard-back { background: transparent; border: 1px solid var(--surface-3); color: var(--text-muted); border-radius: var(--radius-sm); padding: 6px 12px; cursor: pointer; font-size: 13px; }
.wizard-back:hover { background: var(--surface-3); }
.setup-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.setup-panel { background: var(--surface-2); border: 1px solid var(--surface-3); border-radius: var(--radius-sm); padding: 18px; }
.setup-panel h3 { font-size: 15px; margin-bottom: 14px; color: var(--text); }
.setup-steps { display: flex; flex-direction: column; gap: 10px; }
.setup-step-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }
.step-num { width: 22px; height: 22px; border-radius: 50%; background: var(--surface-3); color: var(--text-dim); font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.sync-workspace { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.wizard-input { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--surface-3); background: var(--surface-2); color: var(--text); font-size: 14px; margin-bottom: 8px; }
.sync-preview-area { background: var(--surface-2); border: 1px solid var(--surface-3); border-radius: var(--radius-sm); padding: 16px; }
.sync-preview-content { font-size: 13px; color: var(--text-muted); }
.preview-cats { display: flex; flex-direction: column; gap: 6px; }
.preview-cat { padding: 6px 10px; background: var(--surface-3); border-radius: var(--radius-sm); font-size: 13px; }
.sync-log-panel { background: #111; border: 1px solid var(--surface-3); border-radius: var(--radius-sm); padding: 12px; max-height: 200px; overflow-y: auto; }
.sync-log { font-family: monospace; font-size: 12px; color: #ccc; white-space: pre-wrap; }
.wizard-done { text-align: center; padding: 40px 20px; }
.export-actions { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .extract-hero { padding: 110px 20px 40px; }
  .extract-hero-grid { grid-template-columns: 1fr; }
  .extract-hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .extract-hero p { font-size: 16px; }
  .extract-hero-visual { padding: 8px; }
  .wizard-hero { padding: 110px 20px 40px; }
  .wizard-hero-grid { grid-template-columns: 1fr; }
  .wizard-hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .wizard-hero p { font-size: 16px; }
  .wizard-hero-visual { padding: 8px; }
  .wizard-progress { grid-template-columns: 1fr 1fr; }
  .wizard-selectors { grid-template-columns: 1fr; }
  .wizard-arrow { display: none; }
  .setup-panels { grid-template-columns: 1fr; }
  .sync-workspace { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wizard-progress { grid-template-columns: 1fr; }
}

/* Integrations Page */
.integrations-hero { padding: 128px 20px 44px; background: var(--bg); }
.integrations-hero-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.integrations-hero h1 { font-size: clamp(36px, 8vw, 72px); line-height: 0.96; letter-spacing: 0; margin-bottom: 18px; overflow-wrap: anywhere; }
.integrations-hero p { max-width: 820px; margin: 0 auto; color: var(--text-muted); font-size: 18px; line-height: 1.55; }
.integrations-hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.integrations-hero-actions a { text-decoration: none; }
.integrations-hero-visual {
  margin: 36px auto 0;
  max-width: 1120px;
  border: 1px solid var(--surface-3);
  border-radius: 18px;
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.integrations-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}
.integrations-section { padding-top: 24px; }
.integrations-intro { text-align: center; margin-bottom: 34px; }
.integrations-intro p { max-width: 820px; margin: 0 auto 16px; color: var(--text-muted); line-height: 1.55; }
.integrations-intro a { color: var(--green); font-weight: 700; text-decoration: none; }
.integrations-intro a:hover { text-decoration: underline; }
.integrations-legend { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; margin-bottom: 0; font-size: 13px; color: var(--text-muted); }
.integrations-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.integrations-legend .badge { font-size: 11px; }

.integrations-page { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.priority-block { margin-bottom: 48px; }
.category-heading { margin-bottom: 16px; }
.category-heading h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.category-heading p { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0; }

.accordion-directory { margin-top: 8px; }
.category-block { margin-bottom: 12px; border: 1px solid var(--surface-3); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.category-block summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 16px 18px; font-weight: 800; color: var(--text); }
.category-block summary::-webkit-details-marker { display: none; }
.category-block summary::after { content: '+'; width: 24px; height: 24px; border-radius: 999px; background: var(--surface-2); color: var(--green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; line-height: 1; }
.category-block[open] summary::after { content: '-'; }
.category-block summary small { color: var(--text-dim); font-size: 12px; font-weight: 700; margin-left: auto; white-space: nowrap; }
.category-block .integration-grid { padding: 0 18px 18px; }
.admin-note { margin-top: 18px; border: 1px dashed var(--surface-3); border-radius: var(--radius-sm); background: var(--surface-2); }
.admin-note summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 14px 16px; color: var(--text-muted); font-size: 14px; font-weight: 700; }
.admin-note summary::-webkit-details-marker { display: none; }
.admin-note summary small { color: var(--text-dim); font-size: 12px; white-space: nowrap; }
.admin-note p { color: var(--text-dim); font-size: 13px; line-height: 1.5; margin: 0; padding: 0 16px 12px; }
.admin-note-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 16px; }
.admin-note-list span { background: var(--surface); border: 1px solid var(--surface-3); border-radius: 999px; color: var(--text-muted); font-size: 12px; padding: 5px 9px; }

.integration-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.priority-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.live-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.integration-card { background: var(--surface-2); border: 1px solid var(--surface-3); border-radius: var(--radius-sm); padding: 16px; transition: box-shadow 0.15s; }
.integration-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

.card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.card-header .platform-name { font-size: 15px; color: var(--text); }

.card-body p { font-size: 12px; color: var(--text-muted); margin: 0 0 6px; }
.card-body .browser-note { display: block; font-size: 11px; color: var(--text-dim); margin-bottom: 8px; }

.card-links { display: flex; gap: 10px; margin-top: 10px; }
.card-links a { font-size: 12px; color: var(--green); text-decoration: none; font-weight: 500; }
.card-links a:hover { text-decoration: underline; }

/* Status badges */
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 12px; white-space: nowrap; }
.badge-live { background: var(--green); color: white; }
.badge-beta { background: var(--amber); color: #1a1a1a; }
.badge-planned { background: var(--info); color: white; }
.badge-manual { background: var(--surface-4); color: var(--text-muted); }

@media (max-width: 640px) {
  .integrations-hero { padding: 104px 16px 28px; }
  .integrations-hero h1 { font-size: clamp(34px, 14vw, 52px); }
  .integrations-hero p { font-size: 16px; }
  .integrations-hero-actions { align-items: stretch; flex-direction: column; }
  .integrations-hero-visual {
    margin-top: 26px;
    padding: 7px;
    border-radius: 14px;
  }
  .integrations-hero-visual img {
    border-radius: 10px;
  }
  .integration-grid { grid-template-columns: 1fr; }
  .integrations-page { padding: 0 16px; }
  .integrations-legend { align-items: stretch; display: grid; grid-template-columns: 1fr; text-align: left; }
  .category-block summary { align-items: flex-start; }
  .category-block summary small { margin-left: 0; }
  .admin-note summary { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-menu-visual { max-width: 360px; }
  .hero-img { max-width: 360px; }
  .item-card {
    left: -8px;
    top: 18px;
    width: 210px;
    text-align: left;
  }
  .update-card {
    right: -8px;
    bottom: 18px;
    width: 220px;
    text-align: left;
  }
  .sync-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .benefits { grid-template-columns: 1fr; }
  .import-form { flex-direction: column; }
  .hero { padding: 100px 0 40px; }
  .conversion-actions { flex-direction: column; width: 100%; }
  .conversion-actions > * { width: 100%; text-align: center; }
}

/* Info card */
.info-card {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0 24px;
  box-shadow: var(--shadow-sm);
}
.info-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.info-row strong {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
}
.info-row span { color: var(--text); line-height: 1.45; }

@media (max-width: 640px) {
  .info-card-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  color: var(--text);
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--green); }
.faq-item p { margin-top: 10px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.faq-item a { color: var(--green); text-decoration: underline; }

/* Detected-source badge emphasis */
#sourceBadge {
  background: var(--green-bg);
  color: var(--green);
  font-weight: 600;
}

/* Integration card external links */
.card-ext-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--surface-3);
}
.card-ext-links .ext-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  transition: all 0.15s ease;
}
.card-ext-links .ext-link:hover {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
}

/* SEO page official resources block */
.resource-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.resource-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s ease;
}
.resource-link:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.resource-link svg { color: var(--green); flex-shrink: 0; }
.resource-link strong { display: block; font-size: 14px; font-weight: 600; }
.resource-link span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 640px) {
  .resource-links { grid-template-columns: 1fr; }
}



.preview-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 6px;
}
.preview-tab {
  flex: 1;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}
.preview-tab.active {
  background: var(--surface);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.preview-view { margin-bottom: 24px; }
.preview-view,
.preview-view * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.preview-view img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.protected-preview {
  cursor: default;
}

.protected-preview-img {
  image-rendering: pixelated;
  filter: blur(0.35px) saturate(0.85);
  opacity: 0.88;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}
.preview-heading strong {
  font-size: 18px;
  color: var(--text);
}

.preview-image-note {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.preview-complete-bar {
  width: 100%;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  box-shadow: none;
  border: 0;
}
.preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}
.preview-actions strong { font-size: 15px; color: var(--text); }
.preview-actions div { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

/* Ordering option group cards */
.ordering-group-card {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.ordering-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--surface-3);
  gap: 12px;
  flex-wrap: wrap;
}
.ordering-group-header h4 {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.ordering-group-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.ordering-scope-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ordering-scope-badge.shared {
  background: rgba(46,125,50,0.12);
  color: var(--green);
}
.ordering-scope-badge.item {
  background: rgba(139,69,19,0.10);
  color: #8B4513;
}
.ordering-group-items {
  font-size: 12px;
  color: var(--text-dim);
  padding: 0 16px;
  margin: 8px 0 0;
  line-height: 1.5;
}
.ordering-group-items strong {
  color: var(--text-muted);
}
.ordering-options-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ordering-options-table th {
  text-align: left;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-dim);
  background: var(--bg);
  border-bottom: 1px solid var(--surface-3);
}
.ordering-options-table td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--surface-3);
  color: var(--text);
}
.ordering-options-table tr:last-child td {
  border-bottom: none;
}
.ordering-options-table .price-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Modifier deep-extract panel */
.modifier-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff5e0 100%);
  border: 1px solid #f2cb74;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 12px 0 24px;
}
.modifier-panel strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.modifier-panel p { font-size: 13px; color: var(--text-muted); margin: 0; }
.modifier-panel button:disabled { opacity: 0.7; cursor: progress; }
.mod-action { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 220px; }

/* Modifier progress bar */
.mod-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.mod-progress-track {
  flex: 1;
  height: 6px;
  background: #e8e8e4;
  border-radius: 3px;
  overflow: hidden;
}
.mod-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.mod-progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  min-width: 36px;
  text-align: right;
}

@media (max-width: 640px) {
  .extract-capability-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .extract-capability-grid {
    grid-template-columns: 1fr;
  }
  .preview-complete-bar {
    padding: 16px;
  }
  .preview-heading strong {
    font-size: 16px;
  }
  .extraction-help-form {
    grid-template-columns: 1fr;
  }
  .modifier-panel { flex-direction: column; align-items: stretch; text-align: left; }
  .modifier-panel button { width: 100%; }
  .mod-action { width: 100%; align-items: stretch; }
}

/* Migration CTA */
.migrate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--green-bg);
  border: 1px solid #c8e6c9;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
}
.migrate-cta h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.migrate-cta p { font-size: 13px; color: var(--text-muted); margin: 0; max-width: 420px; }

/* Account promo */
.account-promo {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0 0;
}
.account-promo-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  background: var(--green-bg);
  border-radius: 12px;
}

.account-promo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.account-promo-content h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.account-promo-content p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.account-promo-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.account-save-btn { padding: 10px 20px; }
.btn-guest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.12s;
}
.btn-guest:hover {
  background: var(--bg-2);
  border-color: rgba(46, 125, 50, 0.28);
  transform: scale(1.02);
}
.link-muted { color: var(--text-muted); font-size: 13px; text-decoration: none; transition: color 0.15s; }
.link-muted:hover { color: var(--green); text-decoration: underline; }

@media (max-width: 640px) {
  .migrate-cta { flex-direction: column; align-items: stretch; }
  .account-promo { flex-direction: column; }
}
