/* Super Snapshot AI — static site styles */

:root {
  --bg: #ffffff;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --purple-50:  #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;

  --emerald-50:  #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;

  --amber-50:  #fffbeb;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-700: #b45309;

  --red-50:  #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;

  --blue-50:  #eff6ff;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --pink-500: #ec4899;
  --indigo-400: #818cf8;

  --radius: 0.75rem;

  --grad-primary: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #8B5CF6 100%);
  --grad-text: linear-gradient(135deg, #5B21B6, #7C3AED);

  --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.04), 0 1px 2px -1px rgb(0 0 0 / 0.04);
  --shadow-card-lg: 0 10px 40px -10px rgb(0 0 0 / 0.08), 0 4px 12px -2px rgb(0 0 0 / 0.04);
  --shadow-elevated: 0 0 0 1px rgb(0 0 0 / 0.03), 0 2px 4px rgb(0 0 0 / 0.04), 0 12px 24px rgb(0 0 0 / 0.06);
  --shadow-elevated-lg: 0 0 0 1px rgb(0 0 0 / 0.03), 0 4px 8px rgb(0 0 0 / 0.04), 0 24px 48px -12px rgb(0 0 0 / 0.1);
}

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

* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--slate-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- layout helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-subtle {
  background: linear-gradient(180deg, #f4f5f8 0%, #ffffff 100%);
}
.bg-dark { background: var(--slate-950); }

.dot-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d6dae1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
  pointer-events: none;
}
.dot-pattern.dots-30::before { opacity: 0.3; }
.dot-pattern.dots-40::before { opacity: 0.4; }

.glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(150px);
  pointer-events: none;
  z-index: -1;
}

/* ---------- gradient + card utilities ---------- */
.gradient-primary { background: var(--grad-primary); }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.card-shadow { box-shadow: var(--shadow-card); }
.card-shadow-lg { box-shadow: var(--shadow-card-lg); }
.card-elevated { box-shadow: var(--shadow-elevated); }
.card-elevated-lg { box-shadow: var(--shadow-elevated-lg); }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.section-head h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pill-purple { background: var(--purple-50); border: 1px solid rgb(216 180 254 / 0.6); color: var(--purple-700); }
.pill-purple-solid { background: var(--purple-100); border: 1px solid rgb(216 180 254 / 0.6); color: var(--purple-800); text-transform: none; letter-spacing: normal; font-weight: 700; }

.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: default; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}
.btn-primary:hover { opacity: 0.92; box-shadow: 0 20px 25px -5px rgb(126 34 206 / 0.3); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-outline {
  background: #fff;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}
.btn-outline:hover { background: var(--slate-50); border-color: var(--slate-300); }
.btn-white {
  background: #fff;
  color: var(--purple-800);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}
.btn-white:hover { background: rgb(255 255 255 / 0.95); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; font-weight: 700; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(226 232 240 / 0.6);
}
.navbar .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar img { height: 3rem; width: auto; }

/* ---------- hero ---------- */
.hero { padding: 7rem 0 5rem; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding: 9rem 0 7rem; } }
.hero-glow {
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: var(--purple-400);
  opacity: 0.12;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--purple-100);
  border: 1px solid rgb(192 132 252 / 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple-800);
  margin-bottom: 2rem;
  transition: all 0.2s ease;
}
.hero-badge:hover { background: rgb(233 213 255 / 0.7); border-color: var(--purple-400); }
.hero-badge .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--purple-700);
  color: #fff;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--slate-900);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}
