/* /Components/Public/CtaBand.razor.rz.scp.css */
/* ---- CTA Band -------------------------------------------- */
.cta-band[b-93dfz3u5x3] {
    margin: 26px 18px 0;
    padding: 38px 44px;
    border-radius: 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(20, 196, 210, 0.24) 0%, rgba(20, 196, 210, 0) 32%),
        linear-gradient(135deg, #0f3558 0%, #174a73 100%);
    color: white;
    box-shadow: 0 36px 90px rgba(17, 62, 98, 0.14);
}

.section-kicker[b-93dfz3u5x3] {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.cta-band__title[b-93dfz3u5x3] {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: white;
}

.cta-band__desc[b-93dfz3u5x3] {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
}

.cta-band__actions[b-93dfz3u5x3] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: 200px;
}

/* Secondary button override for dark background */
.button.secondary[b-93dfz3u5x3] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: white;
    box-shadow: none;
}

.button.secondary:hover[b-93dfz3u5x3] {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
    box-shadow: none;
    filter: none;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 960px) {
    .cta-band[b-93dfz3u5x3] {
        grid-template-columns: 1fr;
        padding: 30px 28px;
    }

    .cta-band__actions[b-93dfz3u5x3] {
        justify-content: flex-start;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .cta-band[b-93dfz3u5x3] {
        margin: 20px 16px 0;
        padding: 24px 20px;
    }
}
/* /Components/Public/Home/ContactSection.razor.rz.scp.css */
/* ---- Contact section shell ------------------------------- */
.contact-section[b-ugma6u7zt3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- Intro (left column) --------------------------------- */
.contact-intro h2[b-ugma6u7zt3] {
    margin: 10px 0 14px;
    font-size: clamp(26px, 3.5vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: var(--pw-ink);
}

.contact-intro > p[b-ugma6u7zt3] {
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--pw-muted);
}

/* ---- Contact highlight items (email + phone) ------------- */
.contact-highlights[b-ugma6u7zt3] {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-highlight-item[b-ugma6u7zt3] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(20, 196, 210, 0.14) 0%, rgba(20, 196, 210, 0) 40%),
        linear-gradient(135deg, #0f3558 0%, #174a73 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(17, 62, 98, 0.18);
    transition: box-shadow 0.18s, transform 0.18s;
}

.contact-highlight-item:hover[b-ugma6u7zt3] {
    box-shadow: 0 14px 36px rgba(17, 62, 98, 0.26);
    transform: translateY(-2px);
}

.contact-highlight-icon[b-ugma6u7zt3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.9);
}

.contact-highlight-label[b-ugma6u7zt3] {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}

.contact-highlight-value[b-ugma6u7zt3] {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
}

/* ---- Contact reasons (bullet list) ----------------------- */
.contact-reasons[b-ugma6u7zt3] {
    display: grid;
    gap: 12px;
}

.contact-reason[b-ugma6u7zt3] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-reason-dot[b-ugma6u7zt3] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2, #14c4d2) 0%, var(--pw-accent, #0f6ad8) 100%);
    flex-shrink: 0;
    margin-top: 7px;
}

.contact-reason p[b-ugma6u7zt3] {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pw-muted);
}

/* ---- Contact form (right column) ------------------------- */
.contact-form-shell[b-ugma6u7zt3] {
    padding: 32px 36px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 10%, rgba(20, 196, 210, 0.12) 0%, rgba(20, 196, 210, 0) 32%),
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(236,248,251,0.96) 100%);
    box-shadow: 0 24px 64px rgba(17, 62, 98, 0.10);
    border: 1px solid rgba(16, 73, 117, 0.07);
}

.contact-form-shell h3[b-ugma6u7zt3] {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--pw-ink);
}

.contact-form-note[b-ugma6u7zt3] {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--pw-muted);
}

.contact-form-shell[b-ugma6u7zt3]  form.contact-form {
    display: grid !important;
    gap: 16px !important;
}

.form-row[b-ugma6u7zt3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.form-group[b-ugma6u7zt3] {
    display: grid;
    gap: 6px;
}

.form-group label[b-ugma6u7zt3] {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--pw-ink);
}

.form-optional[b-ugma6u7zt3] {
    font-weight: 400;
    color: var(--pw-muted);
}

.form-group[b-ugma6u7zt3]  .mud-input-control {
    margin: 0;
    width: 100%;
}

.form-group[b-ugma6u7zt3]  .mud-input-control-input-container {
    padding-top: 0;
}

.form-group[b-ugma6u7zt3]  .mud-input-helper-container {
    min-height: 0;
    padding: 6px 0 0;
}

.form-group[b-ugma6u7zt3]  .mud-input-helper-text {
    font-size: 13px;
    color: #c0392b;
    font-weight: 700;
    margin: 0;
}

.form-group[b-ugma6u7zt3]  .mud-input {
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1.5px solid rgba(16, 73, 117, 0.14);
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group[b-ugma6u7zt3]  .mud-input.mud-input-underline:before,
.form-group[b-ugma6u7zt3]  .mud-input.mud-input-underline:after {
    display: none;
}

.form-group[b-ugma6u7zt3]  input.mud-input-root,
.form-group[b-ugma6u7zt3]  textarea.mud-input-root {
    padding: 10px 14px !important;
    font-size: 15px;
    color: var(--pw-ink);
    font-family: inherit;
    line-height: 1.5;
}

.form-group[b-ugma6u7zt3]  textarea.mud-input-root {
    min-height: 160px;
    resize: vertical;
}

.form-group[b-ugma6u7zt3]  input.mud-input-root::placeholder,
.form-group[b-ugma6u7zt3]  textarea.mud-input-root::placeholder {
    color: rgba(16, 73, 117, 0.3) !important;
    opacity: 1 !important;
}

.form-group[b-ugma6u7zt3]  .mud-input:focus-within {
    border-color: var(--pw-accent, #0f6ad8);
    box-shadow: 0 0 0 3px rgba(15, 106, 216, 0.10);
}

.contact-submit-wrap[b-ugma6u7zt3] {
    margin-top: 4px;
}

.contact-submit[b-ugma6u7zt3] {
    justify-self: start;
}

.contact-submit-wrap[b-ugma6u7zt3]  .contact-submit {
    display: inline-flex;
    justify-self: start;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 960px) {
    .contact-section[b-ugma6u7zt3] { grid-template-columns: 1fr; gap: 36px; }
    .form-row[b-ugma6u7zt3] { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .contact-form-shell[b-ugma6u7zt3] { padding: 24px 20px; }
}
/* /Components/Public/Home/FaqTeaserSection.razor.rz.scp.css */
/* ---- FAQ teaser ------------------------------------------ */
.faq-shell[b-zo0sbho7t7] {
    padding-left: 28px;
    padding-right: 28px;
}

.faq-list[b-zo0sbho7t7] {
    display: grid;
    gap: 12px;
}

.faq-item[b-zo0sbho7t7] {
    padding: 22px 26px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(16, 73, 117, 0.08);
    box-shadow: 0 18px 48px rgba(17, 62, 98, 0.12);
    cursor: pointer;
    user-select: none;
}

.faq-head[b-zo0sbho7t7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 19px;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--pw-ink);
    cursor: pointer;
}

.faq-head i[b-zo0sbho7t7] {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15,106,216,0.08);
    display: block;
    position: relative;
    flex-shrink: 0;
}

.faq-head i[b-zo0sbho7t7]::before,
.faq-head i[b-zo0sbho7t7]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--pw-accent);
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

