/* =========================================================
   easyWSDL — refined styles
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    /* Color */
    --ink-900: #0B1220;
    --ink-800: #111A2E;
    --ink-700: #1F2A44;
    --ink-600: #334155;
    --ink-500: #475569;
    --ink-400: #64748B;
    --ink-300: #94A3B8;
    --ink-200: #CBD5E1;
    --ink-100: #E2E8F0;
    --ink-50:  #F1F5F9;
    --paper:   #FFFFFF;
    --paper-alt: #F7F9FC;

    --brand-600: #1E47E0;
    --brand-500: #2E5BFF;
    --brand-400: #5680FF;
    --brand-100: #DCE5FF;
    --brand-50:  #EEF2FF;

    --cyan-500:  #0EA5E9;
    --green-500: #10B981;
    --amber-500: #F59E0B;
    --red-500:   #EF4444;

    /* Type */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

    /* Layout */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Shadow */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .05);
    --shadow-md: 0 8px 28px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, .25);
    --shadow-glow: 0 20px 60px -20px rgba(46, 91, 255, .35);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-700);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand-500); text-decoration: none; }
a:hover { color: var(--brand-600); }
p { margin: 0 0 .8em; text-wrap: pretty; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 32px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    margin: 0 0 .4em;
    color: var(--ink-900);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-500);
    margin-bottom: .9em;
}
.kicker--light { color: var(--brand-400); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-50);
    color: var(--brand-600);
    border: 1px solid var(--brand-100);
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.4em;
}
.eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .15);
}

.grad-text {
    background: linear-gradient(120deg, var(--brand-500), var(--cyan-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.grad-text--alt {
    background: linear-gradient(120deg, #93C5FD, #67E8F9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 14px 22px; font-size: 1rem; border-radius: 12px; }
.btn--full { width: 100%; }

.btn--primary {
    background: var(--ink-900);
    color: var(--paper);
}
.btn--primary:hover {
    background: var(--brand-500);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn--accent {
    background: linear-gradient(135deg, var(--brand-500), var(--cyan-500));
    color: white;
    box-shadow: var(--shadow-glow);
}
.btn--accent:hover { filter: brightness(1.08); }

.btn--ghost {
    background: transparent;
    color: var(--ink-700);
    border-color: var(--ink-100);
}
.btn--ghost:hover {
    border-color: var(--ink-300);
    background: var(--paper-alt);
    color: var(--ink-900);
}
.btn--ghost-dark {
    color: var(--ink-100);
    border-color: rgba(255,255,255,.18);
    background: transparent;
}
.btn--ghost-dark:hover {
    background: rgba(255,255,255,.06);
    color: white;
    border-color: rgba(255,255,255,.32);
}

/* ---------- Notice ---------- */
.notice {
    background: var(--ink-900);
    color: var(--ink-200);
    font-size: .82rem;
}
.notice__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}
.notice__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan-500);
}
.notice__close {
    margin-left: auto;
    background: transparent;
    color: var(--ink-300);
    border: 0;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
}
.notice__close:hover { background: rgba(255,255,255,.06); color: white; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--ink-100);
    box-shadow: var(--shadow-xs);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink-900);
    font-size: 1.1rem;
    letter-spacing: -.01em;
}
.brand__mark { display: inline-flex; }
.brand__name--accent { color: var(--brand-500); }
.brand--light { color: white; }
.brand--light .brand__name--accent { color: var(--brand-400); }

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
}
.nav__link {
    color: var(--ink-600);
    font-weight: 500;
    font-size: .94rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--ink-900); background: var(--ink-50); }
