:root {
    --violet: #7B3FF2;
    --deep: #0F0A1F;
    --magenta: #D946EF;
    --light: #A78BFA;
    --muted: #B7AECF;
    --text: #F8F7FF;
    --line: rgba(229, 231, 235, 0.14);
    --panel: #1A1333;
    --panel-soft: rgba(26, 19, 51, 0.74);
    --gradient: linear-gradient(135deg, #7B3FF2 0%, #D946EF 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--deep);
    color: var(--text);
    font-family: Inter, Sora, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
    z-index: -2;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(18px, 4vw, 54px);
    background: rgba(15, 10, 31, 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(15, 10, 31, 0.9);
    border-color: rgba(167, 139, 250, 0.28);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(217, 70, 239, 0.44));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 32px);
    color: var(--muted);
    font-size: 0.88rem;
}

.site-nav a,
.header-cta,
.text-link {
    text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
    color: white;
}

.secure-tabs a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.secure-tabs a.is-active {
    color: white;
    border-color: var(--primary);
}

.header-cta,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-btn {
    background: var(--gradient);
    color: white;
    box-shadow: 0 0 24px rgba(123, 63, 242, 0.28);
}

.secondary-btn {
    border: 1px solid rgba(167, 139, 250, 0.42);
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(217, 70, 239, 0.28);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 116px clamp(20px, 6vw, 88px) 48px;
    border-bottom: 1px solid var(--line);
}

.hero-logo {
    position: absolute;
    right: clamp(-160px, -5vw, 20px);
    top: 50%;
    transform: translateY(-50%);
    width: min(58vw, 720px);
    max-height: 78vh;
    object-fit: contain;
    opacity: 0.22;
    filter: saturate(1.12);
    z-index: -1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(123, 63, 242, 0.22), transparent 58%),
        linear-gradient(180deg, rgba(217, 70, 239, 0.10), transparent 64%);
    z-index: -2;
}

.hero-content {
    max-width: 680px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.moderation-ribbon {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 26px;
    padding: 0 18px;
    border: 1px solid rgba(217, 70, 239, 0.58);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(123, 63, 242, 0.36), rgba(217, 70, 239, 0.28));
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 32px rgba(217, 70, 239, 0.18);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--light);
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(3.4rem, 4.7vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 1.15rem;
}

.hero-copy,
.section-heading p,
.showcase-copy p,
.proof-copy p,
.contact-section p {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.62;
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.hero-stats span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(26, 19, 51, 0.6);
    color: var(--muted);
}

.hero-stats strong {
    color: white;
}

.section {
    padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 88px);
}

.offer-2026-section {
    padding-top: clamp(38px, 5vw, 70px);
    padding-bottom: clamp(38px, 5vw, 70px);
}

.offer-2026-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(22px, 5vw, 56px);
    align-items: center;
    padding: clamp(22px, 5vw, 44px);
    border: 1px solid rgba(217, 70, 239, 0.5);
    border-radius: 10px;
    background:
        radial-gradient(circle at 20% 0%, rgba(217, 70, 239, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(123, 63, 242, 0.2), rgba(26, 19, 51, 0.86));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), 0 0 46px rgba(217, 70, 239, 0.14);
}

.offer-2026-copy {
    display: grid;
    gap: 18px;
}

.offer-2026-copy h2 {
    margin: 0;
}

.offer-2026-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.offer-2026-copy .offer-volume-contact {
    font-size: 0.95rem;
}

.offer-volume-contact a {
    color: var(--primary-soft);
    font-weight: 800;
}

.offer-2026-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
}

.offer-2026-price .old-price {
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(1.7rem, 4vw, 2.9rem);
    font-weight: 900;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.offer-2026-price strong {
    color: white;
    font-size: clamp(3.2rem, 8vw, 6rem);
    line-height: 0.95;
}

.offer-2026-price span:last-child {
    color: var(--primary-soft);
    font-weight: 900;
}

.offer-2026-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.offer-2026-list div {
    min-height: 116px;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.offer-2026-list strong,
.offer-2026-list span {
    display: block;
}

.offer-2026-list span {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.45;
}

.faq-section {
    padding-top: clamp(48px, 7vw, 92px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-grid article {
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: 8px;
    background: rgba(26, 19, 51, 0.7);
}

.faq-grid h3 {
    margin: 0 0 10px;
}

.faq-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.section-heading.compact {
    max-width: 720px;
}

.feature-grid,
.offers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card,
.offer-card {
    border: 1px solid var(--line);
    background: var(--panel-soft);
    border-radius: 8px;
    padding: 24px;
    min-height: 230px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card,
.steps article,
.offer-card,
.proof-list div,
.account-grid article {
    opacity: 0;
    transform: translateY(14px);
}

.feature-card.is-visible,
.steps article.is-visible,
.offer-card.is-visible,
.proof-list div.is-visible,
.account-grid article.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 360ms ease, transform 360ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(26, 19, 51, 0.92);
}

.feature-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 16px rgba(217, 70, 239, 0.35));
}

.feature-card p,
.steps p,
.offer-card li,
.proof-list span {
    color: var(--muted);
    line-height: 1.55;
}

.showcase,
.proof-section,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 74px);
    align-items: center;
    padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 88px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--light);
    font-weight: 800;
}

.event-photo-scene,
.product-scene {
    position: relative;
}

.event-photo-scene {
    min-height: 520px;
    border: 1px solid rgba(167, 139, 250, 0.32);
    border-radius: 8px;
    overflow: hidden;
    background: #110A26;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 36px rgba(123, 63, 242, 0.2);
}

.hero-photo {
    min-height: clamp(360px, 48vw, 560px);
}

.hero-photo img {
    min-height: clamp(360px, 48vw, 560px);
}

.event-photo-scene img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.event-photo-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 31, 0.02), rgba(15, 10, 31, 0.42));
    pointer-events: none;
}

