/* Icon Generator — shared site styles (icon.vuvuive.org)
   Structure follows the perplexity-exporter homepage, split into a shared
   stylesheet like the sessionstash homepage. Brand accent: teal #0f766e. */

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f3f7f6;
  --panel: #ffffff;
  --ink: #16262c;
  --muted: #5f7177;
  --border: #dbe5e6;
  --accent: #0f766e;
  --accent-dark: #0b5f59;
  --accent-soft: #e5f3ef;
  --green: #15803d;
  --green-soft: #eaf8ef;
  --gold: #9a5a0a;
  --gold-soft: #fff4dc;
  --shadow: 0 16px 44px rgba(18, 64, 73, 0.10);
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; }

a { color: var(--accent); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ---- header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-size: 13px;
  font-weight: 800; letter-spacing: 0;
}

.nav-links {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink); text-decoration: none;
  padding: 7px 12px; border-radius: 8px; font-size: 14.5px;
}

.nav-links a:hover { background: var(--accent-soft); }
.nav-links a.active { background: var(--accent-soft); color: var(--accent-dark); font-weight: 600; }

.nav-links a.nav-cta {
  background: var(--accent); color: #fff; font-weight: 600;
}

.nav-links a.nav-cta:hover { background: var(--accent-dark); }

/* ---- hero ---- */
.hero {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
  padding: 64px 0 50px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
}

.hero h1 em { color: var(--accent); font-style: normal; }

.hero .lede {
  max-width: 680px; margin: 0 auto 26px;
  color: var(--muted); font-size: 18px;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 15.5px; font-weight: 600; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }

.hero-note { margin-top: 14px; color: var(--muted); font-size: 13.5px; }

/* ---- legal / contact pages ---- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
  border-bottom: 1px solid var(--border);
  padding: 54px 0 34px;
}

.page-hero .container { max-width: 980px; }

.page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(229, 243, 239, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 760px;
  margin: 14px 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.12;
}

.page-hero .lede {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.legal-layout {
  display: grid;
  gap: 22px;
  padding: 40px 0 18px;
}

.notice-strip {
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #f7fbfa;
  color: var(--muted);
}

.notice-strip strong { color: var(--ink); }

.policy-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-panel,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18, 64, 73, 0.06);
}

.policy-panel.full,
.contact-card.full { grid-column: 1 / -1; }

.policy-panel h2,
.contact-card h2 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.policy-panel p,
.contact-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14.5px;
}

.policy-panel p:last-child,
.contact-card p:last-child { margin-bottom: 0; }

.policy-panel ul,
.contact-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.policy-panel li,
.contact-card li { margin: 7px 0; }

.policy-panel li strong,
.contact-card li strong { color: var(--ink); }

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.service-item {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px;
  background: #fff;
}

.service-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.service-item span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
}

.contact-card.primary {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: var(--shadow);
}

.contact-route {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.contact-route:first-of-type { border-top: 0; padding-top: 0; }

.contact-route strong { color: var(--ink); }
.contact-route span { color: var(--muted); font-size: 14px; }

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-note {
  border: 1px solid rgba(154, 90, 10, 0.24);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 15px 18px;
  background: var(--gold-soft);
  color: #5d3a12;
  font-size: 14.5px;
}

.contact-note strong { color: #3d280f; }

/* ---- homepage slide deck ---- */
.home-slide-root,
.home-slide-root body {
  height: 100%;
  overflow: hidden;
}

.home-slides {
  background: var(--bg);
  overscroll-behavior: none;
}

.home-slides .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.slide-deck {
  position: relative;
  min-height: 100%;
}

.home-slide {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 74px 0 28px;
  background: var(--bg);
  overflow: hidden;
  transform: translateY(100%) translateZ(0);
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}

.home-slide.active {
  z-index: 2;
  transform: translateY(0) translateZ(0);
}

.home-slide.above {
  transform: translateY(-100%) translateZ(0);
}

.home-slide.slide-alt {
  background: var(--bg-soft);
}

.slide-shell {
  width: 100%;
  max-height: calc(100svh - 106px);
}

.hero-slide-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.slide-copy h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(36px, 5.8vw, 66px);
  line-height: 1.04;
}

.slide-copy p {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 24px;
}

.metric-row div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.product-preview {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
}

.preview-toolbar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #cbd5d7;
}

