:root {
  --bg: #FBFBFD;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --muted: #5B6472;
  --accent: #4F46E5;
  --accent-ink: #4338CA;
  --tint: rgba(79, 70, 229, .06);
  --line: #E4E4EC;
  --ok: #12B76A;
  --max: 1200px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(79, 70, 229, .28);
  transition: all .25s ease;
}
.btn:hover {
  background: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, .35);
  color: #fff;
}
.btn.ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: none;
}
.btn.orange {
  background: #ff6a1a;
  box-shadow: 0 8px 24px rgba(255, 106, 26, .28);
}
.btn.orange:hover { background: #e2550f; color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(251, 251, 253, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.btn,
.nav-links a.btn:hover { color: #fff; }
.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-login:hover { color: var(--accent); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hero — centered like Sellsyte */
.hero {
  position: relative;
  padding: 140px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 50%, transparent 100%);
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 640px;
  max-width: 100vw;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(79, 70, 229, .14), transparent);
  pointer-events: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tint);
  border: 1px solid rgba(79, 70, 229, .25);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 7px 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  max-width: 900px;
  margin: 22px auto 0;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead {
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  color: #334155;
  font-weight: 500;
  line-height: 1.55;
  max-width: 660px;
  margin: 20px auto 0;
}
.hero-lead strong { color: var(--accent-ink); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trustline {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

.browser {
  margin: 48px auto 0;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 90px rgba(15, 23, 42, .14);
  text-align: left;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: #F2F2F7;
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.urlbar {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11.5px;
  padding: 5px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 183, 106, .1);
  border: 1px solid rgba(18, 183, 106, .4);
  color: #056239;
  font-size: 11px;
  border-radius: 9999px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
}
.browser-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 280px;
}
.app-side {
  background: #FAFAFC;
  border-right: 1px solid var(--line);
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.app-side .field {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.app-side label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.app-side p { font-size: 13.5px; font-weight: 600; }
.app-side .gen {
  margin-top: 4px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 11px;
  border-radius: 10px;
  font-family: var(--font-display);
}
.preview-side {
  padding: 22px;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 55%, #4f46e5 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.preview-side .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}
.preview-side h4 {
  font-size: 22px;
  font-weight: 700;
}
.preview-side p { font-size: 13.5px; opacity: .85; max-width: 36ch; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 4px;
  color: var(--ink);
}
.stat span { font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 88px 0; }
.band {
  background: #F4F4F8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.sec-head h2 em { font-style: normal; color: var(--accent); }
.sec-head p { font-size: 17px; color: var(--muted); }

.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: border-color .25s, box-shadow .25s;
}
.step:hover {
  border-color: rgba(79, 70, 229, .45);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}
.step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--tint);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.step h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--muted); font-size: 15.5px; }

.objections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.obj {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color .25s, box-shadow .25s;
}
.obj:hover {
  border-color: rgba(79, 70, 229, .45);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}
.obj .q {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.obj h3 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }
.obj p { color: var(--muted); font-size: 15px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .25s, box-shadow .25s;
}
.feat:hover {
  border-color: rgba(79, 70, 229, .45);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}
.feat .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--tint);
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}
.feat h3 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.feat p { font-size: 14.5px; color: var(--muted); }

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}
.calc-controls, .calc-result {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.slider-row { margin-bottom: 22px; }
.slider-row label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.slider-row label b { color: var(--accent); }
input[type="range"] { width: 100%; accent-color: var(--accent); }
.calc-result h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.calc-result .big {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 18px;
  color: var(--ok);
}
.calc-result .sub { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.calc-result .sub strong { color: var(--ink); }
.calc-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.plan:hover {
  border-color: rgba(79, 70, 229, .35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}
.plan.feat {
  border-color: rgba(79, 70, 229, .55);
  box-shadow: 0 16px 40px rgba(79, 70, 229, .15);
}
.plan.feat::after {
  content: "Most popular";
  position: absolute;
  top: -11px;
  left: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 7px;
  font-family: var(--font-display);
}
.plan .tier {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan .amt {
  font-family: var(--font-display);
  font-size: 44px;
  margin: 10px 0 4px;
}
.plan .amt sup { font-size: 20px; top: -14px; color: var(--muted); }
.plan .period { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.plan ul { display: grid; gap: 10px; flex: 1; margin-bottom: 22px; }
.plan li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}
.plan li.bonus { color: var(--ink); font-weight: 600; }
.plan li.bonus::before { content: "★"; color: var(--accent); }

.faq { max-width: 820px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-body);
}
details[open] summary::after { content: "–"; }
details .a {
  padding: 0 4px 22px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 700px;
}

.cta-strip {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 64px 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .06);
}
.cta-strip h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.cta-strip p { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 24px; }

.page-footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
}
.page-footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.page-footer .flinks {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}
.page-footer .flinks a:hover { color: var(--accent); }
.page-footer .legal {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  line-height: 1.7;
  max-width: 860px;
}
.page-footer .legal p { margin-bottom: 12px; }
.page-footer .legal p:last-child { margin-bottom: 0; }
.page-footer .legal strong { color: var(--ink); font-weight: 700; }

/* Login page */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
}
.login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 40%, transparent 100%);
}
.login-top {
  position: relative;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
}
.login-card-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.login-card h1 {
  font-size: 1.55rem;
  margin: 18px 0 8px;
  text-align: center;
}
.login-card .sub {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 26px;
}
.login-logo {
  height: 44px;
  width: auto;
  margin: 0 auto;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .15);
}
.login-card .btn { width: 100%; margin-top: 8px; }
.login-foot {
  text-align: center;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.login-foot a {
  color: var(--accent);
  font-weight: 700;
}
.login-foot a:hover { text-decoration: underline; }

/* Thank You */
.thank-you-page {
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--bg);
}
.thank-you-card {
  max-width: 560px;
  width: 100%;
  background: var(--surface);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--ok);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-card h1 { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: 16px; }
.thank-you-card p { font-size: .95rem; color: var(--muted); margin-bottom: 12px; }
.thank-you-lead { font-size: 1.05rem !important; color: var(--ink) !important; }
.thank-you-amount { font-size: 1.35rem; font-weight: 700; color: var(--ok); margin-bottom: 16px !important; }
.thank-you-amount strong { font-size: 1.6rem; }
.thank-you-alert {
  background: rgba(18, 183, 106, .08);
  border: 1px solid rgba(18, 183, 106, .25);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
  color: var(--ink) !important;
}
.thank-you-steps {
  text-align: left;
  margin: 28px 0 24px;
  padding: 20px;
  background: #F4F4F8;
  border-radius: 12px;
}
.thank-you-steps h2 { font-size: 1rem; margin-bottom: 12px; text-align: center; }
.thank-you-steps ol { list-style: decimal; padding-left: 20px; }
.thank-you-steps li { font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.thank-you-support a { color: var(--accent); font-weight: 600; text-decoration: underline; }

.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--bg);
}
.footer__brand { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}
.footer__business { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer__business strong { color: var(--ink); }

html.ty-cloak .thank-you-page,
html.ty-cloak .site-footer { display: none !important; }
#ty-loading {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  align-items: center;
  justify-content: center;
}
html.ty-cloak #ty-loading { display: flex; }
.ty-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: ty-spin .7s linear infinite;
}
@keyframes ty-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .browser-body { grid-template-columns: 1fr; }
  .app-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .objections { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn):not(.nav-login) { display: none; }
}
@media (max-width: 640px) {
  .features, .plans, .hero-stats { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .nav-links a.nav-login { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
