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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #171717;
  background: #fcfaf7;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Layout helpers ── */
.section-shell { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-shell--wide { max-width: 1280px; }
.section-shell--narrow { max-width: 860px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-head--stacked {
  display: block;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-head h2,
.section-head--stacked h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-top: 0.35rem;
}
.section-head p,
.section-head--stacked p {
  color: #5f5b57;
  font-size: 1rem;
  max-width: 520px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #8a5a44;
  font-weight: 700;
}
.section-kicker--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-kicker--light { color: rgba(255,255,255,0.76); }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(23,23,23,0.06);
  position: sticky;
  top: 0;
  background: rgba(252,250,247,0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 100;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-brand {
  gap: 0.7rem;
}
.nav-brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(18,55,61,0.08));
}
.nav-brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #12373d;
}
.nav-brand-wordmark span {
  color: #b78a5c;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.95rem; }
.nav-toggle-cb { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  cursor: pointer;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #12373d;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-cb:focus-visible ~ .nav-toggle { outline: 2px solid #2b6166; outline-offset: 2px; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links a { color: #5f5b57; transition: color 0.15s; }
.nav-links a:hover { color: #171717; }
.nav-links .btn-primary { color: #fff; transition: all 0.18s ease; }
.nav-links .btn-primary:hover {
  background: #2b6166;
  border-color: #2b6166;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: #171717;
  color: #fff;
  border-color: #171717;
}
.btn-primary:hover { background: #000; }
.btn-secondary {
  background: transparent;
  color: #171717;
  border-color: rgba(23,23,23,0.12);
}
.btn-secondary:hover { background: rgba(23,23,23,0.04); }
.btn-lg { padding: 0.95rem 1.55rem; }

/* ── Hero ── */
.hero-premium {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(181,140,113,0.14), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #fcfaf7 100%);
}
.hero-premium::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 26px;
  width: 520px;
  height: 520px;
  opacity: 0.12;
  pointer-events: none;
  background-image: url('/brand/catalogshot-app-icon-mark-tight.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f1e6dd;
  color: #8a5a44;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.aperture-dot {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at center, transparent 0 24%, #12373d 24% 31%, transparent 31% 43%, #b78a5c 43% 50%, transparent 50% 100%);
}
.aperture-dot--light {
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(255,255,255,0.92) 24% 31%, transparent 31% 43%, rgba(255,255,255,0.55) 43% 50%, transparent 50% 100%);
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}
.hero-lede {
  font-size: 1.08rem;
  color: #5f5b57;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.hero-proof { display: grid; gap: 0.6rem; max-width: 560px; }
.hero-proof li {
  position: relative;
  padding-left: 1.4rem;
  color: #3b3835;
}
.hero-proof li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a5a44;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-stage {
  position: relative;
  min-height: 0;
  width: min(100%, 560px);
  justify-self: end;
}
.hero-stage-main {
  border-radius: 30px;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 32px 80px rgba(69,44,28,0.14);
}
.hero-stage-main img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  aspect-ratio: 0.96 / 1.08;
  object-fit: cover;
  object-position: center;
}
.hero-stage--result {
  min-height: 0;
}
.hero-stage-main--result {
  border-radius: 30px;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 32px 80px rgba(69,44,28,0.16);
}
.hero-stage-main--result img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  aspect-ratio: 0.96 / 1.08;
  object-fit: cover;
  object-position: center;
}
.hero-stage-detail {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: clamp(160px, 32%, 220px);
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid rgba(252,250,247,0.96);
  box-shadow: 0 24px 56px rgba(23,23,23,0.16);
  background: #efe7de;
}
.hero-stage-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}
.stage-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a44;
}

/* ── Signal bar ── */
.signal-bar {
  border-top: 1px solid rgba(23,23,23,0.06);
  border-bottom: 1px solid rgba(23,23,23,0.06);
  background: #fff;
  padding: 1.7rem 0;
}
.slogan-rotator {
  max-width: 1180px;
  margin: 0 auto 1.3rem;
  padding: 0 2rem;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b625c;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.5s ease;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ex-card { flex: 0 0 auto; margin: 0 1.1rem 0 0; }
.ex-card img {
  height: 220px;
  width: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(23,23,23,0.06);
  background: #faf8f4;
}
.ex-card figcaption {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b625c;
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
}

/* ── Demo / proof ── */
.demo-strip { padding: 5rem 0 2rem; }
.proof-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.4rem;
  align-items: start;
}
.proof-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23,23,23,0.05);
}
.proof-card--wide {
  display: flex;
  flex-direction: column;
}
.proof-card-media img,
.proof-card-media video {
  width: 100%;
  height: auto;
  display: block;
}
.proof-card-media--video {
  padding: 0.9rem;
}
.proof-card-media--video video {
  background: #000;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,0.08);
}
.proof-card--composition .proof-card-media {
  padding: 0.9rem;
}
.proof-card--composition img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,0.08);
  background: #f7f3ee;
}
.proof-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.proof-card-body h3 { font-size: 1.25rem; letter-spacing: -0.03em; margin: 0.35rem 0 0.45rem; }
.proof-card-body p { color: #5f5b57; }
.demo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.demo-badge--soft {
  background: #f1e6dd;
  color: #8a5a44;
}

/* ── Compare ── */
.compare-section { padding: 5rem 0; }
.compare-media-stage {
  margin-bottom: 1.6rem;
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 18px 46px rgba(23,23,23,0.06);
}
.compare-media-stage video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
}
.hero-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5c6ac4;
  transition: color 0.15s ease;
}
.hero-watch:hover { color: #12373d; }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.compare-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compare-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
  padding: 1.6rem;
}
.compare-card--accent {
  background: #1e1b18;
  color: #fff;
  border-color: #1e1b18;
}
.compare-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.compare-card ul { display: grid; gap: 0.7rem; }
.compare-card li { position: relative; padding-left: 1.2rem; color: inherit; }
.compare-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b97e5f;
}

