/* ============================================================
   Woord 2025 Design System — public site (marketing + auth)
   Font: Plus Jakarta Sans · scoped to body.wd25
   ============================================================ */

:root {
  --wd-ink: #0d0d12;
  --wd-ink-soft: #4b4b57;
  --wd-ink-faint: #8b8b99;
  --wd-pink: #ff4a8b;
  --wd-purple: #6d49ff;
  --wd-amber: #ffb951;
  --wd-bg: #ffffff;
  --wd-line: #ececf2;
  --wd-radius: 22px;
  --wd-shadow: 0 18px 50px -18px rgba(20, 12, 60, 0.22);
  --wd-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- base ---------- */

body.wd25 {
  margin: 0;
  font-family: var(--wd-font);
  color: var(--wd-ink);
  background: var(--wd-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.wd25 *,
body.wd25 *::before,
body.wd25 *::after { box-sizing: border-box; }

body.wd25 h1, body.wd25 h2, body.wd25 h3, body.wd25 h4 {
  font-family: var(--wd-font);
  letter-spacing: -0.015em;
}

body.wd25 img { max-width: 100%; }

body.wd25 a { color: var(--wd-purple); text-decoration: none; }

body.wd25 textarea,
body.wd25 input,
body.wd25 select,
body.wd25 button { font-family: var(--wd-font); }

body.wd25 .wd-nav-links a { color: var(--wd-ink); }
body.wd25 .wd-nav-links a:hover { color: var(--wd-purple); }
body.wd25 .wd-mobile-menu a { color: var(--wd-ink); }
body.wd25 .wd-footer a { color: #b9b9c7; }
body.wd25 .wd-footer a:hover { color: #fff; }
body.wd25 .wd-footer-brand a { color: #d9d9e6; text-decoration: underline; }
body.wd25 .wd-social-btn { color: var(--wd-ink); }

.wd-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.wd-section { padding: 90px 0; }

.wd-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.wd-section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
}

.wd-section-head p {
  color: var(--wd-ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
}

.wd-grad {
  background: linear-gradient(92deg, var(--wd-purple) 0%, var(--wd-pink) 55%, var(--wd-amber) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- buttons ---------- */

.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-family: var(--wd-font);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, color 0.15s;
  text-decoration: none;
}

.wd-btn-dark { background: var(--wd-ink); color: #fff !important; box-shadow: 0 14px 30px -12px rgba(13,13,18,0.5); }
.wd-btn-dark:hover { transform: translateY(-2px); background: #201f2b; }

.wd-btn-light { background: #fff; color: var(--wd-ink) !important; border: 1.5px solid var(--wd-line); }
.wd-btn-light:hover { transform: translateY(-2px); border-color: #d5d5e2; }

.wd-btn-grad {
  background: linear-gradient(92deg, var(--wd-purple), var(--wd-pink));
  color: #fff !important;
  box-shadow: 0 14px 32px -12px rgba(109, 73, 255, 0.55);
}
.wd-btn-grad:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* ---------- header / nav ---------- */

.wd-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.2s, box-shadow 0.2s, backdrop-filter 0.2s;
  padding: 14px 0;
}

.wd-nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(20, 12, 60, 0.25);
}

.wd-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wd-logo { display: flex; align-items: center; gap: 10px; }
.wd-logo img { height: 40px; width: auto; }

.wd-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.wd-nav-links a {
  color: var(--wd-ink);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.wd-nav-links a:hover { color: var(--wd-purple); }

.wd-nav-cta { display: flex; align-items: center; gap: 12px; }

.wd-burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--wd-line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.wd-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--wd-ink);
  transition: transform 0.2s, opacity 0.2s;
}

.wd-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wd-burger.open span:nth-child(2) { opacity: 0; }
.wd-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wd-mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 16px auto 16px;
  z-index: 999;
  background: #fff;
  border: 1px solid var(--wd-line);
  border-radius: 18px;
  box-shadow: var(--wd-shadow);
  padding: 18px;
}

.wd-mobile-menu.open { display: block; }

.wd-mobile-menu a {
  display: block;
  padding: 13px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--wd-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--wd-line);
}

.wd-mobile-menu a:last-child { border-bottom: none; }

/* ---------- how it works ---------- */

.wd-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wd-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius);
  padding: 30px 26px;
  transition: transform 0.15s, box-shadow 0.2s;
}

.wd-step:hover { transform: translateY(-4px); box-shadow: var(--wd-shadow); }

.wd-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin-bottom: 18px;
}

.wd-step:nth-child(1) .wd-step-num { background: linear-gradient(135deg, var(--wd-pink), #ff7ab0); }
.wd-step:nth-child(2) .wd-step-num { background: linear-gradient(135deg, var(--wd-purple), #9b6bff); }
.wd-step:nth-child(3) .wd-step-num { background: linear-gradient(135deg, #f59e0b, var(--wd-amber)); }

.wd-step h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.wd-step p { color: var(--wd-ink-soft); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- features bento ---------- */

.wd-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.wd-feature {
  grid-column: span 2;
  background: #fbfbfe;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius);
  padding: 28px 26px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.wd-feature:hover { transform: translateY(-4px); box-shadow: var(--wd-shadow); background: #fff; }

.wd-feature.wide { grid-column: span 3; }

.wd-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid var(--wd-line);
}

.wd-feature h3 { font-size: 17.5px; font-weight: 700; margin: 0 0 8px; }
.wd-feature p { color: var(--wd-ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- testimonials marquee ---------- */

.wd-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 4px 0;
}

.wd-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: wd-scroll 46s linear infinite;
}

.wd-marquee.reverse { animation-direction: reverse; }
.wd-marquee-wrap:hover .wd-marquee { animation-play-state: paused; }

@keyframes wd-scroll {
  to { transform: translateX(-50%); }
}

.wd-quote {
  width: 340px;
  flex: none;
  background: #fff;
  border: 1px solid var(--wd-line);
  border-radius: 18px;
  padding: 22px;
  margin: 8px 0;
}

.wd-quote p { font-size: 14.5px; line-height: 1.6; color: var(--wd-ink); margin: 0 0 16px; }

.wd-quote-who { display: flex; align-items: center; gap: 11px; }
.wd-quote-who img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.wd-quote-who b { display: block; font-size: 13.5px; }
.wd-quote-who span { display: block; font-size: 12px; color: var(--wd-ink-faint); }

/* ---------- pricing ---------- */

.wd-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.wd-plan {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--wd-line);
  border-radius: var(--wd-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.15s;
}

.wd-plan:hover { transform: translateY(-4px); box-shadow: var(--wd-shadow); }

.wd-plan.featured { border-color: var(--wd-purple); box-shadow: 0 18px 50px -18px rgba(109, 73, 255, 0.4); }

.wd-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(92deg, var(--wd-purple), var(--wd-pink));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.wd-plan h3 { font-size: 16px; font-weight: 700; margin: 0 0 12px; color: var(--wd-ink-soft); }

.wd-plan .wd-price { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; }
.wd-plan .wd-price small { font-size: 14px; font-weight: 600; color: var(--wd-ink-faint); }

.wd-plan ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  flex: 1;
}

.wd-plan li {
  font-size: 13.5px;
  color: var(--wd-ink-soft);
  padding: 7px 0 7px 26px;
  position: relative;
}

.wd-plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(109, 73, 255, 0.1);
  color: var(--wd-purple);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pricing trust band */
.wd-trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: #157347;
}

/* ---------- FAQ ---------- */

.wd-faq { max-width: 780px; margin: 0 auto; }

.wd-faq-item {
  border: 1px solid var(--wd-line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.wd-faq-item.open { border-color: #d8d8e6; box-shadow: 0 10px 30px -18px rgba(20, 12, 60, 0.2); }

.wd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--wd-font);
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--wd-ink);
  padding: 18px 20px;
  cursor: pointer;
}

.wd-faq-q .chev {
  flex: none;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f8;
  border: none;
  font-size: 0;           /* hide the ▾ glyph; the chevron is drawn below */
  color: transparent;
  transition: transform 0.25s, background 0.15s;
}

.wd-faq-q .chev::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 11px;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid #6b6b7a;
  border-bottom: 2.5px solid #6b6b7a;
  border-radius: 1px;
  transform: rotate(45deg);
  transition: border-color 0.15s;
}

.wd-faq-q:hover .chev { background: #e9e9f1; }

.wd-faq-item.open .chev {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--wd-purple), var(--wd-pink));
}

.wd-faq-item.open .chev::before { border-color: #fff; }

.wd-faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--wd-ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.wd-faq-item.open .wd-faq-a { display: block; }

/* ---------- CTA band ---------- */

.wd-cta-band {
  border-radius: 26px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(255, 74, 139, 0.35), transparent 60%),
    radial-gradient(600px 300px at 85% 100%, rgba(255, 185, 81, 0.28), transparent 60%),
    linear-gradient(120deg, #17131f, #0d0d12);
}

.wd-cta-band h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; margin: 0 0 12px; }
.wd-cta-band p { color: #c9c9d8; font-size: 15.5px; margin: 0 0 26px; }

/* ---------- footer ---------- */

.wd-footer {
  background: #0d0d12;
  color: #b9b9c7;
  padding: 64px 0 30px;
  margin-top: 0;
}

.wd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wd-footer-brand img { height: 40px; filter: invert(1) brightness(1.6); }
.wd-footer-brand p { font-size: 13.5px; line-height: 1.65; margin: 14px 0 0; max-width: 300px; color: #8f8f9f; }

.wd-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.wd-footer ul { list-style: none; margin: 0; padding: 0; }
.wd-footer li { margin-bottom: 9px; }

.wd-footer a { color: #b9b9c7; font-size: 14px; text-decoration: none; transition: color 0.15s; }
.wd-footer a:hover { color: #fff; }

.wd-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 12.5px;
  color: #8f8f9f;
}

.wd-footer-bottom a { color: #b9b9c7; }

/* ---------- auth pages ---------- */

.wd-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 60px;
  background:
    radial-gradient(700px 400px at 10% 0%, rgba(109, 73, 255, 0.12), transparent 60%),
    radial-gradient(700px 380px at 95% 15%, rgba(255, 74, 139, 0.11), transparent 55%),
    #fff;
}

.wd-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 44px;
  align-items: stretch; /* showcase matches the form height — no dead space above */
  width: 100%;
  max-width: 1080px;
}

.wd-auth-showcase {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* content starts at the top of the panel */
}

/* mini comparison table (register showcase) */
.wd-showcase-compare {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.wd-showcase-compare-row {
  display: grid;
  grid-template-columns: 1fr 64px 64px;
  align-items: center;
  padding: 9px 14px;
  font-size: 13px;
  color: #d8d8e4;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wd-showcase-compare-row:first-child { border-top: none; }
.wd-showcase-compare-row.head { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: #8f8f9f; background: rgba(255,255,255,0.04); }
.wd-showcase-compare-row span:nth-child(2) { text-align: center; color: #8f8f9f; }
.wd-showcase-compare-row span.hl { text-align: center; color: #fff; font-weight: 800; background: linear-gradient(180deg, rgba(109,73,255,0.25), rgba(255,74,139,0.18)); border-radius: 8px; padding: 3px 0; }

.wd-showcase-foot { margin-top: 18px; font-size: 12.5px; color: #8f8f9f; }

/* dashboard steps (login showcase) */
.wd-showcase-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }

.wd-showcase-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #d8d8e4;
  line-height: 1.55;
}

.wd-showcase-step .n {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--wd-purple), var(--wd-pink));
}

.wd-showcase-step b { color: #fff; }

/* animated product showcase (right side of login/register) */

.wd-auth-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 44px 40px;
  color: #fff;
  min-height: 520px;
  background:
    radial-gradient(500px 260px at 20% 0%, rgba(255, 74, 139, 0.35), transparent 60%),
    radial-gradient(520px 300px at 90% 100%, rgba(255, 185, 81, 0.25), transparent 60%),
    linear-gradient(130deg, #191327, #0d0d12);
}

.wd-auth-showcase h2 { font-size: 27px; font-weight: 700; line-height: 1.2; margin: 0 0 8px; }
.wd-auth-showcase .wd-showcase-sub { color: #b9b9c7; font-size: 14.5px; margin: 0 0 22px; }

.wd-auth-showcase ul { list-style: none; margin: 0; padding: 0; position: relative; z-index: 2; }

.wd-auth-showcase li {
  font-size: 14px;
  color: #d8d8e4;
  padding: 7px 0 7px 28px;
  position: relative;
}

.wd-auth-showcase li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd9e7;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* floating voice chips */

.wd-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 14px 7px 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  animation: wd-float 5.2s ease-in-out infinite;
  z-index: 1;
}

.wd-float-chip img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.wd-float-chip small { display: block; font-size: 10px; font-weight: 600; color: #cfcfdd; }

@keyframes wd-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* animated waveform */

.wd-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 46px;
  margin: 24px 0 4px;
  position: relative;
  z-index: 2;
}

.wd-wave span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--wd-purple), var(--wd-pink));
  animation: wd-wave 1.1s ease-in-out infinite;
}

@keyframes wd-wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.wd-auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius);
  box-shadow: var(--wd-shadow);
  padding: 34px 32px;
}

.wd-auth-card h1 { font-size: 25px; font-weight: 800; margin: 0 0 6px; }
.wd-auth-card .wd-auth-sub { color: var(--wd-ink-soft); font-size: 14px; margin: 0 0 22px; }

.wd-input-group { margin-bottom: 14px; }

.wd-input-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--wd-ink-soft);
}

.wd-input {
  width: 100%;
  border: 1.5px solid var(--wd-line);
  border-radius: 12px;
  font-family: var(--wd-font);
  font-size: 15px;
  padding: 13px 15px;
  outline: none;
  color: var(--wd-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.wd-input:focus {
  border-color: var(--wd-purple);
  box-shadow: 0 0 0 4px rgba(109, 73, 255, 0.12);
}

.wd-input.error { border-color: var(--wd-pink); }

.wd-field-error { color: #b3264f; font-size: 12.5px; margin-top: 5px; }

.wd-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 4px 0 16px;
  font-size: 13px;
  color: var(--wd-ink-soft);
}

.wd-auth-row label { display: flex; align-items: center; gap: 7px; cursor: pointer; }

.wd-social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--wd-line);
  border-radius: 12px;
  font-family: var(--wd-font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--wd-ink);
  padding: 12px;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.12s;
  margin-bottom: 18px;
}

.wd-social-btn:hover { transform: translateY(-1px); border-color: #d5d5e2; color: var(--wd-ink); }

.wd-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wd-ink-faint);
  font-size: 12px;
  margin-bottom: 18px;
}

.wd-divider::before, .wd-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--wd-line);
}

.wd-auth-foot { text-align: center; font-size: 13.5px; color: var(--wd-ink-soft); margin-top: 18px; }
.wd-auth-foot a { font-weight: 700; }

.wd-legal-note { font-size: 12px; color: var(--wd-ink-faint); line-height: 1.6; margin-top: 14px; }
.wd-legal-note a { text-decoration: underline; color: var(--wd-ink-soft); }

.wd-alert {
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.wd-alert.error { background: #fff2f5; border: 1px solid #ffd4e0; color: #b3264f; }
.wd-alert.success { background: #eefcf4; border: 1px solid #bfeed6; color: #157347; }

/* legacy flash-messages partial (bootstrap-style classes) */
body.wd25 .alert { border-radius: 12px; padding: 12px 15px; font-size: 13.5px; margin-bottom: 16px; border: 1px solid var(--wd-line); }
body.wd25 .alert-danger { background: #fff2f5; border-color: #ffd4e0; color: #b3264f; }
body.wd25 .alert-success { background: #eefcf4; border-color: #bfeed6; color: #157347; }
body.wd25 .alert .close { float: right; background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; }

/* ---------- voice picker tabs (hero upgrade) ---------- */

.wd-picker-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 11px;
}

.wd-picker-tab {
  border: 1.5px solid var(--wd-line);
  background: #fff;
  color: var(--wd-ink-soft);
  border-radius: 999px;
  font-family: var(--wd-font);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 13px;
  cursor: pointer;
  transition: all 0.15s;
}

.wd-picker-tab.active { background: var(--wd-ink); color: #fff; border-color: var(--wd-ink); }

.wd-chip-group { display: none; }
.wd-chip-group.active { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- about-us story blocks ---------- */
.wd-story-block {
  position: relative;
  padding: 0 0 40px 34px;
  border-left: 2px solid var(--wd-line);
}

.wd-story-block:last-of-type { border-left-color: transparent; }

.wd-story-block::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wd-purple), var(--wd-pink));
  box-shadow: 0 0 0 4px rgba(109, 73, 255, 0.15);
}

.wd-story-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--wd-purple);
  background: rgba(109, 73, 255, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.wd-story-block h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 10px; }
.wd-story-block p { color: var(--wd-ink-soft); font-size: 15.5px; line-height: 1.8; margin: 0; }
.wd-story-block a { text-decoration: underline; }

/* ---------- HTML sitemap ---------- */
.wd-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.wd-sitemap-col h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-bottom: 10px;
  margin-bottom: 12px;
  position: relative;
}

.wd-sitemap-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--wd-purple), var(--wd-pink));
}