.hero-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-feats li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.hero-feats svg { color: var(--emerald-500); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-fine { font-size: 0.75rem; color: var(--slate-400); margin-top: 1.25rem; }

.hero-card-wrap { position: relative; }
.hero-card-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgb(126 34 206 / 0.1), rgb(124 58 237 / 0.05), transparent);
  border-radius: 1.5rem;
  filter: blur(40px);
}
.hero-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgb(226 232 240 / 0.8);
  padding: 1.5rem;
}
@media (min-width: 1024px) { .hero-card { padding: 2rem; } }
.hero-card-dots { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero-card-dots i { width: 0.75rem; height: 0.75rem; border-radius: 9999px; display: block; }
.dot-red { background: var(--red-400); }
.dot-amber { background: var(--amber-400); }
.dot-emerald { background: var(--emerald-500); }
.hero-card-dots span { margin-left: 0.5rem; font-size: 0.75rem; color: var(--slate-400); font-weight: 500; }
.hero-card-banner { border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.25rem; }
.hero-card-banner .row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.hero-card-banner .row svg { color: #fff; width: 1.75rem; height: 1.75rem; }
.hero-card-banner .title { color: #fff; font-weight: 700; font-size: 1rem; }
.hero-card-banner .subtitle { color: rgb(255 255 255 / 0.6); font-size: 0.75rem; }
.hero-card-banner .status {
  background: rgb(255 255 255 / 0.15);
  border-radius: 0.5rem;
  padding: 0.625rem;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-asset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  margin-bottom: 0.5rem;
}
.hero-asset .left { display: flex; align-items: center; gap: 0.625rem; }
.hero-asset .left i { width: 0.5rem; height: 0.5rem; border-radius: 9999px; display: block; }
.hero-asset .name { font-size: 0.875rem; font-weight: 500; color: var(--slate-700); }
.hero-asset .right { display: flex; align-items: center; gap: 0.5rem; }
.hero-asset .found { font-size: 0.75rem; color: var(--slate-400); }
.hero-asset .ready {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--emerald-600);
  background: var(--emerald-50);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.c-purple { background: var(--purple-700); }
.c-blue { background: var(--blue-500); }
.c-emerald { background: var(--emerald-500); }
.c-amber { background: var(--amber-400); }
.c-pink { background: var(--pink-500); }
.hero-card-btn {
  width: 100%;
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---------- whats-new ---------- */
.wn-glow { top: 33%; right: 0; width: 600px; height: 500px; background: var(--purple-500); opacity: 0.08; }
.wn-list { max-width: 64rem; margin: 0 auto; }
.wn-release {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .wn-release { grid-template-columns: 200px 1fr; gap: 3rem; }
}
.wn-meta { }
@media (min-width: 1024px) { .wn-meta { position: sticky; top: 6rem; align-self: start; } }
.wn-meta .ver {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--purple-100);
  border: 1px solid rgb(216 180 254 / 0.6);
  padding: 0.25rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--purple-800);
  margin-bottom: 0.5rem;
}
.wn-meta .date { font-size: 0.875rem; font-weight: 500; color: var(--slate-500); }
.wn-meta .headline { font-size: 0.875rem; color: var(--slate-600); margin-top: 0.75rem; line-height: 1.6; }
.wn-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .wn-cards { grid-template-columns: repeat(2, 1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}
.feature-card:hover { border-color: var(--purple-300); box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.05); }
.feature-card .top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.feature-card .tag {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--emerald-700);
  background: var(--emerald-50);
  border: 1px solid rgb(167 243 208 / 0.7);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; line-height: 1.35; }
.feature-card p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; }

/* ---------- problem / solution ---------- */
.cmp-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .cmp-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.cmp-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgb(226 232 240 / 0.6);
}
.cmp-card.good { border-color: rgb(167 243 208 / 0.6); box-shadow: var(--shadow-elevated), 0 0 0 1px rgb(16 185 129 / 0.1); }
.cmp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}
.cmp-tag.bad { background: var(--red-50); border: 1px solid rgb(254 202 202 / 0.6); color: var(--red-600); }
.cmp-tag.ok { background: var(--emerald-50); border: 1px solid rgb(167 243 208 / 0.6); color: var(--emerald-700); }
.cmp-card ul { display: flex; flex-direction: column; gap: 1rem; }
.cmp-card li { display: flex; align-items: flex-start; gap: 0.75rem; }
.cmp-bullet {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cmp-bullet.bad { background: var(--red-100); }
.cmp-bullet.bad svg { color: var(--red-500); }
.cmp-bullet.ok { background: var(--emerald-100); }
.cmp-bullet.ok svg { color: var(--emerald-600); }
.cmp-card li span { font-size: 0.875rem; color: var(--slate-600); line-height: 1.7; }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .steps::before {
    content: "";
    position: absolute;
    top: 3rem; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--slate-200), transparent);
  }
}
.step { position: relative; text-align: center; }
.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  box-shadow: var(--shadow-elevated);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
}
.step:hover .step-icon { border-color: var(--purple-300); }
.step-icon > svg { width: 2rem; height: 2rem; color: var(--purple-700); }
.step-num {
  position: absolute;
  top: -0.625rem; right: -0.625rem;
  width: 1.75rem; height: 1.75rem;
  border-radius: 9999px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.35);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.step p { font-size: 0.875rem; color: var(--slate-500); }

