 /**
 * Demo Center Styles
 * @version 2.1.1
 * @last_updated 2026-06-02
 * 2.1.1 - FIXED: Prevented example detail CTA buttons from spanning full page width on tablet/desktop views; full-width buttons now apply only on very small screens.
 * @version 2.0.1
 * 2.0.1 - FIXED: Added spacing below Demo Gallery hero search bar so it no longer appears covered by the white content section.
 * @last_updated 2026-06-02
 * @version 2.0.0
 * @last_updated 2026-06-02
 
 /**
 * DraftSend Examples Styles
 * @version 2.1.0
 * @last_updated 2026-06-02
 * 2.1.0 - ADDED: Modern blue-gradient styles for Example Detail and Start from Example pages.
 * @version 2.0.0
 * @last_updated 2026-06-02
 *
 * @changelog
 *   2.0.0 - REDESIGNED: Aligned Examples index with new blue-gradient Draftsend public style.
 *          - ADDED: Public nav/footer, blue hero, preview card, summary strip, upgraded industry sections, modern cards, and final CTA.
 *          - PRESERVED: Detail page, start page, preview card, sticky topbar, horizontal example scrollers, and responsive compatibility.
 *   1.0.0 - Initial examples, detail, and start page styles.
 */
:root {
    --examples-blue-950: #070d34;
    --examples-blue-900: #111a58;
    --examples-blue-800: #182d8f;
    --examples-blue-700: #1d4ed8;
    --examples-blue-600: #2563eb;
    --examples-cyan-400: #22d3ee;
    --examples-cyan-300: #67e8f9;
    --examples-purple-500: #8b5cf6;
    --examples-pink-400: #fb7185;
    --examples-amber-300: #fcd34d;

    --bg: #f6f8ff;
    --surface: #ffffff;
    --surface-soft: #eef4ff;
    --surface-soft-2: #e6ebf2;
    --text: #101828;
    --muted: #667085;
    --muted-2: #475467;
    --border: #e6ebf5;
    --border-strong: #d8e2f3;
    --primary: #1d4ed8;

    --shadow-sm: 0 10px 28px rgba(16, 24, 40, 0.08);
    --shadow-md: 0 20px 55px rgba(16, 24, 40, 0.12);
    --shadow-blue: 0 30px 90px rgba(37, 99, 235, 0.26);

    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-pill: 999px;

    --max-width: 1320px;
    --preview-width: 920px;
    --card-width-mobile: 306px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body *:not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.examples-page {
    background: #ffffff;
}

/* =========================================================
   Public Nav
   ========================================================= */

.examples-public-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 13, 52, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.examples-public-nav-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.examples-public-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.examples-public-logo-img {
    display: block;
    width: 176px;
    max-width: 42vw;
    height: auto;
    filter: brightness(0) invert(1);
}

.examples-public-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 34px);
}

.examples-public-links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 800;
    transition: color 0.2s ease;
}

.examples-public-links a:hover,
.examples-public-links a.active {
    color: #ffffff;
}

.examples-public-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.examples-nav-btn,
.examples-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    font-weight: 900;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.examples-nav-btn:hover,
.examples-btn:hover {
    transform: translateY(-1px);
}

.examples-nav-btn-ghost,
.examples-btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
}

.examples-nav-btn-ghost:hover,
.examples-btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.examples-nav-btn-light,
.examples-btn-light {
    color: var(--examples-blue-700);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(7, 13, 52, 0.18);
}

.examples-nav-btn-light:hover,
.examples-btn-light:hover {
    color: var(--examples-blue-800);
    box-shadow: 0 18px 45px rgba(7, 13, 52, 0.25);
}

.examples-btn-primary {
    color: #ffffff;
    background: var(--examples-blue-700);
    box-shadow: var(--shadow-sm);
}

.examples-btn-primary:hover {
    color: #ffffff;
    background: var(--examples-blue-800);
    box-shadow: var(--shadow-md);
}

.examples-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
}

.examples-mobile-menu {
    display: none;
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 18px;
}

