:root {
  --bg: #08070f;
  --ink: #f3f1f8;
  --muted: #9d97b6;
  --soft: #c9c4dc;
  --line: rgba(255, 255, 255, 0.08);
  --purple: #7c3aed;
  --purple-2: #a855f7;
  --lilac: #a78bfa;
  --lilac-2: #c4b5fd;
  --card: #121022;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--lilac-2); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1280px; margin: 0 auto; padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }
.display { font-family: Outfit, sans-serif; }

@keyframes cpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes cpPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes cpSheen { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(8, 7, 15, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { flex: 0 0 auto; color: #fff; }
.brand-row { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 42px;
}
.brand-name { font-weight: 800; font-size: clamp(17px, 2.4vw, 22px); letter-spacing: .06em; }
.brand-sub { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #8c86a6; margin-top: 2px; }
.nav-links {
  flex: 1 1 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  font-size: 14px;
}
.nav-links a { color: #b7b1cc; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 12px;
  color: #fff;
}
.btn-primary {
  background: var(--purple);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { background: #8b5cf6; color: #fff; }
.btn-grad {
  background: linear-gradient(135deg, #7c3aed, #9d5cf5);
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.4);
  letter-spacing: .1em;
}
.btn-grad:hover { filter: brightness(1.12); color: #fff; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  letter-spacing: .1em;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn:disabled {
  opacity: 0.55;
  cursor: wait;
  filter: none;
}
.btn-nav { padding: 11px 20px; font-size: 14px; border-radius: 9px; }
.demo-error {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(127, 29, 29, 0.28);
  color: #fecaca;
  font-size: 13px;
}
.demo-error.is-on { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% 18%, rgba(124, 58, 237, 0.22), transparent 60%),
    linear-gradient(180deg, #0b0917, #08070f);
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(36px, 6vw, 72px) 0 clamp(28px, 4vw, 56px);
}
.hero-copy { flex: 1 1 440px; min-width: min(100%, 320px); position: relative; z-index: 2; }
.pill {
  display: inline-block;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(124, 58, 237, 0.12);
  color: var(--lilac-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.campaign-chip {
  margin-top: 14px;
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: #e9e6f5;
  width: fit-content;
}
.campaign-chip.is-on { display: inline-flex; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lilac);
  animation: cpPulse 1.8s ease-in-out infinite;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: 20px 0 0;
  text-wrap: balance;
}
.hero h1 span { color: #b39bf7; }
.hero-lead {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--soft);
  max-width: 520px;
}
.hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-ctas .btn { padding: 16px 26px; font-size: 14px; }
.play {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.trust { margin-top: clamp(36px, 5vw, 60px); }
.trust-label {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: #736d8c;
}
.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px clamp(20px, 3vw, 38px);
  opacity: .72;
}
.trust-item { font-family: Outfit, sans-serif; color: #e7e4f2; }
.trust-item small {
  display: block;
  font-size: 8.5px;
  letter-spacing: .18em;
  color: #8c86a6;
}

.hero-visual { flex: 1 1 440px; min-width: min(100%, 300px); position: relative; }
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  aspect-ratio: 5 / 6;
  min-height: 340px;
}
.hero-main {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  right: -2%;
  top: 14%;
  width: 46%;
  min-width: 150px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(150deg, rgba(196, 132, 252, 0.9), rgba(124, 58, 237, 0.35));
  box-shadow: 0 26px 60px rgba(88, 28, 135, 0.55);
  animation: cpFloat 7s ease-in-out infinite;
}
.hero-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #120f1e;
}
.hero-card-inner img { width: 100%; height: 100%; object-fit: cover; }
.ai-badge {
  position: absolute;
  right: 0;
  bottom: 6%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}
.share-box {
  position: absolute;
  left: 2%;
  bottom: -6%;
  background: rgba(14, 12, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}
.share-box small {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9d97b6;
}
.share-icons { margin-top: 10px; display: flex; gap: 12px; align-items: center; }
.share-icons span {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}

.demo-wrap { padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 6vw, 72px); }
.demo-card {
  background: linear-gradient(180deg, #131024, #0d0b18);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.demo-grid { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 32px); }
.demo-col { flex: 1 1 240px; min-width: min(100%, 220px); }
.demo-mid { flex: 1 1 260px; min-width: min(100%, 240px); display: flex; flex-direction: column; gap: 14px; }
.demo-right { flex: 2 1 420px; min-width: min(100%, 280px); }
.demo-card h2 { font-weight: 700; font-size: clamp(24px, 3vw, 32px); margin: 0; letter-spacing: -.01em; }
.demo-card p.sub { margin: 8px 0 22px; color: #a49ec0; font-size: 14.5px; }
.steps { display: flex; flex-direction: column; gap: 8px; }
.step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.step.is-on {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(167, 139, 250, 0.32);
}
.step .num {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #cfcae0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
}
.step.is-on .num { background: var(--purple); color: #fff; }
.step b { display: block; font-size: 14px; }
.step span:not(.num) { display: block; color: #a49ec0; font-size: 12.5px; margin-top: 2px; }

.drop {
  flex: 1 1 auto;
  min-height: 230px;
  border: 1.5px dashed rgba(167, 139, 250, 0.38);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: rgba(124, 58, 237, 0.05);
}
.drop:hover, .drop.is-over {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(167, 139, 250, 0.7);
}
.drop-ico {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--lilac-2);
}
.photo-preview {
  flex: 1 1 auto;
  position: relative;
  min-height: 230px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0813;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.chip, .replace {
  position: absolute;
  top: 12px;
  background: rgba(8, 7, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 11.5px;
}
.chip { left: 12px; letter-spacing: .14em; text-transform: uppercase; font-size: 10.5px; color: #d9d5e8; }
.replace { right: 12px; cursor: pointer; }
.hint { color: #6f6a88; font-size: 11px; }

.sc-head {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: baseline; justify-content: space-between; margin-bottom: 14px;
}
.sc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sc-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 13px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0813;
}
.sc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.sc-card.pos-rome img { object-position: center 62%; }
.sc-card.pos-venice img { object-position: center 48%; }
.sc-card.pos-sea img { object-position: center 28%; }
.sc-card.pos-jerusalem img { object-position: center 42%; }
.sc-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 10px;
  background: rgba(6, 5, 12, 0.82);
  font-size: 12.5px;
  font-weight: 600;
  pointer-events: none;
}
.sc-card.is-on { box-shadow: 0 0 0 2px #a855f7, 0 0 0 6px rgba(168, 85, 247, 0.2); }
.check {
  position: absolute; right: 8px; top: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple); color: #fff; font-size: 13px;
  display: none; align-items: center; justify-content: center;
}
.sc-card.is-on .check { display: flex; }
.wait-note { margin-top: 16px; display: flex; align-items: center; gap: 9px; color: #8f89aa; font-size: 12.5px; }

.gen, .result { margin-top: 18px; border-radius: 16px; padding: 20px 18px; }
.gen {
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(12, 10, 22, 0.6));
}
.gen-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.bar { margin-top: 14px; height: 7px; border-radius: 99px; background: rgba(255, 255, 255, 0.09); overflow: hidden; }
.bar > i {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
  width: 0;
}
.sponsor {
  flex: 0 1 150px; min-width: 120px; aspect-ratio: 1;
  border-radius: 12px; overflow: hidden; position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sponsor img { width: 100%; height: 100%; object-fit: cover; }
.sheen {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: cpSheen 2.2s linear infinite; pointer-events: none;
}
.result { border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); }
.before-after { display: flex; flex-wrap: wrap; gap: 14px; }
.ba { flex: 1 1 150px; min-width: 130px; }
.ba label { display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #8f89aa; margin-bottom: 8px; }
.ba label.after { color: var(--lilac-2); }
.ba .frame {
  aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ba .frame.after {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 16px 40px rgba(88, 28, 135, 0.4);
}
.ba img { width: 100%; height: 100%; object-fit: cover; }
.arrow { flex: 0 0 auto; align-self: center; font-size: 22px; color: var(--lilac); }
.result-actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.result-actions .btn { padding: 12px 18px; font-size: 12.5px; letter-spacing: .08em; border-radius: 10px; }
.result-cta {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}

.why {
  background: linear-gradient(180deg, #0a0814, #0c0a18);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.why-inner { padding: clamp(48px, 7vw, 90px) 0; }
.why h2, .benefits h2, .dest h2, .signage h2, .book h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -.01em;
}
.why h2 { text-align: center; margin: 0 0 clamp(32px, 4vw, 54px); }
.why h2 span { color: #b39bf7; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  text-align: center;
}
.ico {
  width: 46px; height: 46px; margin: 0 auto; border-radius: 13px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--lilac-2);
}
.why-grid b { display: block; margin-top: 14px; font-size: 14.5px; }
.why-grid p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.proof { margin-top: clamp(32px, 4vw, 52px); display: flex; flex-wrap: wrap; gap: 18px; }
.quote {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.quote mark { font-family: Outfit, sans-serif; font-size: 34px; color: var(--purple); line-height: .7; background: none; }
.who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.stats {
  flex: 2 1 420px;
  background: linear-gradient(120deg, rgba(76, 29, 149, 0.55), rgba(124, 58, 237, 0.22));
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
  gap: 22px;
  align-items: center;
  text-align: center;
}
.stats strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  color: #e9dfff;
}
.stats span { display: block; font-size: 12.5px; color: #c3bade; margin-top: 4px; }

.how { padding: clamp(32px, 5vw, 56px) 0; }
.how-card {
  background: linear-gradient(180deg, #121022, #0d0b18);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
}
.how-card h2 { flex: 0 1 200px; font-size: clamp(22px, 2.6vw, 30px); margin: 0; }
.how-steps { flex: 1 1 520px; min-width: min(100%, 260px); display: flex; flex-wrap: wrap; gap: 16px; }
.how-step { flex: 1 1 150px; display: flex; gap: 12px; }
.how-step .ico { width: 34px; height: 34px; margin: 0; border-radius: 9px; flex: 0 0 auto; }
.how-arrow { flex: 0 0 auto; align-self: center; color: #6d6789; }

.benefits { padding: clamp(32px, 5vw, 60px) 0; }
.center { text-align: center; margin-bottom: clamp(24px, 3vw, 40px); }
.kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #8f89aa; }
.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}
.ben {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.ben:hover { border-color: rgba(167, 139, 250, 0.4); background: rgba(124, 58, 237, 0.07); }
.ben b { display: block; font-family: Outfit, sans-serif; font-size: 15px; }
.ben p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.signage {
  background: linear-gradient(180deg, #0c0a18, #0a0814);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.signage-inner { padding: clamp(48px, 7vw, 88px) 0; }
.sign-head {
  max-width: 720px;
  margin-bottom: clamp(20px, 3vw, 34px);
}
.sign-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 16px; }
.sign-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #100e1c;
}
.sign-card img { width: 100%; height: 210px; object-fit: cover; }
.sign-card figcaption { padding: 14px 16px 16px; }
.sign-card b { display: block; font-family: Outfit, sans-serif; font-size: 16px; }
.sign-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.dest { padding: clamp(48px, 7vw, 88px) 0; }
.dest-pills { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.dest-pill {
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #b7b1cc;
}
.dest-pill.is-on { background: rgba(124, 58, 237, 0.9); color: #fff; border-color: transparent; }
.dest-panel {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, #121022, #0c0a18);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
}
.dest-copy, .dest-photo { flex: 1 1 320px; min-width: min(100%, 260px); }
.dest-photo { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.dest-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.dest-photo figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(6, 5, 12, 0.95), transparent);
}
.tag-row { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  border: 1px solid rgba(167, 139, 250, 0.3);
  background: rgba(124, 58, 237, 0.12);
  color: #ddd6f9;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
}
.land { margin-top: 10px; display: flex; flex-direction: column; gap: 7px; }
.land div { display: flex; gap: 10px; align-items: baseline; color: #c6c1d9; font-size: 13.5px; }
.land i { color: var(--lilac); font-style: normal; }

.book {
  background: linear-gradient(180deg, #0a0814, #0c0a1a);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.book-inner {
  padding: clamp(44px, 6vw, 84px) 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.book-copy, .book-visual { flex: 1 1 380px; min-width: min(100%, 280px); }
.check-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px 24px;
}
.check-grid div { display: flex; gap: 10px; font-size: 13.5px; color: #d6d2e6; }
.check-grid i { color: var(--lilac); font-style: normal; }
.book-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.book-ctas .btn { padding: 16px 24px; font-size: 13.5px; letter-spacing: .09em; }
.book-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.book-frame > img { width: 100%; height: 100%; object-fit: cover; }
.book-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 7, 15, 0.9), rgba(8, 7, 15, 0.15)); pointer-events: none; }
.book-copy-on {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 60%;
}
.thumbs {
  position: absolute;
  right: 12px; top: 12px; bottom: 12px;
  width: 26%; min-width: 78px;
  display: flex; flex-direction: column; gap: 8px;
}
.thumbs img { flex: 1; border-radius: 10px; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.14); min-height: 0; }

.footer { border-top: 1px solid rgba(255, 255, 255, 0.07); background: var(--bg); }
.foot-inner {
  padding: clamp(30px, 4vw, 48px) 0;
  display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between;
}
.foot-col { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.foot-col b { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #6f6a88; font-weight: 700; }

.hidden { display: none !important; }

@media (max-width: 720px) {
  .hero-card { right: 4%; top: auto; bottom: 18%; width: 42%; }
  .ai-badge { bottom: 2%; font-size: 10px; padding: 10px 12px; }
  .share-box { display: none; }
}