/* ---------- asset grid ---------- */
.assets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  max-width: 56rem;
  margin: 0 auto;
}
.asset-chip {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}
.asset-chip:hover { border-color: var(--purple-400); color: var(--purple-800); background: rgb(250 245 255 / 0.6); }

/* ---------- output cards ---------- */
.out-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .out-grid { grid-template-columns: repeat(3, 1fr); } }
.out-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgb(226 232 240 / 0.6);
}
.out-card.featured { border-color: rgb(216 180 254 / 0.6); box-shadow: var(--shadow-elevated), 0 0 0 1px rgb(147 51 234 / 0.1); }
.out-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.out-icon.green { background: var(--emerald-50); border: 1px solid rgb(167 243 208 / 0.6); }
.out-icon.green svg { color: var(--emerald-600); }
.out-icon.blue { background: var(--blue-50); border: 1px solid rgb(191 219 254 / 0.6); }
.out-icon.blue svg { color: var(--blue-600); }
.out-icon.purple { background: var(--grad-primary); box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.25); }
.out-icon.purple svg { color: #fff; }
.out-icon svg { width: 1.5rem; height: 1.5rem; }
.out-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.out-card > p { color: var(--slate-500); font-size: 0.875rem; margin-bottom: 1.25rem; }
.out-card ul { display: flex; flex-direction: column; gap: 0.625rem; }
.out-card li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-600); }
.out-card li svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.out-card.c-green li svg { color: var(--emerald-500); }
.out-card.c-blue li svg { color: var(--blue-500); }
.out-card.c-purple li svg { color: var(--purple-700); }
.out-note { font-size: 0.75rem; color: var(--slate-400); margin-top: 1rem; }

/* ---------- patchyhub (dark) ---------- */
.patchy { position: relative; }
.patchy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgb(59 7 100 / 0.4), transparent 60%);
  pointer-events: none;
}
.patchy .inner { max-width: 42rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.patchy .pill {
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: var(--purple-300);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.patchy h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.patchy h2 .accent {
  background: linear-gradient(to right, var(--purple-400), var(--indigo-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.patchy .lead { font-size: 1.125rem; color: var(--slate-400); line-height: 1.7; margin-bottom: 1rem; }
.patchy .italic { font-size: 1rem; color: var(--slate-500); font-style: italic; margin-bottom: 2.5rem; }

/* ---------- pricing ---------- */
.price-wrap { max-width: 28rem; margin: 0 auto; }
.price-card {
  position: relative;
  background: #fff;
  border: 2px solid rgb(147 51 234 / 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated-lg), 0 0 0 1px rgb(126 34 206 / 0.1);
}
@media (min-width: 1024px) { .price-card { padding: 2.5rem; } }
.price-ribbon {
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
}
.price-ribbon span {
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.35);
  white-space: nowrap;
}
.price-head { text-align: center; margin: 0.5rem 0 1.5rem; }
.price-clock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  color: var(--amber-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.price-old { font-size: 1.5rem; font-weight: 600; color: var(--slate-400); text-decoration: line-through; }
.price-new { font-size: 3.75rem; font-weight: 800; color: var(--slate-900); letter-spacing: -0.025em; }
.price-save { color: var(--emerald-600); font-weight: 600; font-size: 0.875rem; margin-top: 0.5rem; }
.price-sub { color: var(--slate-500); font-size: 0.875rem; margin-top: 0.25rem; }
.price-list { display: flex; flex-direction: column; gap: 0.875rem; margin: 0 0 2rem; }
.price-list li { display: flex; align-items: center; gap: 0.75rem; }
.price-check {
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: var(--emerald-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-check svg { width: 0.75rem; height: 0.75rem; color: var(--emerald-600); }
.price-list span { font-size: 0.875rem; font-weight: 500; color: var(--slate-700); }
.price-fine { text-align: center; font-size: 0.75rem; color: var(--slate-400); margin-top: 0.75rem; }
.price-secure {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem; color: var(--slate-400);
}
.price-secure svg { width: 0.875rem; height: 0.875rem; }

/* ---------- testimonial ---------- */
.tst-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
.tst-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgb(226 232 240 / 0.8);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.tst-quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  background: var(--purple-100);
  border: 1px solid rgb(216 180 254 / 0.6);
  margin-bottom: 1.5rem;
}
.tst-quote-icon svg { width: 1.25rem; height: 1.25rem; color: var(--purple-700); }
.tst-card blockquote {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.tst-author { display: flex; align-items: center; gap: 0.75rem; }
.tst-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.25);
}
.tst-author .name { font-weight: 600; color: var(--slate-900); font-size: 0.875rem; }
.tst-author .role { font-size: 0.75rem; color: var(--slate-500); }
.tst-card.shot { padding: 1.5rem; }
.tst-stars { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.tst-stars svg { width: 1rem; height: 1rem; color: var(--amber-400); fill: var(--amber-400); }
.tst-card.shot p { font-size: 0.875rem; font-weight: 600; color: var(--slate-700); margin-bottom: 1rem; }
.tst-shot-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--slate-100); }

/* ---------- built by ---------- */
.builtby { max-width: 48rem; margin: 0 auto; }
.builtby .head { text-align: center; margin-bottom: 2.5rem; }
.builtby .head h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
}
.builtby-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgb(226 232 240 / 0.8);
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 1024px) { .builtby-card { padding: 2.5rem; } }
.builtby-card p { color: var(--slate-600); line-height: 1.7; margin-bottom: 1.25rem; }
.builtby-card p:nth-of-type(2) { margin-bottom: 2rem; }
.builtby-card a.link { font-weight: 600; color: var(--purple-800); }
.builtby-card a.link:hover { text-decoration: underline; text-underline-offset: 2px; }
.builtby-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; }
.builtby-foot .cert {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--slate-700);
}
.builtby-foot .cert svg { width: 1.125rem; height: 1.125rem; color: var(--emerald-500); flex-shrink: 0; }
.builtby-foot .more {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--purple-800);
  transition: color 0.2s ease;
}
.builtby-foot .more:hover { color: var(--purple-900); }
.builtby-foot .more svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.builtby-foot .more:hover svg { transform: translateX(2px); }