.preview-toolbar span:nth-child(1) { background: #e86d66; }
.preview-toolbar span:nth-child(2) { background: #e9b949; }
.preview-toolbar span:nth-child(3) { background: #3bb273; }
.preview-toolbar strong { margin-left: 6px; color: var(--ink); }

.preview-workspace {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 226px;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(180deg, #f8fbfa, #ffffff);
}

.preview-canvas {
  min-height: 316px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(45deg, #eef5f4 25%, transparent 25%),
    linear-gradient(-45deg, #eef5f4 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #eef5f4 75%),
    linear-gradient(-45deg, transparent 75%, #eef5f4 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.preview-crop {
  width: min(60%, 206px);
  aspect-ratio: 1;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f766e, #1c9aa0);
  color: #fff;
  font-size: clamp(40px, 7vw, 66px);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(15, 118, 110, 0.26);
}

.preview-side {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.preview-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-chip-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.preview-chip-row span,
.preview-list span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
}

.preview-chip-row span { padding: 6px 10px; }

.preview-list {
  display: grid;
  gap: 9px;
}

.preview-list span {
  display: block;
  padding: 10px 11px;
}

.preview-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: #f7fbfa;
}

.preview-status strong { color: var(--green); }
.preview-status span { color: var(--muted); font-size: 13.5px; }

.slide-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.slide-hint::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 5px auto 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.slide-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transform: translateY(-50%);
}

.slide-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 38, 44, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slide-dot:hover,
.slide-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.home-slides .section-header {
  max-width: 790px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-slides .section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
}

.home-slides .section-header p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card,
.slide-feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.workflow-card:hover,
.slide-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 14px 30px rgba(18, 64, 73, 0.10);
}

.workflow-step,
.feature-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.workflow-card h3,
.slide-feature-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.workflow-card p,
.slide-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.privacy-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px auto 0;
  max-width: 900px;
  border: 1px solid rgba(21, 128, 61, 0.3);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--green-soft);
  padding: 16px 18px;
}

.privacy-band strong { color: var(--green); }
.privacy-band span { color: var(--muted); font-size: 14.5px; }

.slide-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-slides .comparison {
  max-width: 1060px;
  gap: 16px;
}

.home-slides .comparison-card {
  padding: 22px;
}

.home-slides .comparison-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.home-slides .comparison-card.premium .btn {
  width: 100%;
  margin-top: 18px;
}

.home-slides .refund-note {
  max-width: 1060px;
}

.slide-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.slide-faq-list .faq-item {
  margin: 0 0 10px;
}

.slide-faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.slide-faq-list .faq-item summary {
  padding: 13px 0;
  font-size: 15px;
}

.slide-faq-list .faq-item p {
  padding: 10px 0 15px;
  font-size: 14px;
}

.final-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 0;
}

.final-links a {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.final-links a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.home-slides .site-footer {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 18px 0 0;
}

/* ---- sections ---- */
section.block { padding: 54px 0; }
section.block.alt { background: var(--bg-soft); }

.block h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  text-align: center; margin: 0 0 8px;
}

.block .sub {
  text-align: center; color: var(--muted);
  max-width: 640px; margin: 0 auto 34px;
}

/* ---- feature grid ---- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

.feature-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}

.feature-card .icon { font-size: 26px; margin-bottom: 10px; }
.feature-card h3 { margin: 0 0 6px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---- privacy callout ---- */
.privacy-callout {
  border: 1px solid var(--green);
  background: var(--green-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 760px; margin: 0 auto;
  font-size: 15.5px;
}

.privacy-callout strong { color: var(--green); }

/* ---- steps ---- */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.step-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; position: relative;
}

.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 10px;
}

.step-card h3 { margin: 0 0 6px; font-size: 16px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---- comparison ---- */
.comparison { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }

/* Strict no-refund banner: must stay clearly visible near pricing */
.refund-note--strict {
  border: 2px solid #ba3d55;
  background: #fdecef;
  color: #5c1f2c;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  text-align: left;
}
.refund-note--strict strong { color: #8f2740; }

.comparison-card {
  background: var(--panel); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.comparison-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(18, 64, 73, 0.10); }

.comparison-card.premium { border-color: var(--accent); box-shadow: var(--shadow); }
.comparison-card.premium:hover { box-shadow: 0 20px 46px rgba(15, 118, 110, 0.22); }

.comparison-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 3px 12px; margin-bottom: 12px;
  background: var(--accent-soft); color: var(--accent-dark);
}

.comparison-card ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; }
.comparison-card li { margin: 6px 0; }
.comparison-card li strong { color: var(--ink); }