.wd-sitemap-col ul { list-style: none; margin: 0; padding: 0; }
.wd-sitemap-col li { padding: 5px 0; }
.wd-sitemap-col a { color: var(--wd-ink-soft); font-size: 14px; font-weight: 600; }
.wd-sitemap-col a:hover { color: var(--wd-purple); }

@media (max-width: 900px) {
  .wd-sitemap-grid { grid-template-columns: 1fr; }
}

/* ---------- legacy interior pages on the new layout (policies, about-us…) ----------
   These pages embed their own old nav/footer inside @section('content'); the new
   layout already provides both, so the legacy ones are suppressed and the body
   content gets clean prose typography. */

body.wd25 .theme-main-menu { display: none !important; }
body.wd25 footer:not(.wd-footer) { display: none !important; }

body.wd25 #breadcrumbs {
  padding: 130px 24px 6px;
  margin: 0 auto;
  max-width: 880px;
}

body.wd25 #breadcrumbs[style] { margin-top: 0 !important; }

body.wd25 #breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--wd-ink-faint);
}

body.wd25 #breadcrumbs ol li + li::before { content: '/'; margin-right: 8px; color: var(--wd-ink-faint); }

body.wd25 #breadcrumbs h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(92deg, var(--wd-ink) 30%, var(--wd-purple) 75%, var(--wd-pink) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* section table of contents under page titles */
body.wd25 .wd-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body.wd25 .wd-toc a {
  border: 1.5px solid var(--wd-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wd-ink);
  text-decoration: none;
  transition: all 0.15s;
}