/* ── Jewellery before / after ── */
.jewellery-beforeafter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(23,23,23,0.06);
}
.ba-slot { position: relative; min-width: 0; aspect-ratio: 4 / 5; }
.ba-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* "Before" packshot shown in full (letterboxed) so the product is never cropped;
   "After" fills its slot. */
.ba-slot--before img { object-fit: contain; background: #f5f2ee; }
.ba-tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(23,23,23,0.72);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ba-tag--after { background: #b97e5f; }
.ba-pair > figcaption {
  grid-column: 1 / -1;
  padding: 1rem 1.4rem;
  color: #5f5b57;
  font-size: 0.94rem;
  border-top: 1px solid rgba(23,23,23,0.06);
}

/* ── Workflow ── */
.workflow-section { padding: 1rem 0 5rem; }
.workflow-collage-stage,
.workflow-copy-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
}
.workflow-collage-stage {
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 18px 46px rgba(23,23,23,0.06);
  margin-bottom: 1.6rem;
}
.workflow-collage-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}
.workflow-collage-stage--shopify {
  padding: 1rem;
}
.workflow-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.workflow-story-card {
  background: #fcfaf7;
  border: 1px solid rgba(23,23,23,0.06);
  border-radius: 18px;
  overflow: hidden;
}
.workflow-story-card img {
  width: 100%;
  display: block;
}
.workflow-story-card p {
  padding: 0.85rem 1rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a44;
}
.workflow-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

/* ── Generations vs activations ── */
.activations-section {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(248,244,239,0.92) 100%);
}

.activations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}

.activations-stage {
  display: flex;
  align-items: center;
}

.activations-stage img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 22px 54px rgba(23,23,23,0.08);
}

.activations-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.activations-lede {
  color: #5f5b57;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.activations-note {
  color: #5f5b57;
  font-size: 1rem;
}

.activation-cards {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.2rem;
}

.activation-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: 0 14px 34px rgba(23,23,23,0.04);
}

.activation-card--accent {
  background: linear-gradient(180deg, rgba(232,247,238,0.96) 0%, rgba(255,255,255,0.94) 100%);
  border-color: rgba(74,158,108,0.22);
}

.activation-card h3 {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.activation-card p {
  color: #5f5b57;
  font-size: 0.97rem;
}

.activation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f1e6dd;
  color: #8a5a44;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.activation-chip--accent {
  background: #dff5e6;
  color: #2d7d48;
}