/* ---- pricing ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; }

.pricing-card {
  background: var(--panel); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
}

.pricing-card.premium { border-color: var(--accent); box-shadow: var(--shadow); }

.pricing-tier { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: var(--muted); }

.pricing-price { font-size: 40px; font-weight: 800; margin: 8px 0 2px; }
.pricing-price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.pricing-original { color: var(--muted); text-decoration: line-through; font-size: 16px; }

.pricing-card ul { list-style: none; margin: 18px 0 22px; padding: 0; text-align: left; font-size: 14.5px; }
.pricing-card li { padding: 5px 0 5px 26px; position: relative; color: var(--muted); }
.pricing-card li::before { content: "✓"; position: absolute; left: 4px; color: var(--green); font-weight: 700; }
.pricing-card li.no::before { content: "—"; color: var(--muted); }
.pricing-card li strong { color: var(--ink); }

.refund-note {
  max-width: 640px; margin: 22px auto 0; text-align: center;
  color: var(--muted); font-size: 13.5px;
  border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px;
  background: #fff;
}

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 20px;
  margin: 10px 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item:hover {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 10px 24px rgba(18, 64, 73, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-weight: 650;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  padding: 15px 0;
}

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

.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--border);
}

.faq-item[open] summary::after {
  margin-top: 3px;
  transform: rotate(-135deg);
  border-color: var(--accent);
}

.faq-item p { color: var(--muted); margin: 0; padding: 14px 0 18px; font-size: 14.5px; line-height: 1.6; }

/* ---- prose pages (about / privacy / how-it-works) ---- */
.prose { max-width: 760px; margin: 0 auto; padding: 46px 0 30px; }
.prose h1 { font-size: 32px; margin: 0 0 10px; }
.prose h2 { font-size: 21px; margin: 30px 0 8px; }
.prose p, .prose li { color: var(--muted); }
.prose li { margin: 5px 0; }
.prose .updated { font-size: 13px; color: var(--muted); }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 40px; margin-top: 40px;
  color: var(--muted); font-size: 14px;
}

.footer-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.site-footer a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.site-footer a:hover { color: var(--accent-dark); }

/* ---- user page ---- */
.user-shell { max-width: 640px; margin: 0 auto; padding: 46px 0 60px; }

.user-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 18px;
}

.user-card h2 { margin: 0 0 12px; font-size: 19px; }

.user-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.user-row:last-child { border-bottom: none; }
.user-row .label { color: var(--muted); }

.tier-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 3px 12px;
}
.tier-badge.free { background: var(--accent-soft); color: var(--accent-dark); }
.tier-badge.premium { background: var(--gold-soft); color: var(--gold); }

.text-input {
  width: 100%; padding: 11px 12px; font-size: 15px;
  border: 1px solid var(--border); border-radius: 9px;
  background: #fff; color: var(--ink);
}

.text-input:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }

textarea.text-input { resize: vertical; font-family: inherit; }

.form-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.otp-row { display: flex; gap: 8px; margin: 12px 0; }
.otp-row input {
  width: 46px; height: 52px; text-align: center; font-size: 21px;
  border: 1px solid var(--border); border-radius: 9px;
}
.otp-row input:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }

.status-line { min-height: 20px; font-size: 14px; margin-top: 10px; color: var(--muted); }
.status-line.error { color: #be123c; }
.status-line.ok { color: var(--green); }

.notify-box {
  border: 1px solid var(--accent); background: var(--accent-soft);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: 14.5px;
}

[hidden] { display: none !important; }

/* ---- responsive ---- */
@media (max-height: 760px) and (min-width: 769px) {
  .home-slide { padding-top: 66px; padding-bottom: 16px; }
  .slide-shell { max-height: calc(100svh - 86px); }
  .slide-copy h1 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 14px; }
  .slide-copy p { font-size: 16px; margin-bottom: 18px; }
  .home-slides .section-header { margin-bottom: 18px; }
  .home-slides .section-header h2 { font-size: clamp(25px, 3.6vw, 36px); }
  .workflow-card, .slide-feature-card, .home-slides .comparison-card { padding: 16px; }
  .preview-canvas { min-height: 230px; }
  .metric-row { margin-top: 16px; }
  .home-slides .refund-note { margin-top: 16px; }
  .slide-faq-list .faq-item { margin-bottom: 7px; }
  .slide-faq-list .faq-item summary { padding: 10px 0; font-size: 14.5px; }
  .slide-faq-list .faq-item p { padding-bottom: 11px; font-size: 13.5px; }
  .final-links { margin-top: 16px; }
  .home-slides .site-footer { margin-top: 16px; }
}