.examples-mobile-menu.show {
    display: grid;
    gap: 8px;
}

.examples-mobile-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 800;
}

.examples-mobile-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

/* =========================================================
   Buttons / Pills
   ========================================================= */

.btn {
    appearance: none;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--radius-pill);
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn:focus-visible {
    outline: 2px solid #94a3b8;
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn-secondary {
    background: #f3f6ff;
    border-color: #d8e2f3;
    color: var(--examples-blue-700);
}

.btn-secondary:hover {
    background: var(--examples-blue-700);
    border-color: var(--examples-blue-700);
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

.inline-link {
    color: var(--examples-blue-700);
    font-size: 14px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #d8e2f3;
    color: var(--examples-blue-700);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

/* =========================================================
   /examples index
   ========================================================= */

.examples-shell {
    max-width: none;
    margin: 0;
    padding: 0;
}

.examples-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 8vw, 122px) clamp(18px, 4vw, 72px);
    color: #ffffff;
    background:
        radial-gradient(circle at 74% 24%, rgba(103, 232, 249, 0.38), transparent 20%),
        radial-gradient(circle at 62% 62%, rgba(251, 113, 133, 0.32), transparent 20%),
        radial-gradient(circle at 46% 42%, rgba(139, 92, 246, 0.38), transparent 24%),
        linear-gradient(135deg, #20127a 0%, #2334b6 42%, #445ee8 100%);
}

.examples-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(19, 24, 82, 0.28));
    pointer-events: none;
}

.examples-hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(36px);
    opacity: 0.78;
    mix-blend-mode: screen;
}

.examples-hero-glow-one {
    width: 420px;
    height: 420px;
    right: 7%;
    top: 90px;
    background: rgba(103, 232, 249, 0.38);
}

.examples-hero-glow-two {
    width: 360px;
    height: 360px;
    left: 44%;
    top: 220px;
    background: rgba(251, 113, 133, 0.34);
}

.examples-hero-glow-three {
    width: 520px;
    height: 520px;
    right: 24%;
    bottom: -120px;
    background: rgba(139, 92, 246, 0.32);
}

.examples-hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
    gap: clamp(38px, 6vw, 90px);
    align-items: center;
}

.examples-hero-copy {
    max-width: 790px;
}

.examples-eyebrow,
.industry-eyebrow,
.detail-eyebrow,
.topbar-eyebrow,
.start-eyebrow,
.examples-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--examples-blue-700);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.examples-hero .examples-eyebrow {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.examples-title,
.detail-title,
.start-title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.examples-hero .examples-title {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.examples-subtitle,
.industry-subtitle,
.detail-subtitle,
.start-subtitle {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.examples-hero .examples-subtitle {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.56;
    font-weight: 500;
}

.examples-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

/* Hero preview card */

.examples-hero-card {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 110px rgba(7, 13, 52, 0.26);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.examples-hero-card-lines {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.examples-hero-card-lines span {
    display: block;
    height: 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.72);
}

.examples-hero-card-lines span:first-child {
    width: 84%;
}

.examples-hero-card-lines span:last-child {
    width: 62%;
}

.examples-preview-card {
    position: relative;
    min-height: 280px;
    display: grid;
    align-items: end;
    padding: 22px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 13, 52, 0.08) 0%, rgba(7, 13, 52, 0.76) 100%),
        radial-gradient(circle at 78% 24%, rgba(103, 232, 249, 0.78), transparent 24%),
        radial-gradient(circle at 28% 34%, rgba(252, 211, 77, 0.65), transparent 20%),
        radial-gradient(circle at 52% 62%, rgba(251, 113, 133, 0.72), transparent 24%),
        linear-gradient(135deg, #0f4c81 0%, #2563eb 48%, #7c3aed 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.examples-preview-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.examples-preview-overlay {
    position: relative;
    z-index: 2;
    max-width: 330px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(7, 13, 52, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.examples-preview-overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.22);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.examples-preview-overlay strong {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.examples-preview-overlay p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.45;
}

.examples-hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.examples-hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.82rem;
}

/* Content */

.examples-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 72px) 58px;
}

.examples-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.examples-summary-strip div {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.examples-summary-strip span {
    display: block;
    color: var(--examples-blue-700);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 7px;
}

.examples-summary-strip strong {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Empty */

.examples-empty {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 66px 24px;
    box-shadow: var(--shadow-sm);
}

.examples-empty i {
    font-size: 64px;
    color: #c6d2e5;
    margin-bottom: 16px;
}

.examples-empty h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.examples-empty p {
    color: var(--muted);
    margin: 0 0 24px;
}

/* Industry sections */

.industry-section {
    margin-top: 46px;
}

.industry-section:first-of-type {
    margin-top: 0;
}

.industry-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.industry-title {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.industry-subtitle {
    max-width: 720px;
}

.industry-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: #edf4ff;
    color: var(--examples-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
}

.example-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--card-width-mobile);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 4px 4px 14px;
}

.example-scroller::-webkit-scrollbar {
    height: 8px;
}

.example-scroller::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.example-card {
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: var(--shadow-md);
}

.example-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 70% 20%, rgba(34, 211, 238, 0.14), transparent 28%),
        linear-gradient(145deg, #f6f8ff, #eef4ff);
    overflow: hidden;
}

.example-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 13, 52, 0.52) 100%);
    pointer-events: none;
    opacity: 0.82;
}

