:root {
  color-scheme: light;
  --bg: #fff8f7;
  --ink: #2d1731;
  --muted: #705d72;
  --surface: rgba(255,255,255,.92);
  --line: rgba(73,38,72,.16);
  --rose: #a23d68;
  --salmon: #df8580;
  --aqua: #76c8c2;
  --violet: #2a173d;
  --violet-2: #6e43a3;
  --gold: #d4a653;
  --shadow: 0 24px 70px rgba(54,25,57,.17);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(239,171,168,.42), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(118,200,194,.28), transparent 32rem),
    linear-gradient(180deg, #fffaf9 0%, #f8ecef 55%, #eee7f4 100%);
}
a { color: inherit; }
button, input { font: inherit; }
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,248,247,.84);
  backdrop-filter: blur(18px);
}
.site-header::before {
  position: fixed;
  z-index: -1;
  inset: 0 0 auto;
  height: 82px;
  content: "";
  border-bottom: 1px solid var(--line);
  background: rgba(255,248,247,.84);
  box-shadow: 0 8px 30px rgba(65,31,66,.07);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img { width: 52px; height: 52px; border-radius: 17px; box-shadow: 0 12px 25px rgba(53,25,61,.22); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.05rem; }
.brand small { margin-top: 2px; color: var(--muted); font-size: .78rem; }
nav { display: flex; gap: 8px; }
nav a { padding: 9px 12px; border-radius: 12px; color: var(--muted); font-size: .86rem; font-weight: 800; text-decoration: none; }
nav a:hover { background: rgba(255,255,255,.7); color: var(--ink); }
main { width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 42px 0 56px; }
.hero {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-copy { padding: clamp(30px, 5vw, 62px); }
.eyebrow { margin: 0 0 8px; color: var(--rose); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; }
h1 { max-width: 690px; margin: 0; font-size: clamp(2.7rem, 6.2vw, 5.4rem); line-height: .96; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1; }
h3 { margin: 12px 0 6px; font-size: 1.06rem; }
.lead { max-width: 700px; margin: 22px 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.12rem); line-height: 1.65; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pills span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); color: var(--muted); font-size: .8rem; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-art { align-self: stretch; min-height: 390px; margin: 0; background: var(--violet); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--salmon), var(--rose)); box-shadow: 0 13px 30px rgba(156,54,99,.27); }
.button.secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.button.wide { width: 100%; }
.access-grid { display: grid; margin-top: 22px; grid-template-columns: .82fr 1.18fr; gap: 22px; }
.price-card, .unlock-card, .features, .notice-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.price-card { background: linear-gradient(145deg, rgba(42,23,61,.97), rgba(93,48,104,.96)); color: #fff; }
.price-card .eyebrow, .price-card h2 { color: #f3cbdc; }
.price { margin: 2px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.7rem, 7vw, 6.4rem); line-height: 1; }
.price span { margin-right: 4px; font-family: inherit; font-size: .42em; vertical-align: top; }
.price-note, .fine-print { color: #ddcfe3; line-height: 1.55; }
.price-card ul { display: grid; gap: 9px; padding: 0; margin: 24px 0; list-style: none; }
.price-card li::before { content: "\2713"; margin-right: 9px; color: #9fe4de; font-weight: 900; }
.fine-print { margin: 14px 0 0; font-size: .77rem; }
.unlock-card { position: relative; overflow: hidden; }
.unlock-card::after { position: absolute; right: -80px; bottom: -110px; width: 280px; height: 280px; content: ""; border-radius: 50%; background: rgba(118,200,194,.16); }
.icon-wrap { position: relative; z-index: 1; width: 82px; height: 82px; margin-bottom: 22px; }
.icon-wrap img { width: 100%; height: 100%; border-radius: 23px; box-shadow: 0 15px 32px rgba(53,25,61,.22); }
.unlock-card > p:not(.eyebrow) { max-width: 650px; color: var(--muted); line-height: 1.6; }
form { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 24px; }
label { color: var(--muted); font-size: .77rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
input { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; outline: none; background: #fff; color: var(--ink); }
input:focus { border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(118,200,194,.21); }
.status { position: relative; z-index: 1; min-height: 25px; margin-top: 14px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.status.error { color: #a01847; }
.status.ok { color: #177168; }
.restore-links { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 13px; }
.restore-links a { color: var(--rose); font-size: .84rem; font-weight: 900; }
.features { margin-top: 22px; }
.section-heading { max-width: 790px; margin-bottom: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 13px; }
.feature-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.66); }
.feature-grid article > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: #f4e2e7; color: var(--rose); font-size: .76rem; font-weight: 900; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.notice-card { margin-top: 22px; border-color: rgba(212,166,83,.42); background: linear-gradient(135deg, rgba(255,252,242,.95), rgba(255,241,242,.91)); }
.notice-card p { max-width: 850px; margin: 10px 0 0; color: var(--muted); line-height: 1.6; }
footer { display: flex; width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 0 0 34px; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .83rem; }
footer a { color: var(--rose); font-weight: 800; }
.content-page { max-width: 900px; margin: 24px auto 0; padding: clamp(26px, 5vw, 52px); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.content-page h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
.content-page h2 { margin-top: 30px; font-size: 1.65rem; letter-spacing: -.025em; }
.content-page p, .content-page li { color: var(--muted); line-height: 1.7; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--rose); font-weight: 900; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; }
  .access-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  main { padding-top: 24px; }
  .hero { border-radius: 25px; }
  .hero-copy, .price-card, .unlock-card, .features, .notice-card { padding: 24px 20px; }
  .hero-art { min-height: 230px; }
  .hero-actions { display: grid; }
  .feature-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
