/* PlanFur marketing landing — matches the homepage mockup. */

.landing-page {
  --pf-ink: #1d1d1f;
  --pf-ink-soft: #333333;
  --pf-muted: #7a7a7a;
  --pf-blue: #0066cc;
  --pf-blue-dark: #0071e3;
  --pf-blue-soft: #e8f1fb;
  --pf-line: #e8e8ed;
  --pf-soft: #f5f5f7;
  --pf-card: #ffffff;
  --pf-shadow: none;
  background: #fff;
  color: var(--pf-ink);
  font-family: Inter, "SF Pro Text", system-ui, -apple-system, sans-serif;
}

.landing-page .marketing-main {
  min-height: auto;
  overflow: hidden;
}

.landing-page .home-nav {
  height: 88px;
  background: #fff;
  border-bottom: 1px solid var(--pf-line);
  padding: 0 max(24px, calc((100% - 1280px) / 2));
  box-shadow: none;
}

.landing-page .home-nav-brand.site-brand-link .site-brand-logo {
  height: 72px;
  max-width: min(400px, 58vw);
}

.landing-page .home-nav-links {
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.landing-page .home-nav-links a {
  color: #7a7a7a;
}

.landing-page .home-nav-links a:hover,
.landing-page .home-nav-links a.is-current,
.landing-page .home-nav-links .home-nav-admin {
  color: var(--pf-blue) !important;
}

.landing-page .home-nav-ghost {
  color: #7a7a7a;
  font-weight: 500;
}

.landing-page .home-nav-cta {
  background: var(--pf-blue);
  box-shadow: none;
  padding: 9px 16px;
}

.pf-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.pf-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pf-blue);
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.pf-btn-primary:hover { background: var(--pf-blue-dark); color: #fff; }
.pf-btn-primary:active { transform: scale(0.97); }
.pf-btn-block { width: 100%; }

.pf-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--pf-ink);
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
}

.pf-btn-ghost:hover { border-color: var(--pf-blue); color: var(--pf-blue); }

.pf-badge {
  display: inline-flex;
  align-items: center;
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-kicker {
  margin: 0 0 10px;
  color: var(--pf-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pf-eyebrow {
  margin: 0;
  color: var(--pf-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pf-text-link {
  color: var(--pf-blue);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.pf-text-link--play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pf-text-link--play svg {
  width: 18px;
  height: 18px;
}

.pf-section-head {
  margin-bottom: 36px;
}

.pf-section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.pf-section-head--center {
  text-align: center;
}

.pf-section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.pf-section-head h2,
.pf-ai-copy h2,
.pf-pro-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--pf-ink);
}

.pf-section-head p,
.pf-ai-copy > p,
.pf-pro-copy > p {
  margin: 12px 0 0;
  max-width: 48ch;
  color: var(--pf-muted);
  font-size: 16px;
  line-height: 1.5;
}

.pf-perk-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pf-perk-ico svg { width: 16px; height: 16px; }

/* Hero — compact first screen, photo bleeds right */
.pf-hero {
  position: relative;
  min-height: 0;
  padding: 0 0 8px;
  background: #fff;
  overflow: hidden;
}

.pf-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 42%;
}

.pf-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.92) 28%,
      rgba(255, 255, 255, 0.42) 48%,
      rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.pf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 540px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 0;
  padding: 40px 0 48px;
}

.pf-hero-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--pf-ink);
}

.pf-hero-lead {
  margin: 14px 0 0;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--pf-ink-soft);
}