.faq-head i[b-zo0sbho7t7]::after {
    width: 2px;
    height: 12px;
}

.faq-item.expanded .faq-head i[b-zo0sbho7t7]::after {
    display: none;
}

.faq-gradient[b-zo0sbho7t7] {
    background: linear-gradient(90deg, #22bfcc 0%, #0f6ad8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 2px;
}

.faq-item p[b-zo0sbho7t7] {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--pw-muted);
    max-width: 860px;
}
/* /Components/Public/Home/HeroSection.razor.rz.scp.css */
/* Hero screenshot sizing */
.hero-screenshot[b-bcfvlfx0fk] {
    width: 88%;
    margin: 36px auto 44px;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

/* ---- Hero shell ------------------------------------------ */
.hero-shell[b-bcfvlfx0fk] {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    margin: 18px 18px 0;
    padding: 64px 52px 52px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 26%, rgba(255,255,255,0) 44%),
        radial-gradient(circle at 82% 14%, rgba(127, 230, 240, 0.28) 0%, rgba(127, 230, 240, 0) 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(238,249,252,0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.hero-shell[b-bcfvlfx0fk]::before,
.hero-shell[b-bcfvlfx0fk]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-shell[b-bcfvlfx0fk]::before {
    width: 640px;
    height: 640px;
    right: -160px;
    top: -120px;
    background: radial-gradient(circle, rgba(15, 106, 216, 0.12) 0%, rgba(15, 106, 216, 0) 72%);
}

.hero-shell[b-bcfvlfx0fk]::after {
    width: 560px;
    height: 560px;
    left: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(20, 196, 210, 0.14) 0%, rgba(20, 196, 210, 0) 72%);
}

/* ---- Hero copy ------------------------------------------- */
.hero-copy[b-bcfvlfx0fk] {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.eyebrow[b-bcfvlfx0fk] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(16, 73, 117, 0.06);
    color: #24617d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(17, 62, 98, 0.05);
}

.eyebrow[b-bcfvlfx0fk]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
}

.hero-copy h1[b-bcfvlfx0fk] {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    max-width: 1020px;
    color: var(--pw-ink);
}

.hero-gradient[b-bcfvlfx0fk] {
    background: linear-gradient(90deg, #22bfcc 0%, #0f6ad8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 4px;
}

.hero-copy p[b-bcfvlfx0fk] {
    max-width: 860px;
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--pw-muted);
}

.micro-note[b-bcfvlfx0fk] {
    font-size: 14px;
    line-height: 1.55;
    color: #426477;
    max-width: 720px;
}

.micro-note strong[b-bcfvlfx0fk] {
    color: var(--pw-ink);
}

div.cta-row > a.button.secondary[b-bcfvlfx0fk]{
    box-shadow: 0 12px 28px rgba(17, 62, 98, 0.1);
}

/* ---- Proof ribbon ---------------------------------------- */
.proof-ribbon[b-bcfvlfx0fk] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.proof-item[b-bcfvlfx0fk] {
    text-align: center;
}

.proof-item small[b-bcfvlfx0fk] {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5f7a8b;
    font-weight: 800;
}

.proof-item strong[b-bcfvlfx0fk] {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.proof-item p[b-bcfvlfx0fk] {
    margin: 0 auto;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--pw-muted);
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 900px) {
    .hero-shell[b-bcfvlfx0fk] { margin: 12px 12px 0; padding: 36px 24px 40px; }
    .proof-ribbon[b-bcfvlfx0fk] { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
    .hero-shell[b-bcfvlfx0fk] { border-radius: 24px; }
    .hero-copy h1[b-bcfvlfx0fk] { font-size: 36px; }
    .hero-screenshot[b-bcfvlfx0fk] { width: 100%; margin: 28px auto 32px; }
}
/* /Components/Public/Home/MobileAppSection.razor.rz.scp.css */
/* ---- Story section (mobile app) -------------------------- */
.landing-story[b-gjnamey5eu] {
    padding-top: 8px;
}

.story-layout--reverse[b-gjnamey5eu] {
    display: grid;
    grid-template-columns: 1fr minmax(0, 520px);
    gap: 52px;
    align-items: center;
}

.story-copy[b-gjnamey5eu] {
    display: grid;
    gap: 18px;
}

.story-copy--right[b-gjnamey5eu] {
    margin-left: auto;
}

.story-copy h2[b-gjnamey5eu] {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--pw-ink);
}

.story-copy p[b-gjnamey5eu] {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--pw-muted);
}

.story-list[b-gjnamey5eu] {
    display: grid;
    gap: 14px;
    margin: 2px 0;
    padding: 0;
}

.story-list li[b-gjnamey5eu] {
    list-style: none;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pw-ink);
    font-weight: 800;
}

.story-list li[b-gjnamey5eu]::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    box-shadow: 0 10px 18px rgba(15, 106, 216, 0.18);
}

.screenshot-mobile[b-gjnamey5eu] {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .story-layout--reverse[b-gjnamey5eu] { grid-template-columns: 1fr; }
    .story-layout--reverse .screenshot-mobile[b-gjnamey5eu] { order: 2; }
    .story-layout--reverse .story-copy[b-gjnamey5eu] { order: 1; }
    .story-copy--right[b-gjnamey5eu] { margin-left: 0; }
}
/* /Components/Public/Home/PricingTeaserSection.razor.rz.scp.css */
/* ---- Pricing teaser -------------------------------------- */
.pricing-teaser-shell[b-gokcc1tb5m] {
    padding: 34px 36px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 88% 12%, rgba(20, 196, 210, 0.18) 0%, rgba(20, 196, 210, 0) 28%),
        linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(237,248,251,0.94) 100%);
    box-shadow: 0 28px 64px rgba(17, 62, 98, 0.10);
}

.pricing-grid[b-gokcc1tb5m] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.plan[b-gokcc1tb5m] {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(16, 73, 117, 0.08);
    display: grid;
    gap: 12px;
    align-content: start;
}

.plan.highlight[b-gokcc1tb5m] {
    background: linear-gradient(180deg, rgba(15,106,216,0.08) 0%, rgba(255,255,255,0.86) 100%);
    transform: translateY(-8px);
}