.scene-badge {
    position: absolute;
    z-index: 1;
    max-width: min(260px, calc(100% - 32px));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(15, 10, 31, 0.72);
    color: white;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.scene-badge.top {
    top: 16px;
    left: 16px;
}

.scene-badge.bottom {
    right: 16px;
    bottom: 16px;
}

.product-scene {
    min-height: 520px;
}

.showcase-points {
    display: grid;
    gap: 14px;
}

.showcase-points article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: var(--panel-soft);
}

.showcase-points strong,
.showcase-points span {
    display: block;
}

.showcase-points strong {
    margin-bottom: 6px;
}

.showcase-points span {
    color: var(--muted);
    line-height: 1.5;
}

.gallery-section {
    border-bottom: 1px solid var(--line);
}

.marketing-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    grid-template-rows: repeat(3, minmax(130px, auto));
    gap: 16px;
}

.gallery-large,
.gallery-card,
.testimonials-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-soft);
}

.gallery-large {
    position: relative;
    grid-row: 1 / span 3;
    min-height: 520px;
    overflow: hidden;
}

.gallery-large img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.gallery-large::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 31, 0.02), rgba(15, 10, 31, 0.62));
}

.gallery-large span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    max-width: calc(100% - 36px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(15, 10, 31, 0.76);
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.gallery-card {
    position: relative;
    display: grid;
    align-content: end;
    gap: 8px;
    min-height: 160px;
    padding: 20px;
    overflow: hidden;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.76;
    background:
        radial-gradient(circle at 18% 24%, rgba(217, 70, 239, 0.38), transparent 24%),
        radial-gradient(circle at 76% 32%, rgba(123, 63, 242, 0.48), transparent 28%),
        linear-gradient(135deg, rgba(123, 63, 242, 0.14), rgba(217, 70, 239, 0.12));
}

.gallery-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-photo::before {
    background:
        linear-gradient(180deg, rgba(15, 10, 31, 0.12), rgba(15, 10, 31, 0.82)),
        linear-gradient(135deg, rgba(123, 63, 242, 0.08), rgba(217, 70, 239, 0.24));
}

.gallery-card-message::before {
    background:
        linear-gradient(180deg, rgba(15, 10, 31, 0.1), rgba(15, 10, 31, 0.84)),
        linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(123, 63, 242, 0.18));
}

.gallery-card-souvenir::before {
    background:
        linear-gradient(180deg, rgba(15, 10, 31, 0.08), rgba(15, 10, 31, 0.82)),
        linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(217, 70, 239, 0.16));
}

.gallery-card strong,
.gallery-card span {
    position: relative;
    z-index: 2;
    display: block;
}

.gallery-card strong {
    color: white;
    font-size: 1.16rem;
}

.gallery-card span,
.testimonials-grid p {
    color: var(--muted);
    line-height: 1.55;
}

.testimonials-section {
    border-bottom: 1px solid var(--line);
}

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

.testimonials-grid article {
    display: grid;
    gap: 18px;
    align-content: space-between;
    min-height: 230px;
    padding: 24px;
}

.testimonials-grid p {
    margin: 0;
    font-size: 1.05rem;
}

.testimonials-grid strong {
    color: white;
}

.phone-frame,
.wall-frame {
    position: absolute;
    border: 1px solid rgba(167, 139, 250, 0.32);
    background: #110A26;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 36px rgba(123, 63, 242, 0.2);
}

.phone-frame {
    left: 0;
    top: 22px;
    width: min(310px, 48%);
    min-height: 480px;
    border-radius: 34px;
    padding: 22px;
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
}

.phone-top img {
    width: 42px;
}

.phone-message {
    margin: 80px 0 46px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.phone-message strong,
.phone-message span {
    display: block;
}

.phone-message strong {
    color: var(--light);
    margin-bottom: 8px;
}

.phone-message span {
    color: white;
}

.phone-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    place-items: center;
}

.phone-actions img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(217, 70, 239, 0.42));
}

.wall-frame {
    right: 0;
    bottom: 10px;
    width: min(520px, 70%);
    min-height: 360px;
    border-radius: 8px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
}

.wall-photo {
    min-height: 250px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(123, 63, 242, 0.28), rgba(217, 70, 239, 0.3)),
        url("logos/HD/photo.jpg") center / cover;
}

.wall-photo.alt {
    background:
        linear-gradient(135deg, rgba(123, 63, 242, 0.22), rgba(217, 70, 239, 0.28)),
        url("logos/HD/groupe.jpg") center / cover;
}

.wall-caption {
    grid-column: 1 / -1;
    color: white;
    font-weight: 900;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.steps article {
    background: var(--deep);
    padding: 28px;
    min-height: 250px;
}

.steps span {
    display: block;
    color: var(--magenta);
    font-weight: 900;
    margin-bottom: 28px;
}

.proof-section {
    grid-template-columns: 1fr 1fr;
}

.proof-list {
    display: grid;
    gap: 14px;
}

.proof-list div,
.account-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: var(--panel-soft);
}

.proof-list strong,
.proof-list span,
.account-grid strong,
.account-grid span {
    display: block;
}

.proof-list strong,
.account-grid strong {
    margin-bottom: 6px;
}

.offers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
    min-height: 300px;
}

.offer-card.highlighted {
    border-color: rgba(217, 70, 239, 0.52);
    box-shadow: 0 0 36px rgba(217, 70, 239, 0.14);
}