.pf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.pf-hero-facts {
  margin: 20px 0 0;
  color: var(--pf-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.pf-hero-visual {
  position: relative;
  min-height: 340px;
}

.pf-float-card {
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 16px;
}

.pf-scribble {
  position: absolute;
  left: 42%;
  top: 4px;
  z-index: 3;
  margin: 0;
  font-family: Caveat, "Segoe Script", cursive;
  font-size: 26px;
  font-weight: 700;
  color: #3b82f6;
  transform: rotate(-6deg);
  pointer-events: none;
  white-space: nowrap;
}

.pf-scribble::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 22px;
  width: 46px;
  height: 28px;
  border: 2px solid #60a5fa;
  border-right: 0;
  border-bottom: 0;
  border-radius: 22px 0 0 0;
  transform: rotate(-28deg);
}

.pf-3d-card {
  position: absolute;
  left: 8%;
  top: 36px;
  width: min(380px, 82%);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.pf-3d-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #fff;
}

.pf-3d-tools {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 14px;
  padding: 6px;
  z-index: 2;
}

.pf-3d-tools span {
  width: 32px;
  height: 28px;
  border-radius: 8px;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pf-3d-tools span.is-on {
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
}

.pf-3d-tools svg { width: 15px; height: 15px; }

.pf-dim {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pf-dim i {
  display: block;
  background: #94a3b8;
  opacity: 0.7;
}

.pf-dim--w {
  top: 56px;
  left: 18%;
  right: 18%;
}

.pf-dim--w i { height: 1px; flex: 1; }

.pf-dim--h {
  left: 12px;
  top: 92px;
  bottom: 78px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pf-dim--h i {
  width: 1px;
  flex: 1;
}

.pf-3d-pill {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pf-ink);
}

/* How it works */
.pf-flow {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid var(--pf-line);
}

.pf-flow .pf-section-head {
  margin-bottom: 40px;
}

.pf-flow .pf-section-head h2 {
  font-size: clamp(28px, 3.2vw, 36px);
}

.pf-flow .pf-section-head p {
  max-width: 42em;
}

.pf-flow-path {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  margin: 18px 0 0;
  padding: 0;
  color: var(--pf-ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pf-flow-path li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pf-flow-path li:not(:last-child)::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pf-ink);
  opacity: 0.28;
}

.pf-flow-cards {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pf-flow-cards li {
  min-width: 0;
}

.pf-flow-media {
  position: relative;
}

.pf-flow-cards img,
.pf-flow-thumb {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
  background: var(--pf-soft);
  border-radius: 14px;
}

.pf-flow-thumb--plan {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border: 1px solid var(--pf-line);
}

.pf-flow-thumb--plan svg {
  width: 86%;
  height: auto;
}

.pf-flow-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--pf-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pf-flow-tag--ai {
  left: auto;
  right: 10px;
  background: var(--pf-blue);
  color: #fff;
}

.pf-flow-tag--buy {
  background: var(--pf-ink);
  color: #fff;
}

.pf-flow-cards h3 {
  margin: 16px 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pf-flow-cards p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pf-muted);
}

/* Product tiles */
.pf-tools {
  padding: 24px 0 88px;
  background: #fff;
}

.pf-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pf-tool-media {
  position: relative;
}

.pf-tool-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--pf-soft);
  border-radius: 16px;
}

.pf-float-card--ai {
  position: absolute;
  right: 14px;
  top: 18px;
  width: min(210px, 72%);
  padding: 16px 16px 14px;
  text-decoration: none;
  color: inherit;
}

.pf-float-card--ai p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.pf-float-card--ai span {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pf-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.pf-tool-card h3 {
  margin: 16px 0 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pf-tool-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--pf-muted);
}

/* AI */
.pf-ai {
  padding: 40px 0 88px;
  background: #fff;
}

.pf-ai-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.pf-ai-photo {
  margin: 0;
}

.pf-ai-photo img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.pf-ai-photo figcaption {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--pf-muted);
}

.pf-checks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.pf-checks li {
  position: relative;
  padding: 0 0 0 32px;
}

.pf-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pf-blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2' stroke-linecap='round' d='M3.5 8.5l3 3 6-6'/></svg>") center / 10px no-repeat;
}

.pf-checks strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.pf-checks span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--pf-muted);
  font-weight: 400;
}

/* Styles */
.pf-styles {
  padding: 24px 0 88px;
  background: #fff;
}

.pf-style-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pf-style-grid img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.pf-style-grid h3 {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
}