.plan small[b-gokcc1tb5m] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pw-muted);
    font-weight: 800;
}

.plan > strong[b-gokcc1tb5m] {
    font-size: 26px;
    letter-spacing: -0.05em;
}

.plan .price[b-gokcc1tb5m] {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--pw-ink);
}

.plan-note[b-gokcc1tb5m] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pw-muted);
}

.plan-buy[b-gokcc1tb5m] {
    justify-self: end;
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    border: none;
    color: white;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(15, 106, 216, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    text-decoration: none;
}

.plan-buy:hover[b-gokcc1tb5m] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 14px 28px rgba(15, 106, 216, 0.38);
    filter: brightness(1.06);
}

.teaser-actions[b-gokcc1tb5m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.teaser-text[b-gokcc1tb5m] {
    margin: 0;
    font-size: 15px;
    color: var(--pw-muted);
    text-align: center;
    max-width: 500px;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 900px) {
    .pricing-grid[b-gokcc1tb5m] { grid-template-columns: 1fr; }
    .plan.highlight[b-gokcc1tb5m] { transform: none; }
}

@media (max-width: 600px) {
    .pricing-teaser-shell[b-gokcc1tb5m] { padding: 24px 20px; }
}
/* /Components/Public/Home/WebAppSection.razor.rz.scp.css */
/* ---- Story section (web app) ----------------------------- */
.landing-story[b-m391xtfeps] {
    padding-top: 32px;
}

.story-layout[b-m391xtfeps] {
    display: grid;
    grid-template-columns: minmax(0, 520px) 1fr;
    gap: 52px;
    align-items: center;
}

.story-copy[b-m391xtfeps] {
    display: grid;
    gap: 18px;
}

.story-copy h2[b-m391xtfeps] {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--pw-ink);
}

.story-copy p[b-m391xtfeps] {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--pw-muted);
}

.story-list[b-m391xtfeps] {
    display: grid;
    gap: 14px;
    margin: 2px 0;
    padding: 0;
}

.story-list li[b-m391xtfeps] {
    list-style: none;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pw-ink);
    font-weight: 800;
}

.story-list li[b-m391xtfeps]::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    box-shadow: 0 10px 18px rgba(15, 106, 216, 0.18);
}

.screenshot-web[b-m391xtfeps] {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .story-layout[b-m391xtfeps] { grid-template-columns: 1fr; }
}

.story-copy h2[b-m391xtfeps] {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--pw-ink);
}

.story-copy p[b-m391xtfeps] {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--pw-muted);
}

.story-list[b-m391xtfeps] {
    display: grid;
    gap: 14px;
    margin: 2px 0;
    padding: 0;
}

.story-list li[b-m391xtfeps] {
    list-style: none;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 16px;
    line-height: 1.6;
    color: var(--pw-ink);
    font-weight: 800;
}

.story-list li[b-m391xtfeps]::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    box-shadow: 0 10px 18px rgba(15, 106, 216, 0.18);
}
/* /Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-t5vk8i6t0i] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-t5vk8i6t0i] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3enfrlxzlr],
.components-reconnect-repeated-attempt-visible[b-3enfrlxzlr],
.components-reconnect-failed-visible[b-3enfrlxzlr],
.components-pause-visible[b-3enfrlxzlr],
.components-resume-failed-visible[b-3enfrlxzlr],
.components-rejoining-animation[b-3enfrlxzlr] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-retrying[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-failed[b-3enfrlxzlr],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3enfrlxzlr] {
    display: block;
}


#components-reconnect-modal[b-3enfrlxzlr] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-3enfrlxzlr 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-3enfrlxzlr 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3enfrlxzlr 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-3enfrlxzlr]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-3enfrlxzlr 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-3enfrlxzlr {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3enfrlxzlr {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3enfrlxzlr {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-3enfrlxzlr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-3enfrlxzlr] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-3enfrlxzlr] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
    #components-reconnect-modal button:hover[b-3enfrlxzlr] {
        background-color: #3b6ea2;
    }
}

    #components-reconnect-modal button:active[b-3enfrlxzlr] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-3enfrlxzlr] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3enfrlxzlr] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3enfrlxzlr 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3enfrlxzlr] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-3enfrlxzlr {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Pages/Demo/Tutorial.razor.rz.scp.css */
.demo-tutorial[b-0laq85fe4c] {
    display: grid;
    gap: 28px;
}

.demo-tutorial__hero[b-0laq85fe4c] {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(16, 73, 117, 0.10);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 248, 251, 0.96) 100%);
    box-shadow: 0 24px 56px rgba(17, 62, 98, 0.10);
}

.demo-tutorial__hero-copy[b-0laq85fe4c] {
    display: grid;
    align-content: center;
    gap: 16px;
}

