/* ==========================================================================
   WingDevs website — shared stylesheet
   Everything is scoped under `.wd` (the page wrapper) and every class is
   prefixed `wd-`, so the same markup can be pasted into Gutenberg HTML blocks
   under a stock theme (Blocksy) without fighting its styles.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.wd {
  /* palette */
  --wd-ink: #0b1230;
  --wd-ink-2: #3d4460;
  --wd-ink-3: #6d748a;
  --wd-bg: #ffffff;
  --wd-bg-2: #f6f7fb;
  --wd-bg-3: #eef0f7;
  --wd-line: #e6e9f2;
  --wd-line-2: #d5d9e6;
  --wd-primary: #4c3bff;
  --wd-primary-2: #3b2be6;
  --wd-primary-soft: #eeebff;
  --wd-primary-ink: #2a1fb0;
  --wd-accent: #ff4f8b;
  --wd-accent-soft: #ffe9f1;
  --wd-popup: #6d3bff;
  --wd-suite: #1d78c3;
  --wd-suite-soft: #e6f2fc;
  --wd-store: #f26270;
  --wd-green: #16a34a;
  --wd-green-soft: #e7f7ec;
  --wd-amber: #f59e0b;
  --wd-amber-soft: #fff4dc;
  --wd-dark: #0b1230;
  --wd-dark-2: #131a3a;
  /* type */
  --wd-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wd-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* shape */
  --wd-r-xl: 28px;
  --wd-r-lg: 20px;
  --wd-r-md: 14px;
  --wd-r-sm: 10px;
  --wd-shadow-sm: 0 1px 2px rgba(11, 18, 48, .06), 0 4px 12px rgba(11, 18, 48, .05);
  --wd-shadow-md: 0 8px 24px rgba(11, 18, 48, .10), 0 2px 6px rgba(11, 18, 48, .06);
  --wd-shadow-lg: 0 24px 60px rgba(11, 18, 48, .16), 0 6px 16px rgba(11, 18, 48, .08);
  --wd-container: 1200px;
  --wd-gutter: 24px;

  font-family: var(--wd-font-body);
  color: var(--wd-ink);
  background: var(--wd-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wd *, .wd *::before, .wd *::after { box-sizing: border-box; }
.wd img, .wd svg { display: block; max-width: 100%; }
.wd a { color: inherit; text-decoration: none; }
.wd p { margin: 0 0 1em; }
.wd ul { margin: 0; padding: 0; list-style: none; }
.wd h1, .wd h2, .wd h3, .wd h4 {
  font-family: var(--wd-font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--wd-ink);
}
.wd h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); letter-spacing: -0.035em; line-height: 1.02; }
.wd h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); letter-spacing: -0.03em; }
.wd h3 { font-size: 1.25rem; letter-spacing: -0.015em; line-height: 1.3; }
.wd h4 { font-size: 1rem; }
.wd .wd-lead { font-size: 1.15rem; color: var(--wd-ink-2); max-width: 60ch; }
.wd .wd-muted { color: var(--wd-ink-3); }
.wd .wd-small { font-size: .875rem; }
.wd .wd-hl { position: relative; white-space: nowrap; }
.wd .wd-hl::after {
  content: ''; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .34em; z-index: -1;
  background: linear-gradient(90deg, #ffd36a, #ffa9c6); border-radius: .2em; opacity: .9;
}
.wd .wd-grad {
  background: linear-gradient(92deg, var(--wd-primary) 0%, #8a5cff 45%, var(--wd-accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Layout ------------------------------------------------------------------ */
.wd .wd-container { width: 100%; max-width: var(--wd-container); margin: 0 auto; padding: 0 var(--wd-gutter); }
.wd .wd-container--narrow { max-width: 860px; }
.wd .wd-section { padding: clamp(64px, 8vw, 112px) 0; position: relative; }
.wd .wd-section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.wd .wd-section--alt { background: var(--wd-bg-2); }
.wd .wd-section--dark { background: var(--wd-dark); color: #d7dbea; }
.wd .wd-section--dark h1, .wd .wd-section--dark h2, .wd .wd-section--dark h3, .wd .wd-section--dark h4 { color: #fff; }
.wd .wd-section--dark .wd-lead, .wd .wd-section--dark .wd-muted { color: #aab1c9; }
.wd .wd-center { text-align: center; }
.wd .wd-center .wd-lead { margin-left: auto; margin-right: auto; }
.wd .wd-sec-head { max-width: 720px; margin: 0 auto 56px; }
.wd .wd-sec-head--left { margin-left: 0; }
.wd .wd-grid { display: grid; gap: 24px; }
.wd .wd-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wd .wd-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wd .wd-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wd .wd-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.wd .wd-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
@media (max-width: 1024px) {
  .wd .wd-grid-4, .wd .wd-grid-5, .wd .wd-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .wd .wd-grid-2, .wd .wd-grid-3, .wd .wd-grid-4, .wd .wd-grid-5, .wd .wd-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd .wd-grid { gap: 16px; }
}
@media (max-width: 520px) {
  .wd .wd-grid-2, .wd .wd-grid-3, .wd .wd-grid-4, .wd .wd-grid-5, .wd .wd-grid-6 { grid-template-columns: minmax(0, 1fr); }
  .wd .wd-grid-6.wd-grid--keep2, .wd .wd-grid-4.wd-grid--keep2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Eyebrow / badges / buttons ----------------------------------------------- */
.wd .wd-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--wd-font-display); font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--wd-primary); margin-bottom: 18px;
}
.wd .wd-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.wd .wd-eyebrow--pink { color: var(--wd-accent); }
.wd .wd-eyebrow--suite { color: var(--wd-suite); }
.wd .wd-eyebrow--green { color: var(--wd-green); }
.wd .wd-section--dark .wd-eyebrow { color: #a99bff; }
.wd .wd-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: var(--wd-bg-2); border: 1px solid var(--wd-line); font-size: .8rem; font-weight: 600; color: var(--wd-ink-2);
}
.wd .wd-pill--primary { background: var(--wd-primary-soft); border-color: transparent; color: var(--wd-primary-ink); }
.wd .wd-pill--pink { background: var(--wd-accent-soft); border-color: transparent; color: #b8144d; }
.wd .wd-pill--green { background: var(--wd-green-soft); border-color: transparent; color: #12753a; }
.wd .wd-pill--amber { background: var(--wd-amber-soft); border-color: transparent; color: #8a5a00; }
.wd .wd-pill--suite { background: var(--wd-suite-soft); border-color: transparent; color: #0e4f86; }
.wd .wd-pill svg { width: 14px; height: 14px; }
.wd .wd-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.wd .wd-tag--free { background: var(--wd-green-soft); color: #12753a; }
.wd .wd-tag--pro { background: linear-gradient(90deg, #6d3bff, #ff4f8b); color: #fff; }
.wd .wd-tag--soon { background: var(--wd-amber-soft); color: #8a5a00; }

.wd .wd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 12px; font-family: var(--wd-font-display); font-weight: 700; font-size: .95rem;
  line-height: 1; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.wd .wd-btn svg { width: 18px; height: 18px; }
.wd .wd-btn:hover { transform: translateY(-1px); }
.wd .wd-btn--primary { background: var(--wd-primary); color: #fff; box-shadow: 0 8px 20px rgba(76, 59, 255, .28); }
.wd .wd-btn--primary:hover { background: var(--wd-primary-2); box-shadow: 0 12px 26px rgba(76, 59, 255, .34); }
.wd .wd-btn--dark { background: var(--wd-ink); color: #fff; }
.wd .wd-btn--dark:hover { background: #1a2350; }
.wd .wd-btn--white { background: #fff; color: var(--wd-ink); box-shadow: var(--wd-shadow-sm); }
.wd .wd-btn--outline { background: transparent; color: var(--wd-ink); border-color: var(--wd-line-2); }
.wd .wd-btn--outline:hover { border-color: var(--wd-ink); }
.wd .wd-btn--ghost { background: transparent; color: var(--wd-primary); padding-left: 8px; padding-right: 8px; }
.wd .wd-btn--ghost:hover { transform: none; text-decoration: underline; text-underline-offset: 4px; }
.wd .wd-btn--lg { padding: 18px 30px; font-size: 1.05rem; border-radius: 14px; }
.wd .wd-btn--sm { padding: 10px 16px; font-size: .85rem; border-radius: 10px; }
.wd .wd-section--dark .wd-btn--outline { color: #fff; border-color: rgba(255, 255, 255, .25); }
.wd .wd-section--dark .wd-btn--outline:hover { border-color: #fff; }
.wd .wd-btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.wd .wd-link { color: var(--wd-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.wd .wd-link svg { width: 16px; height: 16px; transition: transform .15s; }
.wd .wd-link:hover svg { transform: translateX(3px); }

/* Header ------------------------------------------------------------------- */
.wd .wd-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.wd .wd-header.is-scrolled { border-bottom-color: var(--wd-line); box-shadow: 0 6px 24px rgba(11, 18, 48, .06); }
.wd .wd-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.wd .wd-logo { display: inline-flex; align-items: center; }
.wd .wd-logo img, .wd .wd-logo svg { height: 34px; width: auto; }
.wd .wd-nav { display: flex; align-items: center; gap: 4px; }
.wd .wd-nav > li { position: relative; }
.wd .wd-nav > li > a, .wd .wd-nav > li > button {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .95rem; color: var(--wd-ink-2);
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.wd .wd-nav > li > a:hover, .wd .wd-nav > li > button:hover, .wd .wd-nav > li.is-active > a { color: var(--wd-ink); background: var(--wd-bg-2); }
.wd .wd-nav > li > button svg { width: 14px; height: 14px; transition: transform .2s; }
.wd .wd-nav > li.is-open > button svg { transform: rotate(180deg); }
.wd .wd-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px; background: #fff; border: 1px solid var(--wd-line);
  border-radius: 16px; box-shadow: var(--wd-shadow-lg); padding: 10px; display: none; z-index: 60;
}
.wd .wd-nav > li.is-open > .wd-menu { display: block; }
.wd .wd-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; }
.wd .wd-menu a:hover { background: var(--wd-bg-2); }
.wd .wd-menu a img, .wd .wd-menu a svg { width: 36px; height: 36px; flex: none; border-radius: 10px; }
.wd .wd-menu strong { display: block; font-weight: 700; font-size: .95rem; }
.wd .wd-menu span { display: block; font-size: .8rem; color: var(--wd-ink-3); }
.wd .wd-header__cta { display: flex; align-items: center; gap: 10px; }
.wd .wd-burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--wd-line); background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.wd .wd-burger svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .wd .wd-nav-wrap { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--wd-line); box-shadow: var(--wd-shadow-lg); padding: 12px 24px 24px; }
  .wd .wd-header.is-open .wd-nav-wrap { display: block; }
  .wd .wd-nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .wd .wd-nav > li > a, .wd .wd-nav > li > button { width: 100%; justify-content: space-between; padding: 12px 10px; }
  .wd .wd-menu { position: static; box-shadow: none; border: 0; padding: 0 0 8px 8px; min-width: 0; }
  .wd .wd-header__cta .wd-btn--outline { display: none; }
  .wd .wd-burger { display: inline-flex; }
  .wd .wd-nav-wrap .wd-btn-row { margin-top: 12px; }
}
@media (min-width: 961px) { .wd .wd-nav-wrap .wd-btn-row { display: none; } }

/* Cards -------------------------------------------------------------------- */
.wd .wd-card {
  background: #fff; border: 1px solid var(--wd-line); border-radius: var(--wd-r-lg); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative;
}
.wd .wd-card:hover { transform: translateY(-3px); box-shadow: var(--wd-shadow-md); border-color: var(--wd-line-2); }
.wd .wd-card--static:hover { transform: none; box-shadow: none; border-color: var(--wd-line); }
.wd .wd-card--soft { background: var(--wd-bg-2); border-color: transparent; }
.wd .wd-card h3 { margin-top: 0; }
.wd .wd-card p:last-child { margin-bottom: 0; }
.wd .wd-icon {
  width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--wd-primary-soft); color: var(--wd-primary); margin-bottom: 18px; flex: none;
}
.wd .wd-icon svg { width: 24px; height: 24px; }
.wd .wd-icon--pink { background: var(--wd-accent-soft); color: #d61d5f; }
.wd .wd-icon--green { background: var(--wd-green-soft); color: var(--wd-green); }
.wd .wd-icon--amber { background: var(--wd-amber-soft); color: #b46b00; }
.wd .wd-icon--suite { background: var(--wd-suite-soft); color: var(--wd-suite); }
.wd .wd-icon--dark { background: var(--wd-ink); color: #fff; }
.wd .wd-icon--sm { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 0; }
.wd .wd-icon--sm svg { width: 18px; height: 18px; }
.wd .wd-card--feature p { color: var(--wd-ink-2); font-size: .95rem; }
.wd .wd-section--dark .wd-card { background: var(--wd-dark-2); border-color: rgba(255, 255, 255, .08); }
.wd .wd-section--dark .wd-card p { color: #aab1c9; }
.wd .wd-section--dark .wd-icon { background: rgba(255, 255, 255, .08); color: #c7bdff; }

/* Product cards (home) */
.wd .wd-product { display: flex; flex-direction: column; gap: 16px; padding: 32px; overflow: hidden; }
.wd .wd-product__logo { display: flex; align-items: center; gap: 14px; }
.wd .wd-product__logo img { width: 52px; height: 52px; border-radius: 14px; }
.wd .wd-product__logo strong { font-family: var(--wd-font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.wd .wd-product__logo small { display: block; font-size: .8rem; color: var(--wd-ink-3); font-weight: 500; }
.wd .wd-product p { color: var(--wd-ink-2); }
.wd .wd-product__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wd .wd-product__visual { margin: 6px -32px -32px; padding: 26px 32px 0; background: linear-gradient(180deg, var(--wd-bg-2), #fff); border-top: 1px solid var(--wd-line); min-height: 190px; overflow: hidden; }
.wd .wd-product--soon { opacity: .85; }

/* Split (text + visual) ---------------------------------------------------- */
.wd .wd-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wd .wd-split--rev > :first-child { order: 2; }
.wd .wd-split__text { max-width: 520px; }
.wd .wd-split__text h2 { margin-bottom: 16px; }
.wd .wd-split__text .wd-lead { margin-bottom: 24px; }
@media (max-width: 900px) {
  .wd .wd-split { grid-template-columns: 1fr; gap: 36px; }
  .wd .wd-split--rev > :first-child { order: 0; }
  .wd .wd-split__text { max-width: none; }
}
.wd .wd-checks { display: grid; gap: 12px; margin: 22px 0 28px; }
.wd .wd-checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--wd-ink-2); }
.wd .wd-checks li strong { color: var(--wd-ink); }
.wd .wd-checks li::before {
  content: ''; flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--wd-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.wd .wd-checks--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .wd .wd-checks--2 { grid-template-columns: 1fr; } }
.wd .wd-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin: 24px 0; }
.wd .wd-minis h4 { margin: 0 0 4px; display: flex; align-items: center; gap: 8px; }
.wd .wd-minis h4 svg { width: 18px; height: 18px; color: var(--wd-primary); }
.wd .wd-minis p { margin: 0; font-size: .92rem; color: var(--wd-ink-2); }
@media (max-width: 560px) { .wd .wd-minis { grid-template-columns: 1fr; } }

/* Visual panel (tinted container for mockups) */
.wd .wd-panel {
  position: relative; border-radius: var(--wd-r-xl); padding: 40px; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 100% at 0% 0%, #ebe7ff 0%, #f4f2ff 45%, #fff0f6 100%);
}
.wd .wd-panel--suite { background: radial-gradient(120% 100% at 0% 0%, #dcefff 0%, #eaf4fe 45%, #eef8ff 100%); }
.wd .wd-panel--mint { background: radial-gradient(120% 100% at 0% 0%, #dcf7e6 0%, #ecfbf1 45%, #f3fff7 100%); }
.wd .wd-panel--sun { background: radial-gradient(120% 100% at 0% 0%, #fff0d0 0%, #fff6e3 45%, #fff0f0 100%); }
.wd .wd-panel--dark { background: radial-gradient(120% 100% at 0% 0%, #1d2352 0%, #0f1533 60%, #0b1230 100%); }
.wd .wd-panel--dots::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(76, 59, 255, .16) 1px, transparent 1px); background-size: 18px 18px;
}
@media (max-width: 600px) { .wd .wd-panel { padding: 24px; } }

/* Browser window mockup */
.wd .wd-browser { background: #fff; border-radius: 16px; box-shadow: var(--wd-shadow-lg); overflow: hidden; border: 1px solid rgba(11, 18, 48, .08); }
.wd .wd-browser__bar { height: 36px; background: #f3f4f9; border-bottom: 1px solid var(--wd-line); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.wd .wd-browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d9dce8; }
.wd .wd-browser__bar i:nth-child(1) { background: #ff7b72; } .wd .wd-browser__bar i:nth-child(2) { background: #ffcc4d; } .wd .wd-browser__bar i:nth-child(3) { background: #4bd37b; }
.wd .wd-browser__url { margin-left: 10px; flex: 1; height: 20px; border-radius: 6px; background: #fff; border: 1px solid var(--wd-line); font-size: 10px; color: var(--wd-ink-3); display: flex; align-items: center; padding: 0 8px; }
.wd .wd-browser__body { position: relative; min-height: 300px; background: #fff; }
/* page skeleton inside the browser */
.wd .wd-skel { padding: 22px 26px; display: grid; gap: 14px; }
.wd .wd-skel__nav { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.wd .wd-skel__nav i { height: 8px; border-radius: 4px; background: var(--wd-bg-3); display: block; width: 44px; }
.wd .wd-skel__nav i:first-child { width: 64px; height: 14px; border-radius: 4px; background: #d9dce8; }
.wd .wd-skel__nav i:last-child { margin-left: auto; width: 60px; height: 18px; border-radius: 9px; background: #d9dce8; }
.wd .wd-skel__hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: center; }
.wd .wd-skel__lines i { display: block; height: 10px; border-radius: 5px; background: var(--wd-bg-3); margin-bottom: 8px; }
.wd .wd-skel__lines i:first-child { height: 20px; width: 80%; background: #d9dce8; }
.wd .wd-skel__lines i:nth-child(2) { width: 65%; }
.wd .wd-skel__lines i:nth-child(3) { width: 50%; }
.wd .wd-skel__img { aspect-ratio: 4 / 3; border-radius: 10px; background: linear-gradient(135deg, #e9ecf6, #f6f7fb); }
.wd .wd-skel__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wd .wd-skel__cards i { display: block; height: 70px; border-radius: 10px; background: var(--wd-bg-2); border: 1px solid var(--wd-line); }
.wd .wd-dim { position: absolute; inset: 0; background: rgba(11, 18, 48, .42); backdrop-filter: blur(1.5px); }

/* Popup mockups ------------------------------------------------------------ */
.wd .wd-pm { background: #fff; border-radius: 16px; box-shadow: var(--wd-shadow-lg); overflow: hidden; position: relative; font-size: 13px; }
.wd .wd-pm__x { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: rgba(11, 18, 48, .08); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--wd-ink-2); }
.wd .wd-pm__img { aspect-ratio: 16 / 9; background: linear-gradient(135deg, #6d3bff, #ff4f8b 70%, #ffb86b); position: relative; overflow: hidden; }
.wd .wd-pm__img::after { content: ''; position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .18); right: -12%; bottom: -30%; }
.wd .wd-pm__body { padding: 20px 22px 22px; }
.wd .wd-pm__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--wd-primary); margin-bottom: 6px; }
.wd .wd-pm__title { font-family: var(--wd-font-display); font-weight: 800; font-size: 20px; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 6px; color: var(--wd-ink); }
.wd .wd-pm__text { color: var(--wd-ink-2); margin: 0 0 14px; font-size: 12.5px; }
.wd .wd-pm__field { display: flex; gap: 8px; }
.wd .wd-pm__input { flex: 1; height: 38px; border: 1px solid var(--wd-line-2); border-radius: 9px; padding: 0 12px; display: flex; align-items: center; color: var(--wd-ink-3); font-size: 12px; background: #fff; }
.wd .wd-pm__btn { height: 38px; padding: 0 16px; border-radius: 9px; background: var(--wd-primary); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: 12.5px; white-space: nowrap; }
.wd .wd-pm__btn--dark { background: var(--wd-ink); }
.wd .wd-pm__btn--pink { background: var(--wd-accent); }
.wd .wd-pm__fine { font-size: 10.5px; color: var(--wd-ink-3); margin: 10px 0 0; }
.wd .wd-pm--split { display: grid; grid-template-columns: 42% 1fr; }
.wd .wd-pm--split .wd-pm__img { aspect-ratio: auto; height: 100%; min-height: 200px; }
/* bar */
.wd .wd-bar { display: flex; align-items: center; gap: 14px; padding: 10px 16px; background: var(--wd-ink); color: #fff; border-radius: 12px; box-shadow: var(--wd-shadow-md); font-size: 12.5px; }
.wd .wd-bar strong { font-family: var(--wd-font-display); font-weight: 700; }
.wd .wd-bar__count { display: flex; gap: 6px; margin-left: auto; }
.wd .wd-bar__count b { background: rgba(255, 255, 255, .12); border-radius: 6px; padding: 4px 7px; font-variant-numeric: tabular-nums; font-size: 12px; }
.wd .wd-bar .wd-pm__btn { height: 30px; padding: 0 12px; font-size: 11.5px; }
/* coupon */
.wd .wd-coupon { display: flex; align-items: center; gap: 10px; }
.wd .wd-coupon__code { flex: 1; border: 1.5px dashed var(--wd-primary); border-radius: 9px; padding: 8px 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; letter-spacing: .12em; color: var(--wd-primary-ink); background: var(--wd-primary-soft); text-align: center; }
/* toast */
.wd .wd-toast { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; box-shadow: var(--wd-shadow-lg); padding: 10px 14px 10px 10px; font-size: 12px; color: var(--wd-ink-2); border: 1px solid var(--wd-line); }
.wd .wd-toast__av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #ffb86b, #ff4f8b); flex: none; }
.wd .wd-toast b { color: var(--wd-ink); }
.wd .wd-toast small { display: block; color: var(--wd-ink-3); font-size: 10.5px; }
/* yes/no */
.wd .wd-pm__choices { display: flex; gap: 8px; }
.wd .wd-pm__choices span { flex: 1; text-align: center; padding: 9px; border-radius: 9px; border: 1px solid var(--wd-line-2); font-weight: 600; font-size: 12px; }
.wd .wd-pm__choices span:first-child { background: var(--wd-primary); border-color: transparent; color: #fff; }
/* countdown blocks */
.wd .wd-cd { display: flex; gap: 8px; margin: 12px 0 14px; }
.wd .wd-cd b { flex: 1; text-align: center; background: var(--wd-bg-2); border: 1px solid var(--wd-line); border-radius: 10px; padding: 8px 4px; font-family: var(--wd-font-display); font-weight: 800; font-size: 18px; font-variant-numeric: tabular-nums; }
.wd .wd-cd b small { display: block; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wd-ink-3); margin-top: 2px; }

/* Hero composition (home + wing popup) */
.wd .wd-hero { padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px); overflow: hidden; position: relative; }
.wd .wd-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(109, 59, 255, .14), transparent 60%),
    radial-gradient(40% 40% at 10% 90%, rgba(255, 79, 139, .10), transparent 60%);
}
.wd .wd-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.wd .wd-hero__text h1 { margin-bottom: 20px; }
.wd .wd-hero__text .wd-lead { font-size: 1.2rem; margin-bottom: 30px; }
.wd .wd-hero__trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; font-size: .875rem; color: var(--wd-ink-2); }
.wd .wd-hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.wd .wd-hero__trust svg { width: 18px; height: 18px; color: var(--wd-green); }
.wd .wd-stars { color: #f5a524; letter-spacing: -1px; }
@media (max-width: 960px) {
  .wd .wd-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .wd .wd-hero__text { text-align: center; }
  .wd .wd-hero__text .wd-lead { margin-left: auto; margin-right: auto; }
  .wd .wd-hero__text .wd-btn-row, .wd .wd-hero__trust { justify-content: center; }
}
.wd .wd-stage { position: relative; padding: 24px 0 40px; }
.wd .wd-stage .wd-browser { margin-left: 0; }
.wd .wd-stage__float { position: absolute; z-index: 3; }
.wd .wd-stage__modal { position: absolute; z-index: 2; left: 50%; top: 47%; transform: translate(-50%, -50%); width: min(330px, 78%); }
.wd .wd-float { animation: wd-float 6s ease-in-out infinite; }
.wd .wd-float--2 { animation-duration: 7.5s; animation-delay: -2s; }
.wd .wd-float--3 { animation-duration: 8.5s; animation-delay: -4s; }
@keyframes wd-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .wd .wd-float { animation: none; } }

/* Logo strip / marquee ----------------------------------------------------- */
.wd .wd-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.wd .wd-logos li { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--wd-line); font-weight: 600; font-size: .9rem; color: var(--wd-ink-2); }
.wd .wd-logos li i { width: 22px; height: 22px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 800; font-family: var(--wd-font-display); flex: none; }
.wd .wd-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.wd .wd-marquee__track { display: flex; gap: 18px; width: max-content; animation: wd-marquee 60s linear infinite; }
.wd .wd-marquee--rev .wd-marquee__track { animation-direction: reverse; }
.wd .wd-marquee:hover .wd-marquee__track { animation-play-state: paused; }
.wd .wd-marquee__track > * { flex: none; }
@keyframes wd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wd .wd-marquee__track { animation: none; } }
.wd .wd-shot { width: 300px; aspect-ratio: 3 / 2; border-radius: 14px; overflow: hidden; border: 1px solid var(--wd-line); background: #fff; box-shadow: var(--wd-shadow-sm); position: relative; }
.wd .wd-shot img { width: 100%; height: 100%; object-fit: cover; }
.wd .wd-shot figcaption { position: absolute; left: 10px; bottom: 10px; background: rgba(11, 18, 48, .78); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
.wd .wd-shot--sm { width: 240px; }
.wd .wd-shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wd .wd-shot-grid .wd-shot { width: auto; }
@media (max-width: 900px) { .wd .wd-shot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .wd .wd-shot-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .wd .wd-shot figcaption { display: none; } }
.wd .wd-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.wd .wd-chips span { padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--wd-line); font-size: .85rem; font-weight: 600; color: var(--wd-ink-2); }
.wd .wd-chips span.is-active { background: var(--wd-ink); color: #fff; border-color: var(--wd-ink); }

/* Popup type grid ---------------------------------------------------------- */
.wd .wd-type { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.wd .wd-type__img { aspect-ratio: 3 / 2; background: var(--wd-bg-2); border-bottom: 1px solid var(--wd-line); overflow: hidden; }
.wd .wd-type__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wd .wd-type:hover .wd-type__img img { transform: scale(1.04); }
.wd .wd-type__body { padding: 16px 18px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.wd .wd-type__body strong { font-family: var(--wd-font-display); font-weight: 700; font-size: .98rem; letter-spacing: -.01em; display: block; }
.wd .wd-type__body span { font-size: .82rem; color: var(--wd-ink-3); display: block; margin-top: 2px; }
.wd .wd-type-list { display: flex; flex-wrap: wrap; gap: 8px; }
.wd .wd-type-list li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--wd-line); background: #fff; font-size: .875rem; font-weight: 600; color: var(--wd-ink-2); }
.wd .wd-type-list li svg { width: 16px; height: 16px; color: var(--wd-primary); }
.wd .wd-type-list li .wd-tag { margin-left: 2px; }

/* Tabs (Growfund-style feature explorer) ----------------------------------- */
.wd .wd-tabs { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.wd .wd-tabs__list { display: grid; gap: 4px; position: sticky; top: 100px; }
.wd .wd-tabs__list button {
  text-align: left; background: none; border: 0; border-left: 3px solid var(--wd-line); padding: 14px 18px; cursor: pointer; font-family: inherit;
  color: var(--wd-ink-2); border-radius: 0 12px 12px 0; transition: background .15s, border-color .15s;
}
.wd .wd-tabs__list button strong { display: flex; align-items: center; gap: 10px; font-family: var(--wd-font-display); font-size: 1.02rem; font-weight: 700; color: var(--wd-ink); letter-spacing: -.01em; }
.wd .wd-tabs__list button strong svg { width: 18px; height: 18px; color: var(--wd-primary); }
.wd .wd-tabs__list button span { display: none; font-size: .9rem; margin-top: 6px; color: var(--wd-ink-2); }
.wd .wd-tabs__list button.is-active { border-left-color: var(--wd-primary); background: var(--wd-bg-2); }
.wd .wd-tabs__list button.is-active span { display: block; }
.wd .wd-tabs__panel { display: none; }
.wd .wd-tabs__panel.is-active { display: block; animation: wd-fade .35s ease; }
@keyframes wd-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  .wd .wd-tabs { grid-template-columns: 1fr; gap: 24px; }
  .wd .wd-tabs__list { position: static; display: flex; overflow-x: auto; gap: 8px; padding-bottom: 6px; scrollbar-width: none; }
  .wd .wd-tabs__list::-webkit-scrollbar { display: none; }
  .wd .wd-tabs__list button { flex: none; border: 1px solid var(--wd-line); border-radius: 999px; padding: 10px 16px; }
  .wd .wd-tabs__list button.is-active { border-color: var(--wd-ink); background: var(--wd-ink); }
  .wd .wd-tabs__list button.is-active strong, .wd .wd-tabs__list button.is-active strong svg { color: #fff; }
  .wd .wd-tabs__list button span { display: none !important; }
}
.wd .wd-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 20px; }
.wd .wd-feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--wd-ink-2); }
.wd .wd-feature-list li::before { content: ''; flex: none; width: 18px; height: 18px; border-radius: 50%; margin-top: 3px; background: var(--wd-primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c3bff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat; }
@media (max-width: 560px) { .wd .wd-feature-list { grid-template-columns: 1fr; } }

/* Admin-style mockups ------------------------------------------------------ */
.wd .wd-ui { background: #fff; border-radius: 14px; border: 1px solid var(--wd-line); box-shadow: var(--wd-shadow-md); overflow: hidden; font-size: 12px; color: var(--wd-ink-2); }
.wd .wd-ui__top { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--wd-line); background: #fafbfe; }
.wd .wd-ui__top b { color: var(--wd-ink); font-family: var(--wd-font-display); font-weight: 700; }
.wd .wd-ui__tabs { display: flex; gap: 2px; margin-left: auto; }
.wd .wd-ui__tabs span { padding: 5px 10px; border-radius: 7px; font-weight: 600; }
.wd .wd-ui__tabs span.is-active { background: var(--wd-primary-soft); color: var(--wd-primary-ink); }
.wd .wd-ui__row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--wd-line); }
.wd .wd-ui__row:last-child { border-bottom: 0; }
.wd .wd-ui__row label { font-weight: 600; color: var(--wd-ink); }
.wd .wd-ui__row small { display: block; font-weight: 400; color: var(--wd-ink-3); font-size: 11px; }
.wd .wd-ui__input { height: 30px; border: 1px solid var(--wd-line-2); border-radius: 7px; display: flex; align-items: center; padding: 0 10px; background: #fff; color: var(--wd-ink); }
.wd .wd-ui__select { height: 30px; border: 1px solid var(--wd-line-2); border-radius: 7px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; background: #fff; color: var(--wd-ink); }
.wd .wd-ui__select::after { content: ''; width: 7px; height: 7px; border-right: 1.5px solid var(--wd-ink-3); border-bottom: 1.5px solid var(--wd-ink-3); transform: rotate(45deg) translateY(-2px); }
.wd .wd-ui__toggle { width: 34px; height: 20px; border-radius: 10px; background: var(--wd-green); position: relative; display: inline-block; vertical-align: middle; }
.wd .wd-ui__toggle::after { content: ''; position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.wd .wd-ui__toggle--off { background: #cfd4e3; }
.wd .wd-ui__toggle--off::after { right: auto; left: 3px; }
.wd .wd-ui__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.wd .wd-ui__chips span { padding: 4px 9px; border-radius: 999px; background: var(--wd-bg-2); border: 1px solid var(--wd-line); font-weight: 600; font-size: 11px; }
.wd .wd-ui__chips span.is-on { background: var(--wd-primary-soft); border-color: transparent; color: var(--wd-primary-ink); }
.wd .wd-ui__list { display: grid; gap: 6px; }
.wd .wd-ui__list span { display: flex; align-items: center; gap: 8px; }
.wd .wd-ui__list span::before { content: ''; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid var(--wd-line-2); background: #fff; }
.wd .wd-ui__list span.is-on::before { background: var(--wd-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat; border-color: var(--wd-primary); }
.wd .wd-ui__slider { height: 4px; border-radius: 2px; background: var(--wd-bg-3); position: relative; }
.wd .wd-ui__slider::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 40%; background: var(--wd-primary); border-radius: 2px; }
.wd .wd-ui__slider::after { content: ''; position: absolute; left: 40%; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--wd-primary); transform: translate(-50%, -50%); }
.wd .wd-ui__swatches { display: flex; gap: 6px; }
.wd .wd-ui__swatches i { width: 22px; height: 22px; border-radius: 6px; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--wd-line-2); }

/* KPI + chart mockup */
.wd .wd-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 12px; }
.wd .wd-kpi { background: var(--wd-bg-2); border-radius: 10px; padding: 10px 12px; }
.wd .wd-kpi small { display: block; font-size: 10.5px; color: var(--wd-ink-3); font-weight: 600; }
.wd .wd-kpi b { display: block; font-family: var(--wd-font-display); font-size: 18px; color: var(--wd-ink); letter-spacing: -.02em; }
.wd .wd-kpi em { font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--wd-green); }
.wd .wd-kpi em.down { color: #d6335a; }
.wd .wd-chart { padding: 6px 12px 12px; }
.wd .wd-chart svg { width: 100%; height: auto; }
@media (max-width: 560px) { .wd .wd-kpis { grid-template-columns: repeat(2, 1fr); } }

/* Stats -------------------------------------------------------------------- */
.wd .wd-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wd .wd-stat { padding: 28px 24px; border-radius: var(--wd-r-lg); background: #fff; border: 1px solid var(--wd-line); text-align: center; }
.wd .wd-stat b { display: block; font-family: var(--wd-font-display); font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--wd-ink); margin-bottom: 8px; }
.wd .wd-stat b span { color: var(--wd-primary); }
.wd .wd-stat small { color: var(--wd-ink-3); font-weight: 500; font-size: .9rem; }
.wd .wd-section--dark .wd-stat { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.wd .wd-section--dark .wd-stat b { color: #fff; }
.wd .wd-section--dark .wd-stat b span { color: #c7bdff; }
@media (max-width: 760px) { .wd .wd-stats { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials ------------------------------------------------------------- */
.wd .wd-quote { display: flex; flex-direction: column; gap: 18px; }
.wd .wd-quote__text { font-size: 1.02rem; color: var(--wd-ink); line-height: 1.6; flex: 1; }
.wd .wd-quote__text::before { content: '“'; display: block; font-family: var(--wd-font-display); font-size: 2.6rem; line-height: .6; color: var(--wd-primary); margin-bottom: 14px; }
.wd .wd-quote__who { display: flex; align-items: center; gap: 12px; }
.wd .wd-quote__av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--wd-primary), var(--wd-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--wd-font-display); flex: none; }
.wd .wd-quote__who strong { display: block; font-size: .95rem; }
.wd .wd-quote__who span { font-size: .82rem; color: var(--wd-ink-3); }
.wd .wd-quote .wd-stars { font-size: .9rem; }

/* Bento -------------------------------------------------------------------- */
.wd .wd-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.wd .wd-bento > * { grid-column: span 2; }
.wd .wd-bento > .wd-span-3 { grid-column: span 3; }
.wd .wd-bento > .wd-span-4 { grid-column: span 4; }
.wd .wd-bento > .wd-span-6 { grid-column: span 6; }
.wd .wd-bento .wd-card { display: flex; flex-direction: column; }
.wd .wd-bento .wd-card__visual { margin-top: auto; padding-top: 22px; }
@media (max-width: 900px) { .wd .wd-bento > *, .wd .wd-bento > .wd-span-3, .wd .wd-bento > .wd-span-4 { grid-column: span 3; } }
@media (max-width: 600px) { .wd .wd-bento > *, .wd .wd-bento > .wd-span-3, .wd .wd-bento > .wd-span-4, .wd .wd-bento > .wd-span-6 { grid-column: span 6; } }

/* Steps -------------------------------------------------------------------- */
.wd .wd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: wd-step; }
.wd .wd-step { position: relative; padding: 28px; border-radius: var(--wd-r-lg); background: #fff; border: 1px solid var(--wd-line); }
.wd .wd-step::before { counter-increment: wd-step; content: counter(wd-step, decimal-leading-zero); font-family: var(--wd-font-display); font-weight: 800; font-size: 2.5rem; letter-spacing: -.04em; color: var(--wd-primary-soft); line-height: 1; display: block; margin-bottom: 16px; -webkit-text-stroke: 1px var(--wd-primary); }
.wd .wd-step h3 { margin-bottom: 8px; }
.wd .wd-step p { margin: 0; color: var(--wd-ink-2); font-size: .95rem; }
@media (max-width: 760px) { .wd .wd-steps { grid-template-columns: 1fr; } }

/* Pricing / compare -------------------------------------------------------- */
.wd .wd-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; align-items: stretch; }
.wd .wd-price { padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.wd .wd-price--pro { border-color: transparent; background: var(--wd-ink); color: #d7dbea; box-shadow: var(--wd-shadow-lg); }
.wd .wd-price--pro h3, .wd .wd-price--pro .wd-price__amount { color: #fff; }
.wd .wd-price__amount { font-family: var(--wd-font-display); font-size: 3rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.wd .wd-price__amount small { font-size: 1rem; font-weight: 600; letter-spacing: 0; color: var(--wd-ink-3); }
.wd .wd-price__amount s { font-size: 1.2rem; font-weight: 600; color: var(--wd-ink-3); }
.wd .wd-price--pro .wd-price__amount small, .wd .wd-price--pro .wd-price__amount s { color: #8f97b5; }
.wd .wd-price ul { display: grid; gap: 10px; font-size: .95rem; }
.wd .wd-price li { display: flex; gap: 10px; align-items: flex-start; }
.wd .wd-price li::before { content: ''; flex: none; width: 18px; height: 18px; border-radius: 50%; margin-top: 3px; background: var(--wd-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat; }
.wd .wd-price--pro li::before { background-color: rgba(22, 163, 74, .2); }
.wd .wd-price .wd-btn { margin-top: auto; }
@media (max-width: 760px) { .wd .wd-pricing { grid-template-columns: 1fr; } }
.wd .wd-compare { width: 100%; border-collapse: collapse; font-size: .95rem; }
.wd .wd-compare th, .wd .wd-compare td { padding: 14px 16px; border-bottom: 1px solid var(--wd-line); text-align: left; vertical-align: top; }
.wd .wd-compare th { font-family: var(--wd-font-display); font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--wd-ink-3); }
.wd .wd-compare td:nth-child(2), .wd .wd-compare td:nth-child(3), .wd .wd-compare th:nth-child(2), .wd .wd-compare th:nth-child(3) { text-align: center; width: 140px; }
.wd .wd-compare td strong { display: block; }
.wd .wd-compare td span { color: var(--wd-ink-3); font-size: .875rem; }
.wd .wd-compare .wd-yes, .wd .wd-compare .wd-no { display: inline-flex; width: 24px; height: 24px; border-radius: 50%; align-items: center; justify-content: center; }
.wd .wd-compare .wd-yes { background: var(--wd-green-soft); color: var(--wd-green); }
.wd .wd-compare .wd-no { background: var(--wd-bg-3); color: var(--wd-ink-3); }
.wd .wd-compare .wd-yes svg, .wd .wd-compare .wd-no svg { width: 13px; height: 13px; }
.wd .wd-compare tr.wd-compare__group td { background: var(--wd-bg-2); font-family: var(--wd-font-display); font-weight: 700; color: var(--wd-ink); padding: 10px 16px; }
.wd .wd-table-wrap { overflow-x: auto; border: 1px solid var(--wd-line); border-radius: var(--wd-r-lg); background: #fff; }
@media (max-width: 560px) { .wd .wd-compare td:nth-child(2), .wd .wd-compare td:nth-child(3), .wd .wd-compare th:nth-child(2), .wd .wd-compare th:nth-child(3) { width: 70px; } .wd .wd-compare th, .wd .wd-compare td { padding: 12px 10px; } }

/* FAQ ---------------------------------------------------------------------- */
.wd .wd-faq { display: grid; gap: 10px; }
.wd .wd-faq details { background: #fff; border: 1px solid var(--wd-line); border-radius: 14px; padding: 0 22px; transition: border-color .15s; }
.wd .wd-faq details[open] { border-color: var(--wd-line-2); box-shadow: var(--wd-shadow-sm); }
.wd .wd-faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-family: var(--wd-font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.wd .wd-faq summary::-webkit-details-marker { display: none; }
.wd .wd-faq summary::after { content: ''; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--wd-bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1230' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat; transition: transform .2s; }
.wd .wd-faq details[open] summary::after { transform: rotate(45deg); }
.wd .wd-faq details p { margin: 0 0 18px; color: var(--wd-ink-2); }
.wd .wd-faq details p:last-child { margin-bottom: 20px; }

/* CTA band ----------------------------------------------------------------- */
.wd .wd-cta {
  position: relative; overflow: hidden; border-radius: var(--wd-r-xl); padding: clamp(40px, 6vw, 72px); color: #fff;
  background: linear-gradient(120deg, #2a1fb0 0%, #4c3bff 45%, #8a5cff 80%, #ff4f8b 130%);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
.wd .wd-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 0%, rgba(255, 255, 255, .18), transparent 60%); pointer-events: none; }
.wd .wd-cta h2 { color: #fff; margin-bottom: 12px; }
.wd .wd-cta p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; max-width: 52ch; }
.wd .wd-cta .wd-btn--white { color: var(--wd-primary-ink); }
.wd .wd-cta .wd-btn--outline { color: #fff; border-color: rgba(255, 255, 255, .4); }
.wd .wd-cta__visual { position: relative; z-index: 1; }
@media (max-width: 860px) { .wd .wd-cta { grid-template-columns: 1fr; } .wd .wd-cta__visual { display: none; } }

/* Footer ------------------------------------------------------------------- */
.wd .wd-footer { background: var(--wd-dark); color: #aab1c9; padding: 72px 0 32px; }
.wd .wd-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.wd .wd-footer h4 { color: #fff; font-size: .9rem; letter-spacing: .02em; margin-bottom: 18px; }
.wd .wd-footer li { margin-bottom: 10px; font-size: .95rem; }
.wd .wd-footer li a:hover { color: #fff; }
.wd .wd-footer__brand p { font-size: .95rem; max-width: 34ch; margin: 18px 0 22px; }
.wd .wd-footer__brand img { height: 34px; }
.wd .wd-social { display: flex; gap: 8px; }
.wd .wd-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.wd .wd-social a:hover { background: var(--wd-primary); border-color: var(--wd-primary); }
.wd .wd-social svg { width: 18px; height: 18px; }
.wd .wd-footer__news p { font-size: .9rem; margin-bottom: 14px; }
.wd .wd-footer__form { display: flex; gap: 8px; }
.wd .wd-footer__form input { flex: 1; min-width: 0; height: 44px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .15); background: rgba(255, 255, 255, .06); color: #fff; padding: 0 14px; font-family: inherit; font-size: .9rem; }
.wd .wd-footer__form input::placeholder { color: #7f88a8; }
.wd .wd-footer__form button { height: 44px; padding: 0 16px; border-radius: 10px; background: var(--wd-primary); border: 0; color: #fff; font-weight: 700; font-family: var(--wd-font-display); cursor: pointer; }
.wd .wd-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 28px; font-size: .85rem; color: #7f88a8; }
.wd .wd-footer__bottom a:hover { color: #fff; }
.wd .wd-footer__bottom ul { display: flex; gap: 20px; }
.wd .wd-footer__bottom li { margin: 0; }
@media (max-width: 1000px) { .wd .wd-footer__grid { grid-template-columns: 1fr 1fr 1fr; } .wd .wd-footer__brand, .wd .wd-footer__news { grid-column: span 3; } }
@media (max-width: 600px) { .wd .wd-footer__grid { grid-template-columns: 1fr 1fr; } .wd .wd-footer__brand, .wd .wd-footer__news { grid-column: span 2; } }

/* Forms (contact) ---------------------------------------------------------- */
.wd .wd-form { display: grid; gap: 16px; }
.wd .wd-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wd .wd-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.wd .wd-form input, .wd .wd-form select, .wd .wd-form textarea {
  width: 100%; border: 1px solid var(--wd-line-2); border-radius: 12px; padding: 13px 14px; font-family: inherit; font-size: .95rem; color: var(--wd-ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.wd .wd-form input:focus, .wd .wd-form select:focus, .wd .wd-form textarea:focus { outline: none; border-color: var(--wd-primary); box-shadow: 0 0 0 4px var(--wd-primary-soft); }
.wd .wd-form textarea { min-height: 150px; resize: vertical; }
.wd .wd-form__note { font-size: .82rem; color: var(--wd-ink-3); }
@media (max-width: 560px) { .wd .wd-form__row { grid-template-columns: 1fr; } }
.wd .wd-contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.wd .wd-contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.wd .wd-contact-card p { margin: 0; color: var(--wd-ink-2); font-size: .92rem; }
.wd .wd-contact-card .wd-link { margin-top: 8px; font-size: .9rem; }

/* Page hero for inner pages */
.wd .wd-page-hero { padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 4vw, 56px); text-align: center; position: relative; overflow: hidden; }
.wd .wd-page-hero h1 { max-width: 16ch; margin: 0 auto 18px; }
.wd .wd-page-hero .wd-lead { margin: 0 auto; }

/* Reveal ------------------------------------------------------------------- */
.wd .wd-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.wd .wd-reveal.is-in { opacity: 1; transform: none; }
.wd .wd-reveal[data-delay="1"] { transition-delay: .08s; }
.wd .wd-reveal[data-delay="2"] { transition-delay: .16s; }
.wd .wd-reveal[data-delay="3"] { transition-delay: .24s; }
.wd .wd-reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .wd .wd-reveal { opacity: 1; transform: none; transition: none; } }

/* Misc --------------------------------------------------------------------- */
.wd .wd-divider { height: 1px; background: var(--wd-line); }
.wd .wd-note { font-size: .85rem; color: var(--wd-ink-3); }
.wd .wd-kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85em; background: var(--wd-bg-2); border: 1px solid var(--wd-line); border-radius: 6px; padding: 2px 6px; }
.wd .wd-avatars { display: inline-flex; }
.wd .wd-avatars i { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: linear-gradient(135deg, #a5b4fc, #4c3bff); }
.wd .wd-avatars i:first-child { margin-left: 0; }
.wd .wd-avatars i:nth-child(2) { background: linear-gradient(135deg, #fda4af, #ff4f8b); }
.wd .wd-avatars i:nth-child(3) { background: linear-gradient(135deg, #fde68a, #f59e0b); }
.wd .wd-avatars i:nth-child(4) { background: linear-gradient(135deg, #86efac, #16a34a); }
.wd .wd-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wd .wd-timeline { display: grid; gap: 0; position: relative; padding-left: 28px; }
.wd .wd-timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--wd-line); }
.wd .wd-timeline li { position: relative; padding: 0 0 28px; }
.wd .wd-timeline li::before { content: ''; position: absolute; left: -28px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--wd-primary); }
.wd .wd-timeline li:last-child { padding-bottom: 0; }
.wd .wd-timeline time { display: block; font-size: .8rem; font-weight: 700; color: var(--wd-primary); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.wd .wd-timeline strong { display: block; font-family: var(--wd-font-display); font-size: 1.05rem; margin-bottom: 4px; }
.wd .wd-timeline p { margin: 0; color: var(--wd-ink-2); font-size: .95rem; }
.wd .wd-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .wd .wd-values { grid-template-columns: 1fr; } }

/* Dark mode / search mockups (Wing Suite) --------------------------------- */
.wd .wd-dm { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; box-shadow: var(--wd-shadow-lg); border: 1px solid var(--wd-line); font-size: 12px; }
.wd .wd-dm__side { padding: 20px; }
.wd .wd-dm__side--light { background: #fff; color: var(--wd-ink); }
.wd .wd-dm__side--dark { background: #0f1424; color: #e6e9f5; }
.wd .wd-dm__side h5 { font-family: var(--wd-font-display); font-size: 15px; margin: 8px 0 6px; font-weight: 800; letter-spacing: -.01em; }
.wd .wd-dm__side p { margin: 0 0 10px; font-size: 11.5px; opacity: .8; }
.wd .wd-dm__side i { display: block; height: 8px; border-radius: 4px; background: currentColor; opacity: .12; margin-bottom: 6px; }
.wd .wd-dm__side i.w60 { width: 60%; } .wd .wd-dm__side i.w80 { width: 80%; }
.wd .wd-dm__img { aspect-ratio: 16 / 9; border-radius: 10px; background: linear-gradient(135deg, #6d3bff, #1d78c3); margin-bottom: 4px; }
.wd .wd-dm__side--dark .wd-dm__img { background: linear-gradient(135deg, #3a2bb0, #0e4f86); }
.wd .wd-dm__nav { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.wd .wd-dm__nav b { font-family: var(--wd-font-display); }
.wd .wd-dm__nav i { width: 30px; height: 8px; margin: 0; }
.wd .wd-dm__nav .wd-dm__sw { margin-left: auto; width: 40px; height: 22px; border-radius: 11px; background: #d9dce8; position: relative; opacity: 1; }
.wd .wd-dm__sw::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, .3); }
.wd .wd-dm__side--dark .wd-dm__sw { background: var(--wd-suite); }
.wd .wd-dm__side--dark .wd-dm__sw::after { left: auto; right: 3px; background: #0f1424; }
@media (max-width: 480px) { .wd .wd-dm { grid-template-columns: 1fr; } }
.wd .wd-search { background: #fff; border-radius: 16px; box-shadow: var(--wd-shadow-lg); border: 1px solid var(--wd-line); overflow: hidden; font-size: 13px; }
.wd .wd-search__input { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--wd-line); color: var(--wd-ink); font-size: 14px; }
.wd .wd-search__input svg { width: 18px; height: 18px; color: var(--wd-suite); flex: none; }
.wd .wd-search__input .wd-caret { width: 2px; height: 18px; background: var(--wd-ink); animation: wd-blink 1s steps(2) infinite; }
@keyframes wd-blink { to { visibility: hidden; } }
.wd .wd-search__kbd { margin-left: auto; font-size: 10px; color: var(--wd-ink-3); border: 1px solid var(--wd-line); border-radius: 5px; padding: 2px 6px; }
.wd .wd-search__group { padding: 8px 16px 4px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--wd-ink-3); }
.wd .wd-search__item { display: flex; align-items: center; gap: 12px; padding: 9px 16px; }
.wd .wd-search__item:hover, .wd .wd-search__item.is-active { background: var(--wd-suite-soft); }
.wd .wd-search__item i { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(135deg, #cfe6fb, #eaf4fe); flex: none; }
.wd .wd-search__item i.prod { background: linear-gradient(135deg, #ffe0b0, #ffd0d0); }
.wd .wd-search__item b { display: block; color: var(--wd-ink); font-weight: 600; }
.wd .wd-search__item b mark { background: #fff3a8; padding: 0 2px; border-radius: 3px; }
.wd .wd-search__item span { display: block; font-size: 11px; color: var(--wd-ink-3); }
.wd .wd-search__item em { margin-left: auto; font-style: normal; font-size: 10.5px; color: var(--wd-ink-3); }
.wd .wd-search__foot { display: flex; justify-content: space-between; padding: 10px 16px; border-top: 1px solid var(--wd-line); font-size: 11px; color: var(--wd-ink-3); }

/* Small-screen helpers */
@media (max-width: 600px) {
  .wd .wd-hide-sm { display: none !important; }
  .wd .wd-stage__float { transform: scale(.9); transform-origin: right bottom; }
  .wd .wd-stage { padding-bottom: 28px; }
}

/* Additions: small mocks used on the product pages */
.wd .wd-dm--mini { grid-template-columns: 1fr 1fr !important; }
@media (max-width: 600px) {
  .wd .wd-bar__count { display: none; }
  .wd .wd-bar { font-size: 11.5px; gap: 10px; }
}
.wd .wd-wheel { width: 150px; aspect-ratio: 1; position: relative; margin: 0 auto; }
.wd .wd-wheel__disc { width: 100%; height: 100%; border-radius: 50%; border: 6px solid #fff; box-shadow: 0 10px 26px rgba(11, 18, 48, .18);
  background: conic-gradient(#ff4f8b 0 45deg, #ffd36a 45deg 90deg, #4c3bff 90deg 135deg, #6ee7b7 135deg 180deg, #ff4f8b 180deg 225deg, #ffd36a 225deg 270deg, #4c3bff 270deg 315deg, #6ee7b7 315deg 360deg); }
.wd .wd-wheel::after { content: ''; position: absolute; inset: 36%; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 3px var(--wd-line); }
.wd .wd-wheel__pin { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border: 9px solid transparent; border-top: 16px solid var(--wd-ink); z-index: 2; }
.wd .wd-posgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; width: 66px; }
.wd .wd-posgrid i { aspect-ratio: 1; border-radius: 4px; background: var(--wd-bg-3); }
.wd .wd-posgrid i.on { background: var(--wd-primary); }
.wd .wd-ui__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.wd .wd-ui__grid2 .wd-ui__row { grid-template-columns: 1fr auto; }
.wd .wd-donut { width: 64px; height: 64px; border-radius: 50%; background: conic-gradient(var(--wd-primary) 0 58%, #ff4f8b 58% 86%, #ffd36a 86% 100%); position: relative; flex: none; }
.wd .wd-donut::after { content: ''; position: absolute; inset: 17px; border-radius: 50%; background: #fff; }
.wd .wd-legend { display: grid; gap: 6px; font-size: 11.5px; }
.wd .wd-legend span { display: flex; align-items: center; gap: 8px; }
.wd .wd-legend i { width: 10px; height: 10px; border-radius: 3px; }
.wd .wd-mini-stat { display: flex; align-items: center; gap: 14px; padding: 12px 14px; }
.wd .wd-integrations { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.wd .wd-integrations li { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 18px 10px; border-radius: 14px; background: #fff; border: 1px solid var(--wd-line); font-size: .82rem; font-weight: 600; color: var(--wd-ink-2); }
.wd .wd-integrations li i { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--wd-font-display); font-weight: 800; font-size: 15px; }
@media (max-width: 900px) { .wd .wd-integrations { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .wd .wd-integrations { grid-template-columns: repeat(3, 1fr); } }

/* Fixes: mock text inside the gradient CTA band, and two-column mock panels on phones */
.wd .wd-cta .wd-pm p, .wd .wd-cta .wd-pm .wd-pm__text { color: var(--wd-ink-2); }
.wd .wd-cta .wd-pm .wd-pm__title { color: var(--wd-ink); }
.wd .wd-cta .wd-pm .wd-pm__fine { color: var(--wd-ink-3); }
.wd .wd-panel__2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.wd .wd-panel__2col--forms { grid-template-columns: 1.1fr .9fr; }
.wd .wd-tabs > div { min-width: 0; }
@media (max-width: 640px) {
  .wd .wd-panel__2col, .wd .wd-panel__2col--forms { grid-template-columns: 1fr; }
  .wd .wd-ui__grid2 { grid-template-columns: 1fr; }
  .wd .wd-ui__row { grid-template-columns: 1fr; gap: 6px; }
}

/* Per-page header logo (product wordmarks are wider than the WingDevs logo) */
.wd .wd-logo--page img { height: 34px; width: auto; max-width: 220px; }