/* Professionals */
.pf-pro {
  padding: 24px 0 88px;
  background: #fff;
}

.pf-pro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.pf-pro-photo { margin: 0; }

.pf-pro-photo img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

.pf-pro-stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.pf-pro-stats strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.pf-pro-stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--pf-muted);
}

/* Bottom CTA */
.pf-cta {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0d;
}

.pf-cta-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}

.pf-cta-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0b0d 0%, #0b0b0d 42%, rgba(11,11,13,0.35) 68%, rgba(11,11,13,0.12) 100%);
  pointer-events: none;
}

.pf-cta-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  padding: 72px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.pf-cta-grid h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
}

.pf-cta-grid p {
  margin: 12px 0 22px;
  max-width: 38ch;
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}

.pf-cta-side {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 8px;
}

.landing-page .home-footer,
.pf-footer {
  background: #fff;
  border-top: 1px solid var(--pf-line);
  padding: 48px 0 24px;
  font-family: inherit;
}

.landing-page .home-footer-inner {
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px;
  margin: 0 auto;
}

.landing-page .home-footer-brand p {
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
}

.landing-page .home-footer-cols h3 {
  color: var(--pf-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.landing-page .home-footer-cols a {
  color: var(--pf-ink);
  font-weight: 500;
}

.landing-page .home-footer-cols a:hover {
  color: var(--pf-blue);
}

.landing-page .home-footer-legal {
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--pf-line);
  color: var(--pf-muted);
}

@media (max-width: 1080px) {
  .pf-hero-grid,
  .pf-ai-grid,
  .pf-pro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pf-hero-grid { grid-template-columns: 1fr; min-height: 0; padding: 48px 0 28px; }
  .pf-hero { min-height: 0; }
  .pf-hero-photo { object-position: 60% 50%; }
  .pf-hero-visual { min-height: 360px; }
  .pf-3d-card { left: 0; top: 48px; width: min(400px, 92%); }
  .pf-scribble { left: 42%; top: 8px; font-size: 24px; }
  .pf-flow-cards,
  .pf-tool-grid,
  .pf-style-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pf-ai-photo img,
  .pf-pro-photo img { height: 300px; }
  .pf-cta-photo { width: 100%; opacity: 0.45; }
  .pf-cta-fade { background: rgba(11,11,13,0.62); }
  .pf-cta-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .landing-page .home-nav { padding: 12px 16px; }
  .pf-wrap { width: calc(100% - 32px); }
  .pf-hero-copy h1 { font-size: 36px; }
  .pf-hero-fade {
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.28) 55%, rgba(255,255,255,0.08) 100%);
  }
  .pf-3d-card { position: relative; left: 0; top: 0; width: 100%; }
  .pf-3d-card img { height: 240px; }
  .pf-scribble { left: 12px; top: -6px; }
  .pf-section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-flow-cards,
  .pf-tool-grid,
  .pf-style-grid,
  .pf-pro-stats {
    grid-template-columns: 1fr;
  }
  .landing-page .home-footer-inner,
  .landing-page .home-footer-legal { width: calc(100% - 32px); }
}

/* ---- Auth split (login / signup) ---- */
.auth-page {
  background: #f4f7fb;
  overflow-x: clip;
}

.auth-page .marketing-main {
  min-height: calc(100vh - 72px);
  background: #f4f7fb;
}

.auth-page .home-nav-signin {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--pf-blue) !important;
  border: 1.5px solid #c9dbf8;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}

.auth-page .home-nav-signin:hover {
  border-color: var(--pf-blue);
  color: var(--pf-blue-dark) !important;
}

.auth-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.auth-split-visual {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.auth-split-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
}

.auth-split-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #f7f9fc 0%,
      rgba(247, 249, 252, 0.94) 26%,
      rgba(247, 249, 252, 0.62) 48%,
      rgba(247, 249, 252, 0.18) 68%,
      rgba(247, 249, 252, 0) 82%),
    linear-gradient(180deg,
      rgba(247, 249, 252, 0.28) 0%,
      rgba(247, 249, 252, 0) 16%,
      rgba(247, 249, 252, 0) 72%,
      rgba(247, 249, 252, 0.55) 100%);
  pointer-events: none;
}