@media (max-width: 1080px) {
  .hero-slide-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 22px;
  }
  .preview-workspace { grid-template-columns: minmax(0, 1fr) 190px; }
  .preview-canvas { min-height: 260px; }
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slide-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .nav-links { width: 100%; margin-left: 0; }
  .feature-grid, .step-grid, .comparison, .pricing-grid, .policy-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links a { padding: 6px 9px; font-size: 13.5px; }
}

@media (max-width: 900px) {
  .home-slide-root,
  .home-slide-root body {
    height: auto;
    overflow: auto;
  }

  .home-slides {
    overscroll-behavior: auto;
  }

  .home-slides .site-header {
    position: sticky;
  }

  .slide-nav,
  .slide-hint {
    display: none;
  }

  .slide-deck {
    min-height: auto;
  }

  .home-slide,
  .home-slide.active,
  .home-slide.above {
    position: relative;
    inset: auto;
    min-height: auto;
    padding: 42px 0;
    overflow: visible;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .slide-shell {
    max-height: none;
  }

  .slide-copy h1 {
    font-size: clamp(31px, 10vw, 46px);
  }

  .preview-workspace,
  .metric-row,
  .workflow-grid,
  .slide-feature-grid {
    grid-template-columns: 1fr;
  }

  .preview-canvas {
    min-height: 220px;
  }

  .preview-side {
    display: grid;
  }

  .privacy-band,
  .preview-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-slides .site-footer {
    padding-bottom: 8px;
  }
}

/* ---- redesigned homepage ---- */
.home-page {
  --home-bg: #f6f8f5;
  --home-panel: #ffffff;
  --home-ink: #17201e;
  --home-muted: #63706c;
  --home-line: #d7dfda;
  --home-teal: #08756f;
  --home-teal-dark: #075f5b;
  --home-mint: #dff4eb;
  --home-coral: #e85d4f;
  --home-amber: #f4b740;
  --home-blue: #315b9f;
  --home-shadow: 0 24px 70px rgba(16, 54, 50, 0.16);
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-ink);
  line-height: 1.55;
}

.home-page .container {
  max-width: 1180px;
}

.home-page .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(23, 32, 30, 0.08);
  backdrop-filter: blur(18px);
}

.home-page .nav {
  flex-wrap: nowrap;
  min-height: 66px;
  padding: 10px 0;
}

.home-page .brand {
  flex: none;
  color: var(--home-ink);
}

.home-page .brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(8, 117, 111, 0.12);
}

.home-page .brand-mark img {
  display: block;
  width: 24px;
  height: 24px;
}

.home-page .nav-links {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-page .nav-links::-webkit-scrollbar {
  display: none;
}

.home-page .nav-links a {
  flex: none;
  color: #283331;
  border-radius: 8px;
  white-space: nowrap;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  background: #edf6f2;
  color: var(--home-teal-dark);
}

.home-page .nav-links a.nav-cta {
  background: var(--home-ink);
  color: #ffffff;
}

.home-page .nav-links a.nav-cta:hover {
  background: var(--home-teal-dark);
  color: #ffffff;
}

.home-page .btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 750;
  line-height: 1.1;
  box-shadow: none;
}

.home-page .btn-primary {
  background: var(--home-teal);
  color: #ffffff;
  border-color: var(--home-teal);
}

.home-page .btn-primary:hover {
  background: var(--home-teal-dark);
  border-color: var(--home-teal-dark);
}

.home-page .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--home-ink);
  border-color: rgba(23, 32, 30, 0.16);
}

.home-page .btn-secondary:hover {
  border-color: rgba(8, 117, 111, 0.38);
  color: var(--home-teal-dark);
}

.home-hero {
  position: relative;
  min-height: clamp(610px, 78svh, 760px);
  overflow: hidden;
  isolation: isolate;
  background: #edf4f0;
  border-bottom: 1px solid rgba(23, 32, 30, 0.08);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 248, 245, 0.93) 0%, rgba(246, 248, 245, 0.77) 34%, rgba(246, 248, 245, 0.24) 62%, rgba(246, 248, 245, 0.56) 100%),
    radial-gradient(circle at 84% 24%, rgba(244, 183, 64, 0.30), transparent 28%),
    #edf4f0;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(23, 32, 30, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 30, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 90%, transparent);
}