.demo-tutorial__eyebrow[b-0laq85fe4c],
.demo-tutorial__section-head span[b-0laq85fe4c] {
    width: fit-content;
    color: var(--mud-palette-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-tutorial__title[b-0laq85fe4c] {
    max-width: 760px;
}

.demo-tutorial__subtitle[b-0laq85fe4c] {
    max-width: 740px;
    color: var(--mud-palette-text-secondary);
}

.demo-tutorial__hero-actions[b-0laq85fe4c] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.demo-tutorial__summary[b-0laq85fe4c] {
    display: grid;
    gap: 12px;
    align-content: center;
}

.demo-tutorial__summary > div[b-0laq85fe4c] {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(16, 73, 117, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.demo-tutorial__summary strong[b-0laq85fe4c] {
    color: var(--mud-palette-text-primary);
    font-size: 18px;
    line-height: 1.2;
}

.demo-tutorial__summary span[b-0laq85fe4c],
.demo-tutorial__step .mud-typography-body2[b-0laq85fe4c],
.demo-tutorial__mobile .mud-typography-body2[b-0laq85fe4c],
.demo-tutorial__scenario li[b-0laq85fe4c] {
    color: var(--mud-palette-text-secondary);
}

.demo-tutorial__section-head[b-0laq85fe4c] {
    display: grid;
    gap: 8px;
    max-width: 760px;
}

.demo-tutorial__section-head h2[b-0laq85fe4c] {
    margin: 0;
    color: var(--mud-palette-text-primary);
    font-size: 32px;
    line-height: 1.15;
}

.demo-tutorial__section-head p[b-0laq85fe4c] {
    margin: 0;
    color: var(--mud-palette-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.demo-tutorial__step[b-0laq85fe4c],
.demo-tutorial__mobile[b-0laq85fe4c],
.demo-tutorial__scenario[b-0laq85fe4c] {
    height: 100%;
    padding: 24px;
    border: 1px solid rgba(16, 73, 117, 0.10);
    border-radius: 18px;
    background: white;
}

.demo-tutorial__step[b-0laq85fe4c] {
    display: grid;
    gap: 14px;
    align-content: start;
}

.demo-tutorial__step-icon[b-0laq85fe4c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--mud-palette-primary);
}

.demo-tutorial__step-icon span[b-0laq85fe4c] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15, 106, 216, 0.10);
    color: var(--mud-palette-primary);
    font-weight: 800;
}

.demo-tutorial__lower-grid[b-0laq85fe4c] {
    margin-top: 4px;
}

.demo-tutorial__mobile[b-0laq85fe4c] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.demo-tutorial__mobile > .mud-icon-root[b-0laq85fe4c] {
    color: var(--mud-palette-primary);
    font-size: 44px;
}

.demo-tutorial__mobile .mud-typography-caption[b-0laq85fe4c] {
    display: block;
    margin-top: 12px;
}

.demo-tutorial__scenario ol[b-0laq85fe4c] {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding-left: 22px;
}

.demo-tutorial__scenario li[b-0laq85fe4c]::marker {
    color: var(--mud-palette-primary);
    font-weight: 800;
}

@media (max-width: 960px) {
    .demo-tutorial__hero[b-0laq85fe4c] {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .demo-tutorial__hero-actions[b-0laq85fe4c] {
        flex-direction: column;
    }

    .demo-tutorial__mobile[b-0laq85fe4c] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Public/Demo.razor.rz.scp.css */
/* ---- Demo page shell ------------------------------------- */
/* Matches hero-shell from HeroSection but scoped to this page */
.demo-shell[b-f6k23ds25h] {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    margin: 18px 18px 34px;
    padding: 64px 52px 72px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 26%, rgba(255,255,255,0) 44%),
        radial-gradient(circle at 82% 14%, rgba(127, 230, 240, 0.28) 0%, rgba(127, 230, 240, 0) 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(238,249,252,0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.demo-shell[b-f6k23ds25h]::before,
.demo-shell[b-f6k23ds25h]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.demo-shell[b-f6k23ds25h]::before {
    width: 640px;
    height: 640px;
    right: -160px;
    top: -120px;
    background: radial-gradient(circle, rgba(15, 106, 216, 0.12) 0%, rgba(15, 106, 216, 0) 72%);
}

.demo-shell[b-f6k23ds25h]::after {
    width: 560px;
    height: 560px;
    left: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(20, 196, 210, 0.14) 0%, rgba(20, 196, 210, 0) 72%);
}

/* ---- Two-column grid ------------------------------------- */
.demo-grid[b-f6k23ds25h] {
    display: grid;
    grid-template-columns: 1fr minmax(380px, 480px);
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Left: copy ------------------------------------------ */
.demo-copy h1[b-f6k23ds25h] {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.1;
    letter-spacing: -0.07em;
    color: var(--pw-ink);
}

.demo-copy > p[b-f6k23ds25h] {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--pw-muted);
    max-width: 480px;
}

/* ---- Perk bullet list ------------------------------------ */
.demo-perks[b-f6k23ds25h] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.demo-perks li[b-f6k23ds25h] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #2e5268;
    line-height: 1.45;
}

.demo-perks li[b-f6k23ds25h]::before {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2, #14c4d2) 0%, var(--pw-accent, #0f6ad8) 100%);
    margin-top: 8px;
}

/* ---- Right: form panel ----------------------------------- */
.demo-form-panel[b-f6k23ds25h] {
    padding: 34px 32px 36px;
    border-radius: 32px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.62);
    box-shadow:
        0 36px 90px rgba(17, 62, 98, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.demo-form-head[b-f6k23ds25h] {
    margin-bottom: 28px;
}

.demo-form-head strong[b-f6k23ds25h] {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--pw-ink);
    margin-bottom: 6px;
    line-height: 1.1;
}

.demo-form-head p[b-f6k23ds25h] {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--pw-muted);
}

/* ---- Form groups ----------------------------------------- */
.demo-form-panel[b-f6k23ds25h]  .demo-form {
    display: block;
}

.form-group[b-f6k23ds25h] {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.form-row[b-f6k23ds25h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group:last-of-type[b-f6k23ds25h] {
    margin-bottom: 24px;
}

.form-group label[b-f6k23ds25h] {
    font-size: 13px;
    font-weight: 800;
    color: var(--pw-ink);
    letter-spacing: 0.01em;
}

.form-group[b-f6k23ds25h]  .mud-input-control {
    margin: 0;
    width: 100%;
}

.form-group[b-f6k23ds25h]  .mud-input-control-input-container {
    padding-top: 0;
}

.form-group[b-f6k23ds25h]  .mud-input-helper-container {
    min-height: 0;
    padding: 7px 0 0;
}

.form-group[b-f6k23ds25h]  .mud-input-helper-text {
    font-size: 13px;
    color: #c0392b;
    font-weight: 700;
    margin: 0;
}

.form-group[b-f6k23ds25h]  .mud-input {
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1.5px solid rgba(16, 73, 117, 0.14);
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group[b-f6k23ds25h]  .mud-input.mud-input-underline:before,
.form-group[b-f6k23ds25h]  .mud-input.mud-input-underline:after {
    display: none;
}

.form-group[b-f6k23ds25h]  input.mud-input-root {
    padding: 10px 14px !important;
    font-size: 15px;
    line-height: 1.5;
    color: var(--pw-ink);
    font-family: inherit;
}

.form-group[b-f6k23ds25h]  input.mud-input-root::placeholder {
    color: rgba(16, 73, 117, 0.3) !important;
    opacity: 1 !important;
}

.form-group[b-f6k23ds25h]  .mud-input:focus-within {
    border-color: var(--pw-accent, #0f6ad8);
    box-shadow: 0 0 0 3px rgba(15, 106, 216, 0.10);
}

.demo-submit-wrap[b-f6k23ds25h] {
    margin-top: 0;
}

/* ---- Submit button --------------------------------------- */
.demo-submit-wrap[b-f6k23ds25h]  .demo-submit {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
    letter-spacing: -0.02em;
    border-radius: 18px;
    box-shadow: 0 20px 36px rgba(15, 106, 216, 0.26);
}

.demo-submit-wrap[b-f6k23ds25h]  .demo-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 860px) {
    .demo-grid[b-f6k23ds25h] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-shell[b-f6k23ds25h] {
        margin: 12px 12px 24px;
        padding: 40px 24px 48px;
    }

    .form-row[b-f6k23ds25h] {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* /Pages/Public/Faq.razor.rz.scp.css */
/* ---- Section overrides ----------------------------------- */
.faq-page-shell[b-ybkwx0mrgx] {
    padding: 34px 36px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 88% 12%, rgba(20, 196, 210, 0.14) 0%, rgba(20, 196, 210, 0) 28%),
        linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(237,248,251,0.94) 100%);
    box-shadow: 0 28px 64px rgba(17, 62, 98, 0.10);
}

.faq-section-head[b-ybkwx0mrgx] {
    grid-template-columns: 1fr;
    gap: 10px;
}

.faq-section-head p[b-ybkwx0mrgx] {
    max-width: 560px;
    margin-top: 10px;
}

/* ---- Two-column layout ----------------------------------- */
.faq-layout[b-ybkwx0mrgx] {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

/* ---- Topic sidebar --------------------------------------- */
.faq-topics[b-ybkwx0mrgx] {
    display: grid;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.topic-card[b-ybkwx0mrgx] {
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: rgba(250, 253, 255, 0.90);
    border: 1px solid var(--pw-line);
    display: grid;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.topic-card:hover[b-ybkwx0mrgx] {
    border-color: rgba(15, 106, 216, 0.22);
    box-shadow: 0 8px 22px rgba(17, 62, 98, 0.08);
}

.topic-card.active[b-ybkwx0mrgx] {
    background: linear-gradient(180deg, rgba(20, 196, 210, 0.12) 0%, rgba(15, 106, 216, 0.08) 100%);
    border-color: rgba(15, 106, 216, 0.18);
}

.topic-card span[b-ybkwx0mrgx] {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pw-muted);
    font-weight: 800;
}

.topic-card strong[b-ybkwx0mrgx] {
    font-size: 16px;
    letter-spacing: -0.03em;
    color: var(--pw-ink);
}

.topic-card p[b-ybkwx0mrgx] {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--pw-muted);
}

/* ---- FAQ list -------------------------------------------- */
.faq-list[b-ybkwx0mrgx] {
    display: grid;
    gap: 12px;
}

/* ---- FAQ item card --------------------------------------- */
.faq-item[b-ybkwx0mrgx] {
    padding: 22px 24px;
    border-radius: 26px;
    background: rgba(250, 253, 255, 0.92);
    border: 1px solid var(--pw-line);
    cursor: pointer;
    user-select: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.faq-item:hover[b-ybkwx0mrgx] {
    border-color: rgba(15, 106, 216, 0.22);
    box-shadow: 0 8px 24px rgba(17, 62, 98, 0.07);
}

.faq-item.featured[b-ybkwx0mrgx] {
    background:
        radial-gradient(circle at top right, rgba(127, 230, 240, 0.18) 0%, rgba(127, 230, 240, 0) 30%),
        rgba(250, 253, 255, 0.95);
    border-color: rgba(15, 106, 216, 0.14);
}

/* ---- Top row (chip + icon) ------------------------------- */
.faq-top[b-ybkwx0mrgx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-chip[b-ybkwx0mrgx] {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 106, 216, 0.09);
    color: var(--pw-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.faq-icon[b-ybkwx0mrgx] {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--pw-line);
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: background 0.15s;
}

.faq-item:hover .faq-icon[b-ybkwx0mrgx] {
    background: rgba(15, 106, 216, 0.06);
}

.faq-icon[b-ybkwx0mrgx]::before,
.faq-icon[b-ybkwx0mrgx]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--pw-accent);
    transform: translate(-50%, -50%);
}

.faq-icon.plus[b-ybkwx0mrgx]::after {
    width: 2px;
    height: 12px;
}

/* ---- Item content ---------------------------------------- */
.faq-item h3[b-ybkwx0mrgx] {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: var(--pw-ink);
}

.faq-item p[b-ybkwx0mrgx] {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pw-muted);
    max-width: 820px;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
    .faq-layout[b-ybkwx0mrgx] {
        grid-template-columns: 1fr;
    }

    .faq-topics[b-ybkwx0mrgx] {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
    }
}

@media (max-width: 820px) {
    .faq-hero[b-ybkwx0mrgx] {
        margin: 14px 14px 0;
        padding: 36px 28px 32px;
    }

    .faq-page-shell[b-ybkwx0mrgx] {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .faq-hero[b-ybkwx0mrgx] {
        margin: 12px 12px 0;
        padding: 30px 20px 26px;
    }

    .faq-topics[b-ybkwx0mrgx] {
        grid-template-columns: 1fr;
    }

    .faq-item h3[b-ybkwx0mrgx] {
        font-size: 19px;
    }
}
/* /Pages/Public/Features.razor.rz.scp.css */
/* ── Eyebrow & gradient (local duplicates of HeroSection tokens) ─ */
.ft-eyebrow[b-7i6wx1vf1n] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(16, 73, 117, 0.06);
    color: #24617d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(17, 62, 98, 0.05);
}

.ft-eyebrow[b-7i6wx1vf1n]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
}

.ft-gradient[b-7i6wx1vf1n] {
    background: linear-gradient(90deg, #22bfcc 0%, #0f6ad8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 4px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.ft-hero[b-7i6wx1vf1n] {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    margin: 18px 18px 0;
    padding: 64px 52px 52px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 26%, rgba(255,255,255,0) 44%),
        radial-gradient(circle at 82% 14%, rgba(127, 230, 240, 0.28) 0%, rgba(127, 230, 240, 0) 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(238,249,252,0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.ft-hero[b-7i6wx1vf1n]::before,
.ft-hero[b-7i6wx1vf1n]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.ft-hero[b-7i6wx1vf1n]::before {
    width: 640px;
    height: 640px;
    right: -160px;
    top: -120px;
    background: radial-gradient(circle, rgba(15, 106, 216, 0.12) 0%, rgba(15, 106, 216, 0) 72%);
}

.ft-hero[b-7i6wx1vf1n]::after {
    width: 560px;
    height: 560px;
    left: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(20, 196, 210, 0.14) 0%, rgba(20, 196, 210, 0) 72%);
}

.ft-hero__copy[b-7i6wx1vf1n] {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.ft-hero__copy h1[b-7i6wx1vf1n] {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    max-width: 900px;
    color: var(--pw-ink);
}

.ft-hero__copy p[b-7i6wx1vf1n] {
    max-width: 760px;
    margin: 0 0 28px;
    font-size: 19px;
    line-height: 1.6;
    color: var(--pw-muted);
}

/* ── Feature nav cards ───────────────────────────────────────── */
.ft-hero__nav[b-7i6wx1vf1n] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ft-nav-card[b-7i6wx1vf1n] {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 26px;
    text-decoration: none;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.58);
    box-shadow: 0 18px 36px rgba(17, 62, 98, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    color: var(--pw-ink);
}

.ft-nav-card:hover[b-7i6wx1vf1n] {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(17, 62, 98, 0.12);
}

.ft-nav-card strong[b-7i6wx1vf1n] {
    display: block;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.ft-nav-card span[b-7i6wx1vf1n] {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pw-muted);
}

/* ── Feature sections ────────────────────────────────────────── */
.ft-section[b-7i6wx1vf1n] {
    margin: 26px 18px 0;
    padding: 38px 40px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 12% 0%, rgba(20, 196, 210, 0.12) 0%, rgba(20, 196, 210, 0) 32%),
        linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(247,252,254,0.96) 100%);
    border: 1px solid rgba(255,255,255,0.58);
    box-shadow: var(--pw-shadow-lg);
    scroll-margin-top: 24px;
}

.ft-section--mobile[b-7i6wx1vf1n] {
    background:
        radial-gradient(circle at 88% 0%, rgba(15, 106, 216, 0.10) 0%, rgba(15, 106, 216, 0) 32%),
        linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(247,252,254,0.96) 100%);
}

.ft-section__head[b-7i6wx1vf1n] {
    margin-bottom: 36px;
}

.ft-section__head h2[b-7i6wx1vf1n] {
    margin: 12px 0 14px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--pw-ink);
    max-width: 720px;
}

.ft-section__head p[b-7i6wx1vf1n] {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--pw-muted);
    max-width: 680px;
}

/* ── Feature bands ───────────────────────────────────────────── */
.ft-band[b-7i6wx1vf1n] {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(16, 73, 117, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
    scroll-margin-top: 32px;
}

.ft-band + .ft-band[b-7i6wx1vf1n] {
    margin-top: 20px;
}

.ft-band--reverse .ft-band__copy[b-7i6wx1vf1n] { order: 2; }
.ft-band--reverse .ft-band__visual[b-7i6wx1vf1n] { order: 1; }

/* ── Band copy ───────────────────────────────────────────────── */
.ft-band__copy[b-7i6wx1vf1n] {
    display: grid;
    gap: 16px;
    align-content: start;
}

.ft-band__copy h3[b-7i6wx1vf1n] {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: var(--pw-ink);
}

.ft-band__copy p[b-7i6wx1vf1n] {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--pw-muted);
}

/* ── Feature points list ─────────────────────────────────────── */
.ft-points[b-7i6wx1vf1n] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.ft-points li[b-7i6wx1vf1n] {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--pw-ink);
    font-weight: 600;
}

.ft-points li[b-7i6wx1vf1n]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    box-shadow: 0 0 0 6px rgba(20, 196, 210, 0.08);
}

/* ── Visual shell ────────────────────────────────────────────── */
.ft-band__visual[b-7i6wx1vf1n] { min-width: 0; }

.ft-visual-shell[b-7i6wx1vf1n] {
    position: relative;
    padding: 20px;
    border-radius: 32px;
    border: 1px solid rgba(16, 73, 117, 0.08);
    box-shadow: var(--pw-shadow-md);
    overflow: hidden;
}

.ft-visual-shell--phone[b-7i6wx1vf1n] {
    display: flex;
    justify-content: center;
    padding: 28px 20px;
}

/* ── Orders and people screenshot ─────────── */
.ft-image[b-7i6wx1vf1n] {
    width: 100%;
    display: block;
    border-radius: 20px;
    min-height: 380px;
    max-height: 580px;
    object-fit: contain;
}


/* ── Export dialog (Náklady a rozpočty) ───────────────────────── */
.ft-export-ph[b-7i6wx1vf1n] {
    position: relative;
}

.ft-export-ph__bg[b-7i6wx1vf1n] {
    min-height: 320px;
}

.ft-export-dialog[b-7i6wx1vf1n] {
    position: absolute;
    bottom: 24px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(16, 73, 117, 0.08);
    box-shadow: 0 14px 36px rgba(17, 62, 98, 0.14);
}

.ft-export-dialog__icon[b-7i6wx1vf1n] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e7c1e 0%, #2aa52a 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.ft-export-dialog__text strong[b-7i6wx1vf1n] {
    display: block;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: var(--pw-ink);
}

.ft-export-dialog__text small[b-7i6wx1vf1n] {
    font-size: 12px;
    color: var(--pw-muted);
}

/* ── Phone placeholder ───────────────────────────────────────── */
.ft-ph--phone[b-7i6wx1vf1n] {
    width: 272px;
    min-height: 480px;
    border-radius: 32px;
}

/* ── Events ph (Události na stavbě) ──────────────────────────── */
.ft-events-ph[b-7i6wx1vf1n] {
    position: relative;
    display: flex;
    justify-content: center;
}

.ft-events-badge[b-7i6wx1vf1n] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(16, 73, 117, 0.08);
    box-shadow: 0 12px 28px rgba(17, 62, 98, 0.12);
    max-width: 210px;
}