body.wd25 .wd-toc a:hover { border-color: var(--wd-purple); color: var(--wd-purple); }

body.wd25 main#main { display: block; max-width: 880px; margin: 0 auto; padding: 0 24px 80px; }

body.wd25 main#main h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 56px 0 14px;
  padding-top: 14px;
  position: relative;
}

body.wd25 main#main h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--wd-purple), var(--wd-pink));
}

body.wd25 main#main h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
body.wd25 main#main p, body.wd25 main#main li { color: var(--wd-ink-soft); font-size: 15.5px; line-height: 1.8; }
body.wd25 main#main a { text-decoration: underline; }
body.wd25 main#main img { border-radius: 16px; }

/* anchored sections must clear the fixed header when jumped to */
body.wd25 main#main a[id], body.wd25 [id] { scroll-margin-top: 110px; }

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .wd-auth-grid { grid-template-columns: 1fr; max-width: 480px; }
  .wd-auth-showcase { display: none; }
  .wd-nav-links, .wd-nav-cta { display: none; }
  .wd-burger { display: flex; }
  .wd-steps { grid-template-columns: 1fr; }
  .wd-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd-feature, .wd-feature.wide { grid-column: span 1; }
  .wd-pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd-footer-grid { grid-template-columns: 1fr 1fr; }
  .wd-section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .wd-bento { grid-template-columns: 1fr; }
  .wd-pricing { grid-template-columns: 1fr; }
  .wd-footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .wd-quote { width: 280px; }
  .wd-cta-band { padding: 44px 22px; }
  .wd-auth-card { padding: 26px 20px; }
}