.auth-split-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 72px);
  padding: 48px 32px 36px 56px;
  max-width: 560px;
}

.auth-split-copy h1 {
  margin: 16px 0 0;
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--pf-ink);
}

.auth-split-copy h1 span {
  color: var(--pf-blue);
}

.auth-split-copy > p {
  margin: 16px 0 0;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pf-muted);
}

.auth-perks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.auth-perks li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.auth-perk-ico {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-perk-ico svg {
  width: 20px;
  height: 20px;
}

.auth-perks strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pf-ink);
}

.auth-perks span:last-child {
  grid-column: 2;
  font-size: 13px;
  line-height: 1.35;
  color: var(--pf-muted);
}

.auth-quote {
  position: relative;
  margin: 32px 0 0;
  max-width: 360px;
  padding: 16px 18px 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 40, 80, 0.08);
}

.auth-quote-mark {
  position: absolute;
  top: 6px;
  left: 14px;
  font-size: 42px;
  line-height: 1;
  color: var(--pf-blue);
  opacity: 0.28;
  font-family: Georgia, "Times New Roman", serif;
}

.auth-quote blockquote {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pf-ink);
}

.auth-quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.auth-quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.auth-quote strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--pf-ink);
}

.auth-quote small {
  display: block;
  font-size: 12px;
  color: var(--pf-muted);
}

.auth-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: auto 0 0;
  padding: 28px 0 0;
}

.auth-stats li {
  display: grid;
  gap: 2px;
}

.auth-stats li + li {
  border-left: 1px solid #d5dfed;
  padding-left: 22px;
}

.auth-stats strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pf-ink);
}

.auth-stats span {
  font-size: 12px;
  color: var(--pf-muted);
}

.auth-split-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px 48px;
}

.auth-panel-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 60px rgba(15, 40, 80, 0.08);
}

.auth-panel-card--signup {
  width: min(500px, 100%);
  padding: 28px 28px 22px;
}

.auth-split--signup {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1.12fr) minmax(520px, 0.88fr);
  background: #f4f7fb;
  height: calc(100vh - 72px);
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.auth-split--signup .auth-split-photo {
  object-position: 62% 48%;
}

.auth-split--signup .auth-split-fade {
  background:
    linear-gradient(90deg,
      rgba(248, 250, 252, 0.88) 0%,
      rgba(248, 250, 252, 0.62) 22%,
      rgba(248, 250, 252, 0.18) 46%,
      rgba(248, 250, 252, 0) 68%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 16%,
      rgba(255, 255, 255, 0) 70%,
      rgba(244, 247, 251, 0.55) 100%);
}

.auth-split--signup .auth-split-copy {
  justify-content: flex-start;
  padding: 44px 24px 24px 56px;
  max-width: 520px;
  margin-bottom: auto;
  height: auto;
  min-height: 0;
}

.auth-split--signup .auth-split-copy h1 {
  font-size: clamp(42px, 4.8vw, 58px);
  white-space: nowrap;
}

.auth-split--signup .auth-split-copy h1 span {
  display: block;
  white-space: nowrap;
}

.auth-split--signup .auth-perks {
  margin-top: 28px;
  gap: 16px;
}

.auth-split--signup .auth-quote {
  position: relative;
  left: 56px;
  bottom: auto;
  z-index: 3;
  margin: 0 24px 16px 0;
  max-width: 340px;
}

.auth-split--signup .auth-stats {
  position: relative;
  left: 56px;
  right: auto;
  bottom: auto;
  z-index: 3;
  margin: 0;
  padding: 0 24px 8px 0;
}

.auth-split--signup .auth-split-panel {
  align-items: stretch;
  justify-content: flex-end;
  padding: 16px 28px 16px 8px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: auto;
  background: #f4f7fb;
}