.example-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.example-card:hover .example-card-media img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.example-card-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--examples-blue-700);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.example-card-view {
    position: absolute;
    z-index: 3;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: var(--examples-blue-700);
    font-weight: 900;
    font-size: 0.82rem;
    box-shadow: 0 14px 30px rgba(7, 13, 52, 0.18);
}

.example-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.example-card-title {
    margin: 0;
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.example-card-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.58;
}

.example-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.example-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example-card-cta-note {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
}

/* Final CTA */

.examples-final-cta {
    position: relative;
    overflow: hidden;
    margin-top: clamp(56px, 7vw, 92px);
    padding: clamp(70px, 8vw, 104px) 24px;
    text-align: center;
    border-radius: 36px;
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.28), transparent 26%),
        linear-gradient(135deg, #162179, #2452df 54%, #4f46e5);
}

.examples-final-glow {
    position: absolute;
    width: 520px;
    height: 280px;
    left: 50%;
    top: -120px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.36);
    filter: blur(36px);
}

.examples-final-cta .examples-section-kicker,
.examples-final-cta h2,
.examples-final-cta p,
.examples-final-actions {
    position: relative;
    z-index: 2;
}

.examples-final-cta .examples-section-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.examples-final-cta h2 {
    max-width: 820px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.examples-final-cta p {
    max-width: 700px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
}

.examples-final-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* =========================================================
   Detail page compatibility
   ========================================================= */

.sticky-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
}

.topbar-copy {
    min-width: 0;
    flex: 1;
}

.topbar-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.detail-shell {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 28px 16px 56px;
}

.detail-tags,
.start-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-template-line {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.detail-preview-section {
    margin-top: 14px;
}

.detail-preview-caption {
    margin: 0 0 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.detail-preview-frame {
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-soft-2) 100%);
    border-radius: var(--radius-xl);
    padding: 12px;
}

.detail-preview-card {
    max-width: var(--preview-width);
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-cta-panel {
    margin-top: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    box-shadow: var(--shadow-sm);
}

.detail-cta-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.detail-cta-subtitle {
    margin: 10px 0 0;
    font-size: 15px;
    color: var(--muted-2);
}

.detail-cta-actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-section {
    margin-top: 28px;
}

/* =========================================================
   Start page compatibility
   ========================================================= */

.start-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.start-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 20px 16px;
}

.start-header {
    margin-bottom: 18px;
}

.start-preview-row {
    margin-bottom: 18px;
}

.start-preview-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fbfcfe;
}

.start-preview-media {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #dbe5f0 0%, #eef3f8 100%);
    overflow: hidden;
}

.start-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start-preview-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.start-preview-meta {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.start-options {
    display: grid;
    gap: 14px;
}

.start-option {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fcfdff;
    padding: 16px;
    display: grid;
    gap: 14px;
}

.start-option h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.start-option p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--muted-2);
}

