/* Traffic Boost public site. Spacing is an 8px grid. */

.lp {
  --paper: #fff6ec;
  --paper-2: #ffe8d2;
  --ink: #1b1430;
  --text: #241c33;
  --muted: #5c5168;
  --line: #f0d9c4;
  --surface: #fffdfb;
  --coral: #e11d48;
  --coral-d: #be123c;
  --amber: #d97706;
  --teal: #0f766e;
  --violet: #6d28d9;
  --blue: #1d4ed8;
  --lime: #4d7c0f;
  --pink: #be185d;
  --plum: #4c1d95;
  --focus: #1d4ed8;
  --shadow: 0 18px 40px rgba(27, 20, 48, 0.1);
  margin: 0;
  padding: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(225, 29, 72, 0.14), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(109, 40, 217, 0.16), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(15, 118, 110, 0.12), transparent 28%),
    var(--paper);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.lp * { box-sizing: border-box; }
.lp a:not(.lp-btn) { color: var(--violet); }
.lp a.lp-btn-primary,
.lp a.lp-btn-primary:visited,
.lp a.lp-btn-primary:hover,
.lp a.lp-btn-primary:active,
.lp a.lp-btn-primary:focus {
  color: #fff;
}
.lp a.lp-btn-ghost,
.lp a.lp-btn-ghost:visited,
.lp a.lp-btn-ghost:hover,
.lp a.lp-btn-ghost:active,
.lp a.lp-btn-ghost:focus {
  color: var(--ink);
}
.lp h1, .lp h2, .lp h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.lp h1 { font-size: 36px; }
.lp h2 { font-size: 30px; }
.lp h3 { font-size: 20px; }
.lp-skip {
  position: absolute;
  left: 16px;
  top: 8px;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 30;
}
.lp-skip:focus { transform: none; }

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 8px 24px;
  background: rgba(255, 246, 236, 0.9);
  border-bottom: 1px solid rgba(240, 217, 196, 0.8);
  backdrop-filter: blur(12px);
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.lp-logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #ffb020;
}
.lp-logo-mark svg { width: 28px; height: 28px; }
.lp-nav { display: flex; align-items: center; gap: 16px; }
.lp-nav a { color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; }
.lp-nav a:hover { color: var(--coral); }
.lp-nav-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 8px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lp-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out;
}
.lp-btn-lg { min-height: 48px; padding: 8px 24px; font-size: 16px; }
.lp-btn-primary { background: var(--coral); color: #fff; }
.lp-btn-primary:hover { background: var(--coral-d); color: #fff; }
.lp-btn-primary:active { transform: translateY(1px); color: #fff; }
.lp-btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.lp-btn-ghost:hover { background: var(--paper-2); color: var(--ink); }
.lp-btn:focus-visible, .lp-nav a:focus-visible, .lp-nav-toggle:focus-visible, .lp-faq button:focus-visible, .lp input:focus-visible, .lp button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.lp-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.lp-kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-lead { margin: 16px 0 0; max-width: 640px; color: var(--muted); font-size: 18px; line-height: 28px; }

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 32px auto 16px;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.lp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.lp-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 4px 12px 4px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.lp-pills svg { width: 20px; height: 20px; color: var(--teal); }

.lp-stage { position: relative; min-height: 460px; }
.lp-blob { position: absolute; width: 280px; height: 280px; opacity: 0.9; }
.lp-blob path { transform-origin: 50% 50%; animation: lp-morph 8s ease-in-out infinite; }
.lp-blob-a { left: 8%; top: 8%; fill: #c4b5fd; }
.lp-blob-b { right: 0; bottom: 8%; width: 240px; height: 240px; fill: #99f6e4; animation-delay: -3s; }
.lp-blob-b path { animation-delay: -3s; }
.lp-arcs { position: absolute; left: 6%; top: 18%; width: 70%; height: auto; overflow: visible; }
.lp-arc { fill: none; stroke: #6d28d9; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 8 10; animation: lp-dash 2.8s linear infinite; }
.lp-arc-2 { stroke: #e11d48; animation-duration: 3.4s; }
.lp-arc-3 { stroke: #0f766e; animation-duration: 4s; }
.lp-arcs circle { fill: #f59e0b; }
.lp-float { position: absolute; z-index: 2; }
.lp-float-1 { left: 0; top: 24px; }
.lp-float-2 { right: 12px; top: 0; }
.lp-float-3 { right: 0; top: 42%; }
.lp-float-4 { left: 8%; bottom: 24px; }
.lp-float-5 { right: 18%; bottom: 8px; }
.lp-float-6 { left: 42%; top: -8px; }
.lp-mock {
  position: relative;
  z-index: 1;
  width: min(380px, 86%);
  margin: 72px auto 0;
  padding: 16px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid #fff;
  box-shadow: var(--shadow);
}
.lp-mock header { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.lp-mock header span { width: 12px; height: 12px; border-radius: 50%; background: #fb7185; }
.lp-mock header span:nth-child(2) { background: #fbbf24; }
.lp-mock header span:nth-child(3) { background: #34d399; }
.lp-mock header strong { margin-left: 8px; }
.lp-lines { display: grid; gap: 8px; margin: 16px 0; }
.lp-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ede9fe, #ffe4e6, #ccfbf1);
  background-size: 200% 100%;
  animation: lp-sheen 2.4s linear infinite;
}
.lp-lines i:nth-child(2) { width: 88%; animation-delay: .2s; }
.lp-lines .is-short { width: 62%; }
.lp-lines i:nth-child(4) { width: 76%; }
.lp-mock-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.lp-mock-chip { padding: 4px 8px; border-radius: 999px; background: #ede9fe; color: #5b21b6; font-size: 12px; font-weight: 700; }
.lp-mock-btn { padding: 8px 16px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 700; }

.lp-bubble {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(27, 20, 48, 0.12);
}
.lp-bubble svg { width: 32px; height: 32px; }
.lp-c-coral { background: var(--coral); }
.lp-c-amber { background: #fbbf24; color: var(--ink); }
.lp-c-teal { background: var(--teal); }
.lp-c-violet { background: var(--violet); }
.lp-c-blue { background: var(--blue); }
.lp-c-lime { background: var(--lime); }
.lp-c-pink { background: var(--pink); }
.lp-c-plum { background: var(--plum); }
.lp-bob { animation: lp-bob 3.4s ease-in-out infinite; }

.lp-marquee { overflow: hidden; margin: 16px 0 8px; padding: 16px 0; }
.lp-track { display: flex; gap: 16px; width: max-content; animation: lp-marquee 32s linear infinite; }
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.lp-chip .lp-bubble { width: 44px; height: 44px; border-radius: 14px; animation: none; }
.lp-chip .lp-bubble svg { width: 24px; height: 24px; }
.lp-chip b { font-size: 14px; }

.lp-section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 48px 0; }
.lp-section-head { max-width: 720px; margin-bottom: 32px; }
.lp-section-head p:last-child { color: var(--muted); }
.lp-section-tint {
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lp-section-tint .lp-section-head,
.lp-section-tint .lp-grid,
.lp-section-tint .lp-faq { width: min(1120px, calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.lp-section-tint .lp-section-head { margin-bottom: 32px; }

.lp-steps, .lp-grid, .lp-editions { display: grid; gap: 16px; }
.lp-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.lp-steps li, .lp-card, .lp-edition {
  padding: 16px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lp-steps h3, .lp-card h3, .lp-edition h3 { margin: 16px 0 8px; }
.lp-steps p, .lp-card p, .lp-edition li { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.lp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lp-card:hover, .lp-edition:hover { transform: translateY(-2px); transition: transform 180ms ease-out; }

.lp-editions { grid-template-columns: 1fr 1fr; }
.lp-edition ul { margin: 16px 0 24px; padding-left: 20px; }
.lp-edition li { margin: 8px 0; }
.lp-edition-hot { background: var(--ink); border-color: var(--ink); }
.lp-edition-hot h3, .lp-edition-hot li { color: #fff6ec; }
.lp-edition-hot .lp-btn-primary,
.lp .lp-edition-hot a.lp-btn-primary,
.lp .lp-edition-hot a.lp-btn-primary:visited,
.lp .lp-edition-hot a.lp-btn-primary:hover {
  background: #fbbf24;
  color: var(--ink);
}
.lp-edition-hot .lp-btn-primary:hover,
.lp .lp-edition-hot a.lp-btn-primary:hover { background: #f59e0b; color: var(--ink); }

.lp-faq { display: grid; gap: 8px; }
.lp-faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); overflow: hidden; }
.lp-faq button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.lp-faq button svg { width: 22px; height: 22px; color: var(--coral); flex: 0 0 auto; }
.lp-faq button:hover { background: #fff7ed; }
.lp-faq button[aria-expanded="true"] { background: #fff1f2; }
.lp-faq-item div { padding: 0 16px 16px; color: var(--muted); }

.lp-close { width: min(800px, calc(100% - 48px)); margin: 32px auto 48px; padding: 32px; border-radius: 32px; text-align: center; background: var(--ink); color: #fff6ec; }
.lp-close h2 { color: #fff6ec; margin-bottom: 16px; }
.lp-close-icons { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }

.lp-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 24px;
  background: var(--ink);
  color: #f3e8ff;
}
.lp-footer p, .lp-footer small { color: #ddd6fe; }
.lp-footer nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.lp-footer a { color: #fff; font-weight: 600; text-decoration: none; }
.lp-footer a:hover { color: #fbbf24; }

.lp-auth {
  width: min(1040px, calc(100% - 48px));
  margin: 32px auto 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.lp-auth-art {
  position: relative;
  min-height: 520px;
  padding: 32px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--ink);
  color: #fff6ec;
  display: flex;
  align-items: flex-end;
}
.lp-auth-art p { position: relative; z-index: 2; margin: 0; font-family: "Fraunces", Georgia, serif; font-size: 30px; line-height: 1.2; }
.lp-auth-art .lp-blob-a { left: -40px; top: -20px; }
.lp-auth-art .lp-arcs { left: 8%; top: 8%; width: 84%; }
.lp-auth-floats { position: absolute; inset: 24px 24px auto 24px; display: flex; flex-wrap: wrap; gap: 8px; z-index: 2; }
.lp-auth-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lp-form { display: grid; gap: 16px; margin-top: 24px; }
.lp-form label, .lp-form legend { display: grid; gap: 8px; font-size: 14px; font-weight: 700; }
.lp-form fieldset { margin: 0; padding: 16px; border: 1px dashed var(--line); border-radius: 16px; display: grid; gap: 16px; }
.lp-form input[type="text"], .lp-form input[type="email"], .lp-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
}
.lp-form input:hover { border-color: #e7cbb4; }
.lp-pass { position: relative; display: block; }
.lp-pass input { padding-right: 80px; }
.lp-pass button {
  position: absolute;
  right: 8px;
  top: 8px;
  min-height: 32px;
  border: 0;
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  cursor: pointer;
}
.lp-check { display: flex !important; grid-template-columns: none; align-items: center; gap: 8px; font-weight: 600; }
.lp-check input { width: 20px; height: 20px; accent-color: var(--coral); }
.lp-hint { margin: 0; color: var(--muted); font-size: 14px; }
.lp-switch { margin: 16px 0 0; color: var(--muted); }
.lp-alert, .lp-note { margin-top: 16px; padding: 12px 16px; border-radius: 12px; font-size: 14px; }
.lp-alert { background: #fff1f2; color: #9f1239; }
.lp-alert ul { margin: 0; padding-left: 18px; }
.lp-note { background: #ecfdf5; color: #14532d; }
.lp-form-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-narrow { width: min(720px, calc(100% - 48px)); margin: 32px auto 48px; }
.lp-card-form { padding: 24px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); }
.lp-prose p { color: var(--muted); font-size: 18px; line-height: 28px; }

@keyframes lp-bob { 50% { transform: translateY(-8px); } }
@keyframes lp-marquee { to { transform: translateX(-50%); } }
@keyframes lp-dash { to { stroke-dashoffset: -80; } }
@keyframes lp-morph { 50% { transform: scale(1.06) rotate(6deg); } }
@keyframes lp-sheen { to { background-position: -200% 0; } }

@media (max-width: 980px) {
  .lp-hero, .lp-auth, .lp-editions, .lp-steps { grid-template-columns: 1fr; }
  .lp-grid { grid-template-columns: 1fr 1fr; }
  .lp-stage { min-height: 420px; }
  .lp h1, .lp-auth-art p { font-size: 30px; }
}
@media (max-width: 720px) {
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .lp-nav.is-open { display: flex; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-header { position: sticky; }
  .lp h1 { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp *, .lp-arc, .lp-blob path, .lp-lines i, .lp-track, .lp-bob { animation: none !important; transition: none !important; }
}