.scene-window {
  position: absolute;
  right: clamp(-8px, 3vw, 44px);
  top: clamp(38px, 8vw, 82px);
  width: min(620px, 47vw);
  min-height: 492px;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--home-shadow);
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.scene-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(23, 32, 30, 0.10);
  background: rgba(255, 255, 255, 0.86);
}

.scene-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.scene-toolbar span:nth-child(1) { background: var(--home-coral); }
.scene-toolbar span:nth-child(2) { background: var(--home-amber); }
.scene-toolbar span:nth-child(3) { background: #24a474; }

.scene-toolbar strong {
  margin-left: 7px;
  color: #4f5a56;
  font-size: 13px;
}

.scene-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(180px, 0.85fr);
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 18px;
}

.scene-cropper {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: #f7faf8;
  overflow: hidden;
}

.scene-checker {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(8, 117, 111, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(8, 117, 111, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(8, 117, 111, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(8, 117, 111, 0.08) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}

.scene-main-icon {
  position: relative;
  z-index: 1;
  width: min(170px, 45%);
  height: auto;
  filter: drop-shadow(0 20px 28px rgba(8, 117, 111, 0.26));
}

.crop-outline {
  position: absolute;
  z-index: 2;
  width: 210px;
  aspect-ratio: 1;
  border: 2px solid var(--home-ink);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.36);
}

.scene-controls {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.scene-control-row,
.scene-slider,
.scene-export-button {
  height: 28px;
  border-radius: 8px;
  background: #eaf0ed;
}

.scene-control-row.wide { width: 100%; }
.scene-control-row { width: 74%; }
.scene-control-row.short { width: 54%; }

.scene-slider {
  position: relative;
  height: 8px;
  margin: 14px 0 2px;
  background: #d9e2dd;
}

.scene-slider span {
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--home-teal);
}

.scene-export-button {
  width: 100%;
  height: 42px;
  margin-top: 8px;
  background: var(--home-ink);
}

.scene-pack {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.scene-pack span {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-teal-dark);
  font-weight: 850;
}

.floating-output {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 1px;
  min-width: 174px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(16, 54, 50, 0.13);
}

.floating-output strong {
  color: var(--home-ink);
  font-size: 15px;
  line-height: 1.2;
}

.floating-output small {
  color: var(--home-muted);
  font-size: 12px;
}

.file-tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 24px;
  margin-bottom: 4px;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--home-mint);
  color: var(--home-teal-dark);
  font-size: 11px;
  font-weight: 850;
}

.floating-output-one {
  right: clamp(34px, 7vw, 128px);
  bottom: clamp(58px, 12vw, 140px);
}

.floating-output-two {
  right: clamp(390px, 37vw, 540px);
  bottom: clamp(74px, 16vw, 168px);
}

.floating-stack {
  position: absolute;
  right: clamp(84px, 10vw, 180px);
  top: clamp(520px, 67vh, 590px);
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(16, 54, 50, 0.10);
}

.floating-stack img {
  display: block;
  width: auto;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(610px, 78svh, 760px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(62px, 8vw, 98px);
  padding-bottom: clamp(54px, 8vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--home-teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  width: 100%;
  max-width: 540px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  width: 100%;
  max-width: 520px;
  margin: 24px 0 0;
  color: #35423f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 540px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin-top: 22px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #34403d;
  font-size: 13px;
  font-weight: 700;
}

.export-strip {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  padding: 0 0 34px;
}

.export-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.export-strip article {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 30, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(16, 54, 50, 0.08);
}

.export-strip strong,
.export-strip span {
  display: block;
}

.export-strip strong {
  color: var(--home-ink);
  font-size: 15px;
}

.export-strip span {
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 13px;
}

.home-section {
  scroll-margin-top: 86px;
  padding: clamp(70px, 9vw, 112px) 0;
}

.workflow-section {
  background: #ffffff;
}

.workflow-layout,
.pack-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.section-copy h2,
.section-heading-wide h2,
.pack-copy h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.keep-together {
  white-space: nowrap;
}

.section-copy p:not(.section-kicker),
.section-heading-wide p:not(.section-kicker),
.pack-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--home-muted);
  font-size: 17px;
}

.section-heading-wide {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.workflow-card {
  min-height: 184px;
  padding: 18px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.workflow-card.is-active {
  border-color: rgba(8, 117, 111, 0.35);
  background: #edf8f3;
}

.workflow-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 4px 9px;
  border-radius: 8px;
  background: var(--home-ink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.workflow-card h3 {
  margin: 0 0 8px;
  color: var(--home-ink);
  font-size: 19px;
  line-height: 1.2;
}

.workflow-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14.5px;
}

.product-section {
  background: #f8faf8;
  border-top: 1px solid rgba(23, 32, 30, 0.08);
  border-bottom: 1px solid rgba(23, 32, 30, 0.08);
}

.feature-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-panel {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-panel-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 468px;
  background: #17201e;
  color: #ffffff;
}

.feature-panel h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 21px;
  line-height: 1.16;
}

.feature-panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14.5px;
}