.start-footer-actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================================
   Footer
   ========================================================= */

.examples-public-footer {
    padding: 58px clamp(18px, 4vw, 72px) 34px;
    background: var(--examples-blue-950);
    color: rgba(255, 255, 255, 0.72);
}

.examples-public-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 46px;
}

.examples-footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.05em;
}

.examples-footer-logo span {
    color: var(--examples-cyan-300);
}

.examples-footer-logo:hover {
    color: #ffffff;
}

.examples-footer-brand p {
    max-width: 370px;
    margin: 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.examples-footer-links {
    display: contents;
}

.examples-footer-column h4 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
}

.examples-footer-column a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.examples-footer-column a:hover {
    color: #ffffff;
}

.examples-public-footer-bottom {
    max-width: var(--max-width);
    margin: 42px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.examples-footer-social {
    display: flex;
    gap: 18px;
}

.examples-footer-social a {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
}

.examples-footer-social a:hover {
    color: #ffffff;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
    .examples-public-footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-footer-brand {
        grid-column: 1 / -1;
    }

    .examples-footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column: 1 / -1;
        gap: 34px;
    }
}

@media (max-width: 1100px) {
    .examples-public-nav-inner {
        grid-template-columns: auto 1fr auto;
    }

    .examples-public-actions {
        display: none;
    }

    .examples-hero-inner {
        grid-template-columns: 1fr;
    }

    .examples-hero-card {
        max-width: 660px;
    }
}

@media (max-width: 900px) {
    .examples-public-nav-inner {
        grid-template-columns: auto auto;
    }

    .examples-public-links {
        display: none;
    }

    .examples-mobile-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .examples-hero .examples-title {
        font-size: clamp(2.7rem, 13vw, 4.8rem);
    }

    .examples-summary-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .examples-public-nav-inner {
        min-height: 68px;
        width: min(var(--max-width), calc(100% - 1.25rem));
    }

    .examples-public-logo-img {
        width: 150px;
        max-width: 60vw;
    }

    .examples-mobile-menu {
        width: min(var(--max-width), calc(100% - 1.25rem));
    }

    .examples-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .examples-hero-inner {
        text-align: center;
    }

    .examples-hero .examples-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .examples-hero-actions {
        justify-content: center;
    }

    .examples-hero-card {
        padding: 18px;
        border-radius: 28px;
    }

    .examples-preview-card {
        min-height: 230px;
        padding: 16px;
        border-radius: 24px;
    }

    .examples-preview-overlay {
        max-width: 100%;
        padding: 16px;
        text-align: left;
    }

    .examples-hero-tags {
        justify-content: center;
    }

    .examples-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .industry-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .example-scroller {
        grid-auto-columns: minmax(280px, 86vw);
    }

    .examples-final-cta {
        border-radius: 28px;
    }

    .examples-final-actions {
        flex-direction: column;
    }

    .examples-final-actions .examples-btn {
        width: 100%;
    }

    .detail-preview-frame {
        padding: 16px;
    }

    .detail-cta-panel {
        padding: 22px 18px;
    }

    .detail-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-block-mobile {
        width: auto;
        min-width: 190px;
    }

    .start-card {
        padding: 28px 24px;
    }

    .start-footer-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .examples-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .examples-public-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .examples-hero .examples-title {
        font-size: 2.48rem;
    }

    .examples-title,
    .detail-title,
    .start-title,
    .examples-final-cta h2 {
        font-size: 2rem;
    }

    .examples-hero-card-lines {
        margin-bottom: 22px;
    }

    .examples-content {
        padding-top: 48px;
    }

    .industry-section {
        margin-top: 38px;
    }

    .example-card-body {
        padding: 16px;
    }

    .examples-final-cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .examples-footer-links {
        gap: 24px 20px;
    }

    .examples-footer-column h4 {
        font-size: 0.92rem;
    }

    .examples-footer-column a {
        font-size: 0.88rem;
    }
}

