* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.highlight { color: #2563eb; font-weight: 700; }
[hidden] { display: none !important; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-ghost:hover {
  background: #f1f5ff;
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-ghost:active { transform: translateY(0); }

.btn:disabled,
.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

header { background: #fff; padding: 20px 0; border-bottom: 1px solid #eaeaea; }

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.hero { padding: 60px 0; background-color: #fff; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #111;
  letter-spacing: -1px;
}

.hero-content .subhead {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 25px;
}

.benefit-bullets { list-style: none; margin-bottom: 22px; }

.benefit-bullets li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  color: #374151;
}

.benefit-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.optin-box {
  background: #f3f4f6;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-top: 14px;
}

.mini-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.12);
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field-error {
  margin-top: 6px;
  font-size: 0.82rem;
  color: #dc2626;
  display: none;
}

.input-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10) !important;
}

.cta-button {
  display: block;
  width: 100%;
  background-color: #2563eb;
  color: white;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.08s;
  text-align: center;
}

.cta-button:hover { background-color: #1d4ed8; }
.cta-button:active { transform: scale(0.99); }

.cta-button[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

.trust-under {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.trust-under b { color:#374151; }

.hero-image { position: relative; text-align: center; }

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: rotate(-1deg);
  border: 1px solid #e5e7eb;
}

.social-proof {
  background-color: #fff;
  padding: 50px 0;
  border-top: 1px solid #eaeaea;
}

.social-proof h2.text-center {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111;
}

footer {
  margin-top: auto;
  background: #1f2937;
  color: #9ca3af;
  padding: 30px 0;
  font-size: 0.85rem;
}

footer .footer-links a {
  color: #9ca3af;
  margin: 0 10px;
  text-decoration: none;
}

footer .footer-links a:hover { color: #fff; }

.status {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: rgba(22, 163, 74, 0.10);
  color: #065f46;
  font-size: 0.9rem;
  text-align: center;
}

.offer-page { width: 100%; }

.offer-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-bottom: 1px solid #eaeaea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.offer-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(800px 380px at 82% 25%, rgba(22, 163, 74, 0.08), transparent 62%),
    radial-gradient(900px 520px at 50% 105%, rgba(15, 23, 42, 0.05), transparent 60%);
}

.offer-hero > .container { position: relative; z-index: 1; }

.offer-hero__grid {
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .offer-hero__grid { grid-template-columns: 1.2fr 0.8fr; gap: 34px; }
}

.offer-eyebrow {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .10em;
  color:#6b7280;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer-h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color:#111;
  margin-bottom: 14px;
}

.offer-highlight { color:#2563eb; font-weight: 900; }

.offer-lead {
  font-size: 1.05rem;
  color:#4b5563;
  margin-bottom: 18px;
}

.offer-bullets {
  list-style:none;
  margin: 0 0 18px;
  padding:0;
}

.offer-bullets li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  color:#374151;
}

.offer-bullets li::before {
  content:"✓";
  position:absolute;
  left:0;
  color:#16a34a;
  font-weight: 900;
}

.offer-proof {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .offer-proof { grid-template-columns: 1fr; }
}

.offer-proof__item {
  background:#f3f4f6;
  border:1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}

.offer-proof__num { display:block; font-weight: 900; color:#111; }
.offer-proof__label { display:block; font-size: .85rem; color:#6b7280; }

.offer-card {
  border:1px solid #e5e7eb;
  background:#f3f4f6;
  border-radius: 12px;
  overflow:hidden;
}

.offer-card__head {
  padding: 16px;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.offer-price {
  display:flex;
  align-items: baseline;
  gap: 10px;
}

.offer-price__amount {
  font-size: 2rem;
  font-weight: 1000;
  color:#111;
  letter-spacing: -0.5px;
}

.offer-price__tag {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  background:#eef2ff;
  border:1px solid #c7d2fe;
  color:#2563eb;
}

.offer-card__sub {
  margin-top: 8px;
  color:#6b7280;
  font-size: .9rem;
}

.offer-card__body { padding: 16px; }

.offer-btn {
  display:block;
  width:100%;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-align:center;
  border:none;
  cursor:pointer;
  transition: background-color .2s, transform .08s;
}

.offer-btn:hover { background:#1d4ed8; }
.offer-btn:active { transform: scale(0.99); }
.offer-btn--big { max-width: 520px; margin: 0 auto; }

.offer-secondary-btn {
  display:block;
  width:100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color:#2563eb;
  font-weight: 900;
  text-align:center;
  text-decoration:none;
}

.offer-secondary-btn:hover {
  background:#eef2ff;
  border-color:#c7d2fe;
}

.offer-micro {
  margin-top: 10px;
  font-size: .85rem;
  color:#6b7280;
  line-height: 1.4;
  text-align:center;
}

.offer-trust {
  display:flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content:center;
  margin-top: 12px;
  font-size: .82rem;
  color:#6b7280;
}

.offer-trust span::before {
  content:"•";
  margin-right: 6px;
  color:#2563eb;
  font-weight: 900;
}

.offer-link {
  margin-top: 12px;
  width:100%;
  background: transparent;
  border:none;
  cursor:pointer;
  font-weight: 800;
  color:#374151;
  text-decoration: underline;
  padding: 8px;
}

.offer-link:hover { color:#111; }

.offer-preview {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.offer-preview__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 420px at 18% 30%, rgba(37, 99, 235, 0.06), transparent 62%),
    radial-gradient(700px 420px at 86% 25%, rgba(234, 88, 12, 0.05), transparent 65%),
    linear-gradient(180deg, rgba(249,250,251,0.85) 0%, rgba(255,255,255,1) 65%);
}

.offer-preview .container { position: relative; z-index: 1; }

.simulator-card {
  background:#fff;
  margin: 10px auto 20px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.10);
  border: 2px solid #2563eb;
  max-width: 820px;
}

.simulator-card h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color:#111;
}

.subhead-small {
  color:#6b7280;
  margin-bottom: 18px;
  font-size: .95rem;
}

.sim-file--hidden {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}

.dz {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:2px dashed #c7d2fe;
  background:#f8fafc;
  border-radius: 12px;
  padding: 14px;
  cursor:pointer;
  margin-bottom: 10px;
}

.dz.is-dragover { background:#eef2ff; border-color:#2563eb; }

.dz__icon {
  width:42px;
  height:42px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef2ff;
  border:1px solid #c7d2fe;
  font-size:18px;
}

.dz__copy { flex:1; text-align:left; }
.dz__title { font-weight:900; color:#111827; }
.dz__sub { font-size:.9rem; color:#6b7280; margin-top:2px; }
.dz__file { font-size:.85rem; color:#111827; margin-top:6px; font-weight:800; }

.dz__btn {
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 900;
  cursor:pointer;
}

.dz__btn:hover { background:#1d4ed8; }

.sim-row { margin-top: 12px; text-align:left; }

.sim-label {
  display:block;
  font-size: .9rem;
  font-weight: 900;
  color:#111827;
  margin-bottom: 6px;
}

.sim-input {
  width:100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.sim-input:focus {
  outline:none;
  border-color:#2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.10);
}

.sim-error {
  display:none;
  margin-top: 6px;
  font-size: .82rem;
  color:#dc2626;
  text-align:left;
}

.is-invalid {
  border-color:#dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10) !important;
}

#resumeText {
  width: 100%;
  height: 180px;
  padding: 15px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  margin: 15px 0 0;
  resize: vertical;
  background: #fff;
}

#resumeText:focus {
  outline:none;
  border-color:#2563eb;
}

.analyze-btn {
  background:#111;
  color:#fff;
  width:100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 900;
  border:none;
  border-radius: 6px;
  cursor:pointer;
  transition: .2s;
  margin-top: 12px;
}

.analyze-btn:hover { background:#333; }

.scanning-overlay { margin-top: 18px; text-align:center; }

.scan-bar {
  width:100%;
  height:10px;
  background:#e5e7eb;
  border-radius: 5px;
  overflow:hidden;
  margin-bottom: 10px;
}

.scan-progress {
  width:0%;
  height:100%;
  background:#2563eb;
  transition: width .2s;
}

.scan-text {
  font-size:.9rem;
  color:#2563eb;
  font-weight: 900;
}

.results-box {
  background:#fff1f2;
  border: 1px solid #e11d48;
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
  text-align:left;
}

.score-circle {
  width:80px;
  height:80px;
  background:#e11d48;
  color:#fff;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 15px auto;
}

.danger-text {
  color:#9f1239;
  margin-bottom: 10px;
  text-align:center;
  font-weight: 900;
}

.scroll-prompt {
  text-align:center;
  font-weight: 900;
  margin-top: 12px;
  color:#111;
}

.results-box.is-good { background:#ecfdf5; border-color:#10b981; }
.results-box.is-mid  { background:#fffbeb; border-color:#f59e0b; }
.results-box.is-bad  { background:#fff1f2; border-color:#e11d48; }

.results-box.is-good .score-circle { background:#10b981; }
.results-box.is-mid  .score-circle { background:#f59e0b; }
.results-box.is-bad  .score-circle { background:#e11d48; }

.results-box.is-good .danger-text { color:#065f46; }
.results-box.is-mid  .danger-text { color:#92400e; }
.results-box.is-bad  .danger-text { color:#9f1239; }

.triage-row {
  display: grid !important;
  gap: 12px;
  margin-top: 16px;
  grid-template-columns: 1fr !important;
}

.triage-pill,
#goodBox,
#warnBox,
#badBox {
  border-radius:16px;
  padding:14px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .12);
}

#goodBox,
#warnBox,
#badBox {
  width: 100% !important;
  display: block !important;
}

.triage-pill h4 {
  margin:0 0 8px;
  font-size:0.95rem;
  font-weight:900;
}

.triage-good,
#goodBox { border-color:#10b981; background:#ecfdf5; }

.triage-warn,
#warnBox { border-color:#f59e0b; background:#fffbeb; }

.triage-bad,
#badBox { border-color:#e11d48; background:#fff1f2; }

.triage-list,
#goodList,
#warnList,
#badList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.triage-list li,
#goodList li,
#warnList li,
#badList li {
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.35;
}

.triage-good .triage-list li::before,
#goodList li::before {
  content:"✅";
  position:absolute;
  left:0;
  top:0;
}

.triage-warn .triage-list li::before,
#warnList li::before {
  content:"⚠";
  position:absolute;
  left:0;
  top:0;
}

.triage-bad .triage-list li::before,
#badList li::before {
  content:"❌";
  position:absolute;
  left:0;
  top:0;
}

.triage-good .triage-list li,
#goodBox #goodList li { color: #065f46; }

.triage-warn .triage-list li,
#warnBox #warnList li { color: #92400e; }

.triage-bad .triage-list li,
#badBox #badList li { color: #9f1239; }

.is-empty,
#goodBox[hidden],
#warnBox[hidden],
#badBox[hidden] {
  display:none !important;
}

.quick-fixes-box {
  background:#eff6ff;
  border:1px solid #bfdbfe;
  padding: 20px;
  border-radius: 6px;
  margin-top: 14px;
}

.quick-fixes-box h4 {
  color:#1e3a8a;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
}

.fix-list { list-style:none; padding:0; margin:0; }

.fix-list li {
  margin:10px 0;
  padding-left:28px;
  position:relative;
  color:#1e40af;
  font-size: .92rem;
}

.fix-list li::before {
  content:"🔧";
  position:absolute;
  left:0;
  top:-1px;
  font-size: 14px;
}

.robot-view {
  max-height:260px;
  overflow:auto;
  padding:12px 14px;
  border-radius:12px;
  background:#0b1220;
  color:#dbeafe;
  border:1px solid rgba(255,255,255,.10);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  line-height:1.45;
  white-space: pre-wrap;
}

.upsell-section {
  background:#fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.10);
  margin-top: 20px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left:auto;
  margin-right:auto;
}

.upsell-section .subhead {
  color:#4b5563;
  margin-top: 8px;
  margin-bottom: 12px;
}

.pricing-box {
  background:#eff6ff;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border: 1px solid #bfdbfe;
}

.bundle-list {
  list-style:none;
  line-height: 2;
  margin-top: 15px;
}

.strike-price {
  text-decoration: line-through;
  color:#9ca3af;
  font-size: 1.1rem;
}

.price-tag {
  font-size: 3rem;
  font-weight: 900;
  color:#2563eb;
  line-height: 1;
  margin-bottom: 20px;
}

.timer {
  color:#b91c1c;
  font-weight: 900;
  margin-top: 15px;
}

.buy-button {
  display:block;
  width:100%;
  background:#2563eb;
  color:#fff;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 900;
  border:none;
  border-radius: 6px;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
}

.buy-button:hover { background:#1d4ed8; }

.offer-includes {
  padding: 56px 0;
  background:#ffffff;
  border-top:1px solid #eaeaea;
  border-bottom:1px solid #eaeaea;
}

.optin-page .offer-includes {
  padding: 44px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 0;
}

.offer-h2 {
  font-size: 1.7rem;
  color:#111;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.offer-h3 {
  font-size: 1.1rem;
  color:#111;
  margin-bottom: 8px;
}

.offer-p {
  color:#4b5563;
  margin-bottom: 14px;
}

.offer-max {
  max-width: 780px;
  margin-left:auto;
  margin-right:auto;
}

.offer-includes__grid {
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 900px) {
  .offer-includes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.offer-box {
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
}

#compare .offer-includes__grid .offer-box:nth-child(2) {
  border-color:#c7d2fe;
  background:#eef2ff;
}

.offer-faq { padding: 56px 0; }

.offer-faq .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background:#ffffff;
  margin-bottom: 10px;
  overflow:hidden;
}

.offer-faq .faq-item summary {
  padding: 14px;
  font-weight: 900;
  cursor:pointer;
  list-style:none;
}

.offer-faq .faq-item summary::-webkit-details-marker { display:none; }

.offer-faq .faq-content {
  padding: 0 14px 14px;
  color:#4b5563;
  border-top:1px solid #e5e7eb;
}

.offer-final {
  padding: 56px 0;
  background:#ffffff;
  border-top:1px solid #eaeaea;
}

.offer-final__inner {
  border:1px solid #e5e7eb;
  background:#f3f4f6;
  border-radius: 14px;
  padding: 22px;
  text-align:center;
}

.offer-final__actions {
  margin-top: 14px;
  display:grid;
  gap: 10px;
  max-width: 520px;
  margin-left:auto;
  margin-right:auto;
}

.alert {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.alert-success {
  background-color: #ecfdf3;
  border-color: rgba(34, 197, 94, 0.3);
  color: #166534;
}

.alert-error {
  background-color: #fef2f2;
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

.alert.is-dismissed {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.auth { padding: 3rem 1rem 4rem; }

.auth .container-inner {
  max-width: 480px;
  margin: 0 auto;
}

.auth-card {
  background-color: var(--card-bg, #ffffff);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.auth-header { margin-bottom: 1.75rem; }

.auth-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.auth-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.auth-form .form-row { margin-bottom: 1rem; }

.auth-form label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5f5;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.auth-form .required {
  color: #ef4444;
  margin-left: 0.1rem;
}

.auth-error,
.auth-form .error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

.auth-error {
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.auth-actions .btn { flex: 0 0 auto; }

.auth-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.auth-meta a {
  color: #2563eb;
  text-decoration: none;
}

.auth-meta a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .auth-card { padding: 1.5rem 1.25rem; }
  .auth-title { font-size: 1.35rem; }

  .auth-actions {
    flex-direction: column;
  }

  .auth-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ex-grid {
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 900px) {
  .ex-grid { grid-template-columns: 1fr 1fr; }
}

.ex-card {
  background:#ffffff;
  border:1px solid #bfdbfe;
  border-radius: 10px;
  padding: 12px;
}

.ex-card--full { margin-top: 12px; }

.ex-title {
  font-weight: 900;
  color:#1e3a8a;
  margin-bottom: 8px;
  font-size: .95rem;
}

.ex-pre { max-height: 180px; }

.ex-bullets li,
.ex-skills li,
.ex-summary li,
.ex-education li {
  color:#1e40af;
  padding-left: 18px;
  position: relative;
}

.ex-bullets li::before,
.ex-skills li::before,
.ex-summary li::before,
.ex-education li::before {
  content:"•";
  left: 0;
  top: 0;
  position:absolute;
  color:#2563eb;
  font-weight: 900;
}

.fix-list li.ex-plain {
  padding-left: 0 !important;
}

.fix-list li.ex-plain::before {
  content: "" !important;
  display: none !important;
}


.hero-eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #2563eb;
  background: #eaf1ff;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-grid {
  align-items: start;
}

.optin-box--card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  margin-top: 0;
}

.optin-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.optin-card-text {
  color: #4b5563;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.optin-box--card .form-group input {
  padding: 15px 14px;
  border-radius: 12px;
}

.optin-box--card .cta-button {
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1rem;
  font-weight: 700;
}

.optin-box--card .trust-under {
  margin-top: 12px;
  font-size: 0.9rem;
}

.offer-note-bottom {
  margin-top: 20px;
  margin-bottom: 0;
}

.offer-faq .offer-max {
  max-width: 820px;
}

.offer-final .trust-under {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .optin-box--card {
    padding: 22px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }
}

.offer-card--clean {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.offer-card__head--clean {
  background: #ffffff;
  border-bottom: 0;
  padding-bottom: 8px;
}

.offer-price-wrap {
  margin-bottom: 4px;
}

.offer-price-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.offer-price--stack {
  display: block;
}

.offer-card__sub--price {
  margin-top: 8px;
  font-size: 0.95rem;
}

.offer-strike {
  text-decoration: line-through;
  opacity: 0.75;
}

.offer-btn--clean {
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1rem;
  font-weight: 700;
}

.offer-micro--center {
  text-align: center;
  margin-top: 12px;
}

.offer-support-note {
  margin-top: 10px; 
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.92rem;
}

.bundle-list--checks,
.offer-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bundle-list--checks li,
.offer-check-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #374151;
  font-weight: 600;
}

.bundle-list--checks li::before,
.offer-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.offer-simple-list {
  list-style: disc;
  color: #4b5563;
  padding-left: 20px;
  margin: 0;
}

.offer-simple-list li {
  margin-bottom: 8px;
}

.offer-bestfor {
  margin-top: 14px;
  margin-bottom: 0;
}

.offer-box--highlight {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.offer-note-bottom {
  margin-top: 18px;
  margin-bottom: 0;
}

.offer-policy-compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

@media (max-width: 767px) {
  .offer-card--clean {
    border-radius: 18px;
  }
}

.offer-card--clean {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.offer-card__head--clean {
  background: #ffffff;
  border-bottom: 0;
  padding-bottom: 8px;
}

.offer-price-wrap {
  margin-bottom: 4px;
}

.offer-price-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.offer-price--stack {
  display: block;
}

.offer-card__sub--price {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #4b5563;
}

.offer-btn--clean {
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1rem;
  font-weight: 700;
}

.offer-micro--center {
  text-align: center;
  margin-top: 12px;
}

.offer-support-note {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.92rem;
}

.bundle-list--checks,
.offer-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bundle-list--checks li,
.offer-check-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #374151;
  font-weight: 600;
}

.bundle-list--checks li::before,
.offer-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.offer-bestfor {
  margin-top: 14px;
  margin-bottom: 0;
}

.offer-box--highlight {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.offer-note-bottom {
  margin-top: 18px;
  margin-bottom: 0;
}

.offer-policy-mini {
  padding: 18px 0 8px;
  background: #ffffff;
}

.offer-policy-mini__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.offer-policy-mini__inner strong {
  color: #111827;
}

@media (max-width: 767px) {
  .offer-card--clean {
    border-radius: 18px;
  }
}

.robot-hero .offer-card--clean {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
}

.robot-view-page .results-box {
  margin-top: 22px;
}

.robot-offer {
  border-top: 1px solid #eaeaea;
  background: #ffffff;
}

.robot-offer-cta {
  max-width: 620px;
  margin: 24px auto 0;
  text-align: center;
}

.robot-offer-price {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #111827;
}

@media (max-width: 900px) {
  .robot-hero .offer-hero__grid {
    grid-template-columns: 1fr;
  }
}

.ex-entry {
  border: 1px solid #dbeafe;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}

.ex-entry__head {
  margin-bottom: 8px;
}

.ex-entry__role {
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.4;
}

.aplyvo-logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.aplyvo-logo-nav { font-size: 1.65rem; letter-spacing: -1px; }
.aplyvo-logo-hero { font-size: 3.5rem; letter-spacing: -2.5px; line-height: 1; }
.aplyvo-logo-footer { font-size: 1.25rem; letter-spacing: -0.5px; }

.aplyvo-text-dark { color: #111827; }
.aplyvo-text-light { color: #ffffff; }
.aplyvo-text-accent { color: #2563eb; }


.sim-privacy-note {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6b7280;
  text-align: center;
}

.scan-error-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
  text-align: left;
}

.scan-error-card.hidden {
  display: none !important;
}

.scan-error-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1rem;
}

.scan-error-card__body {
  flex: 1;
}

.scan-error-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: #7f1d1d;
  margin: 0 0 4px;
}

.scan-error-card__message {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #991b1b;
  margin: 0 0 10px;
}

.scan-error-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fecaca;
  background: #ffffff;
  color: #991b1b;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.scan-error-card__btn:hover {
  background: #fff7f7;
}

.contact-page {
  width: 100%;
  background: #f9fafb;
}

.contact-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-bottom: 1px solid #eaeaea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(800px 380px at 82% 25%, rgba(22, 163, 74, 0.08), transparent 62%),
    radial-gradient(900px 520px at 50% 105%, rgba(15, 23, 42, 0.05), transparent 60%);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
  }
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #2563eb;
  background: #eaf1ff;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.contact-h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #111827;
  margin-bottom: 14px;
}

.contact-lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 18px;
  max-width: 760px;
}

.contact-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-check-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  color: #374151;
}

.contact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
}

.contact-info-card h2 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #4b5563;
  margin-bottom: 12px;
}

.contact-info-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.92rem;
}

.contact-direct-email {
  margin-top: 14px;
  font-size: 0.95rem;
}

.contact-direct-email a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
}

.contact-main-section {
  padding: 46px 0 60px;
  background: #f9fafb;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contact-card-main,
.contact-side-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.contact-card-main {
  padding: 28px;
}

.contact-card-head {
  margin-bottom: 22px;
}

.contact-card-head h2,
.contact-side-card h2 {
  font-size: 1.45rem;
  color: #111827;
  margin-bottom: 8px;
}

.contact-card-head p,
.contact-side-card p {
  color: #4b5563;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111827;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.08s ease;
}

.contact-submit-btn:hover {
  background: #1d4ed8;
}

.contact-submit-btn:active {
  transform: scale(0.99);
}

.contact-cancel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-weight: 800;
  text-decoration: underline;
  padding: 10px 4px;
}

.contact-cancel-link:hover {
  color: #111827;
}

.contact-privacy-note {
  margin-top: 2px;
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.45;
}

.contact-side-panel {
  display: grid;
  gap: 18px;
}

.contact-side-card {
  padding: 22px;
}

.contact-side-card--blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.contact-side-card--blue h2 {
  color: #1e3a8a;
}

.contact-side-card--blue p {
  color: #1e40af;
}

.contact-side-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.contact-side-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: #374151;
  font-weight: 600;
}

.contact-side-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.contact-form-panel .alert {
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 40px 0;
  }

  .contact-h1 {
    font-size: 2rem;
  }

  .contact-card-main,
  .contact-info-card,
  .contact-side-card {
    border-radius: 18px;
  }

  .contact-card-main {
    padding: 22px;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .contact-cancel-link {
    width: 100%;
    justify-content: center;
  }
}

.simple-page {
  width: 100%;
  background: #f9fafb;
}

.simple-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-bottom: 1px solid #eaeaea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.simple-hero--compact {
  padding: 48px 0;
}

.simple-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(800px 380px at 82% 25%, rgba(22, 163, 74, 0.08), transparent 62%),
    radial-gradient(900px 520px at 50% 105%, rgba(15, 23, 42, 0.05), transparent 60%);
}

.simple-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.simple-eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #2563eb;
  background: #eaf1ff;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.simple-h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #111827;
  margin-bottom: 14px;
}

.simple-lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 0;
  max-width: 760px;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.08s ease, border-color 0.2s ease;
}

.simple-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.simple-btn:active {
  transform: scale(0.99);
}

.simple-btn--ghost {
  background: #ffffff;
  color: #374151;
  border-color: #e5e7eb;
}

.simple-btn--ghost:hover {
  background: #f1f5ff;
  color: #111827;
  border-color: rgba(37, 99, 235, 0.35);
}

.simple-content-section {
  padding: 46px 0 60px;
  background: #f9fafb;
}

.simple-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.simple-card--center {
  max-width: 820px;
  margin: 0 auto;
}

.simple-card--soft {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.simple-card h2 {
  font-size: 1.45rem;
  color: #111827;
  margin-bottom: 10px;
}

.simple-card p {
  color: #4b5563;
  margin-bottom: 14px;
}

.simple-card a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
}

.simple-card-note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.simple-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 960px) {
  .simple-two-col {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.simple-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-check-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #374151;
  font-weight: 600;
}

.simple-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

.simple-legal-card {
  max-width: 900px;
  margin: 0 auto;
}

.simple-legal-card h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.simple-legal-card h2:first-of-type {
  margin-top: 8px;
}

.simple-legal-card p {
  line-height: 1.75;
}

.simple-updated {
  color: #6b7280;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .simple-hero {
    padding: 40px 0;
  }

  .simple-h1 {
    font-size: 2rem;
  }

  .simple-card {
    border-radius: 18px;
    padding: 22px;
  }

  .simple-btn {
    width: 100%;
  }
}

.simple-legal-list {
  margin: 10px 0 18px;
  padding-left: 22px;
  color: #4b5563;
}

.simple-legal-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.simple-legal-card strong {
  color: #111827;
}

.lp-footer {
  margin-top: auto;
  background: #111827;
  color: #9ca3af;
  padding: 34px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 820px) {
  .lp-footer__grid {
    grid-template-columns: 1fr auto;
  }
}

.lp-footer__brand {
  max-width: 520px;
}

.lp-footer__tagline {
  margin-top: 10px;
  max-width: 520px;
  color: #9ca3af;
  line-height: 1.55;
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-start;
}

@media (min-width: 820px) {
  .lp-footer__links {
    justify-content: flex-end;
    max-width: 420px;
  }
}

.lp-footer__links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.lp-footer__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.lp-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 820px) {
  .lp-footer__bottom {
    /* flex-direction: row; */
    align-items: center;
    justify-content: space-between;
  }
}

.lp-footer__copy,
.lp-footer__note {
  margin: 0;
  color: #9ca3af;
  line-height: 1.5;
}

.lp-footer__note {
  font-size: 0.84rem;
  max-width: 580px;
}

@media (max-width: 640px) {
  .lp-footer {
    text-align: left;
    padding: 30px 0;
  }

  .lp-footer__links {
    flex-direction: column;
    gap: 8px;
  }
}

.error-layout .site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.error-page .simple-hero__inner {
  text-align: left;
}

.error-debug-meta {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 0.9rem;
}

.error-debug-meta code {
  color: #111827;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  word-break: break-all;
}

@media (max-width: 640px) {
  .error-page .simple-hero__inner {
    text-align: left;
  }
}

.product-preview-strip {
  padding: 48px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.product-preview-strip__head {
  margin-bottom: 24px;
}

.product-preview-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 860px) {
  .product-preview-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-preview-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
}

.product-preview-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.product-preview-card__body {
  padding: 16px;
}

.product-preview-card__body h3 {
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 6px;
}

.product-preview-card__body p {
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
}

.product-screenshot-section {
  background: #ffffff;
}

.product-screenshot-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 760px) {
  .product-screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .product-screenshot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-screenshot-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.product-screenshot-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  margin-bottom: 12px;
}

.product-screenshot-card h3 {
  font-size: 1rem;
  color: #111827;
  margin-bottom: 6px;
}

.product-screenshot-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.product-hero-preview {
  padding: 46px 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.product-showcase--full {
  max-width: 1040px;
  margin: 0 auto;
}

.product-showcase__frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background:
    radial-gradient(800px 360px at 20% 10%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  padding: 18px;
}

.product-showcase__img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-showcase__img.is-fading {
  opacity: 0;
  transform: scale(0.985);
}

.product-showcase__label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: calc(100% - 60px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.88);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.product-showcase__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.product-showcase__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.product-showcase__btn:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #2563eb;
}

.product-showcase__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.product-showcase__dot.is-active {
  width: 22px;
  background: #2563eb;
}

@media (max-width: 760px) {
  .product-showcase__img {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .product-hero-preview {
    padding: 36px 0;
  }

  .product-showcase__frame {
    border-radius: 18px;
    padding: 12px;
  }

  .product-showcase__img {
    height: 260px;
    border-radius: 14px;
  }

  .product-showcase__label {
    left: 22px;
    bottom: 22px;
    font-size: 0.78rem;
  }
}

.product-screenshot-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  margin-bottom: 12px;
}

.product-screenshot-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
}