.ft-events-badge--photo[b-7i6wx1vf1n] {
    top: 32px;
    right: -8px;
}

.ft-events-badge--sig[b-7i6wx1vf1n] {
    bottom: 52px;
    left: -8px;
    display: grid;
    gap: 5px;
    min-width: 160px;
}

.ft-events-badge__icon[b-7i6wx1vf1n] {
    font-size: 18px;
    color: var(--pw-accent);
    flex-shrink: 0;
}

.ft-events-badge strong[b-7i6wx1vf1n] {
    display: block;
    font-size: 13px;
    letter-spacing: -0.02em;
    color: var(--pw-ink);
}

.ft-events-badge small[b-7i6wx1vf1n] {
    font-size: 11px;
    color: var(--pw-muted);
    display: block;
}

.ft-events-badge__label[b-7i6wx1vf1n] {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pw-accent);
}

.ft-events-badge__sigline[b-7i6wx1vf1n] {
    height: 2px;
    border-radius: 999px;
    background: rgba(18, 49, 79, 0.18);
    width: 80%;
}

/* ── Zone visual (Pracovní zóny) ─────────────────────────────── */
.ft-zone-ph[b-7i6wx1vf1n] {
    position: relative;
}

.ft-zone-ph__bg[b-7i6wx1vf1n] {
    min-height: 340px;
}