.feature-panel-large p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-token {
  display: inline-flex;
  width: max-content;
  min-width: auto;
  height: auto;
  margin: 0 0 16px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--home-mint);
  color: var(--home-teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-panel-large .feature-token {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mini-crop-preview {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #22302d;
}

.mini-crop-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.07) 75%);
  background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0;
}

.mini-crop-preview img {
  position: relative;
  z-index: 1;
  width: min(170px, 45%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.22));
}

.mini-crop-preview::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: min(235px, 70%);
  aspect-ratio: 1;
  border: 2px solid #ffffff;
  border-radius: 8px;
}

.pack-section {
  background: #ffffff;
}

.pack-preview {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #f7faf8;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(16, 54, 50, 0.10);
}

.pack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--home-line);
  background: #ffffff;
}

.pack-header strong {
  color: var(--home-ink);
}

.pack-header span {
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.pack-tile {
  display: grid;
  min-height: 145px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(23, 32, 30, 0.10);
  border-radius: 8px;
  background: #ffffff;
}

.pack-tile img {
  display: block;
  width: auto;
  height: auto;
}

.pack-tile.size-16 img { width: 16px; height: 16px; }
.pack-tile.size-32 img { width: 32px; height: 32px; }
.pack-tile.size-48 img { width: 48px; height: 48px; }
.pack-tile.size-128 img { width: 72px; height: 72px; }
.pack-tile.size-256 img { width: 86px; height: 86px; }
.pack-tile.size-512 img { width: 104px; height: 104px; }

.pack-tile span {
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 800;
}

.pricing-section {
  background: #f8faf8;
  border-top: 1px solid rgba(23, 32, 30, 0.08);
  border-bottom: 1px solid rgba(23, 32, 30, 0.08);
}

.pricing-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  display: flex;
  min-height: 472px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
}

.price-card.premium-card {
  border: 2px solid var(--home-teal);
  box-shadow: 0 24px 56px rgba(8, 117, 111, 0.13);
}

.plan-badge {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #eef5f1;
  color: var(--home-teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.price-card h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 34px;
  line-height: 1;
}

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

.price-card p {
  margin: 14px 0 18px;
  color: var(--home-muted);
  font-size: 14.5px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--home-muted);
  font-size: 14.5px;
}

.price-card li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 22px;
  border-top: 1px solid rgba(23, 32, 30, 0.08);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-teal);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.home-refund-note {
  max-width: 100%;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 108px;
  margin-top: 22px;
  padding: 0;
  border-width: 2px 2px 2px 8px;
  border-color: #b42335;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff5f6 0%, #fde7eb 100%);
  box-shadow: 0 18px 42px rgba(180, 35, 53, 0.12);
  text-align: left;
  overflow: hidden;
}

.home-refund-note .refund-alert {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 6px 10px;
  border-radius: 0;
  background: #b42335;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-refund-note .refund-copy {
  padding: 20px 22px;
}

.home-refund-note .refund-copy > strong {
  display: block;
  color: #7f1d2b;
  font-size: 18px;
  line-height: 1.25;
}

.home-refund-note .refund-copy p {
  margin: 6px 0 0;
  color: #5c1f2c;
  font-size: 15px;
  line-height: 1.55;
}

.home-refund-note .refund-copy p strong {
  display: inline;
  color: #8f2740;
  font-size: inherit;
}

.support-section {
  background: #ffffff;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-faq-list {
  max-width: none;
}

.home-faq-list .faq-item {
  border-radius: 8px;
  box-shadow: none;
}

.home-footer {
  margin-top: 0;
  background: #17201e;
  border-top: 0;
  color: rgba(255, 255, 255, 0.72);
}

.home-footer strong {
  color: #ffffff;
}