.nav__link--active { color: var(--ink-900); }
.nav__link--active::after {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    margin: 4px auto -6px;
    background: var(--brand-500);
    border-radius: 2px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 10px;
    margin-left: auto;
    cursor: pointer;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink-700);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 6px;
    border-top: 1px solid var(--ink-100);
    background: white;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__link {
    padding: 12px;
    color: var(--ink-700);
    font-weight: 500;
    border-radius: 8px;
}
.mobile-nav__link:hover { background: var(--ink-50); }
.mobile-nav__cta {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(64px, 9vw, 110px) 0;
}
.section--alt { background: var(--paper-alt); }
.section--ink {
    background:
        radial-gradient(80% 60% at 80% 20%, rgba(46,91,255,.25), transparent 60%),
        radial-gradient(60% 60% at 10% 80%, rgba(14,165,233,.18), transparent 60%),
        var(--ink-900);
    color: var(--ink-200);
}
.section__head {
    max-width: 720px;
    margin-bottom: 56px;
}
.section__head--center {
    text-align: center;
    margin-inline: auto;
}
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section__title--light { color: white; }
.section__sub {
    font-size: 1.08rem;
    color: var(--ink-500);
    margin-top: .4em;
    max-width: 56ch;
}
.section__head--center .section__sub { margin-inline: auto; }
.section__sub--light { color: var(--ink-200); }

.link {
    color: var(--brand-500);
    font-weight: 600;
}
.link--light { color: var(--brand-400); }
.link:hover { text-decoration: underline; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 0;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--ink-100) 1px, transparent 1px),
        linear-gradient(90deg, var(--ink-100) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 70%);
    opacity: .55;
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.hero__glow--a {
    width: 420px; height: 420px;
    background: var(--brand-500);
    top: -80px; right: -80px;
}
.hero__glow--b {
    width: 360px; height: 360px;
    background: var(--cyan-500);
    bottom: 10%; left: -100px;
    opacity: .22;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    padding-bottom: clamp(56px, 8vw, 96px);
}
.hero__title { margin-bottom: .35em; }
.hero__lede {
    font-size: 1.15rem;
    color: var(--ink-500);
    max-width: 56ch;
    margin-bottom: 2em;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2em;
}
.hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: .92rem;
    color: var(--ink-500);
}
.hero__bullets li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero__bullets svg { color: var(--green-500); }

/* Code card */
.hero__visual {
    position: relative;
}
.code-card {
    background: var(--ink-900);
    color: var(--ink-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.06);
    transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}