@media (max-width: 479px) {
    .topbar-secondary {
        display: none;
    }

    .detail-cta-actions,
    .start-footer-actions {
        flex-direction: column;
    }

    .btn-block-mobile {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .examples-public-logo-img {
        width: 132px;
    }

    .examples-footer-links {
        grid-template-columns: 1fr;
    }
}

@media print {
    .examples-public-nav,
    .examples-public-footer,
    .examples-hero,
    .examples-final-cta {
        display: none !important;
    }

    body {
        background: #ffffff;
    }
}/* =========================================================
   Example Detail + Start Flow
   @version 2.1.0
   ========================================================= */

/* ------------------ Shared Flow Nav ------------------ */

.example-flow-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 13, 52, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.example-flow-nav-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.example-flow-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.92rem;
}

.example-flow-back:hover {
    color: #ffffff;
}

.example-flow-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ------------------ Detail Page ------------------ */

.example-detail-shell {
    background: #ffffff;
}

.example-detail-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 8vw, 122px) clamp(18px, 4vw, 72px);
    color: #ffffff;
    background:
        radial-gradient(circle at 74% 24%, rgba(103, 232, 249, 0.38), transparent 20%),
        radial-gradient(circle at 62% 62%, rgba(251, 113, 133, 0.32), transparent 20%),
        radial-gradient(circle at 46% 42%, rgba(139, 92, 246, 0.38), transparent 24%),
        linear-gradient(135deg, #20127a 0%, #2334b6 42%, #445ee8 100%);
}

.example-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(19, 24, 82, 0.28));
    pointer-events: none;
}

.example-detail-hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: center;
}

.example-detail-copy {
    max-width: 820px;
}

.example-detail-hero .detail-title {
    color: #ffffff;
    font-size: clamp(2.7rem, 5.8vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.example-detail-hero .detail-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.02rem, 1.35vw, 1.25rem);
    line-height: 1.58;
    font-weight: 500;
}

.example-detail-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.example-detail-summary-card {
    position: relative;
    z-index: 4;
    padding: 24px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 110px rgba(7, 13, 52, 0.26);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.example-summary-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.example-summary-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
}

.example-summary-top span:nth-child(1) {
    background: #fb7185;
}

.example-summary-top span:nth-child(2) {
    background: #fcd34d;
}

.example-summary-top span:nth-child(3) {
    background: #67e8f9;
}

.example-summary-top strong {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.example-summary-body {
    display: grid;
    gap: 12px;
}

.example-summary-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.example-summary-row i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 15px;
    background: #edf4ff;
    color: var(--examples-blue-700);
}

.example-summary-row span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.example-summary-row strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 900;
}

.example-preview-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.08), transparent 22%),
        radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.08), transparent 20%),
        #f6f8ff;
    padding: clamp(66px, 7vw, 96px) clamp(18px, 4vw, 72px);
}

.example-preview-header {
    max-width: 800px;
    margin: 0 auto 36px;
    text-align: center;
}

.example-preview-header h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.example-preview-header p {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.example-preview-section .detail-preview-frame {
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.example-preview-section .detail-preview-card {
    border-radius: 22px;
    overflow: hidden;
}

.example-detail-cta-panel {
    max-width: 1180px;
    margin: clamp(46px, 6vw, 72px) auto;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.example-related-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 72px) clamp(72px, 7vw, 96px);
}

/* ------------------ Start Page ------------------ */

.example-start-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 74% 24%, rgba(103, 232, 249, 0.38), transparent 20%),
        radial-gradient(circle at 62% 62%, rgba(251, 113, 133, 0.32), transparent 20%),
        radial-gradient(circle at 46% 42%, rgba(139, 92, 246, 0.38), transparent 24%),
        linear-gradient(135deg, #20127a 0%, #2334b6 42%, #445ee8 100%);
}

.example-start-shell {
    min-height: 100vh;
}

.example-start-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: clamp(34px, 5vw, 70px) clamp(18px, 4vw, 72px);
    display: grid;
    place-items: center;
}

