/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:       #848484;
  --lightest: #a9a3bd;
  --light:    #8f88a2;
  --mid:      #150e1b;
  --dark:     #281758;
  --darkest:  #0a080d;
  --accent:   #ffae00;
  --white:    #ffffff;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(20,6,58,.10);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 16px;
  color: var(--darkest);
  background: var(--white);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-content { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── Custom font ───────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Ubuntu-Bold';
  src: url('/static/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .2s;
  padding: 0 24px;
}
.site-header.header-home {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  font-family: 'Ubuntu-Bold', 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #343434 0%, #6e6e6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-home .header-logo {
  background: linear-gradient(90deg, #eaeaea 0%, #c7c7c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-logo span { color: inherit; }

.header-inner > nav { margin-left: auto; }

ul.header-nav {
  display: flex;
  align-items: center;
  gap: 52px;
  list-style: none;
}


.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,.5);
  transition: color .15s;
}
.header-nav a:hover { color: rgba(0,0,0,.85); }
.header-nav a.nav-paypal:hover        { color: #009cde !important; }
.header-nav a.nav-stripe:hover        { color: #533AFD !important; }
.header-nav a.nav-square:hover        { color: #a0a0a0 !important; }
.header-nav a.nav-crossplatform:hover { color: #4a6eff !important; }
.header-nav a.nav-custom:hover        { color: #fd3a5a !important; }
.header-nav .nav-active { color: rgba(0,0,0,.85) !important; font-weight: 600; }
.header-home .header-nav a { color: rgba(255,255,255,.65); }
.header-home .header-nav a:hover { color: #ffffff; }
.header-home .header-nav .nav-active { color: #ffffff !important; }

.header-nav a.nav-active { color: rgba(0,0,0,.85) !important; font-weight: 700; }
.header-nav a.nav-paypal.nav-active        { color: #009cde !important; }
.header-nav a.nav-stripe.nav-active        { color: #533AFD !important; }
.header-nav a.nav-square.nav-active        { color: #a0a0a0 !important; }
.header-nav a.nav-crossplatform.nav-active { color: #4a6eff !important; }
.header-nav a.nav-custom.nav-active        { color: #fd3a5a !important; }

.nav-cta-link {
  display: block;
  padding: 8px 18px;
  background: #533AFD;
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
  transition: opacity .15s;
}
.nav-cta-link:hover { opacity: .85; }
.mobile-cta {
  display: block;
  margin-top: 8px;
  text-align: center;
  border-radius: 8px;
}

.nav-cta {
  background: var(--mid);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.site-header:not(.header-home) .hamburger span { background: rgba(0,0,0,.65); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 16px;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-nav a:last-child { border-bottom: none; }
.site-header:not(.header-home) .mobile-nav { background: rgba(255,255,255,.97); }
.site-header:not(.header-home) .mobile-nav a { color: rgba(0,0,0,.7); border-bottom-color: rgba(0,0,0,.08); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, #000000 30%, #1b1b1b 100%);
  color: var(--white);
  margin-top: -64px;
  padding: calc(56px + 64px) 24px 52px;
  min-height: calc(100vh - 48px);
  box-sizing: border-box;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-headline {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  margin-top: 12px;
  margin-bottom: 64px;
  color: var(--white);
  width: 100%;
}
.hero-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}
.hero-left { flex: 1; min-width: 0; }
.hero-right { flex: 1; min-width: 0; }

.accent { color: var(--bg); }

.hero-subtitle {
  font-size: 28px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin-bottom: 48px;
  max-width: 620px;
}

.trust-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; }
.trust-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #c0c0c0;
  background: rgb(29, 29, 29);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}
.trust-text { font-size: 18px; color: rgba(255,255,255,.8); }
.trust-text strong { color: var(--white); }
.trust-sub { font-size: 16px; }

/* ── Hero right (cards) ────────────────────────────────────────────────────── */
.cards-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.report-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Small cards: 1 col each — PayPal+Stripe fill row 1, Square sits in col 1 of row 2 */
.report-card.paypal-card,
.report-card.stripe-card,
.report-card.square-card { grid-column: span 1; }
/* Wide cards: full width */
.report-card.crossplatform-card,
.report-card.custom-card { grid-column: 1 / -1; }

.report-card {
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  position: relative;
  overflow: hidden;
}
.report-card:hover { transform: translateY(-1px); }

.report-card.paypal-card        { background: rgba(0,140,255,.15);  border: 1px solid rgba(0,140,255,.35); }
.report-card.stripe-card        { background: rgba(83,58,253,.2);   border: 1px solid rgba(83,58,253,.40); }
.report-card.square-card        { background: rgba(160, 160, 160, 0.15);  border: 1px solid rgba(160, 160, 160,.35); }
.report-card.crossplatform-card { background: linear-gradient(135deg, rgba(83,58,253,.15) 0%, rgba(0,156,222,.15) 100%); border: 1px solid rgba(83,58,253,.35); }
.report-card.custom-card        { background: linear-gradient(135deg, rgba(253, 58, 90, 0.15) 0%, rgba(253, 224, 58, 0.15) 100%); border: 1px solid rgba(253, 58, 90, 0.35); }

.report-card.paypal-card:hover        { background: rgba(0,140,255,.28);  border-color: rgba(0,140,255,.55); }
.report-card.stripe-card:hover        { background: rgba(83,58,253,.35);  border-color: rgba(83,58,253,.55); }
.report-card.square-card:hover        { background: rgba(160, 160, 160, 0.28);  border-color: rgba(160, 160, 160,.55); }
.report-card.crossplatform-card:hover { background: linear-gradient(135deg, rgba(83,58,253,.28) 0%, rgba(0,140,255,.28) 100%); border-color: rgba(83,58,253,.55); }
.report-card.custom-card:hover        { background: linear-gradient(135deg, rgba(253, 58, 90,.28) 0%, rgba(253, 224, 58,.28) 100%); border-color: rgba(253, 58, 90,.55); }

.card-icon {
  flex-shrink: 0;
  width: 25px;
  height: 30px;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paypal-icon        { background: radial-gradient(circle, rgba(0,156,222,.6) 10%, rgba(0,156,222,0) 77%); }
.stripe-icon        { background: radial-gradient(circle, rgba(83,58,253,.5) 10%, rgba(83,58,253,0) 77%); }
.square-icon        { background: radial-gradient(circle, rgba(160,160,160,.6) 10%, rgba(160,160,160,0) 77%); }
.crossplatform-icon { background: radial-gradient(circle, rgba(83,58,253,.5) 10%, rgba(0,156,222,0) 77%); }
.custom-icon        { background: radial-gradient(circle, rgba(253,58,90,.5) 10%, rgba(253,58,90,0) 77%); }

.card-body { flex: 1; min-width: 0; }
.card-name  { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.card-desc  { font-size: 12px; color: rgba(255,255,255,.6); }

.card-price { text-align: right; flex-shrink: 0; }
.card-price-main { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.card-price-sub  { display: block; font-size: 11px; color: rgba(255,255,255,.5); }

.card-arrow {
  font-size: 16px;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
  transition: transform .15s, color .15s;
}
.report-card:hover .card-arrow {
  transform: translateX(3px);
  color: rgba(255,255,255,.8);
}

.cards-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ── App section ───────────────────────────────────────────────────────────── */
.app-section { padding: 24px 24px 80px; background: #f5f2ff; }
.app-section-inner { max-width: 1100px; margin: 0 auto; }
.app-section .section-eyebrow { color: #533AFD; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--darkest);
  margin-bottom: 28px;
}

/* ── App card ──────────────────────────────────────────────────────────────── */
.app-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #ede8ff;
  max-width: 680px;
}

.upload-disclaimer {
  font-size: 11px;
  color: var(--lightest);
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
}

/* ── Upload zone ───────────────────────────────────────────────────────────── */
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 24px 16px;
  border: 2px dashed #c4b8f5;
  border-radius: var(--radius);
  background: #faf8ff;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.upload-zone:hover,
.upload-zone.drag-active {
  border-color: var(--mid);
  background: #f0eaff;
}
.upload-icon {
  font-size: 36px;
  color: var(--mid);
  line-height: 1;
  margin-bottom: 4px;
}
.upload-main { font-size: 16px; font-weight: 600; color: var(--darkest); }
.upload-sub  { font-size: 13px; color: var(--lightest); }

.file-err {
  margin-top: 8px;
  font-size: 13px;
  color: #dc2626;
  min-height: 18px;
}

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.step-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.step-done  .step-dot { background: #d1fae5; color: #059669; }
.step-active .step-dot { background: #ede8ff; color: var(--mid); }
.step-error  .step-dot { background: #fee2e2; color: #dc2626; }
.step-pending .step-dot { background: #f3f0ff; color: var(--lightest); }

.step-label { font-weight: 500; color: var(--darkest); }
.step-done   .step-label { color: var(--darkest); }
.step-active .step-label { color: var(--mid); }
.step-error  .step-label { color: #dc2626; }
.step-pending .step-label { color: var(--lightest); }

.step-detail {
  font-size: 12px;
  color: var(--lightest);
  margin-top: 2px;
}
.step-detail a { color: var(--accent); text-decoration: underline; }

/* Spinning dot for active step */
.spin {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #c4b8f5;
  border-top-color: var(--mid);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Personal form ─────────────────────────────────────────────────────────── */
.personal-card {
  margin-top: 24px;
  padding: 24px;
  background: #faf8ff;
  border: 1px solid #ede8ff;
  border-radius: var(--radius);
}
.personal-card h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--darkest);
  margin-bottom: 2px;
}
.sub {
  font-size: 13px;
  color: var(--lightest);
  margin-bottom: 16px;
}
.form-group { margin-bottom: 14px; }
.control-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d4caf5;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--darkest);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-control:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(66,48,117,.1);
}
.form-control::placeholder { color: #b0a8d0; }

.gen-buttons { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.btn-gen {
  flex: 1;
  padding: 11px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .1s;
}
.btn-gen:hover { transform: translateY(-1px); }
.btn-gen-basic { background: var(--mid); color: var(--white); }
.btn-gen-basic:hover { background: var(--dark); }
.btn-gen-adv   { background: var(--darkest); color: var(--white); }
.btn-gen-adv:hover { background: #0c0320; }

/* ── Metric highlight card ─────────────────────────────────────────────────── */
.metric-card {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
}
.metric-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.metric-value { font-family: 'Ubuntu', sans-serif; font-size: 36px; font-weight: 700; margin: 4px 0; }
.metric-sub   { font-size: 12px; opacity: .6; }

/* ── Preview ───────────────────────────────────────────────────────────────── */
.preview-outer {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}
.preview-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.preview-pages-single { display: block; }
.preview-pages img,
.preview-pages-single img {
  width: 100%;
  border-radius: 6px;
}

.preview-blur-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(53, 34, 94, 0) 0%,
    rgba(53, 34, 94, 0.8) 40%,
    rgb(53, 34, 94) 60%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.preview-blur-layer.unlocked {
  background: linear-gradient(
    to bottom,
    rgba(53, 34, 94, 0) 0%,
    rgba(53, 34, 94, 0.42) 52%,
    rgba(53, 34, 94, 0.78) 72%
  );
}
.frosted {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 24px;
}
.lock-icon { font-size: 24px; }
.lock-text  { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); }

/* ── Buy section (inside preview blur overlay) ─────────────────────────────── */
.buy-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.buy-promo-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.promo-input-sm {
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(255,255,255,.15);
  color: var(--white);
  width: 130px;
}
.promo-input-sm::placeholder { color: rgba(255,255,255,.45); }
.promo-input-sm:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.2); }
.promo-error { font-size: 12px; color: #fca5a5; }

.btn-buy-primary {
  padding: 13px 28px;
  background: #533AFD;
  color: var(--white);
  border: none;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-buy-primary:hover { background: #3d28d4; transform: translateY(-1px); }

/* ── Ready card ────────────────────────────────────────────────────────────── */
.ready-card {
  margin-top: 24px;
  padding: 28px 24px;
  background: #f0faf4;
  border: 1px solid #a7f3c4;
  border-radius: var(--radius);
  text-align: center;
}
.ready-card .check { font-size: 32px; margin-bottom: 8px; }
.ready-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--darkest);
  margin-bottom: 4px;
}
.ready-card .sub { margin-bottom: 18px; }

.btn-dl {
  display: inline-block;
  padding: 13px 32px;
  background: #059669;
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: background .15s, transform .1s;
}
.btn-dl:hover { background: #047857; transform: translateY(-1px); }

.feedback-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--lightest);
  flex-wrap: wrap;
}
.btn-fb {
  padding: 5px 14px;
  border: 1px solid #d4caf5;
  border-radius: 6px;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  transition: background .15s, border-color .15s;
}
.btn-fb:hover { background: #f5f2ff; border-color: var(--mid); }

.feedback-form {
  margin-top: 16px;
  text-align: left;
}
.feedback-form textarea {
  width: 100%;
  height: 100px;
  padding: 10px 12px;
  border: 1px solid #d4caf5;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  color: var(--darkest);
}
.feedback-form textarea:focus { border-color: var(--mid); }
.feedback-refund-note {
  margin: 8px 0;
  font-size: 12px;
  color: var(--lightest);
}
.btn-send-feedback {
  padding: 9px 20px;
  background: var(--mid);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
}
.btn-send-feedback:hover { background: var(--dark); }

/* ── Error card ────────────────────────────────────────────────────────────── */
.error-card {
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff1f1;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  font-size: 14px;
  color: #b91c1c;
}

/* ── Disclaimer ────────────────────────────────────────────────────────────── */
.disclaimer {
  margin-top: 8px;
  font-size: 11px;
  color: #b0a8d0;
  text-align: left;
  line-height: 1.5;
}

/* ── Custom report section ─────────────────────────────────────────────────── */
.custom-section {
  padding: 72px 24px 80px;
  background: #f2f0f4;
}
.custom-section-inner { max-width: 1100px; margin: 0 auto; }

.coming-soon-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(54,38,102,.12);
  color: #362566;
  border: 1px solid rgba(54,38,102,.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.custom-section-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 14px;
  color: #362566;
}
.custom-section-desc {
  font-size: 16px;
  color: rgba(54,38,102,.7);
  max-width: 540px;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 0 24px;
}
.site-footer.footer-home {
  background: #000000;
  backdrop-filter: none;
  border-top: none;
}
.footer-home .footer-copy { color: rgba(255,255,255,.35) !important; }
.footer-home .footer-legal a { color: rgba(255,255,255,.35) !important; }
.footer-home .footer-legal a:hover { color: rgba(255,255,255,.75) !important; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-about {
  font-size: 13px;
  color: rgba(0,0,0,.5);
  text-align: center;
  max-width: 620px;
  line-height: 1.6;
}
.footer-about a { color: rgba(0,0,0,.55); text-decoration: underline; }
.footer-about a:hover { color: rgba(0,0,0,.85); }
.footer-home .footer-about { color: rgba(255,255,255,.45); }
.footer-home .footer-about a { color: rgba(255,255,255,.55); }
.footer-copy { font-size: 12px; color: rgba(0,0,0,.4); white-space: nowrap; }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(0,0,0,.4);
  white-space: nowrap;
  transition: color .15s;
}
.footer-legal a:hover { color: rgba(0,0,0,.8); }

/* ── Spinner overlay ───────────────────────────────────────────────────────── */
.page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,6,58,.45);
  z-index: 200;
}
.page-overlay.active { display: block; }

.render-spinner-card {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  background: var(--white);
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(20,6,58,.25);
  min-width: 260px;
}
.render-spinner-card.active { display: block; }

.render-spinner-ring {
  width: 44px;
  height: 44px;
  border: 4px solid #ede8ff;
  border-top-color: var(--mid);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}
.render-spinner-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--darkest);
  line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-bottom { flex-direction: column; gap: 40px; }
  .hero-right { flex: none; width: 100%; max-width: 580px; }
  /* Hide the entire nav wrapper so the higher-specificity ul.header-nav rule can't override */
  .header-inner > nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta-link:not(.mobile-cta) { display: none; }
  .stripe-cards-row { flex-direction: column; }
  /* Collapse to 2-col grid, wide cards full-width */
  .report-cards { grid-template-columns: 1fr 1fr; }
  .report-card.paypal-card,
  .report-card.stripe-card,
  .report-card.square-card { grid-column: span 1; }
  .report-card.crossplatform-card,
  .report-card.custom-card { grid-column: span 2; }
  /* Hide prices and coming-soon labels on home page cards */
  .report-cards .card-price { display: none; }
}

@media (max-width: 540px) {
  .app-card { padding: 20px 16px; }
  .gen-buttons { flex-direction: column; }
  .btn-gen { flex: none; width: 100%; }
  .preview-pages { grid-template-columns: 1fr; }
  .footer-links { margin-left: 0; }
  /* Keep footer as one row — remove column stacking */
  .footer-inner { height: auto; min-height: 40px; padding: 10px 0; flex-wrap: wrap; gap: 6px 16px; }
  .footer-legal { gap: 12px; }
  .footer-copy { font-size: 11px; }
  .footer-legal a { font-size: 11px; }
}

/* ── Payout section ─────────────────────────────────────────────────────────── */
.payout-section-inner {
  margin-top: 16px;
  padding: 16px 20px;
  background: #f9f7ff;
  border: 1px solid #ede8ff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payout-note {
  font-size: 13px;
  color: #555;
  background: #fff8e1;
  border-left: 3px solid #f59e0b;
  padding: 6px 10px;
  border-radius: 3px;
}
.payout-toggle-btn {
  background: none;
  border: 1px dashed #c4b8f5;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--mid);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.payout-toggle-btn:hover { background: #f0eaff; }
.optional-tag {
  font-size: 11px;
  color: #999;
  margin-left: 4px;
}
.upload-zone-sm {
  padding: 18px 16px;
  margin-top: 8px;
}
.payout-status {
  font-size: 12px;
  margin-top: 4px;
  color: #555;
}
.appendix-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
  cursor: pointer;
}
.appendix-label input { width: 15px; height: 15px; cursor: pointer; }

/* ── Data-quality message banner ─────────────────────────────────────────────── */
.msg-banner {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #fff8e1;
  border-left: 3px solid #f59e0b;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
}
.msg-banner-row { margin-bottom: 2px; }

/* ── Coming sections (Clockify, Airbnb) ────────────────────────────────────── */
.coming-section { padding: 72px 24px 80px; }
.coming-section-inner { max-width: 1100px; margin: 0 auto; }
.clockify-section { background: #f2fbff; padding: 72px 24px 80px; }
.airbnb-section   { background: #fff0f3; padding: 72px 24px 80px; }

.clockify-section .section-eyebrow { color: #0287C5; }
.airbnb-section   .section-eyebrow { color: #FF385C; }

.coming-desc {
  font-size: 16px;
  color: rgba(20,6,58,.65);
  max-width: 580px;
  margin-bottom: 0;
}

/* ── Vote / request form ────────────────────────────────────────────────────── */
.vote-block { margin-top: 32px; max-width: 560px; }
.vote-counter { margin-bottom: 16px; font-size: 15px; color: var(--darkest); }
.vote-count { font-size: 24px; font-weight: 700; }
.vote-count-label { font-size: 14px; }
.vote-form { display: flex; flex-direction: column; gap: 10px; }
.vote-textarea {
  width: 100%;
  height: 88px;
  padding: 10px 12px;
  border: 1px solid rgba(20,6,58,.18);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  background: rgba(255,255,255,.75);
  color: var(--darkest);
}
.vote-email {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(20,6,58,.18);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(255,255,255,.75);
  color: var(--darkest);
}
.vote-textarea::placeholder,
.vote-email::placeholder { color: rgba(20,6,58,.35); }
.btn-vote {
  align-self: flex-start;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: background .15s, transform .1s;
}
.btn-vote:hover { transform: translateY(-1px); }
.btn-vote:disabled { opacity: 0.85; cursor: default; transform: none; }

.vote-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.vote-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--darkest);
  margin-bottom: 8px;
  margin-top: 16px;
}

.btn-send-small {
  margin-top: 8px;
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(20,6,58,.12);
  color: var(--darkest);
  cursor: pointer;
  transition: background .15s;
  display: block;
}
.btn-send-small:hover { background: rgba(20,6,58,.22); }

.feedback-saved { font-size: 13px; font-weight: 600; color: #059669; display: block; margin-top: 6px; }

.vote-thanks {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.6);
}

.clockify-section .vote-textarea:focus,
.clockify-section .vote-email:focus { border-color: #0287C5; box-shadow: 0 0 0 3px rgba(2,135,197,.15); }
.clockify-section .btn-vote { background: #0287C5; }
.clockify-section .btn-vote:hover { background: #026fa5; }
.clockify-section .vote-thanks { color: #0287C5; }
.clockify-section .vote-count  { color: #0287C5; }

.airbnb-section .vote-textarea:focus,
.airbnb-section .vote-email:focus { border-color: #FF385C; box-shadow: 0 0 0 3px rgba(255,56,92,.15); }
.airbnb-section .btn-vote { background: #FF385C; }
.airbnb-section .btn-vote:hover { background: #e0304e; }
.airbnb-section .vote-thanks { color: #FF385C; }
.airbnb-section .vote-count  { color: #FF385C; }

/* ── Stripe two-card layout ─────────────────────────────────────────────────── */
.stripe-cards-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.stripe-report-card {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 24px 24px 20px;
  box-shadow: var(--shadow);
  border: 1px solid #ede8ff;
  transition: box-shadow .2s;
}
.stripe-report-card:hover {
  box-shadow: 0 8px 40px rgba(20,6,58,.18);
}
.stripe-card-header {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ede8ff;
}
.offer-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--darkest);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.offer-price {
  font-size: 19px;
  color: #533AFD;
  font-weight: 700;
  flex-shrink: 0;
}
.offer-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.offer-bullets li {
  font-size: 15px;
  color: var(--darkest);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.offer-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #533AFD;
  font-weight: 700;
  font-size: 11px;
  top: 2px;
}
.offer-download {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #533AFD;
  border: 1px solid rgba(83,58,253,.3);
  border-radius: 6px;
  padding: 5px 12px;
  transition: background .15s;
  text-decoration: none;
}
.offer-download:hover { background: rgba(83,58,253,.08); }

/* ── Coming Soon badge ───────────────────────────────────────────────────────── */
.coming-soon-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: #f0edff; color: #533afd; border: 1px solid #c4b8ff;
  border-radius: 20px; padding: 3px 10px;
}

/* ── Lifetime feedback section ───────────────────────────────────────────────── */
.lifetime-feedback-section {
  margin-top: 24px; padding: 28px 28px 24px;
  background: #ffffff; border: 1px solid #e8e3f5; border-radius: 14px;
  box-shadow: 0 2px 12px rgba(20,6,58,.06);
}
.lifetime-feedback-label {
  font-size: 18px; font-weight: 700; color: #14063a; margin-bottom: 6px;
}
.lifetime-feedback-sub {
  font-size: 13px; color: #999; margin-bottom: 16px;
}
.lifetime-feedback-field {
  margin-bottom: 14px;
}
.lifetime-feedback-field label {
  display: block; font-size: 13px; font-weight: 600; color: #3a3a5c; margin-bottom: 6px;
}
.lifetime-feedback-textarea {
  width: 100%; min-height: 110px; padding: 10px 12px;
  font-size: 14px; font-family: inherit; color: #14063a;
  border: 1px solid #d4caf5; border-radius: 7px;
  resize: vertical; outline: none; box-sizing: border-box;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.lifetime-feedback-textarea:focus {
  border-color: #533afd; box-shadow: 0 0 0 3px rgba(83,58,253,.12);
}
.lifetime-feedback-email {
  width: 100%; padding: 9px 12px;
  font-size: 14px; font-family: inherit; color: #14063a;
  border: 1px solid #d4caf5; border-radius: 7px; outline: none;
  box-sizing: border-box; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.lifetime-feedback-email:focus {
  border-color: #533afd; box-shadow: 0 0 0 3px rgba(83,58,253,.12);
}
.lifetime-feedback-btn {
  margin-top: 4px; padding: 10px 26px; background: #533afd; color: #fff;
  font-size: 14px; font-weight: 700; border: none; border-radius: 8px;
  cursor: pointer; transition: background .2s, transform .15s;
}
.lifetime-feedback-btn:hover { background: #3d27d4; transform: translateY(-1px); }
.lifetime-feedback-saved {
  display: block; margin-top: 12px; font-size: 13px;
  color: #16a34a; font-weight: 600;
}

/* ── Month selector ─────────────────────────────────────────────────────────── */
.month-range-row {
  display: flex;
  gap: 12px;
}
.month-range-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.month-selector { margin-top: 16px; }
.month-selector-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.month-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d4caf5;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--darkest);
  background: var(--white);
  outline: none;
  cursor: pointer;
  appearance: auto;
}
.month-select:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(66,48,117,.1); }

/* ── Stripe howto line ──────────────────────────────────────────────────────── */
.bullet-desc { font-size: 13px; color: var(--lightest); }

.stripe-howto {
  font-size: 13px;
  color: var(--lightest);
  margin-bottom: 20px;
}
.stripe-export-link {
  color: #533AFD;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

/* ── Promo code (below buy button) ─────────────────────────────────────────── */
.promo-toggle-wrap { width: 100%; text-align: center; margin-top: 2px; }
.promo-toggle {
  background: none;
  border: none;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
}
.promo-toggle:hover { color: rgba(255,255,255,.85); }
.promo-input-wrap { width: 100%; margin-top: 8px; }
.promo-input-row { display: flex; gap: 6px; justify-content: center; align-items: center; }
.btn-apply-promo {
  padding: 8px 14px;
  background: #533AFD;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn-apply-promo:hover { background: #3d28d4; }

/* ── Page hero (subpages) ───────────────────────────────────────────────────── */
.page-hero {
  padding: calc(56px + 64px) 24px 20px;
  margin-top: -64px;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  color: var(--darkest);
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(20,6,58,.65);
  max-width: 560px;
  margin-bottom: 20px;
}
.page-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--darkest);
}

.coming-soon-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(0,0,0,.08);
  color: rgba(20,6,58,.55);
  border: 1px solid rgba(0,0,0,.1);
  margin-top: 16px;
}


/* ── Voting page section ────────────────────────────────────────────────────── */
.voting-page-hero {
  min-height: calc(100vh - 64px - 48px);
  box-sizing: border-box;
}
.vote-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.vote-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-block {
  margin-bottom: 36px;
}
.features-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--darkest);
  margin-bottom: 14px;
}
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features-list li {
  font-size: 15px;
  color: var(--darkest);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 13px;
  top: 2px;
}

/* ── Custom pricing cards ───────────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .pricing-cards { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--white);
  border: 1px solid #e8e3f5;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(20,6,58,.06);
}
.pricing-card-featured {
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(20,6,58,.10);
}
.pricing-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pricing-card-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--darkest);
  margin-bottom: 10px;
}
.pricing-card-desc {
  font-size: 14px;
  color: rgba(20,6,58,.6);
  line-height: 1.6;
}

/* ── Inquiry form ───────────────────────────────────────────────────────────── */
.inquiry-card {
  background: var(--white);
  border: 1px solid #e8e3f5;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(20,6,58,.06);
  max-width: 620px;
}
.inquiry-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--darkest);
  margin-bottom: 24px;
}
.inquiry-field {
  margin-bottom: 18px;
}
.inquiry-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.inquiry-field input[type="text"],
.inquiry-field input[type="email"],
.inquiry-field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d4caf5;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--darkest);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.inquiry-field textarea {
  resize: vertical;
}
.inquiry-field input[type="file"] {
  font-size: 13px;
  color: var(--darkest);
  padding: 6px 0;
}
.inq-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--lightest);
}
.inq-required {
  color: #dc2626;
  font-size: 13px;
}
.inquiry-file-note {
  font-size: 12px;
  color: var(--lightest);
  margin-top: 5px;
}
.inq-checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--darkest) !important;
  cursor: pointer;
}
.inq-checkbox-label input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}
.btn-inquiry-submit {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-top: 8px;
}
.btn-inquiry-submit:hover { transform: translateY(-1px); }
.inquiry-result {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

/* ── App section background for subpages ────────────────────────────────────── */
.app-section.app-section-white { background: #fafafa; }

/* ── Export image lightbox ──────────────────────────────────────────────────── */
.export-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.export-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
  display: block;
}