/* ---------- final cta ---------- */
.final-card {
  position: relative;
  background: var(--grad-primary);
  border-radius: 1.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 640px) { .final-card { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .final-card { padding: 5rem; } }
.final-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgb(255 255 255 / 0.12), transparent 60%);
}
.final-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 80%, rgb(255 255 255 / 0.08), transparent 50%);
}
.final-card .inner { position: relative; z-index: 1; }
.final-card h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.final-card p { color: rgb(255 255 255 / 0.7); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.final-card .fine { color: rgb(255 255 255 / 0.5); font-size: 0.875rem; margin-top: 1.25rem; margin-bottom: 0; }
@media (max-width: 639px) { .final-card h2 br { display: none; } }

/* ---------- faq ---------- */
.faq-list { max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--slate-900);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
}
.faq-q .chev { width: 1rem; height: 1rem; color: var(--slate-500); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 1.5rem 1.25rem; color: var(--slate-500); line-height: 1.7; }
.faq-q::-webkit-details-marker { display: none; }
details.faq-item summary { list-style: none; cursor: pointer; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- footer (dark, multi-column) ---------- */
.footer {
  position: relative;
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgb(59 7 100 / 0.35), transparent 55%);
  pointer-events: none;
}
.footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand { max-width: 22rem; }
.footer-logo { height: 2.25rem; width: auto; margin-bottom: 1.25rem; }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; color: var(--slate-400); }
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1.125rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-400);
  padding: 0.3125rem 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom p, .footer-bottom span { font-size: 0.8125rem; color: var(--slate-500); }