.ft-zone-alerts[b-7i6wx1vf1n] {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    max-width: 220px;
}

.ft-zone-alert[b-7i6wx1vf1n] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(16, 73, 117, 0.08);
    box-shadow: 0 10px 24px rgba(17, 62, 98, 0.12);
}

.ft-zone-alert__dot[b-7i6wx1vf1n] {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.ft-zone-alert--exit .ft-zone-alert__dot[b-7i6wx1vf1n] {
    background: #ff6b57;
    box-shadow: 0 0 0 4px rgba(255, 107, 87, 0.18);
}

.ft-zone-alert--enter .ft-zone-alert__dot[b-7i6wx1vf1n] {
    background: #17c76f;
    box-shadow: 0 0 0 4px rgba(23, 199, 111, 0.18);
}

.ft-zone-alert strong[b-7i6wx1vf1n] {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pw-ink);
}

.ft-zone-alert small[b-7i6wx1vf1n] {
    font-size: 11px;
    color: var(--pw-muted);
    display: block;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ft-band[b-7i6wx1vf1n] {
        grid-template-columns: 1fr;
    }

    .ft-band--reverse .ft-band__copy[b-7i6wx1vf1n],
    .ft-band--reverse .ft-band__visual[b-7i6wx1vf1n] {
        order: initial;
    }
    
    .ft-costs-image[b-7i6wx1vf1n], .ft-app-image[b-7i6wx1vf1n] {
        max-height: 380px;
    }
}