.home-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.home-footer a:hover {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .scene-window {
    width: min(650px, 62vw);
    opacity: 0.86;
  }

  .floating-output-two {
    display: none;
  }

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

@media (max-width: 920px) {
  .home-page .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-page .nav-links {
    width: 100%;
    margin-left: 0;
  }

  .home-hero,
  .hero-content {
    min-height: auto;
  }

  .home-hero {
    padding: 0;
  }

  .hero-scene {
    opacity: 0.28;
  }

  .hero-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(246, 248, 245, 0.76);
    z-index: 1;
  }

  .scene-window {
    right: -180px;
    top: 56px;
    width: 660px;
    transform: rotate(-2deg) scale(0.9);
    transform-origin: top right;
  }

  .floating-output,
  .floating-stack {
    display: none;
  }

  .hero-content {
    min-height: auto;
    justify-content: flex-start;
    padding-top: clamp(64px, 13vw, 92px);
    padding-bottom: 44px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 14vw, 64px);
    line-height: 0.98;
  }

  .export-strip {
    margin-top: 0;
    padding-top: 14px;
  }

  .export-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-layout,
  .pack-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-wide {
    text-align: left;
  }

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

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .home-page .container {
    padding: 0 16px;
  }

  .home-page main .container {
    max-width: 390px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 390px;
    margin-left: 0;
    margin-right: auto;
  }

  .home-page .brand {
    font-size: 16px;
  }

  .home-page .nav-links a {
    padding: 7px 10px;
    font-size: 13.5px;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero-lede {
    max-width: 350px;
    font-size: 17px;
  }

  .hero-content h1 {
    max-width: 330px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions,
  .hero-trust,
  .export-strip-inner {
    max-width: 358px;
  }

  .hero-trust {
    gap: 7px;
  }

  .hero-trust span {
    font-size: 12.5px;
  }

  .export-strip-inner,
  .workflow-board,
  .feature-layout,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .home-section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading-wide h2,
  .pack-copy h2 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.08;
  }

  .home-refund-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .home-refund-note .refund-alert {
    width: max-content;
    margin: 0;
    border-radius: 8px;
  }

  .home-refund-note .refund-copy {
    padding: 0;
  }

  .pack-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-height: 720px) and (min-width: 921px) {
  .home-hero,
  .hero-content {
    min-height: 610px;
  }

  .scene-window {
    top: 38px;
    min-height: 430px;
  }

  .scene-cropper {
    min-height: 250px;
  }
}

/* ---- current homepage, slide-mode layout ---- */
.home-page.home-slides {
  background: var(--home-bg);
  overscroll-behavior: none;
}

.home-page.home-slides .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.home-page.home-slides .home-slide-deck {
  min-height: 100%;
}

.home-page.home-slides .home-slide {
  padding: 76px 0 30px;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%) translateZ(0);
  transition:
    transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1),
    opacity 0.2s ease;
}

.home-slide-root.slides-initializing .home-slide {
  transition: none !important;
}

.home-page.home-slides .home-slide.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateZ(0);
}

.home-page.home-slides .home-slide:target {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateZ(0);
}

.home-page.home-slides .home-slide.above {
  z-index: 1;
  opacity: 0;
  transform: translateY(-100%) translateZ(0);
}

.home-page.home-slides .home-slide.slide-alt,
.home-page.home-slides .product-section,
.home-page.home-slides .pricing-section {
  background: #f8faf8;
}

.home-page.home-slides .intro-slide {
  align-items: stretch;
  justify-content: stretch;
  padding: 66px 0 0;
  background: #edf4f0;
}

.intro-slide-stack {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex-direction: column;
}

.home-page.home-slides .intro-slide .home-hero {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

.home-page.home-slides .intro-slide .hero-content {
  min-height: 0;
  height: 100%;
  justify-content: center;
  padding-top: clamp(38px, 5vh, 72px);
  padding-bottom: clamp(24px, 4vh, 52px);
}

.home-page.home-slides .intro-slide .export-strip {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 0 0 18px;
}

.home-page.home-slides .intro-slide .export-strip article {
  min-height: 72px;
  padding: 12px 14px;
}

.home-page.home-slides .home-section {
  min-height: auto;
}

.home-page.home-slides .home-section > .container {
  max-height: calc(100svh - 118px);
}

.home-page.home-slides .section-copy h2,
.home-page.home-slides .section-heading-wide h2,
.home-page.home-slides .pack-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.home-page.home-slides .section-heading-wide {
  margin-bottom: 24px;
}

.home-page.home-slides .workflow-card {
  min-height: 158px;
}

.home-page.home-slides .feature-panel {
  min-height: 182px;
}

.home-page.home-slides .feature-panel-large {
  min-height: 384px;
}

.home-page.home-slides .mini-crop-preview {
  min-height: 205px;
  margin-top: 22px;
}

.home-page.home-slides .pack-preview {
  box-shadow: 0 18px 44px rgba(16, 54, 50, 0.10);
}

.home-page.home-slides .pack-tile {
  min-height: 122px;
}

.home-page.home-slides .pricing-comparison {
  gap: 12px;
}

.home-page.home-slides .price-card {
  min-height: 350px;
  padding: 18px;
}

.home-page.home-slides .price-card p {
  margin-bottom: 12px;
}

.home-page.home-slides .price-card li {
  padding-top: 7px;
  padding-bottom: 7px;
}

.home-page.home-slides .home-refund-note {
  min-height: 94px;
  margin-top: 16px;
}

.home-page.home-slides .support-section {
  flex-direction: column;
  gap: 22px;
}

.home-page.home-slides .support-section .support-layout {
  width: 100%;
}

.home-page.home-slides .support-section .home-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 8px;
}