.offer-card h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.offer-label {
    color: var(--light);
    font-weight: 900;
    margin: 0 0 22px;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.price-note,
.section-footnote,
.account-grid span {
    color: var(--muted);
    line-height: 1.55;
}

.price-note {
    margin: -8px 0 0;
    font-weight: 800;
}

.offer-card ul {
    padding-left: 18px;
    margin: 22px 0 0;
}

.section-footnote {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: 0.95rem;
}

.account-section {
    padding-top: 0;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.account-btn {
    margin-top: 18px;
}

.login-body {
    min-height: 100vh;
}

.login-main {
    min-height: 100vh;
    padding: 130px 24px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-soft);
}

.login-panel {
    width: min(100%, 420px);
    padding: 28px;
}

.login-copy {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.login-copy h1 {
    margin: 0;
    color: white;
    font-size: clamp(1.7rem, 5vw, 2.35rem);
    line-height: 1.08;
    text-align: center;
}

.login-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    text-align: justify;
    text-wrap: pretty;
}

.login-form {
    display: grid;
    gap: 14px;
}

.login-form label {
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.login-form input {
    min-height: 52px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0 16px;
    font: inherit;
    outline: none;
}

.login-form input:focus {
    border-color: rgba(217, 70, 239, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.12);
}

.turnstile-box {
    min-height: 78px;
    border: 1px dashed rgba(167, 139, 250, 0.4);
    border-radius: 8px;
    padding: 14px 16px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
}

.turnstile-box span {
    color: var(--light);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.login-result {
    display: grid;
    gap: 18px;
    text-align: center;
}

.login-result h1 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.login-result p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.portal-body {
    min-height: 100vh;
    background:
        linear-gradient(rgba(167, 139, 250, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.06) 1px, transparent 1px),
        var(--bg);
    background-size: 72px 72px;
    color: var(--text);
}

.portal-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.portal-panel {
    width: min(620px, 100%);
    display: grid;
    gap: 18px;
    padding: clamp(28px, 5vw, 46px);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background: rgba(26, 19, 51, 0.92);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.portal-brand {
    justify-self: start;
}

.portal-panel h1 {
    margin: 8px 0 0;
    color: white;
    font-size: clamp(2rem, 6vw, 3.4rem);
}

.portal-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.portal-panel .secondary-btn {
    justify-self: start;
    margin-top: 8px;
}

.secure-body {
    min-height: 100vh;
    background: #0D081C;
}

.secure-body::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: none;
    opacity: 0.8;
}

.secure-header {
    position: sticky;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.help-action-form {
    margin: 0;
}

.help-action-btn {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
}

.help-action-btn:hover {
    border-color: rgba(217, 70, 239, 0.72);
    box-shadow: 0 0 16px rgba(217, 70, 239, 0.16);
}

.language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 38px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.78rem;
}

.dashboard-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 72px;
}

.dashboard-main h1,
.dashboard-main h2,
.dashboard-main h3 {
    margin: 0;
    line-height: 1.08;
}

.dashboard-main h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.dashboard-main h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.dashboard-main h3 {
    font-size: 1rem;
}

.dashboard-focus,
.dashboard-section,
.dashboard-panel,
.dashboard-product,
.event-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(26, 19, 51, 0.78);
}

.dashboard-focus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-bottom: 20px;
    padding: 24px;
    border-color: rgba(34, 197, 94, 0.42);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.13), rgba(123, 63, 242, 0.16)),
        rgba(26, 19, 51, 0.86);
}

.current-event-list {
    display: grid;
    gap: 14px;
}

.current-event-panel {
    margin: 0;
}

.current-event-panel {
    grid-template-columns: minmax(0, 1fr) auto;
}

.current-event-main {
    display: grid;
    gap: 12px;
}

.current-event-welcome {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: 760px;
    margin-top: 8px;
    padding: 12px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.current-event-welcome img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
}

.current-event-welcome strong,
.current-event-welcome p {
    display: block;
}

.current-event-welcome strong {
    margin-bottom: 5px;
}

.current-event-welcome p {
    margin: 0;
}

.current-access-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.current-access-panel {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    background: rgba(15, 10, 31, 0.38);
}

.current-access-panel h3 {
    font-size: 0.95rem;
    color: white;
}

.current-access-panel p {
    margin: 0;
}

.current-access-list {
    display: grid;
    gap: 8px;
}

.current-access-row {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.current-access-row span {
    color: white;
    font-weight: 800;
}

.current-access-row a,
.current-access-row em {
    min-width: 0;
    color: var(--muted);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.dashboard-focus p,
.dashboard-section p,
.dashboard-panel p,
.dashboard-product p,
.event-card span,
.event-card dd,
.dashboard-empty {
    color: var(--muted);
    line-height: 1.55;
}

.dashboard-actions,
.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-public-link {
    flex-basis: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.inline-action-form {
    display: inline-flex;
    margin: 0;
}

.export-page .dashboard-section {
    max-width: 980px;
    margin: 0 auto;
}

.export-warning {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0;
    padding: 16px;
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.09);
}

.export-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.export-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.export-item strong,
.export-item span {
    display: block;
}

.export-item span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.dashboard-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 10, 31, 0.7);
}

.dashboard-sidebar a {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
}

.dashboard-sidebar a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dashboard-content {
    display: grid;
    gap: 18px;
}

.dashboard-section {
    padding: 22px;
}

.dashboard-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.dashboard-data-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 12px;
}

.dashboard-billing-form {
    padding: 18px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.dashboard-billing-form .secondary-btn {
    justify-self: start;
}

.dashboard-panel {
    padding: 18px;
}

.dashboard-panel strong,
.panel-label {
    display: block;
}

.dashboard-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(34, 197, 94, 0.36);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--muted);
    font-weight: 800;
}

.dashboard-credit strong {
    color: white;
    font-size: 1.25rem;
}