@media (max-width: 900px) {
    .ft-hero[b-7i6wx1vf1n] {
        margin: 12px 12px 0;
        padding: 36px 24px 40px;
    }

    .ft-hero__nav[b-7i6wx1vf1n] {
        grid-template-columns: 1fr;
    }

    .ft-section[b-7i6wx1vf1n] {
        margin: 16px 12px 0;
        padding: 28px 20px;
    }

    .ft-image[b-7i6wx1vf1n] {
        min-height: 240px;
    }
}

@media (max-width: 600px) {
    .ft-hero[b-7i6wx1vf1n] {
        border-radius: 24px;
    }

    .ft-section[b-7i6wx1vf1n] {
        border-radius: 24px;
        padding: 22px 16px;
    }

    .ft-band[b-7i6wx1vf1n] {
        padding: 18px;
    }

    .ft-band__copy h3[b-7i6wx1vf1n] {
        font-size: 26px;
    }

    .ft-events-badge[b-7i6wx1vf1n],
    .ft-diary-badges[b-7i6wx1vf1n],
    .ft-zone-alerts[b-7i6wx1vf1n] {
        display: none;
    }
}
/* /Pages/Public/Pricing.razor.rz.scp.css */
/* ---- Pricing hero (compact) ------------------------------ */
.pricing-hero[b-em2hzns2ud] {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    margin: 18px 18px 0;
    padding: 44px 52px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 26%, rgba(255,255,255,0) 44%),
        radial-gradient(circle at 82% 14%, rgba(127, 230, 240, 0.28) 0%, rgba(127, 230, 240, 0) 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(238,249,252,0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.pricing-hero[b-em2hzns2ud]::before,
.pricing-hero[b-em2hzns2ud]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.pricing-hero[b-em2hzns2ud]::before {
    width: 400px;
    height: 400px;
    right: -80px;
    top: -100px;
    background: radial-gradient(circle, rgba(15, 106, 216, 0.10) 0%, rgba(15, 106, 216, 0) 72%);
}

.pricing-hero[b-em2hzns2ud]::after {
    width: 360px;
    height: 360px;
    left: -80px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(20, 196, 210, 0.12) 0%, rgba(20, 196, 210, 0) 72%);
}

.pricing-hero__copy[b-em2hzns2ud] {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-hero__copy h1[b-em2hzns2ud] {
    margin: 0 0 18px;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.065em;
    color: var(--pw-ink);
}

.pricing-hero__copy p[b-em2hzns2ud] {
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--pw-muted);
    max-width: 560px;
}

/* ---- Pricing section shell ------------------------------- */
.pricing-shell[b-em2hzns2ud] {
    padding: 34px 36px;
    border-radius: 40px;
    background:
        radial-gradient(circle at 88% 12%, rgba(20, 196, 210, 0.18) 0%, rgba(20, 196, 210, 0) 28%),
        linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(237,248,251,0.94) 100%);
    box-shadow: 0 28px 64px rgba(17, 62, 98, 0.10);
}

/* ---- Pricing grid ---------------------------------------- */
.pricing-grid[b-em2hzns2ud] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* ---- Plan card ------------------------------------------- */
.plan[b-em2hzns2ud] {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(16, 73, 117, 0.08);
    align-content: start;
}

.plan.highlight[b-em2hzns2ud] {
    background: linear-gradient(180deg, rgba(15,106,216,0.08) 0%, rgba(255,255,255,0.86) 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(15, 106, 216, 0.10);
}

.plan-top[b-em2hzns2ud] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.plan small[b-em2hzns2ud] {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pw-muted);
    font-weight: 800;
    margin-bottom: 6px;
}

.plan > strong[b-em2hzns2ud],
.plan-top > div > strong[b-em2hzns2ud] {
    display: block;
    font-size: 24px;
    letter-spacing: -0.05em;
    line-height: 1.15;
    color: var(--pw-ink);
}

.price[b-em2hzns2ud] {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: var(--pw-ink);
    line-height: 1;
}

.plan-note[b-em2hzns2ud] {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pw-muted);
}

/* ---- Buy button ------------------------------------------ */
.plan-buy[b-em2hzns2ud] {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--pw-accent-2) 0%, var(--pw-accent) 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15, 106, 216, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.plan-buy:hover[b-em2hzns2ud] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 14px 28px rgba(15, 106, 216, 0.38);
    filter: brightness(1.06);
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
    .pricing-grid[b-em2hzns2ud] {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .plan.highlight[b-em2hzns2ud] {
        transform: none;
    }
}