.auth-split--signup .auth-panel-card--signup {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 104px);
  padding: 26px 32px 16px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
}

.auth-split--signup .auth-form {
  margin-top: 14px;
  gap: 10px;
}

.auth-split--signup .auth-or {
  margin: 12px 0 10px;
}

.auth-split--signup .auth-secure {
  margin-top: 12px;
}

.auth-split--signup .auth-field input,
.auth-split--signup .auth-input input,
.auth-split--signup .auth-input select {
  height: 44px;
  border-radius: 14px;
}

.auth-split--signup .auth-or {
  margin: 16px 0 12px;
}

.auth-split--signup .auth-secure {
  margin-top: 16px;
}

.auth-panel-card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--pf-ink);
}

.auth-panel-lead {
  margin: 6px 0 0;
  color: var(--pf-muted);
  font-size: 14px;
}

.auth-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.auth-panel-aside {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--pf-muted);
  text-align: right;
  flex: 0 0 auto;
  max-width: 150px;
}

.auth-panel-aside a {
  color: var(--pf-blue);
  font-weight: 700;
}

.auth-panel-card .cart-alert {
  max-width: none;
  margin: 16px 0 0;
}

.auth-google-miss {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.auth-google-miss strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.auth-google-miss p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.auth-google-miss-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 12px;
}

.auth-google-miss-actions .pf-btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.auth-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.auth-field {
  display: grid;
  gap: 6px;
}

.auth-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pf-ink);
}

.auth-field label span {
  color: #ef4444;
}

.auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-field input,
.auth-field select,
.auth-input input,
.auth-input select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--pf-line);
  border-radius: 12px;
  background: #fff;
  color: var(--pf-ink);
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
}

.auth-field input::placeholder,
.auth-input input::placeholder {
  color: #9aa8bb;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-input input[readonly],
.auth-split--signup .auth-field input[readonly],
.auth-split--signup .auth-input input[readonly] {
  background: #f3f6fb;
  color: #4b5563;
}

.auth-input input:focus,
.auth-input select:focus {
  border-color: var(--pf-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.auth-input {
  position: relative;
}

.auth-input input,
.auth-input select {
  padding-left: 42px;
}

.auth-input-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #93a4b8;
  pointer-events: none;
}

.auth-input-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}

.auth-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #93a4b8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.auth-eye svg {
  width: 18px;
  height: 18px;
}

.auth-eye:hover {
  color: var(--pf-ink);
}

.auth-input select {
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2393a4b8' stroke-width='1.6' d='M1 1.2 6 6.2 11 1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.auth-rules {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.auth-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pf-muted);
}

.auth-rules li::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1.6px solid #c9d4e5;
  border-radius: 50%;
  flex: 0 0 14px;
  box-sizing: border-box;
}

.auth-rules li.is-met {
  color: var(--pf-ink);
}

.auth-rules li.is-met::before {
  background: var(--pf-blue);
  border-color: var(--pf-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

.auth-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--pf-ink);
  cursor: pointer;
}

.auth-check--block {
  margin-top: 2px;
}

.auth-check input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 18px;
  border: 1.6px solid #c9d4e5;
  border-radius: 5px;
  background: #fff;
  display: grid;
  place-content: center;
}

.auth-check input:checked {
  background: var(--pf-blue);
  border-color: var(--pf-blue);
}

.auth-check input:checked::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.auth-check a {
  color: var(--pf-blue);
  font-weight: 700;
}

.auth-check.is-locked {
  cursor: default;
}

.auth-check input:disabled {
  opacity: 1;
}

.auth-legal-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--pf-muted);
}

.auth-legal-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pf-muted);
}

.auth-legal-status .is-ok {
  color: #1f7a4d;
}

.legal-doc {
  padding: 48px 24px 80px;
  background: #f6f8fc;
}

.legal-doc-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 24px;
  padding: 40px 44px 36px;
  box-shadow: 0 18px 40px rgba(20, 36, 70, 0.06);
}