.code-card__chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot--r { background: #FF5F57; }
.dot--y { background: #FEBC2E; }
.dot--g { background: #28C840; }

.code-card__tabs {
    display: flex;
    gap: 4px;
    margin-left: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}
.code-card__tabs::-webkit-scrollbar { display: none; }
.code-tab {
    background: transparent;
    border: 0;
    color: var(--ink-400);
    font-family: var(--font-mono);
    font-size: .78rem;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}
.code-tab:hover { color: var(--ink-200); }
.code-tab.is-active {
    color: white;
    background: rgba(255,255,255,.08);
}

.code-card__body {
    padding: 18px 20px;
    overflow-x: auto;
}
.code {
    font-family: var(--font-mono);
    font-size: .82rem;
    line-height: 1.7;
    color: var(--ink-100);
    margin: 0;
}
.c-kw  { color: #C792EA; }
.c-type{ color: #82AAFF; }
.c-fn  { color: #7FDBCA; }
.c-str { color: #C3E88D; }
.c-com { color: var(--ink-400); font-style: italic; }

.code-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.06);
    font-family: var(--font-mono);
    font-size: .76rem;
    color: var(--ink-400);
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-200);
}
.pill__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 3px rgba(16,185,129,.2);
}

.float-chip {
    position: absolute;
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 10px 14px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-700);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.float-chip--a {
    top: -16px;
    left: -10px;
    animation: floaty 5s ease-in-out infinite;
}
.float-chip--b {
    bottom: -18px;
    right: -8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    animation: floaty 6s ease-in-out infinite reverse;
}
.float-chip__num { font-size: 1.2rem; font-weight: 800; color: var(--brand-500); }
.float-chip__lbl { font-size: .72rem; font-weight: 500; color: var(--ink-500); }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Stat strip */
.stat-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: -56px;
    padding: 6px 0;
}
.stat {
    padding: 22px 24px;
    border-right: 1px solid var(--ink-100);
}
.stat:last-child { border-right: 0; }
.stat__num {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.stat__lbl {
    font-size: .85rem;
    color: var(--ink-500);
    margin-top: 4px;
}

/* ---------- Languages ---------- */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.lang-card {
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform .15s, box-shadow .2s, border-color .2s;
}
.lang-card:hover {
    border-color: var(--brand-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.lang-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: white;
}
.lang-card__icon--java   { background: #ED8B00; }
.lang-card__icon--kotlin { background: linear-gradient(135deg, #7F52FF, #E44857); }
.lang-card__icon--dart   { background: #0175C2; }
.lang-card__icon--swift  { background: #F05138; }
.lang-card__icon--objc   { background: #438EFF; }
.lang-card__icon--ts     { background: #3178C6; }
.lang-card h3 {
    font-size: 1.05rem;
    margin-bottom: .25em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lang-card p {
    margin: 0;
    font-size: .92rem;
    color: var(--ink-500);
}
.badge-new {
    background: var(--green-500);
    color: white;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 3px 7px;
    border-radius: 999px;
}

/* ---------- Features ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.feature-card:hover {
    border-color: var(--brand-100);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.feature-card--lg {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--brand-50) 0%, white 70%);
    border-color: var(--brand-100);
}
.feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ink-900);
    color: white;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.feature-card--lg .feature-card__icon {
    background: linear-gradient(135deg, var(--brand-500), var(--cyan-500));
}
.feature-card h3 { font-size: 1.15rem; }
.feature-card p { color: var(--ink-500); }
.check-list {
    margin-top: 14px;
    display: grid;
    gap: 6px;
    font-size: .92rem;
    color: var(--ink-700);
}
.check-list li {
    position: relative;
    padding-left: 22px;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--green-500);
    border-bottom: 2px solid var(--green-500);
    transform: rotate(-45deg);
}

/* ---------- Why us / dark section ---------- */
.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.why__copy h2 { color: white; max-width: 16ch; }
.why__cta {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.terminal {
    background: #08111F;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-mono);
}
.terminal__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.terminal__title {
    margin-left: 14px;
    font-size: .78rem;
    color: var(--ink-300);
}
.terminal__body {
    padding: 22px;
    font-size: .85rem;
    line-height: 1.85;
    color: var(--ink-100);
}
.terminal__body p { margin: 0; }
.t-prompt { color: var(--cyan-500); margin-right: 8px; }
.t-muted  { color: var(--ink-400); }
.t-ok     { color: var(--green-500); }
.t-cursor {
    display: inline-block;
    width: 8px;
    background: var(--cyan-500);
    color: transparent;
    animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- News ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.news-card {
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: box-shadow .2s, border-color .2s, transform .15s;
}
.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-100);
    transform: translateY(-2px);
}
.news-card__tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.news-card__date { font-size: .8rem; color: var(--ink-400); }
.news-card h3 { font-size: 1.15rem; }
.news-card p { color: var(--ink-500); margin-bottom: 1em; }

.badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.badge--blue  { background: var(--brand-50); color: var(--brand-600); }
.badge--amber { background: #FEF3C7; color: #92400E; }
.badge--green { background: #D1FAE5; color: #065F46; }

/* ---------- Pricing ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.price-card {
    position: relative;
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: transform .15s, box-shadow .2s, border-color .2s;
}
.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.price-card--featured {
    border-color: var(--brand-500);
    box-shadow: var(--shadow-glow);
}
.price-card--dark {
    background: var(--ink-900);
    border-color: var(--ink-700);
    color: var(--ink-200);
}
.price-card--dark h3,
.price-card--dark .price-card__value,
.price-card--dark .price-card__currency { color: white; }
.price-card--dark .price-card__sub,
.price-card--dark .price-card__list li,
.price-card--dark .price-card__period { color: var(--ink-300); }

.price-card__ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-500), var(--cyan-500));
    color: white;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.price-card__head h3 { font-size: 1.05rem; color: var(--ink-500); font-weight: 600; margin: 0 0 4px;}
.price-card__sub { font-size: .85rem; color: var(--ink-500); margin: 0 0 20px; }

.price-card__amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}
.price-card__currency { font-size: 1.4rem; color: var(--ink-500); font-weight: 600; }
.price-card__value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.03em;
    line-height: 1;
}
.price-card__period {
    font-size: .85rem;
    color: var(--ink-500);
    margin-left: 4px;
}
.price-card__list {
    flex: 1;
    margin-bottom: 24px;
    display: grid;
    gap: 10px;
    font-size: .92rem;
    color: var(--ink-600);
}
.price-card__list li {
    position: relative;
    padding-left: 22px;
}
.price-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--brand-500);
    border-bottom: 2px solid var(--brand-500);
    transform: rotate(-45deg);
}
.price-card--dark .price-card__list li::before {
    border-color: var(--cyan-500);
}
.price-card__note {
    font-size: .78rem;
    color: var(--ink-400);
    margin: 12px 0 0;
}
.price-foot {
    text-align: center;
    margin-top: 32px;
    color: var(--ink-500);
    font-size: .95rem;
}

/* ---------- Trust ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    padding: 24px;
    border-left: 2px solid var(--ink-100);
}
.trust-item__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-500);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 14px;
}
.trust-item h4 { font-size: 1.05rem; margin-bottom: .4em; }
.trust-item p { font-size: .92rem; color: var(--ink-500); margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final {
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(46,91,255,.22), transparent 60%),
        radial-gradient(60% 80% at 0% 100%, rgba(14,165,233,.18), transparent 60%),
        var(--ink-900);
    color: white;
}
.cta-final__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    padding: clamp(56px, 8vw, 96px) 0;
}
.cta-final h2 { color: white; }
.cta-final p { color: var(--ink-200); font-size: 1.08rem; max-width: 52ch; margin: 0; }
.cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #060B17;
    color: var(--ink-300);
    padding-top: 64px;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}
.site-footer__tagline {
    color: var(--ink-300);
    margin-top: 12px;
    max-width: 28ch;
}
.site-footer__col h5 {
    color: white;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.site-footer__col ul {
    display: grid;
    gap: 10px;
}
.site-footer__col a,
.site-footer address,
.site-footer p {
    color: var(--ink-300);
    font-size: .92rem;
    font-style: normal;
    line-height: 1.7;
}
.site-footer__col a:hover { color: white; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 22px 0;
    font-size: .82rem;
    color: var(--ink-400);
}
.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__ver { font-family: var(--font-mono); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { order: -1; }
    .code-card { transform: none; }
    .float-chip--a, .float-chip--b { display: none; }

    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--ink-100); }

    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card--lg { grid-column: span 2; }

    .why { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }

    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-final__inner { grid-template-columns: 1fr; }
    .cta-final__actions { justify-content: flex-start; }

    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav, .header-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-nav:not([hidden]) { display: flex; }

    .feature-grid { grid-template-columns: 1fr; }
    .feature-card--lg { grid-column: span 1; }

    .price-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }

    h1 { font-size: 2.1rem; }
}

/* =========================================================
   easyWSDL — Blazor app bridge layer
   Overrides for the existing Blazor app so the new design
   plays nicely with leftover BootstrapMade / Syncfusion CSS.
   ========================================================= */

/* Force base body font everywhere (overrides BootstrapMade Open Sans) */
body, .index-page, .normal-page {
    font-family: var(--font-sans) !important;
    color: var(--ink-700);
}

/* Headings default colors (BootstrapMade uses #012970) */
h1, h2, h3, h4, h5, h6 {
    color: var(--ink-900);
    font-family: var(--font-sans);
}

/* Drop fixed-top legacy header artifacts when new header is used */
.site-header + main,
.site-header ~ main {
    padding-top: 0;
}

/* Existing pages use .normal-page with margin-top:110px; align with sticky header */
.normal-page {
    min-height: calc(100vh - 360px);
    margin-top: 0;
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

/* Generic container alignment for legacy `.container` usage inside .section */
.section .container {
    padding-inline: clamp(20px, 4vw, 32px);
}

/* Buttons compat: old templates used .btn-primary, .btn-getstarted, .mainButton */
.btn-getstarted,
.mainButton,
button.btn-primary,
a.btn-primary,
.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    background: var(--ink-900) !important;
    color: var(--paper) !important;
    box-shadow: none;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn-getstarted:hover,
.mainButton:hover,
button.btn-primary:hover,
a.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--brand-500) !important;
    color: white !important;
    box-shadow: var(--shadow-glow);
}

/* Forms: gentle modern inputs */
.form-control,
input.form-control,
textarea.form-control,
select.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="url"],
textarea {
    font-family: var(--font-sans);
    border-radius: 10px;
    border: 1px solid var(--ink-100);
    background: white;
    transition: border-color .15s, box-shadow .15s;
}
.form-control:focus,
input.form-control:focus,
textarea.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: var(--brand-500) !important;
    box-shadow: 0 0 0 3px rgba(46, 91, 255, .15) !important;
    outline: none;
}

/* Accordion (FAQ) */
.accordion-item {
    border: 1px solid var(--ink-100) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-xs);
}
.accordion-button {
    font-family: var(--font-sans) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--ink-900) !important;
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-align: left !important;
    margin-bottom: 0 !important;
    padding: 18px 22px !important;
}
.accordion-button:not(.collapsed) {
    background: var(--brand-50) !important;
    color: var(--brand-600) !important;
}
.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(46, 91, 255, .15) !important;
    border-color: transparent !important;
}
.accordion-body {
    padding: 18px 22px !important;
    font-size: .95rem;
    color: var(--ink-600);
}

/* Cards (utility for subpages) */
.card-surface {
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-xs);
}

/* Sticky-notes section: tone it down on new design */
.stickyBox {
    border-radius: var(--radius-md);
}

/* Modal & Syncfusion small touch-ups */
.e-input-group, .e-input-group.e-control-wrapper {
    border-radius: 10px !important;
}
.e-list-group-item { color: var(--ink-700) !important; }

/* Section title legacy used in subpages */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    background: var(--brand-50);
    color: var(--brand-600);
    border: 1px solid var(--brand-100);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}
.section-title p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}

/* Scroll-to-top */
#scroll-top, .scroll-top {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: var(--ink-900) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: background .2s, transform .15s;
}
#scroll-top:hover, .scroll-top:hover {
    background: var(--brand-500) !important;
    transform: translateY(-2px);
}

/* Bootstrap row/col still used; keep them functional but tame */
.row > [class*='col-'] { padding-inline: 12px; }

/* Tables in admin / payment pages */
table.table, .table {
    font-family: var(--font-sans);
    border-color: var(--ink-100);
}

/* Generic page wrapper for legacy normal-page subpages */
.page-shell {
    padding: clamp(64px, 9vw, 110px) 0;
}


/* =========================================================
   Hero overrides — neutralize legacy BootstrapMade .hero
   (which forced min-height:100vh + flex centering + bg image)
   ========================================================= */
section.hero {
    min-height: 0 !important;
    display: block !important;
    align-items: stretch !important;
    background: none !important;
    width: 100%;
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 0 !important;
    overflow: visible !important;
}
section.hero .hero__inner {
    padding-bottom: clamp(40px, 6vw, 64px) !important;
}

/* Hero typography — bigger breathing room + stronger lede contrast.
   Force solid black on the title and only let `.grad-text` paint the gradient
   (legacy polish.css applied gradient to the whole .hero h1). */
.hero__title,
.hero h1.hero__title {
    color: var(--ink-900) !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: var(--ink-900) !important;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 28px !important;
}
.hero__title .grad-text {
    background: linear-gradient(120deg, var(--brand-500), var(--cyan-500)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.hero__lede {
    color: var(--ink-600) !important;
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 32px !important;
    max-width: 56ch;
}

/* Stat strip overlaps boundary between hero and next section */
.container.stat-strip {
    position: relative;
    z-index: 5 !important;
    background: white;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: -56px !important;
    padding: 6px 0;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-strip .stat {
    padding: 22px 24px;
    border-right: 1px solid var(--ink-100);
}
.stat-strip .stat:last-child { border-right: 0; }
.stat__num {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.02em;
    line-height: 1.1;
}
.stat__lbl {
    font-size: .85rem;
    color: var(--ink-500);
    margin-top: 4px;
}

/* Make sure no parent clips the strip's bottom half */
main.content,
main#content {
    overflow: visible !important;
}

@media (max-width: 720px) {
    .container.stat-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: -40px !important;
    }
    .stat-strip .stat:nth-child(2) { border-right: 0; }
    .stat-strip .stat:nth-child(1),
    .stat-strip .stat:nth-child(2) { border-bottom: 1px solid var(--ink-100); }
}

/* The new hero inner uses 2-col grid; ensure it isn't broken by .row rules */
.hero__inner {
    display: grid !important;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure the stat-strip respects container width */
.container.stat-strip {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
}

/* Reset legacy main .content padding that may push hero down */
main.content {
    padding: 0;
    margin: 0;
}

/* Body has class .index-page — kill any legacy top offset */
body.index-page {
    padding-top: 0 !important;
}


/* =========================================================
   Pricing / FAQ / Manage / Generator targeted polish
   ========================================================= */

/* ---- Generic Bootstrap callout (bd-callout) → new look ---- */
.bd-callout {
    border: 1px solid var(--ink-100);
    border-left: 4px solid var(--ink-300);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin: 18px 0;
    background: var(--paper-alt);
}
.bd-callout h1, .bd-callout h4 {
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    margin: 0 0 8px !important;
    color: var(--ink-500) !important;
}
.bd-callout-info    { border-left-color: var(--cyan-500); background: #ECFEFF; }
.bd-callout-info h1, .bd-callout-info h4, .bd-callout-info-label { color: #0E7490 !important; }
.bd-callout-success { border-left-color: var(--green-500); background: #ECFDF5; }
.bd-callout-success h1, .bd-callout-success h4, .bd-callout-success-label { color: #065F46 !important; }
.bd-callout-warning { border-left-color: var(--amber-500); background: #FFFBEB; }
.bd-callout-warning h1, .bd-callout-warning h4, .bd-callout-warning-label { color: #92400E !important; }
.bd-callout-danger  { border-left-color: var(--red-500);  background: #FEF2F2; }
.bd-callout-danger h1, .bd-callout-danger h4, .bd-callout-danger-label { color: #991B1B !important; }

/* ---- FAQ ---- */
.faqAccordion h1 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-500);
    margin: 18px 0 8px;
}
.faqAccordion h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--ink-900) !important;
    margin: 14px 0 6px !important;
    text-align: left !important;
}
.faqAccordion p, .faqAccordion li {
    color: var(--ink-600);
    line-height: 1.7;
}
.faqAccordion code,
.accordion-body code,
.details-content code,
p > code,
li > code {
    font-family: var(--font-mono);
    font-size: .88em;
    background: var(--ink-50);
    color: var(--ink-800);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--ink-100);
}

/* Never style code that's inside the hero code-card or terminal — those
   have their own dark-theme tokens and must remain transparent. */
.code-card code,
.code-card pre,
.code-card .code,
.terminal code,
.terminal pre,
.terminal__body code {
    background: transparent !important;
    color: inherit !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.faqAccordion ol, .faqAccordion ul {
    margin: 6px 0 14px 22px;
    padding-left: 0;
}
.faqAccordion ol li, .faqAccordion ul li { list-style: inherit; }
.faqAccordion ol { list-style: decimal; }
.faqAccordion ul { list-style: disc; }

/* Accordion chevron */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-size: 16px !important;
    transition: transform .2s ease !important;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* ---- Pricing table ---- */
.table {
    margin: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table thead th {
    background: var(--paper-alt);
    color: var(--ink-700);
    border-bottom: 1px solid var(--ink-100);
    padding: 18px 16px;
    font-weight: 600;
}
.table thead h1.pricing-header {
    font-size: .82rem;
    font-weight: 700;
    color: var(--brand-500);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0;
}
.table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ink-100);
    color: var(--ink-600);
    vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: var(--brand-50); }
.table .bi-check-lg { color: var(--green-500); font-size: 1.1rem; }
.table .bi-dash { color: var(--ink-300); font-size: 1.1rem; }
.table tfoot td {
    padding: 18px 16px;
    color: var(--ink-500);
    background: var(--paper-alt);
    font-size: .9rem;
}
.no_line { border: 0 !important; }

/* ---- Generator form / Manage form rows ---- */
.form-group {
    margin-bottom: 18px;
}
.col-form-label {
    color: var(--ink-700);
    font-weight: 600;
    padding-top: 10px;
}
.form-group small,
.form-group .text-muted small,
p.text-muted small {
    color: var(--ink-400) !important;
    font-size: .85rem;
    line-height: 1.5;
    display: inline-block;
    margin-top: 4px;
}
p.text-info {
    color: var(--ink-500) !important;
    font-size: .9rem;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

/* Bootstrap form switch — accent the toggle */
.form-check-input:checked {
    background-color: var(--brand-500) !important;
    border-color: var(--brand-500) !important;
}
.form-check-input:focus {
    border-color: var(--brand-400) !important;
    box-shadow: 0 0 0 3px rgba(46, 91, 255, .18) !important;
}

/* Accordion inside Generator card-surface — flatten outer borders so it sits flush */
.card-surface > #accordion.accordion {
    margin: 0 -4px;
}
.card-surface .accordion-item:first-child { margin-top: 0; }
.card-surface .accordion-item:last-child  { margin-bottom: 0; }

/* ---- Manage your account sidebar ---- */
.manage-nav .nav__link {
    display: block;
    text-align: left;
    padding: 10px 14px;
    margin-bottom: 2px;
    font-size: .94rem;
    color: var(--ink-600);
    border-radius: 8px;
}
.manage-nav .nav__link:hover {
    background: var(--ink-50);
    color: var(--ink-900);
}
.manage-nav .nav__link--active {
    background: var(--brand-50);
    color: var(--brand-600);
    font-weight: 600;
}
.manage-nav .nav__link--active::after { display: none; }

/* Manage page content card — give it air on the inside */
.col-md-9 > .card-surface,
.col-md-9 > section.card-surface {
    padding: 32px;
}

/* Form floating label nudge — Bootstrap form-floating + our radius */
.form-floating > label {
    color: var(--ink-400);
}
.form-floating > .form-control {
    border-radius: 10px;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--brand-500);
}

/* Validation errors */
.text-danger, .validation-message {
    color: var(--red-500) !important;
    font-size: .85rem;
}

/* Syncfusion dropdown / button polish */
.e-input-group.e-control-wrapper,
.e-dropdownbase.e-control-wrapper,
.e-ddl.e-input-group {
    border-radius: 10px !important;
    border-color: var(--ink-100) !important;
}
.e-input-group.e-control-wrapper:focus-within,
.e-dropdownbase.e-control-wrapper:focus-within {
    border-color: var(--brand-500) !important;
    box-shadow: 0 0 0 3px rgba(46, 91, 255, .15) !important;
}
.e-btn-group .e-btn.e-active,
.e-btn-group button.e-active {
    background: var(--brand-500) !important;
    color: white !important;
    border-color: var(--brand-500) !important;
}


/* Legacy .btn-buy still appears in some snippets — map to primary */
.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    background: var(--ink-900);
    color: white !important;
    font-weight: 600;
    border: 0;
    text-decoration: none;
    transition: background .2s ease;
}
.btn-buy:hover { background: var(--brand-500); }

/* Bootstrap table-hover override (we use our own hover color) */
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: transparent;
    background-color: var(--brand-50) !important;
    color: var(--ink-700) !important;
}

/* Status messages (alerts) — used by StatusMessage component */
.alert {
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: 14px 18px;
    margin-bottom: 16px;
}
.alert-success { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.alert-danger  { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.alert-warning { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.alert-info    { background: #ECFEFF; border-color: #A5F3FC; color: #0E7490; }


/* =========================================================
   Accordion-header gap fix (browser h4/h5 default margins were
   pushing white space above the button).
   ========================================================= */
.accordion-item .accordion-header,
.accordion-item h1.accordion-header,
.accordion-item h2.accordion-header,
.accordion-item h3.accordion-header,
.accordion-item h4.accordion-header,
.accordion-item h5.accordion-header,
.accordion-item h6.accordion-header {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    background: transparent;
    border: 0;
}
.accordion-item .accordion-header > .accordion-button {
    width: 100%;
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
}
.accordion-item .accordion-button.collapsed {
    border-radius: var(--radius-md) !important;
}
.accordion-item {
    background: transparent;
}
.accordion-collapse > .accordion-body {
    background: white;
    border-top: 1px solid var(--ink-100);
}
.accordion-item:has(.accordion-button.collapsed) .accordion-collapse {
    display: none;
}

/* =========================================================
   Premium account details page (/payment/pricingDetails)
   ========================================================= */
.details-toc .nav {
    padding: 0;
    margin: 0;
    list-style: none;
}
.details-toc .nav li.nav-item {
    list-style: none;
}
.details-toc .nav-link {
    display: block;
    padding: 8px 12px;
    color: var(--ink-600);
    font-size: .92rem;
    line-height: 1.4;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.details-toc .nav-link:hover {
    background: var(--ink-50);
    color: var(--ink-900);
}
.details-toc .nav-link.active {
    background: var(--brand-50);
    color: var(--brand-600);
    font-weight: 600;
}

.details-content {
    padding: 32px;
}
.details-content .anchorSection {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 32px 0 12px;
    padding-top: 12px;
    text-align: left;
    scroll-margin-top: 90px;
}
.details-content .anchorSection:first-child { margin-top: 0; padding-top: 0; }
.details-content hr {
    border: 0;
    border-top: 1px solid var(--ink-100);
    margin: 28px 0;
}
.details-content p,
.details-content li {
    color: var(--ink-600);
    line-height: 1.7;
}
.details-content ul,
.details-content ol {
    margin: 6px 0 14px 22px;
    padding-left: 0;
}
.details-content ul li { list-style: disc; }
.details-content ol li { list-style: decimal; }
.details-content .nav-tabs {
    border-bottom: 1px solid var(--ink-100);
    margin: 14px 0;
    display: flex;
    gap: 4px;
    padding: 0;
    list-style: none;
}
.details-content .nav-tabs .nav-item { list-style: none; }
.details-content .nav-tabs .nav-link {
    padding: 8px 14px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: var(--ink-500);
    background: transparent;
    border-radius: 0;
    font-size: .9rem;
    font-weight: 600;
}
.details-content .nav-tabs .nav-link.active {
    color: var(--brand-500);
    border-bottom-color: var(--brand-500);
    background: transparent;
}