.example-start-card {
    position: relative;
    z-index: 3;
    width: min(1120px, 100%);
    padding: clamp(24px, 4vw, 40px);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 110px rgba(7, 13, 52, 0.26);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    color: #ffffff;
}

.start-back-link {
    margin-bottom: 22px;
}

.example-start-card .examples-eyebrow {
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.example-start-card .start-title {
    max-width: 860px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.example-start-card .start-subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.58;
}

.example-start-card .pill {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.26);
}

.example-start-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
    gap: 24px;
    margin-top: 30px;
    align-items: start;
}

.example-start-preview-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 60px rgba(7, 13, 52, 0.2);
}

.example-start-preview-card .start-preview-media {
    position: relative;
    background:
        radial-gradient(circle at 70% 20%, rgba(34, 211, 238, 0.14), transparent 28%),
        linear-gradient(145deg, #f6f8ff, #eef4ff);
}

.example-start-preview-card .start-preview-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 13, 52, 0.52) 100%);
    pointer-events: none;
}

.example-start-preview-card .start-preview-body {
    color: var(--text);
}

.example-start-options {
    gap: 16px;
}

.example-start-options .start-option {
    position: relative;
    grid-template-columns: auto 1fr;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 18px 42px rgba(7, 13, 52, 0.14);
}

.example-start-options .start-option.featured {
    border-color: rgba(103, 232, 249, 0.48);
}

.start-option-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: #edf4ff;
    color: var(--examples-blue-700);
    font-size: 1.1rem;
}

.example-start-options .start-option button {
    grid-column: 1 / -1;
}

.example-start-footer-actions {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.example-start-footer-actions .inline-link {
    color: #ffffff;
}

/* ------------------ Mobile ------------------ */

@media (max-width: 1100px) {
    .example-detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .example-detail-summary-card {
        max-width: 640px;
    }

    .example-start-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .example-flow-nav-inner {
        min-height: 68px;
        width: min(var(--max-width), calc(100% - 1.25rem));
    }

    .example-flow-nav-actions {
        display: none;
    }

    .example-detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .example-detail-hero-inner {
        text-align: center;
    }

    .example-detail-hero .detail-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .example-detail-actions {
        justify-content: center;
    }

    .example-detail-summary-card {
        margin: 0 auto;
        width: 100%;
        padding: 18px;
        border-radius: 26px;
    }

    .example-preview-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .example-preview-section .detail-preview-frame {
        padding: 10px;
        border-radius: 24px;
    }

    .example-preview-section .detail-preview-card {
        border-radius: 18px;
    }

    .example-detail-cta-panel {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        margin-left: 16px;
        margin-right: 16px;
    }

   .example-detail-cta-panel .detail-cta-actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.example-detail-cta-panel .btn {
    width: auto;
    min-width: 190px;
}
    .example-detail-cta-panel .btn {
        width: 100%;
    }

    .example-start-hero {
        padding-left: 16px;
        padding-right: 16px;
        place-items: start center;
    }

    .example-start-card {
        border-radius: 28px;
        padding: 22px;
    }

    .example-start-card .start-title {
        font-size: 2.35rem;
    }

    .example-start-options .start-option {
        grid-template-columns: 1fr;
    }

    .start-option-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 520px) {
    .example-detail-hero .detail-title,
    .example-start-card .start-title {
        font-size: 2.2rem;
    }

    .example-detail-actions,
    .example-start-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }
.example-detail-cta-panel .detail-cta-actions {
    width: 100%;
}

.example-detail-cta-panel .btn {
    width: 100%;
}
    .example-detail-actions .examples-btn,
    .example-start-footer-actions .inline-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .example-summary-row {
        align-items: flex-start;
        text-align: left;
    }
}/* ==========================================================
   Examples Logo Visibility Fix
   ========================================================== */

.examples-public-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 7px 11px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 13, 52, 0.14);
}

.examples-public-logo-img {
    filter: none !important;
    width: 170px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .examples-public-logo-img {
        width: 145px;
    }
}

@media (max-width: 430px) {
    .examples-public-logo-img {
        width: 128px;
    }
}