@media (max-width: 900px) {
  .activations-grid {
    grid-template-columns: 1fr;
  }

  .activations-stage {
    order: -1;
  }

  .activation-cards {
    grid-template-columns: 1fr;
  }
}
.workflow-copy-card {
  border-radius: 20px;
  padding: 1.4rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.workflow-copy-card--featured {
  border-color: rgba(138,90,68,0.18);
  box-shadow: 0 14px 32px rgba(23,23,23,0.05);
}
.workflow-number {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: #8a5a44;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.workflow-copy-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.workflow-copy-card p { color: #5f5b57; font-size: 0.94rem; max-width: 28ch; }

/* ── Pricing ── */
.pricing { padding: 4rem 0 5rem; }
.pricing-free-banner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  background: #f5ede4;
  border: 1px solid rgba(183,138,92,0.18);
  text-align: center;
}
.pricing-free-banner__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a44;
  font-weight: 700;
}
.pricing-free-banner--accent {
  background: #e6f2ed;
  border-color: rgba(0, 128, 96, 0.18);
}
.pricing-free-banner__eyebrow--accent {
  color: #008060;
}
.pricing-free-banner__text--accent {
  color: #004d39;
}
.pricing-free-banner strong {
  font-size: 1rem;
  color: #171717;
  letter-spacing: -0.02em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 26px;
  padding: 1.9rem;
  position: relative;
}
.pricing-card--featured {
  border-color: #171717;
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  background: #171717;
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.plan-name { color: #8c857f; font-weight: 700; margin-bottom: 0.6rem; }
.plan-price { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.05em; margin-bottom: 0.35rem; }
.plan-price span { font-size: 1rem; font-weight: 500; color: #8c857f; }
.plan-note { font-size: 0.95rem; color: #6f6760; margin-bottom: 0.2rem; }
.plan-effective {
  font-size: 0.86rem;
  color: #8a5a44;
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-subtle {
  color: #5f5b57;
  font-size: 1rem;
  max-width: 520px;
  margin: 1.25rem auto 2rem;
  text-align: center;
}
.pricing-card ul { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.pricing-card li { color: #4f4a46; }
.pricing-card .btn { width: 100%; }

/* ── CTA ── */
.cta-premium {
  background: #171717;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-premium::before {
  content: "";
  position: absolute;
  left: -200px;
  bottom: -250px;
  width: 800px;
  height: 800px;
  opacity: 0.06;
  pointer-events: none;
  background-image: url('/brand/catalogshot-app-icon-mark-tight.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-premium .section-shell { text-align: center; position: relative; z-index: 1; }
.cta-kicker-branded {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-premium h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.9rem;
}
.cta-premium p {
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.cta-premium .btn-primary {
  background: #fff;
  color: #171717;
  border-color: #fff;
}
.cta-premium .btn-primary:hover { background: #f3efe8; }

/* ── Pages ── */
.page-inner { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.page-inner h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.page-inner h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.5rem; }
.page-inner p, .page-inner li { color: #555; margin-bottom: 0.75rem; }
.support-discord-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.75rem 0 0.5rem; }
.support-discord-icon { flex-shrink: 0; }
.support-discord-note { margin-top: 0.25rem; font-size: 0.92rem; }
.support-faq { margin: 0; padding: 0; }
.support-faq dt { font-weight: 700; color: #171717; margin-top: 1.25rem; }
.support-faq dd { margin: 0.25rem 0 0; color: #555; }

/* ============================================================
   Tutorial page — deck-style design system (scoped to .tut-*)
   ============================================================ */
:root {
  --tut-accent: #5c6ac4;
  --tut-accent-2: #7b61ff;
  --tut-ink: #1f2933;
  --tut-muted: #6b7480;
  --tut-line: #e6e8ec;
  --tut-bg-soft: #f6f7fb;
}

/* Hero — clean cream band with the brand mark as a big background watermark */
.tut-hero {
  position: relative;
  overflow: hidden;
  background: #faf8f4;
  border-bottom: 1px solid rgba(23,23,23,0.06);
  color: var(--tut-ink);
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
}
.tut-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -150px;
  width: 780px;
  height: 780px;
  transform: translateY(-50%);
  background: url("/brand/catalogshot-app-icon-mark-tight.png") no-repeat center / contain;
  opacity: 0.14;
  pointer-events: none;
}
.tut-hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.tut-hero__kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--tut-accent); margin-bottom: 1rem;
}
.tut-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin: 0 0 1rem; color: var(--tut-ink); }
.tut-hero__sub { font-size: 1.15rem; line-height: 1.5; color: #4a5560; margin: 0 auto 2rem; max-width: 620px; }

/* Section jump bar — funky pills sitting in the gap below the hero */
.tut-jump-nav { background: #faf8f4; border-bottom: 1px solid var(--tut-line); padding: 1.25rem 1.5rem; }
.tut-jump-inner { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.tut-jump {
  display: inline-block; padding: 0.5rem 1.05rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--tut-line); color: var(--tut-ink);
  font-size: 0.88rem; font-weight: 600; text-decoration: none; line-height: 1.1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.tut-jump:hover, .tut-jump:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 22px rgba(92,106,196,0.32);
  /* transparent in normal mode; becomes visible in forced-colors/high-contrast */
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Page canvas */
.tut-page { max-width: 960px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.tut-page > h2 {
  font-size: 1.75rem; font-weight: 800; color: var(--tut-ink);
  margin: 3.25rem 0 1.25rem; padding-top: 1.5rem; border-top: 1px solid var(--tut-line);
}
.tut-page > h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.tut-page > h3 { font-size: 1.15rem; font-weight: 700; color: var(--tut-ink); margin: 1.75rem 0 0.5rem; }
.tut-page > p { color: #4a5560; font-size: 1.02rem; line-height: 1.6; margin: 0 0 1rem; }
.tut-page > p > strong, .tut-page li > strong { color: var(--tut-ink); }
.tut-page > ul { color: #4a5560; line-height: 1.6; margin: 0 0 1.25rem; padding-left: 1.2rem; }
.tut-page > ul li { margin-bottom: 0.4rem; }

/* Card grid */
.tut-cards { display: grid; gap: 1rem; margin: 1.5rem 0 2rem; }
.tut-cards--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tut-cards--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tut-cards--4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.tut-card {
  background: #fff; border: 1px solid var(--tut-line); border-radius: 14px;
  padding: 1.25rem 1.25rem 1.1rem; box-shadow: 0 1px 2px rgba(16,24,40,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tut-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,24,40,0.08); }
.tut-card__icon { font-size: 1.9rem; line-height: 1; margin-bottom: 0.6rem; }
.tut-card__title { font-size: 1.02rem; font-weight: 700; color: var(--tut-ink); margin: 0 0 0.35rem; }
.tut-card__body { color: var(--tut-muted); font-size: 0.93rem; line-height: 1.5; }
.tut-card__body p { margin: 0 0 0.5rem; }
.tut-card__body p:last-child { margin-bottom: 0; }

/* Numbered steps */
.tut-steps { counter-reset: tut-step; list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.tut-step {
  counter-increment: tut-step; position: relative; background: #fff;
  border: 1px solid var(--tut-line); border-radius: 14px; padding: 1.1rem 1.25rem 1.1rem 4rem;
}
.tut-step::before {
  content: counter(tut-step); position: absolute; left: 1.1rem; top: 1.05rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.tut-step__title { display: block; font-weight: 700; color: var(--tut-ink); margin-bottom: 0.15rem; }
.tut-step__body { color: var(--tut-muted); font-size: 0.95rem; line-height: 1.5; }
.tut-step__body p { margin: 0; }
.tut-step-cta { display: block; width: fit-content; margin: 0.85rem 0 0 auto; }

/* Callout boxes */
.tut-callout { border-radius: 14px; padding: 1.25rem 1.4rem; margin: 1.75rem 0 2rem; border: 1px solid var(--tut-line); }
.tut-callout__title { font-size: 1.1rem; font-weight: 800; color: var(--tut-ink); margin: 0 0 0.5rem; }
.tut-callout__icon { margin-right: 0.15rem; }
.tut-callout__body { color: #4a5560; font-size: 0.97rem; line-height: 1.55; }
.tut-callout__body :first-child { margin-top: 0; }
.tut-callout__body :last-child { margin-bottom: 0; }
.tut-callout__body ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.tut-callout__body li { margin-bottom: 0.35rem; }
.tut-callout--info { background: var(--tut-bg-soft); }
.tut-callout--warn { background: #fff8ed; border-color: #f5d9a8; }
.tut-callout--tip { background: #f0fdf6; border-color: #b6e7cd; }
.tut-callout--magic {
  background: linear-gradient(135deg, rgba(123,97,255,0.10), rgba(92,106,196,0.12));
  border: 1px solid rgba(123,97,255,0.30);
}
.tut-callout--magic .tut-callout__title { color: var(--tut-accent); }

/* Pricing plans */
.tut-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.25rem; }
.tut-plan {
  position: relative; background: #fff; border: 1px solid var(--tut-line);
  border-radius: 16px; padding: 1.4rem 1.25rem; text-align: center;
}
.tut-plan--featured { border-color: var(--tut-accent); box-shadow: 0 10px 30px rgba(92,106,196,0.18); }
.tut-plan__ribbon {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 999px; white-space: nowrap;
}
.tut-plan__name { font-size: 1.05rem; font-weight: 700; color: var(--tut-ink); margin: 0.25rem 0 0.5rem; }
.tut-plan__price { font-size: 2rem; font-weight: 800; color: var(--tut-ink); line-height: 1; }
.tut-plan__period { font-size: 0.85rem; font-weight: 600; color: var(--tut-muted); margin-left: 0.15rem; }
.tut-plan__list { list-style: none; margin: 1rem 0 0; padding: 0; color: var(--tut-muted); font-size: 0.92rem; }
.tut-plan__list li { padding: 0.3rem 0; border-top: 1px solid var(--tut-line); }
.tut-plan__list strong { color: var(--tut-ink); }

/* Screenshot figures (placeholders until real captures land) */
.tutorial-shot { margin: 1.75rem 0 2.25rem; }
.tutorial-shot img {
  max-width: 100%; display: block; margin: 0 auto;
  border: 1px solid var(--tut-line); border-radius: 12px;
  background: var(--tut-bg-soft); box-shadow: 0 12px 30px rgba(16,24,40,0.10);
}
.tutorial-shot figcaption { margin-top: 0.6rem; font-size: 0.85rem; color: var(--tut-muted); text-align: center; }
.tutorial-shot figcaption strong { color: var(--tut-accent); }

@media (max-width: 600px) {
  .tut-hero { padding: 3.5rem 1.25rem 2.75rem; }
  .tut-page { padding: 2.5rem 1.1rem 3.5rem; }
}

.feature-page-hero {
  padding: 4.5rem 0 1rem;
}
.how-section {
  padding: 1.5rem 0 4.5rem;
}
.how-section--alt {
  background: rgba(23, 23, 23, 0.02);
  border-top: 1px solid rgba(23,23,23,0.05);
  border-bottom: 1px solid rgba(23,23,23,0.05);
}
.how-media-grid {
  display: grid;
  gap: 1.4rem;
}
.how-media-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.how-media-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.how-media-grid--full {
  grid-template-columns: 1fr;
}
.how-media-card,
.how-copy-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(23,23,23,0.05);
}
.how-media-card video,
.how-media-card img {
  width: 100%;
  display: block;
}
.how-media-card video {
  background: #000;
}
.how-media-card--stacked-pair {
  padding: 1rem;
}
.before-after-pair {
  display: grid;
  gap: 1rem;
}
.before-after-pair img {
  border-radius: 16px;
  border: 1px solid rgba(23,23,23,0.08);
}
.how-step-label {
  padding: 0.95rem 1rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a44;
}
.how-copy-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how-copy-card h3 {
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}
.how-copy-card p {
  color: #5f5b57;
  margin-bottom: 1.2rem;
}

.how-media-card--feature-image {
  padding: 1rem;
}
.how-media-card--feature-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

/* ── Footer ── */
.footer { border-top: 1px solid rgba(23,23,23,0.06); padding: 1.5rem 2rem; text-align: center; font-size: 0.85rem; color: #888; }
.footer a { color: #888; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-shell,
  .proof-split,
  .compare-grid,
  .jewellery-beforeafter,
  .workflow-copy-grid,
  .workflow-story-grid,
  .pricing-grid,
  .how-media-grid--two,
  .how-media-grid--three {
    grid-template-columns: 1fr;
  }

  .pricing-free-banner {
    display: flex;
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-stage {
    min-height: 0;
    padding-bottom: 0;
    width: min(100%, 640px);
    margin: 0 auto;
    justify-self: center;
  }

  .workflow-copy-card--featured {
    box-shadow: 0 16px 40px rgba(23,23,23,0.05);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.75rem;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0.9rem 1rem;
    flex-wrap: wrap;
  }
  .nav-brand-mark { width: 34px; height: 34px; }
  .nav-brand-wordmark { font-size: 1.3rem; }
  .nav-toggle-cb {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    margin-top: 0.6rem;
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(23,23,23,0.06);
  }
  .nav-links .btn {
    width: 100%;
    margin-top: 0.6rem;
  }
  .hero-premium { padding-top: 3.5rem; }
  .hero-premium::after {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 34px;
    opacity: 0.08;
  }
  .cta-premium::before {
    width: 400px;
    height: 400px;
    left: -120px;
    bottom: -150px;
  }
  .hero-shell,
  .section-shell,
  .section-shell--wide,
  .section-shell--narrow { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stage {
    padding-bottom: 0;
    min-height: auto;
    width: min(100%, 640px);
  }
  .hero-stage--result { min-height: auto; }
  .hero-stage-main img,
  .hero-stage-main--result img,
  .demo-card-media img,
  .workflow-collage-stage img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-stage-detail img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-stage-detail {
    position: static;
    width: min(68%, 260px);
    margin: -2rem 0 0 auto;
  }
  .workflow-collage-stage {
    padding: 0.85rem;
  }
  .proof-card--composition .proof-card-media {
    padding: 0.75rem;
  }
  .slogan-rotator { font-size: 0.85rem; }
  .ex-card img { height: 172px; }
}

/* ── Pitch Pages ── */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pitch-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23,23,23,0.06);
  border: 1px solid rgba(23,23,23,0.08);
  display: flex;
  flex-direction: column;
}
.pitch-card--original {
  background: #fbf8f4;
}
.pitch-label {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a5a44;
  border-bottom: 1px solid rgba(23,23,23,0.06);
}
.pitch-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0;
}
.pitch-card--original .pitch-media {
  padding: 2rem;
  background: transparent;
}
.pitch-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}
.pitch-media img:focus {
  outline: 2px solid #8a5a44;
  outline-offset: 2px;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: zoom-out;
}

.pitch-hero {
  padding-bottom: 2rem;
  padding-top: 3.5rem;
}
.text-center {
  margin: 0 auto;
  text-align: center;
}
.pitch-kicker {
  justify-content: center;
}
.pitch-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.pitch-lede {
  margin: 0 auto 2rem;
  text-align: left;
  font-size: 1.1rem;
  color: #3b3835;
}
.pitch-card--detail {
  background: #f5f2ef;
}
.pitch-detail-note {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: #8a5a44;
  margin: 0;
  border-top: 1px solid rgba(23,23,23,0.06);
}
.pitch-inline-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 4px 16px rgba(23,23,23,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pitch-inline-cta-copy {
  font-size: 1.05rem;
  color: #3b3835;
}
.pitch-inline-cta-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pitch-inline-cta-fine {
  font-size: 0.8rem;
  color: #1a7a4a;
  font-weight: 500;
}
.pitch-cta {
  text-align: center;
  margin: 0 auto;
}
.pitch-cta-text {
  color: #5f5b57;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.pitch-cta-fine {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
  color: inherit;
}

/* "See how it works on any catalog" block-level link beneath the pitch grid.
   Inline style sets the base layout; these rules add the interactive affordances. */
.pitch-how-it-works {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.pitch-how-it-works:hover,
.pitch-how-it-works:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}
.pitch-how-it-works:hover .pitch-label,
.pitch-how-it-works:focus-visible .pitch-label {
  text-decoration: underline;
}
.pitch-how-it-works:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 8px;
}

/* ── X landing ── */
.x-hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, #fbf8f4 0%, #fcfaf7 100%);
}
.x-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.65rem 0 0.85rem;
}
.x-hero h1 span { color: #8a5a44; }
.x-sub { color: #5f5b57; max-width: 720px; }
.x-actions { margin-top: 1rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.x-proof { padding: 1.25rem 0 2.5rem; }
.x-proof h2 { margin-bottom: 1rem; }
.x-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.x-grid article {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 14px;
  padding: 0.8rem;
}
.x-grid h3 { font-size: 0.95rem; margin-bottom: 0.5rem; color: #3b3835; }
.x-grid-2 { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
.x-cta-final { padding: 0 0 3rem; text-align: center; }
.x-cta-final h2 { margin-bottom: 0.5rem; }
.x-cta-final p { color: #5f5b57; max-width: 680px; margin: 0 auto 1rem; }

@media (max-width: 860px) {
  .x-grid { grid-template-columns: 1fr; }
}