.home-page.home-slides .support-section .home-footer .container {
  padding: 0;
}

.home-page.home-slides .home-slide-nav {
  right: 18px;
}

.home-page.home-slides .slide-dot {
  background: rgba(23, 32, 30, 0.22);
}

.home-page.home-slides .slide-dot:hover,
.home-page.home-slides .slide-dot.active {
  background: var(--home-teal);
}

@media (max-height: 760px) and (min-width: 901px) {
  .home-page.home-slides .home-slide {
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .home-page.home-slides .intro-slide {
    padding-top: 66px;
  }

  .home-page.home-slides .intro-slide .hero-content {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .home-page.home-slides .hero-content h1 {
    font-size: clamp(48px, 7vw, 86px);
  }

  .home-page.home-slides .hero-lede {
    margin-top: 16px;
    font-size: 17px;
  }

  .home-page.home-slides .hero-actions {
    margin-top: 20px;
  }

  .home-page.home-slides .hero-trust {
    margin-top: 14px;
  }

  .home-page.home-slides .scene-window {
    min-height: 390px;
    transform: rotate(-1.5deg) scale(0.9);
    transform-origin: center right;
  }

  .home-page.home-slides .scene-cropper {
    min-height: 230px;
  }

  .home-page.home-slides .scene-pack span {
    min-height: 58px;
  }

  .home-page.home-slides .intro-slide .export-strip article {
    min-height: 62px;
  }

  .home-page.home-slides .section-copy h2,
  .home-page.home-slides .section-heading-wide h2,
  .home-page.home-slides .pack-copy h2 {
    font-size: clamp(30px, 3.4vw, 42px);
  }

  .home-page.home-slides .section-copy p:not(.section-kicker),
  .home-page.home-slides .section-heading-wide p:not(.section-kicker),
  .home-page.home-slides .pack-copy p:not(.section-kicker) {
    font-size: 15px;
  }

  .home-page.home-slides .workflow-card,
  .home-page.home-slides .feature-panel {
    min-height: 142px;
    padding: 15px;
  }

  .home-page.home-slides .feature-panel-large {
    min-height: 304px;
  }

  .home-page.home-slides .mini-crop-preview {
    min-height: 160px;
  }

  .home-page.home-slides .pack-tile {
    min-height: 92px;
  }

  .home-page.home-slides .price-card {
    min-height: 300px;
    padding: 15px;
  }

  .home-page.home-slides .home-refund-note {
    min-height: 78px;
  }
}

@media (max-width: 900px) {
  .home-page.home-slides {
    overscroll-behavior: auto;
  }

  .home-page.home-slides .site-header {
    position: sticky;
  }

  .home-page.home-slides .home-slide,
  .home-page.home-slides .home-slide.active,
  .home-page.home-slides .home-slide.above {
    position: relative;
    inset: auto;
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .home-page.home-slides .intro-slide {
    padding: 0;
  }

  .home-page.home-slides .intro-slide .home-hero {
    min-height: auto;
  }

  .home-page.home-slides .intro-slide .hero-content {
    height: auto;
  }

  .home-page.home-slides .home-section {
    padding: 64px 0;
  }

  .home-page.home-slides .home-section > .container {
    max-height: none;
  }

  .home-page.home-slides .feature-panel,
  .home-page.home-slides .price-card,
  .home-page.home-slides .workflow-card {
    min-height: auto;
  }

  .home-page.home-slides .feature-panel-large {
    min-height: 390px;
  }

  .home-page.home-slides .pack-tile {
    min-height: 145px;
  }

  .home-page.home-slides .support-section .home-footer {
    width: 100%;
    border-radius: 0;
  }
}