.footer-bottom a { color: var(--slate-400); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- payment success ---------- */
.ps-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.ps-glow {
  top: 33%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: var(--purple-500);
  opacity: 0.1;
}
.ps-inner { max-width: 32rem; width: 100%; text-align: center; position: relative; }
.ps-check {
  width: 5rem; height: 5rem;
  border-radius: 9999px;
  background: var(--emerald-100);
  border: 2px solid var(--emerald-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.ps-check svg { width: 2.5rem; height: 2.5rem; color: var(--emerald-600); }
.ps-inner h1 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}
.ps-lead { font-size: 1.125rem; color: var(--slate-500); margin: 0 auto 2.5rem; max-width: 28rem; line-height: 1.7; }
.ps-card {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-elevated);
  text-align: left;
}
.ps-card-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.ps-card-top .ic {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.2);
}
.ps-card-top .ic svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.ps-card-top .t { font-weight: 700; color: var(--slate-900); font-size: 1.125rem; }
.ps-card-top .s { color: var(--slate-500); font-size: 0.875rem; }
.ps-mail {
  border-top: 1px solid var(--slate-100);
  padding-top: 1.5rem;
}
.ps-mail-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--purple-50);
  border: 1px solid rgb(216 180 254 / 0.6);
  border-radius: var(--radius);
  padding: 1rem;
}
.ps-mail-box svg { width: 1.25rem; height: 1.25rem; color: var(--purple-700); margin-top: 0.125rem; flex-shrink: 0; }
.ps-mail-box .t { font-weight: 600; color: var(--slate-900); font-size: 0.875rem; margin-bottom: 0.25rem; }
.ps-mail-box .d { color: var(--slate-600); font-size: 0.875rem; line-height: 1.7; }
.ps-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .ps-steps { grid-template-columns: repeat(3, 1fr); } }
.ps-step {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.ps-step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem;
  border-radius: 9999px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ps-step .l { font-weight: 600; color: var(--slate-900); font-size: 0.875rem; }
.ps-step .x { font-size: 0.75rem; color: var(--slate-500); }
.ps-back {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--slate-500);
  margin-top: 1rem;
  transition: color 0.2s ease;
}
.ps-back:hover { color: var(--slate-900); }
.ps-back svg { width: 1rem; height: 1rem; }

/* ---------- 404 ---------- */
.nf-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5f8;
  text-align: center;
  padding: 1.5rem;
}
.nf-wrap h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--slate-900); }
.nf-wrap p { font-size: 1.25rem; color: var(--slate-500); margin-bottom: 1rem; }
.nf-wrap a { color: var(--purple-700); text-decoration: underline; }
.nf-wrap a:hover { color: var(--purple-800); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--slate-900);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- scroll reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- thank-you / post-purchase ---------- */
.ty-topbar {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgb(226 232 240 / 0.7);
  background: rgb(255 255 255 / 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ty-topbar .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ty-topbar img { height: 2.5rem; width: auto; }
.ty-topbar .back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.2s ease;
}
.ty-topbar .back:hover { color: var(--slate-900); }
.ty-topbar .back svg { width: 1rem; height: 1rem; }

.ty-wrap {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  min-height: calc(100vh - 4rem);
}
.ty-glow {
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 460px;
  background: var(--purple-500);
  opacity: 0.1;
}
.ty-inner { max-width: 56rem; margin: 0 auto; position: relative; }

.ty-head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 4.5rem; height: 4.5rem;
  border-radius: 9999px;
  background: var(--emerald-100);
  border: 2px solid var(--emerald-200);
  margin: 0 auto 1.75rem;
  justify-content: center;
}
.ty-badge svg { width: 2.25rem; height: 2.25rem; color: var(--emerald-600); }
.ty-head h1 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.ty-head h1 .gradient-text { display: inline; }
.ty-head .lead {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
}
.ty-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1.5rem;
  background: var(--purple-50);
  border: 1px solid rgb(216 180 254 / 0.55);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  text-align: left;
  line-height: 1.6;
}
.ty-note svg { width: 1.125rem; height: 1.125rem; color: var(--purple-700); flex-shrink: 0; margin-top: 0.0625rem; }

.ty-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .ty-steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.ty-step {
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.8);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
}
.ty-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 15px -3px rgb(126 34 206 / 0.25);
}
.ty-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.ty-step p { font-size: 0.9375rem; color: var(--slate-500); line-height: 1.7; }
.ty-step em { font-style: italic; color: var(--slate-700); }

.ty-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ty-support {
  text-align: center;
  border-top: 1px solid var(--slate-100);
  padding-top: 2rem;
}
.ty-support p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; }
.ty-support a {
  font-weight: 600;
  color: var(--purple-800);
  text-underline-offset: 2px;
}
.ty-support a:hover { text-decoration: underline; }
.ty-support .guarantee { color: var(--slate-400); font-size: 0.8125rem; margin-top: 0.5rem; }