.panel-label {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-columns {
    display: grid;
    gap: 16px;
}

.event-columns > div {
    display: grid;
    gap: 10px;
}

.event-columns h3,
.orders-block h3 {
    color: var(--light);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0;
}

.event-card {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.event-card.current {
    border-color: rgba(34, 197, 94, 0.42);
}

.event-card.past {
    border-color: rgba(59, 130, 246, 0.32);
}

.event-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.event-card-head strong,
.event-card-head span {
    display: block;
}

.event-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.event-card dt {
    color: var(--light);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-card dd {
    margin: 4px 0 0;
}

.event-error {
    margin: 0;
    color: #FCA5A5;
}

.dashboard-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 18px;
}

.dashboard-product strong {
    font-size: 1.4rem;
    white-space: nowrap;
}

.dashboard-price-offer {
    display: grid;
    justify-items: end;
    gap: 4px;
    text-align: right;
}

.dashboard-price-offer span {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 900;
    text-decoration: line-through;
}

.dashboard-price-offer strong {
    font-size: 1.65rem;
}

.dashboard-price-offer em {
    color: var(--primary-soft);
    font-style: normal;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-product form {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.dashboard-product label {
    display: grid;
    gap: 7px;
    color: var(--light);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-product input {
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
    outline: none;
}

.orders-block {
    margin-top: 20px;
}

.dashboard-subsection {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(167, 139, 250, 0.18);
}

.dashboard-subsection-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.dashboard-subsection h2,
.dashboard-subsection h3 {
    margin: 0;
    color: var(--light);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0;
}

.dashboard-order-list {
    display: grid;
    gap: 10px;
}

.order-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto minmax(180px, 0.7fr);
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 8px;
    background: rgba(15, 10, 31, 0.42);
}

.order-card > div {
    display: grid;
    gap: 4px;
}

.order-card strong {
    color: white;
}

.order-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.invoice-link {
    color: var(--light);
    font-weight: 900;
    text-decoration: none;
}

.invoice-link:hover {
    color: white;
}

.dashboard-table {
    margin-top: 10px;
}

.secure-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 128px 0 64px;
}

.secure-main.narrow {
    width: min(820px, calc(100% - 40px));
}

.event-wizard-main {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto;
    padding: 128px 0 64px;
}

.event-wizard-card {
    padding: clamp(20px, 4vw, 34px);
}

.secure-form .event-title-field {
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    background: rgba(123, 63, 242, 0.08);
}

.secure-form .event-title-field input {
    min-height: 64px;
    border-color: rgba(167, 139, 250, 0.55);
    background: rgba(255, 255, 255, 0.075);
    color: white;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    font-weight: 900;
}

.secure-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 28px 0;
}

.secure-hero h1,
.secure-section h2,
.secure-panel h2 {
    margin: 0;
}

.secure-hero p,
.secure-panel p,
.secure-product p,
.secure-empty {
    color: var(--muted);
    line-height: 1.6;
}

.secure-balance,
.secure-panel,
.secure-product,
.secure-table,
.notice {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-soft);
}

.secure-balance {
    min-width: 210px;
    padding: 20px;
    display: grid;
    gap: 6px;
}

.secure-balance span,
.muted-action {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.secure-balance strong {
    font-size: 3rem;
    line-height: 1;
}

.notice {
    padding: 14px 16px;
    margin: 0 0 18px;
}

.notice.success {
    border-color: rgba(34, 197, 94, 0.5);
}

.notice.error {
    border-color: rgba(248, 113, 113, 0.5);
}

.secure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.secure-panel {
    padding: 22px;
}

.secure-section {
    margin-top: 34px;
}

.secure-section-head {
    margin-bottom: 16px;
}

.secure-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.secure-product {
    padding: 22px;
    display: grid;
    gap: 12px;
}

.secure-product h3 {
    margin: 0;
    font-size: 1.25rem;
}

.secure-product strong {
    font-size: 1.8rem;
}

.secure-product form,
.secure-form {
    display: grid;
    gap: 12px;
}

.secure-product label,
.secure-form label {
    display: grid;
    gap: 7px;
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.secure-product input,
.secure-form input,
.secure-form select,
.secure-form textarea {
    min-height: 46px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: white;
    color: black;
    padding: 0 14px;
    font: inherit;
    outline: none;
}

.secure-form select {
    appearance: none;
}

.secure-form textarea {
    min-height: 132px;
    padding-top: 12px;
    resize: vertical;
}

.secure-help {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    text-transform: none;
}

[hidden] {
    display: none !important;
}

.secure-form .secure-check {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
}

.secure-form .secure-check input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 3px;
    padding: 0;
    accent-color: var(--primary);
}

.organization-main h2,
.organization-main h3 {
    margin: 0 0 16px;
}

.org-status-grid,
.readonly-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.org-status-grid div,
.readonly-grid div {
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.org-status-grid span,
.readonly-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-status-grid strong,
.readonly-grid strong {
    display: block;
    margin-top: 6px;
    color: white;
    overflow-wrap: anywhere;
}

.organization-form {
    gap: 18px;
}

.org-image-row {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.org-image-row img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, 0.32);
}

.organization-settings {
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    padding-top: 18px;
}

.feature-toggle {
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    text-transform: none !important;
}

.feature-toggle input {
    width: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--primary);
}

.org-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.org-section-heading p {
    margin: 0;
    color: var(--muted);
}

.access-add-form {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.access-list {
    display: grid;
    gap: 10px;
}

.access-card {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(140px, 0.8fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.access-card span,
.access-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
    overflow-wrap: anywhere;
}

.access-actions {
    display: flex;
    gap: 8px;
}

.access-actions form {
    margin: 0;
}

.danger-btn {
    border-color: rgba(255, 108, 108, 0.45) !important;
    color: #ffd7d7 !important;
}

.organization-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.organization-form {
    display: contents;
}

.org-overview-card {
    order: 1;
}

.org-home-editor {
    order: 2;
}

.org-public-display-card {
    order: 3;
}

.org-moderation-card {
    order: 4;
}

.org-dj-card {
    order: 5;
}

.org-coupon-card {
    order: 6;
}

.org-modules-card {
    order: 7;
}

.org-readonly-card {
    order: 8;
}

.organization-main .event-wizard-card {
    display: grid;
    gap: 18px;
}

.org-section-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-soft);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.org-section-heading h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.org-section-heading .primary-btn,
.org-section-heading .secondary-btn {
    white-space: nowrap;
}

.org-welcome-preview {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(167, 139, 250, 0.42);
    border-radius: 8px;
    background: rgba(2, 0, 12, 0.42);
}

.org-welcome-preview img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(167, 139, 250, 0.34);
}

.org-welcome-preview div {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
}

.org-welcome-preview strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-welcome-preview p {
    max-width: 680px;
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.45;
}

.access-add-details {
    position: relative;
}

.access-add-details summary {
    list-style: none;
    cursor: pointer;
}

.access-add-details summary::-webkit-details-marker {
    display: none;
}

.access-add-details[open] .access-add-form {
    display: grid;
}

.access-add-details .access-add-form {
    position: absolute;
    right: 0;
    z-index: 5;
    width: min(720px, calc(100vw - 48px));
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
}

.access-add-form input {
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0 12px;
    font: inherit;
}

.access-inline-form {
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) repeat(3, minmax(130px, 1fr)) auto;
    gap: 10px;
    align-items: center;
    margin: 0;
}