@media (min-width: 1040px) {
  .product-screenshot-card img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .product-screenshot-card img {
    height: 220px;
  }
}

.hero-pack-preview {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.hero-pack-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.freebie-pack-preview {
  margin: 24px auto 30px;
  max-width: 980px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.freebie-pack-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.product-screenshot-section {
  background: #ffffff;
}

.product-feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 960px) {
  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08);
}

.product-feature-card__image {
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(37, 99, 235, 0.08), transparent 60%),
    #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px;
}

.product-feature-card__image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.product-feature-card__content {
  padding: 18px 20px 20px;
}

.product-feature-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-feature-card__content h3 {
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 8px;
}

.product-feature-card__content p {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 640px) {
  .product-feature-card {
    border-radius: 18px;
  }

  .product-feature-card__image {
    padding: 10px;
  }

  .product-feature-card__image img {
    height: 260px;
    border-radius: 14px;
  }

  .product-feature-card__content {
    padding: 16px;
  }
}


.product-image-open {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-image-open img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-image-open:hover img {
  transform: scale(1.015);
  opacity: 0.96;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-lightbox.hidden {
  display: none !important;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 92vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox__img {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
}

.image-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.22);
}

.image-lightbox__close:hover {
  background: #eef2ff;
  color: #2563eb;
}


.product-feature-card__image {
  position: relative;
}

.product-image-open__hint {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  pointer-events: none;
}


.ats-beta-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e3a8a;
}

.ats-beta-note__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ats-beta-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}




.ex-group-title {
  font-weight: 800;
  color: #1e3a8a !important;
}


.ex-projects {
  display: grid;
  gap: 12px;
}

.ex-entry--project {
  border: 1px solid #dbeafe;
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
}

.ex-entry__meta {
  margin: -2px 0 8px;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 600;
}

.ex-project-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.ex-project-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: #1e40af;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ex-project-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 900;
}


.privacy-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.privacy-consent-banner.hidden {
  display: none !important;
}

.privacy-consent-banner__content {
  width: min(760px, 100%);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #dbeafe;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.privacy-consent-banner__content h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.05rem;
}

.privacy-consent-banner__content p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
}

.privacy-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .privacy-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .privacy-consent-banner__content {
    padding: 16px;
    border-radius: 16px;
  }

  .privacy-consent-banner__actions {
    flex-direction: column-reverse;
  }

  .privacy-consent-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}




.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}