.legal-doc-card h1 {
  margin: 8px 0 0;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.04em;
}

.legal-doc-meta {
  margin: 10px 0 0;
  color: var(--pf-muted);
  font-size: 14px;
}

.legal-doc-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--pf-ink);
  font-size: 14px;
  line-height: 1.5;
}

.legal-doc-body {
  margin-top: 28px;
  color: var(--pf-ink);
  font-size: 16px;
  line-height: 1.65;
}

.legal-doc-body p {
  margin: 0 0 16px;
}

.legal-doc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
}

.legal-doc-actions .pf-btn-primary:disabled {
  opacity: 0.55;
  cursor: default;
}

.legal-doc-link {
  color: var(--pf-blue);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .legal-doc-card {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }
}

.auth-forgot {
  color: var(--pf-blue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.auth-submit {
  margin-top: 4px;
  height: 48px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.auth-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  color: #9aa8bb;
  font-size: 12px;
}

.auth-or::before,
.auth-or::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--pf-line);
}

.auth-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  background: #fff;
  color: var(--pf-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.auth-social:hover {
  border-color: var(--pf-blue);
  color: var(--pf-ink);
}

.auth-social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.auth-switch {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--pf-muted);
}

.auth-switch a {
  color: var(--pf-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-secure {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 4px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--pf-muted);
}

.auth-secure svg {
  width: 16px;
  height: 16px;
  color: var(--pf-blue);
  margin-top: 2px;
}

.auth-panel-card .recaptcha-notice {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--pf-muted);
}

.auth-panel-card .recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 1081px) {
  .auth-split-visual {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    min-height: calc(100vh - 72px);
  }

  .auth-split--signup .auth-split-visual {
    align-self: stretch;
    position: relative;
    top: auto;
    height: 100%;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    padding-bottom: 28px;
    box-sizing: border-box;
  }

  .auth-split--signup .auth-split-copy {
    min-height: 0;
    height: auto;
    flex: 1 1 auto;
  }

  .auth-split--signup .auth-quote,
  .auth-split--signup .auth-stats {
    flex-shrink: 0;
  }

  .auth-split-copy {
    min-height: 100%;
    height: 100%;
  }
}

@media (max-width: 1080px) {
  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-split--signup {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .auth-split-visual,
  .auth-split-copy {
    min-height: 0;
    height: auto;
  }

  .auth-split-visual {
    min-height: 320px;
  }

  .auth-split-copy {
    padding: 36px 24px 28px;
    max-width: none;
  }

  .auth-split-fade {
    background:
      linear-gradient(180deg,
        rgba(247, 249, 252, 0.2) 0%,
        rgba(247, 249, 252, 0.55) 42%,
        rgba(247, 249, 252, 0.92) 100%);
  }

  .auth-split-panel {
    padding: 8px 16px 48px;
  }

  .auth-split--signup .auth-split-copy {
    padding: 36px 24px 20px;
    max-width: none;
  }

  .auth-split--signup .auth-split-copy h1,
  .auth-split--signup .auth-split-copy h1 span {
    white-space: normal;
  }

  .auth-split--signup .auth-quote,
  .auth-split--signup .auth-stats {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 20px 24px 0;
  }

  .auth-split--signup .auth-stats {
    margin-bottom: 24px;
  }

  .auth-split--signup .auth-split-panel {
    padding: 8px 16px 48px;
  }

  .auth-split--signup .auth-panel-card--signup {
    min-height: 0;
  }

  .auth-panel-head {
    flex-direction: column;
  }

  .auth-panel-aside {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .auth-page .home-nav-signin {
    padding: 7px 14px;
  }

  .auth-split-copy h1 {
    font-size: 34px;
  }

  .auth-field-row,
  .auth-rules,
  .auth-socials {
    grid-template-columns: 1fr;
  }

  .auth-quote {
    max-width: none;
  }

  .auth-panel-card,
  .auth-panel-card--signup {
    padding: 24px 18px 18px;
    border-radius: 22px;
  }
}