.access-inline-form input {
    min-height: 42px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    padding: 0 11px;
    font: inherit;
}

.access-inline-form input[readonly] {
    opacity: 0.78;
}

.access-person strong {
    display: block;
    color: white;
}

.access-person span {
    font-size: 0.82rem;
}

.access-card {
    display: block;
}

.voucher-editor {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 160px;
    gap: 14px;
    align-items: end;
}

.voucher-editor > div,
.voucher-editor label {
    display: grid;
    gap: 7px;
    min-height: 78px;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.voucher-editor span,
.voucher-editor label {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.voucher-editor strong {
    color: white;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.voucher-editor input {
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0 12px;
    font: inherit;
}

.org-topline {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(240px, 1.4fr) minmax(120px, 1fr);
    gap: 16px;
    align-items: center;
}

.org-title-field {
    display: grid;
    gap: 6px;
    color: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-title-field input {
    min-height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: white;
    padding: 0;
    font-size: 1.28rem;
    font-weight: 900;
    text-align: center;
    outline: none;
}

.org-topline > .primary-btn {
    justify-self: end;
}

.org-topline > .secondary-btn {
    justify-self: start;
}

.org-title-field input:focus {
    box-shadow: inset 0 -1px 0 rgba(217, 70, 239, 0.8);
}

.org-top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.org-public-display-card {
    padding: 16px 22px;
}

.org-public-display-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.org-public-display-link span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-soft);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-public-display-link strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.org-public-display-link em {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.org-public-display-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.organization-main .event-wizard-card {
    padding: 22px;
}

.org-home-editor,
.org-moderation-card,
.org-dj-card,
.org-coupon-card,
.org-public-display-card,
.org-modules-card,
.org-readonly-card {
    gap: 14px;
}

.org-section-heading h2 {
    font-size: 1.18rem;
}

.org-home-editor .org-section-heading {
    grid-template-columns: minmax(0, 1fr) auto minmax(250px, 360px);
    align-items: end;
}

.org-section-heading p {
    font-size: 0.92rem;
    line-height: 1.35;
}

.org-welcome-preview {
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 138px;
    padding: 18px;
}

.org-welcome-image-field {
    display: grid !important;
    gap: 8px;
    justify-items: center;
    text-transform: none !important;
    cursor: pointer;
}

.org-welcome-image-field input {
    width: 100%;
    max-width: 130px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.72rem;
}

.org-welcome-author-input,
.org-welcome-message-input {
    width: min(100%, 620px);
    border: 0 !important;
    background: transparent !important;
    color: white !important;
    text-align: center;
    outline: none;
}

.org-welcome-author-input {
    min-height: 28px !important;
    padding: 0 !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.org-welcome-message-input {
    min-height: 58px !important;
    padding: 0 !important;
    resize: vertical;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.35;
}

.org-welcome-author-input:focus,
.org-welcome-message-input:focus {
    box-shadow: inset 0 -1px 0 rgba(217, 70, 239, 0.75);
}

.org-starter-photos {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.org-starter-photos-copy {
    display: grid;
    gap: 4px;
}

.org-starter-photos-copy strong {
    color: white;
    font-size: 0.95rem;
}

.org-starter-photos-copy span {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.org-starter-upload {
    display: grid !important;
    gap: 7px;
    justify-items: end;
    margin: 0;
    color: white;
    text-transform: none !important;
}

.org-starter-upload span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(167, 139, 250, 0.48);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 900;
}

.org-starter-upload input {
    max-width: 220px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.72rem;
}

.org-starter-upload.is-disabled {
    opacity: 0.55;
}

.starter-images-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 10px;
}

.starter-image-tile {
    position: relative;
    min-width: 0;
}

.starter-image-tile img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.starter-image-tile.is-marked-delete img {
    opacity: 0.34;
    filter: grayscale(1);
}

.starter-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 26px;
    min-width: 0;
    height: 26px;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(127, 29, 29, 0.86);
    color: white;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

.starter-image-tile.is-marked-delete .starter-remove-btn {
    background: rgba(34, 197, 94, 0.86);
}

.org-starter-messages-accordion {
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.org-starter-messages-accordion summary {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    color: white;
    cursor: pointer;
    list-style: none;
}

.org-starter-messages-accordion summary::-webkit-details-marker {
    display: none;
}

.org-starter-messages-accordion summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-weight: 900;
}

.org-starter-messages-accordion[open] summary::after {
    content: "-";
}

.org-starter-messages-accordion summary span {
    padding-right: 28px;
    font-weight: 900;
}

.org-starter-messages-accordion summary em {
    padding-right: 28px;
    color: var(--muted);
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.35;
}

.starter-messages-list {
    display: grid;
    gap: 10px;
    padding: 0 14px 14px;
}

.starter-message-row {
    display: grid !important;
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    text-transform: none !important;
}

.starter-message-row > span {
    display: grid;
    gap: 4px;
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
}

.starter-message-row em {
    color: var(--muted);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 700;
}

.starter-message-row textarea {
    min-height: 70px;
    resize: vertical;
    font-size: 0.92rem;
    line-height: 1.38;
}

.access-add-details .secondary-btn,
.tiny-action {
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 0.82rem;
}

.access-inline-form {
    grid-template-columns: minmax(128px, 0.8fr) repeat(3, minmax(120px, 1fr)) auto;
}

.access-inline-form input {
    min-height: 38px;
    font-size: 0.88rem;
}

.access-person strong {
    font-size: 0.92rem;
}

.access-person span {
    font-size: 0.78rem;
}

.voucher-editor {
    grid-template-columns: 150px minmax(0, 1fr) 140px;
}

.voucher-editor > div,
.voucher-editor label {
    min-height: 66px;
    padding: 12px;
}

.voucher-editor strong {
    font-size: 0.96rem;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.feature-toggle {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.86rem !important;
}

@media (max-width: 760px) {
    .org-image-row,
    .access-card {
        grid-template-columns: 1fr;
    }

    .org-image-row img {
        width: 100%;
        height: 150px;
    }

    .org-section-heading,
    .voucher-editor,
    .access-inline-form,
    .access-add-details .access-add-form,
    .starter-message-row,
    .org-starter-photos,
    .org-welcome-preview {
        grid-template-columns: 1fr;
    }

    .org-section-heading {
        display: grid;
    }

    .org-topline,
    .org-top-actions {
        grid-template-columns: 1fr;
    }

    .org-top-actions {
        display: grid;
    }

    .access-add-details .access-add-form {
        position: static;
        width: 100%;
    }

    .org-welcome-preview img {
        width: 100%;
        max-width: 180px;
        justify-self: center;
    }
}

.generated-link-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.generated-link-box input {
    min-height: 38px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 0 10px;
    font: inherit;
}

.org-title-field input {
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0 12px;
}

.org-title-field input:focus {
    border-color: rgba(217, 70, 239, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.12);
}

.org-welcome-image-field > span,
.editable-caption {
    color: var(--primary-soft);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-welcome-author-input,
.org-welcome-message-input {
    border: 1px solid rgba(167, 139, 250, 0.24) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.org-welcome-author-input {
    min-height: 34px !important;
    padding: 0 10px !important;
}

.org-welcome-message-input {
    min-height: 78px !important;
    padding: 10px !important;
}

.org-welcome-message-input::placeholder,
.org-welcome-author-input::placeholder,
.org-title-field input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.org-welcome-author-input:focus,
.org-welcome-message-input:focus {
    border-color: rgba(217, 70, 239, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.12);
}

.access-add-details .access-add-form {
    background: #160f2c;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.52);
}

.feature-toggle {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
}

.help-dot {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(167, 139, 250, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-soft);
    font-weight: 900;
    cursor: help;
}

.voucher-editor {
    grid-template-columns: minmax(0, 1fr) 140px;
}

.voucher-combined {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.voucher-combined span {
    display: grid;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    color: white;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.voucher-combined input {
    min-height: 42px;
    border: 0;
    background: transparent;
}

.access-inline-form {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1fr) auto;
}

.access-link-field {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
}

.access-link-field input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: white;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.access-link-field .icon-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.icon-btn:hover {
    border-color: rgba(217, 70, 239, 0.72);
    background: rgba(217, 70, 239, 0.12);
}

.icon-btn.is-disabled {
    opacity: 0.45;
    cursor: help;
}

.has-modal-open {
    overflow: hidden;
}

.org-assistant-modal[hidden] {
    display: none;
}

.org-assistant-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.org-assistant-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 12, 0.76);
    backdrop-filter: blur(6px);
}

.org-assistant-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(780px, 88vh);
    overflow: auto;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 10px;
    background: #160f2c;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.org-assistant-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 22px 14px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.org-assistant-head span {
    color: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.org-assistant-head h2 {
    margin: 4px 0 0;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.org-assistant-content {
    display: grid;
    gap: 16px;
    padding: 20px 22px 24px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.org-assistant-checklist {
    display: grid;
    gap: 8px;
}

.assistant-check {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    text-decoration: none;
}

.assistant-check:hover {
    border-color: rgba(217, 70, 239, 0.62);
    background: rgba(217, 70, 239, 0.1);
}

.assistant-check span {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
}

.assistant-check strong {
    color: white;
    font-size: 0.92rem;
}

.assistant-check.is-done {
    border-color: rgba(34, 197, 94, 0.52);
    background: rgba(34, 197, 94, 0.12);
}

.assistant-check.is-done span {
    color: #86efac;
    background: rgba(34, 197, 94, 0.16);
}

.assistant-check.is-todo {
    border-color: rgba(248, 113, 113, 0.54);
    background: rgba(127, 29, 29, 0.16);
}

.assistant-check.is-todo span {
    color: #fca5a5;
    background: rgba(248, 113, 113, 0.14);
}

.org-assistant-group {
    display: grid;
    gap: 10px;
}

.org-assistant-group h3 {
    margin: 0;
    color: white;
    font-size: 1rem;
}

.org-assistant-group.is-todo h3 {
    color: #fca5a5;
}

.org-assistant-group.is-done h3 {
    color: #86efac;
}

.assistant-empty {
    margin: 0;
    padding: 10px 12px;
    border: 1px dashed rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    color: var(--muted);
}

.assistant-target-highlight {
    animation: assistantTargetPulse 2.2s ease;
    border-radius: 8px;
}

@keyframes assistantTargetPulse {
    0%,
    100% {
        outline: 0 solid rgba(34, 197, 94, 0);
        box-shadow: none;
    }

    12%,
    76% {
        outline: 3px solid rgba(34, 197, 94, 0.72);
        outline-offset: 5px;
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.12), 0 0 42px rgba(34, 197, 94, 0.2);
    }
}

.org-assistant-content p {
    margin: 0;
}

.org-assistant-content ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 22px;
}

.org-assistant-content strong {
    color: white;
}

@media (max-width: 760px) {
    .generated-link-box,
    .voucher-editor,
    .access-inline-form {
        grid-template-columns: 1fr;
    }

    .org-topline {
        grid-template-columns: 1fr;
    }

    .org-title-field input {
        text-align: left;
    }

    .org-topline > .primary-btn,
    .org-topline > .secondary-btn {
        justify-self: stretch;
    }
}

.notice.success {
    border-color: rgba(16, 185, 129, 0.72);
    background: rgba(16, 185, 129, 0.16);
    color: #eafff7;
}

.notice em {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86em;
    font-style: normal;
}

.dismissible-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dismissible-notice button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.is-dirty {
    outline: 2px solid rgba(217, 70, 239, 0.54);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(217, 70, 239, 0.08);
}

.org-title-field {
    text-transform: none;
}

.org-title-field input {
    font-size: 1.2rem;
}

.org-start-field {
    display: grid;
    grid-template-columns: minmax(180px, auto) 34px;
    gap: 8px;
    align-items: end;
    min-width: min(310px, 100%);
}

.org-start-field span {
    grid-column: 1 / -1;
    color: var(--primary-soft);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-start-field input {
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0 10px;
    font: inherit;
}

.org-start-field input:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.org-timezone-field {
    display: grid;
    gap: 8px;
    min-width: min(260px, 100%);
}

.org-timezone-field span {
    color: var(--primary-soft);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.org-timezone-field select {
    min-height: 44px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0 10px;
    font: inherit;
}

.org-timezone-field select option {
    color: #0f0a1f;
}

.org-welcome-image-field > span {
    max-width: 140px;
    text-align: center;
    line-height: 1.2;
}

.copy-done {
    animation: hubfizCopyPulse 0.9s ease;
}

@keyframes hubfizCopyPulse {
    0%, 100% {
        background: rgba(255, 255, 255, 0.045);
        transform: scale(1);
    }
    35% {
        background: rgba(16, 185, 129, 0.35);
        border-color: rgba(16, 185, 129, 0.9);
        transform: scale(1.08);
    }
}

.voucher-editor {
    grid-template-columns: minmax(0, 1fr);
}

.voucher-editor label {
    min-height: 0;
}

.settings-list {
    display: grid;
    gap: 8px;
}

.settings-row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 8px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.032);
    color: var(--text);
    font-size: 0.9rem;
    text-transform: none !important;
}

.settings-row > span:first-child,
.settings-row > strong {
    overflow-wrap: anywhere;
}

.settings-row > strong {
    justify-self: end;
    color: white;
}

.org-settings-compact .feature-toggle input {
    margin: 0;
}

.event-info-box,
.event-close-warning,
.event-defaults-box,
.event-options-box {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.event-close-warning {
    border-color: rgba(245, 158, 11, 0.48);
    background: rgba(245, 158, 11, 0.08);
}

.event-info-box h2,
.event-close-warning h2,
.event-defaults-box h2,
.event-options-box h2 {
    margin: 0;
    color: white;
    font-size: 1rem;
}

.event-info-box p,
.event-close-warning p,
.event-options-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.event-info-box ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.42;
}

.event-info-box .secure-check {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(167, 139, 250, 0.18);
}

.event-step-summary {
    display: grid;
    gap: 8px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.event-step-summary span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-step-summary strong {
    color: white;
    font-size: 1.18rem;
}

.event-step-summary input {
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.18rem;
    font-weight: 900;
}

.event-step-summary input:focus {
    outline: 2px solid rgba(167, 139, 250, 0.42);
    outline-offset: 6px;
}

.event-step-summary a {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--light);
    font-weight: 900;
    text-decoration: none;
}

.event-time-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-date-layout {
    align-items: stretch;
}

.event-date-fields {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
    gap: 12px;
    align-items: end;
}

.event-date-help {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 100%;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.event-info-icon,
.event-warning-icon {
    width: 30px;
    height: 30px;
    display: inline-grid;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
}

.event-info-icon {
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: var(--light);
    background: rgba(123, 63, 242, 0.16);
}

.event-warning-copy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.event-warning-icon {
    border: 1px solid rgba(245, 158, 11, 0.62);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.14);
}

.event-date-help p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.event-time-shortcuts button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.event-time-shortcuts button:hover {
    border-color: var(--primary);
    color: white;
}

.event-defaults-box div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(167, 139, 250, 0.18);
}

.event-defaults-box span {
    color: var(--muted);
}

.event-defaults-box strong {
    color: white;
    text-align: right;
}

.primary-btn:disabled,
.primary-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.42;
    transform: none;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.secure-event-list {
    display: grid;
    gap: 12px;
}

.secure-event-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-soft);
    padding: 16px;
}

.secure-event-list strong,
.secure-event-list span {
    display: block;
}

.secure-event-list span,
.secure-event-list p {
    color: var(--muted);
}

.secure-event-list p {
    grid-column: 1 / -1;
    margin: 0;
}

.secure-status {
    display: inline-flex;
    width: fit-content;
    margin-left: auto;
    padding: 6px 10px;
    border: 1px solid rgba(167, 139, 250, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
}

.secure-table {
    overflow: hidden;
}

.secure-table > div {
    display: grid;
    grid-template-columns: 90px 1fr 1fr auto;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--line);
}

.secure-table > div:first-child {
    border-top: 0;
}

.secure-table span {
    color: var(--muted);
}

.print-button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.invoice-body {
    min-height: 100vh;
    background: #F4F1FA;
    color: #1F2937;
}

.invoice-body::before {
    display: none;
}

.invoice-toolbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #E5E7EB;
    backdrop-filter: blur(14px);
}

.invoice-toolbar a {
    color: #4C1D95;
    font-weight: 900;
    text-decoration: none;
}

.invoice-page {
    width: min(1000px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 80px;
}

.invoice-document {
    padding: clamp(28px, 5vw, 56px);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 24px 80px rgba(31, 41, 55, 0.14);
}

.invoice-document-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 3px solid #7B3FF2;
}

.invoice-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0F0A1F;
    font-size: 1.2rem;
    font-weight: 900;
}

.invoice-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.invoice-title-block {
    text-align: right;
}

.invoice-title-block span,
.invoice-meta-grid span,
.invoice-parties h2,
.invoice-summary span {
    display: block;
    color: #6B7280;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.invoice-title-block h1 {
    margin: 6px 0 0;
    color: #111827;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.invoice-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.invoice-meta-grid div {
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB;
}

.invoice-meta-grid strong {
    display: block;
    margin-top: 6px;
    color: #111827;
    font-size: 1.05rem;
}

.invoice-parties {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.invoice-parties article {
    display: grid;
    gap: 5px;
    padding: 18px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.invoice-parties strong {
    color: #111827;
    font-size: 1.02rem;
}

.invoice-parties span {
    color: #4B5563;
    line-height: 1.45;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0 24px;
}

.invoice-table th {
    padding: 12px 14px;
    background: #0F0A1F;
    color: white;
    font-size: 0.76rem;
    text-align: left;
    text-transform: uppercase;
}

.invoice-table th:nth-child(2),
.invoice-table th:nth-child(3),
.invoice-table td:nth-child(2),
.invoice-table td:nth-child(3) {
    text-align: right;
}

.invoice-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: top;
}

.invoice-table td strong,
.invoice-table td span {
    display: block;
}

.invoice-table td strong {
    color: #111827;
}

.invoice-table td span {
    margin-top: 4px;
    color: #6B7280;
}

.invoice-summary {
    width: min(380px, 100%);
    margin-left: auto;
    display: grid;
    gap: 10px;
}

.invoice-summary div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.invoice-summary strong {
    color: #111827;
    text-align: right;
}

.invoice-summary-total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 2px solid #111827;
}

.invoice-summary-total strong {
    font-size: 1.35rem;
}

.invoice-note {
    margin: 34px 0 0;
    padding-top: 18px;
    border-top: 1px solid #E5E7EB;
    color: #6B7280;
    line-height: 1.6;
}

@media print {
    .invoice-toolbar {
        display: none;
    }

    .invoice-body {
        background: white;
    }

    .invoice-page {
        width: 100%;
        padding: 0;
    }

    .invoice-document {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
}

.contact-section {
    grid-template-columns: minmax(0, 1fr) auto;
    background:
        linear-gradient(135deg, rgba(123, 63, 242, 0.22), rgba(217, 70, 239, 0.14)),
        var(--panel);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 28px clamp(20px, 6vw, 88px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.site-footer div:first-child span:first-child {
    color: white;
    font-weight: 900;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.site-footer a,
.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover,
.footer-links a:hover {
    color: white;
}

.legal-body {
    min-height: 100vh;
    background:
        linear-gradient(rgba(167, 139, 250, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.055) 1px, transparent 1px),
        var(--bg);
    background-size: 72px 72px;
    color: var(--text);
}

.legal-main {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.legal-panel {
    display: grid;
    gap: 16px;
}

.legal-panel h1,
.legal-panel h2,
.legal-panel p {
    margin: 0;
}

.legal-panel h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.legal-panel h2 {
    margin-top: 16px;
    font-size: 1.25rem;
}

.legal-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.legal-panel a {
    color: white;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .secure-header .site-nav {
        display: flex;
        flex: 1;
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .secure-header .site-nav::-webkit-scrollbar {
        display: none;
    }

    .feature-grid,
    .steps,
    .offers,
    .account-grid,
    .secure-grid,
    .secure-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase,
    .proof-section,
    .contact-section,
    .offer-2026-card,
    .hero-layout,
    .login-main {
        grid-template-columns: 1fr;
    }

    .secure-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-data-grid,
    .dashboard-products {
        grid-template-columns: 1fr;
    }

    .event-photo-scene,
    .event-photo-scene img,
    .product-scene {
        min-height: 680px;
    }

    .marketing-gallery,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .marketing-gallery {
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-row: auto;
    }

    .phone-frame {
        width: min(320px, 76%);
    }

    .wall-frame {
        width: min(520px, 86%);
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand span {
        display: none;
    }

    .secure-main {
        width: min(100% - 28px, 1180px);
        padding-top: 108px;
    }

    .secure-grid,
    .secure-products,
    .dashboard-focus,
    .dashboard-section-head,
    .dashboard-subsection-head,
    .dashboard-product,
    .dashboard-product form,
    .event-card dl,
    .order-card,
    .invoice-document-head,
    .invoice-meta-grid,
    .invoice-parties,
    .form-row,
    .secure-event-list article,
    .secure-table > div {
        grid-template-columns: 1fr;
    }

    .invoice-title-block {
        text-align: left;
    }

    .invoice-summary {
        margin-left: 0;
    }

    .dashboard-main {
        width: min(100% - 28px, 1180px);
        padding-top: 28px;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-actions,
    .event-actions {
        width: 100%;
    }

    .language-pill {
        display: none;
    }

    .secure-status {
        margin-left: 0;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: 88vh;
        padding: 104px 18px 42px;
    }

    .hero-logo {
        width: 118vw;
        right: -42vw;
        opacity: 0.18;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 320px;
    }

    .hero-actions {
        flex-direction: column;
    }

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-copy,
    .section-heading p,
    .showcase-copy p,
    .proof-copy p,
    .contact-section p {
        font-size: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-stats {
        margin-top: 32px;
    }

    .feature-grid,
    .steps,
    .offers,
    .account-grid,
    .faq-grid,
    .offer-2026-list {
        grid-template-columns: 1fr;
    }

    .offer-2026-price strong {
        font-size: 4rem;
    }

    .feature-card,
    .offer-card,
    .steps article {
        min-height: auto;
    }

    .event-photo-scene,
    .event-photo-scene img,
    .product-scene {
        min-height: 600px;
    }

    .gallery-large,
    .gallery-large img {
        min-height: 320px;
    }

    .gallery-card,
    .testimonials-grid article {
        min-height: auto;
    }

    .phone-frame {
        width: 78%;
        min-height: 430px;
        padding: 18px;
    }

    .phone-actions img {
        width: 62px;
        height: 62px;
    }

    .wall-frame {
        width: 86%;
        min-height: 300px;
        grid-template-columns: 1fr;
    }

    .wall-photo {
        min-height: 118px;
    }

    .contact-section {
        align-items: stretch;
    }

    .login-main {
        padding-top: 120px;
    }

    .site-footer {
        flex-direction: column;
    }
}