@media (max-width: 820px) {
    .pricing-hero[b-em2hzns2ud] {
        margin: 14px 14px 0;
        padding: 36px 28px 32px;
    }

    .pricing-shell[b-em2hzns2ud] {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .pricing-hero[b-em2hzns2ud] {
        margin: 12px 12px 0;
        padding: 30px 20px 26px;
    }

    .pricing-grid[b-em2hzns2ud] {
        max-width: 100%;
    }
}
/* /Pages/Public/PrivacyPolicy.razor.rz.scp.css */
/* ── Privacy Policy ────────────────────────────────────── */

.priv-main[b-p29ft07b5g] {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.priv-card[b-p29ft07b5g] {
    background: var(--pw-surface, #ffffff);
    border: 1px solid var(--pw-line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(17, 62, 98, 0.08);
}

h1[b-p29ft07b5g] {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h2[b-p29ft07b5g] {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.2;
}

p[b-p29ft07b5g], li[b-p29ft07b5g] {
    font-size: 1rem;
    margin: 0 0 12px;
}

ul[b-p29ft07b5g] {
    padding-left: 22px;
    margin: 0 0 12px;
}

.priv-meta[b-p29ft07b5g] {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 106, 216, 0.08);
    color: var(--pw-accent, #0f6ad8);
    font-weight: 600;
    font-size: 0.9rem;
}

a[b-p29ft07b5g] {
    color: var(--pw-accent, #0f6ad8);
}

.priv-footer[b-p29ft07b5g] {
    margin-top: 28px;
    color: var(--pw-muted, #5d7485);
    font-size: 0.95rem;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 640px) {
    .priv-main[b-p29ft07b5g] {
        padding: 20px 16px 48px;
    }

    .priv-card[b-p29ft07b5g] {
        padding: 20px 18px;
        border-radius: 14px;
    }
}

/* /Pages/Public/RequestAccess.razor.rz.scp.css */
/* ---- Hero (compact, centred) ----------------------------- */
.request-access-hero[b-1dviil5po7] {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    margin: 18px 18px 0;
    padding: 32px 52px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.62) 26%, rgba(255,255,255,0) 44%),
        radial-gradient(circle at 82% 14%, rgba(127, 230, 240, 0.28) 0%, rgba(127, 230, 240, 0) 24%),
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(238,249,252,0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.request-access-hero[b-1dviil5po7]::before,
.request-access-hero[b-1dviil5po7]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.request-access-hero[b-1dviil5po7]::before {
    width: 400px;
    height: 400px;
    right: -80px;
    top: -100px;
    background: radial-gradient(circle, rgba(15, 106, 216, 0.10) 0%, rgba(15, 106, 216, 0) 72%);
}

.request-access-hero[b-1dviil5po7]::after {
    width: 360px;
    height: 360px;
    left: -80px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(20, 196, 210, 0.12) 0%, rgba(20, 196, 210, 0) 72%);
}

.request-access-hero__copy[b-1dviil5po7] {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.request-access-hero__copy h1[b-1dviil5po7] {
    margin: 12px 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.065em;
    color: var(--pw-ink);
}

.request-access-hero__copy p[b-1dviil5po7] {
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--pw-muted);
}

/* ---- Form wrapper (centred column) ----------------------- */
.request-access-form-wrap[b-1dviil5po7] {
    display: flex;
    justify-content: center;
    padding: 28px 18px 20px;
}

/* ---- Form shell ------------------------------------------ */
.request-access-form-shell[b-1dviil5po7] {
    width: 100%;
    max-width: 560px;
    padding: 36px 40px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 10%, rgba(20, 196, 210, 0.12) 0%, rgba(20, 196, 210, 0) 32%),
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(236,248,251,0.96) 100%);
    box-shadow: 0 24px 64px rgba(17, 62, 98, 0.10);
    border: 1px solid rgba(16, 73, 117, 0.07);
}

.request-access-plan-group[b-1dviil5po7] {
    margin-bottom: 18px;
}

.request-access-demo-context[b-1dviil5po7] {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(15, 106, 216, 0.18);
    background: rgba(15, 106, 216, 0.06);
    color: var(--pw-ink);
}

.request-access-demo-context strong[b-1dviil5po7] {
    font-size: 14px;
}

.request-access-demo-context span[b-1dviil5po7] {
    font-size: 14px;
    line-height: 1.5;
    color: var(--pw-muted);
}

.request-access-plan-hint[b-1dviil5po7] {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pw-muted);
}

/* ---- Form internals ---------------------------------------- */
.form-row[b-1dviil5po7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.form-group[b-1dviil5po7] {
    display: grid;
    gap: 6px;
}

.form-row > .form-group[b-1dviil5po7] {
    margin-top: 0 !important;
}

.form-row + .form-group[b-1dviil5po7] {
    margin-top: 12px !important;
}

.request-access-email-group[b-1dviil5po7] {
    margin-top: 12px;
}

.request-access-submit-wrap[b-1dviil5po7] {
    margin-top: 16px;
}

.form-group label[b-1dviil5po7] {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--pw-ink);
}

.form-group[b-1dviil5po7]  .mud-input-control {
    margin: 0;
    width: 100%;
}

.form-group[b-1dviil5po7]  .mud-input-control-input-container {
    padding-top: 0;
}

.form-group[b-1dviil5po7]  .mud-input-helper-container {
    min-height: 0;
    padding: 6px 0 0;
}

.form-group[b-1dviil5po7]  .mud-input-helper-text {
    margin: 0;
    font-size: 12px;
}

.form-group[b-1dviil5po7]  .mud-input {
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1.5px solid rgba(16, 73, 117, 0.14);
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group[b-1dviil5po7]  .mud-input.mud-input-underline:before,
.form-group[b-1dviil5po7]  .mud-input.mud-input-underline:after {
    display: none;
}

.form-group[b-1dviil5po7]  input.mud-input-root,
.form-group[b-1dviil5po7]  textarea.mud-input-root,
.form-group[b-1dviil5po7]  .mud-select-input {
    font-size: 15px;
    line-height: 1.5;
    color: var(--pw-ink);
    font-family: inherit;
}

.form-group[b-1dviil5po7]  input.mud-input-root::placeholder,
.form-group[b-1dviil5po7]  textarea.mud-input-root::placeholder {
    color: rgba(16, 73, 117, 0.3) !important;
    opacity: 1 !important;
}

.form-group[b-1dviil5po7]  .mud-input:focus-within {
    border-color: var(--pw-accent, #0f6ad8);
    box-shadow: 0 0 0 3px rgba(15, 106, 216, 0.10);
}

.form-group[b-1dviil5po7]  .mud-input-adornment-end {
    margin: 0;
    padding-right: 12px;
}

.form-group[b-1dviil5po7]  .mud-select-icon {
    color: var(--pw-ink);
}

.request-access-submit-wrap[b-1dviil5po7]  .request-access-submit,
.request-access-form-shell[b-1dviil5po7]  .form-group + .request-access-submit {
    display: flex;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    min-height: 44px;
    text-transform: none;
}

.request-access-submit-wrap[b-1dviil5po7]  .request-access-submit {
    margin-top: 0;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 600px) {
    .request-access-hero[b-1dviil5po7] {
        padding: 32px 24px 28px;
    }

    .request-access-form-shell[b-1dviil5po7] {
        padding: 24px 20px;
    }

    .form-row[b-1dviil5po7] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Public/Terms.razor.rz.scp.css */
/* ── Terms ─────────────────────────────────────────────── */

.terms-main[b-pnz0apacxg] {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.terms-card[b-pnz0apacxg] {
    background: var(--pw-surface, #ffffff);
    border: 1px solid var(--pw-line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(17, 62, 98, 0.08);
}

h1[b-pnz0apacxg] {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h2[b-pnz0apacxg] {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.2;
}

p[b-pnz0apacxg], li[b-pnz0apacxg] {
    font-size: 1rem;
    margin: 0 0 12px;
}

ul[b-pnz0apacxg] {
    padding-left: 22px;
    margin: 0 0 12px;
}

.terms-meta[b-pnz0apacxg] {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 106, 216, 0.08);
    color: var(--pw-accent, #0f6ad8);
    font-weight: 600;
    font-size: 0.9rem;
}

a[b-pnz0apacxg] {
    color: var(--pw-accent, #0f6ad8);
}

.terms-footer[b-pnz0apacxg] {
    margin-top: 28px;
    color: var(--pw-muted, #5d7485);
    font-size: 0.95rem;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 640px) {
    .terms-main[b-pnz0apacxg] {
        padding: 20px 16px 48px;
    }

    .terms-card[b-pnz0apacxg] {
        padding: 20px 18px;
        border-radius: 14px;
    }
}
