:root {
    --color: #000;
    --font-size: 16px;
    --background: #f8fffe;
    --foreground: #0d1a0d;
    --card: #fff;
    --card-foreground: #0d1a0d;
    --popover: #fff;
    --popover-foreground: #0d1a0d;
    --primary: #1a3325;
    --primary-foreground: #fff;
    --secondary: #dcfce7;
    --secondary-foreground: #14532d;
    --muted: #f0fdf4;
    --muted-foreground: #4d7c5a;
    --accent: #bbf7d0;
    --accent-foreground: #14532d;
    --destructive: #d4183d;
    --destructive-foreground: #fff;
    --border: #16a34a26;
    --input: transparent;
    --input-background: #f0fdf4;
    --switch-background: #86efac;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --ring: #16a34a;
    --chart-1: #16a34a;
    --chart-2: #22c55e;
    --chart-3: #4ade80;
    --chart-4: #86efac;
    --chart-5: #bbf7d0;
    --radius: .5rem;
    --sidebar: #f0fdf4;
    --sidebar-foreground: #0d1a0d;
    --sidebar-primary: #16a34a;
    --sidebar-primary-foreground: #fff;
    --sidebar-accent: #dcfce7;
    --sidebar-accent-foreground: #14532d;
    --sidebar-border: #16a34a26;
    --sidebar-ring: #16a34a;
    --site-header-height: 4rem;
}

.dark {
    --color: #fff;
    --background: #0a1a0a;
    --foreground: #ecfdf5;
    --card: #0f2a12;
    --card-foreground: #ecfdf5;
    --popover: #0f2a12;
    --popover-foreground: #ecfdf5;
    --primary: #22c55e;
    --primary-foreground: #052e16;
    --secondary: #14532d;
    --secondary-foreground: #dcfce7;
    --muted: #1a3020;
    --muted-foreground: #86efac;
    --accent: #166534;
    --accent-foreground: #dcfce7;
    --destructive: #ef4444;
    --destructive-foreground: #fef2f2;
    --border: #22c55e26;
    --input: #22c55e1a;
    --ring: #22c55e;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --chart-1: #22c55e;
    --chart-2: #4ade80;
    --chart-3: #86efac;
    --chart-4: #bbf7d0;
    --chart-5: #dcfce7;
    --sidebar: #0f2a12;
    --sidebar-foreground: #ecfdf5;
    --sidebar-primary: #22c55e;
    --sidebar-primary-foreground: #052e16;
    --sidebar-accent: #14532d;
    --sidebar-accent-foreground: #dcfce7;
    --sidebar-border: #22c55e26;
    --sidebar-ring: #22c55e
}

.bg-primary {
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

html.scroll-restoring {
    scroll-behavior: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: var(--color);
}

.heading-neutral {
    color: #333;
}

.content-page-offset {
    padding-top: calc(var(--site-header-height) + 4rem);
}

.content-page-lead {
    color: #4d6658;
}

.content-page-toc-label {
    color: var(--primary);
}

.page-shell {
    min-height: 100vh;
}

.section-shell {
    max-width: 72rem;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.section-intro {
    margin-bottom: 1.5rem;
    text-align: center;
}

.surface-brand {
    background: var(--primary);
}

.site-header {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.site-footer {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.brand-text {
    display: inline-flex;
    align-items: center;
    padding-right: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    color: #b9f8cf;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.button--ghost:hover,
.button--outline-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 35;
    background: #143a27;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-menu.mobile-menu--visible,
.language-picker__menu.language-picker__menu--visible,
.cookie-banner.cookie-banner--visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-menu__nav .nav-link {
    justify-content: flex-start;
    padding: 0.7rem 0.85rem;
    border-radius: 0.65rem;
    font-size: 0.95rem;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.25rem;
}

.mobile-menu__actions .button {
    width: 100%;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.button--sm {
    height: 2rem;
    padding-inline: 1rem;
    font-weight: 500;
}

.button--md {
    height: 2.75rem;
    padding-inline: 1.5rem;
    font-weight: 600;
}

.button--xs {
    height: 2.75rem;
    width: 100%;
    font-weight: 600;
}

.button--icon {
    width: 2rem;
    padding-inline: 0;
    color: white;
}

.button--language {
    padding: 0.375rem 0.625rem;
    color: #b9f8cf;
}

.button--icon svg,
.button--language svg,
.login-modal__close svg,
.feature-modal__close svg {
    width: 1rem;
    height: 1rem;
}

.language-picker {
    position: relative;
}

.language-picker__toggle {
    gap: 0.45rem;
}

.language-picker__label {
    font-size: 1rem !important;
    min-width: 1.5rem;
    text-align: center;
}

.language-picker__chevron {
    width: 0.9rem;
    height: 0.9rem;
    transition: transform 0.18s ease;
}

.language-picker__toggle[aria-expanded="true"] .language-picker__chevron {
    transform: rotate(180deg);
}

.language-picker__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    z-index: 45;
    width: 11rem;
    padding: 0.4rem;
    border: 1px solid rgba(31, 115, 68, 0.18);
    border-radius: 0.9rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(-0.4rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-picker__list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.language-picker__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.language-picker__option:hover,
.language-picker__option:focus-visible {
    background: #ecfdf3;
    color: var(--primary);
    outline: none;
}

.language-picker__option[aria-selected="true"] {
    background: #e5f8ee;
    color: var(--primary);
}

.language-picker__check {
    width: 0.95rem;
    height: 0.95rem;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.language-picker__option[aria-selected="true"] .language-picker__check {
    opacity: 1;
}

.button--outline-light {
    border: 1px solid #8eab8d;
    color: #d9fbe3;
}

.button--primary {
    background: #3b888b;
    color: var(--primary-foreground);
    font-weight: 600;
}

.button--primary:hover {
    opacity: 0.9;
}

.button--outline-brand {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.button--outline-brand:hover {
    background: rgba(31, 115, 68, 0.08);
}

.hero-section {
    position: relative;
    text-align: left;
    min-height: 100svh;
    padding-top: var(--site-header-height);
    box-sizing: border-box;
    background: linear-gradient(180deg, #fff 0%, #dcfce7 90%, #f0fdf4 100%);
}

.hero-stage {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--site-header-height));
}

.hero-main {
    display: flex;
    flex: 1;
    align-items: center;
    width: 100%;
    padding-top: clamp(1.5rem, 4vh, 3rem);
    padding-bottom: clamp(1rem, 3vh, 2rem);
    gap: clamp(2rem, 4vw, 3rem);
}

.hero-copy {
    gap: clamp(1rem, 2vh, 1.5rem);
    text-align: justify;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    padding-top: 4rem;
    background: inherit;
    z-index: -1;
}

.hero-brandline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    width: 100%;
    align-self: center;
    padding: 0.4rem 1rem;
    margin-bottom: 3rem;
    border-radius: 0.75rem;
    font-size: clamp(1.35rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    background: #def4e8;
}

.hero-brandline-icon {
    width: clamp(2.5rem, 5vw, 3.25rem);
    height: clamp(2.5rem, 5vw, 3.25rem);
    flex-shrink: 0;
    border-radius: 0.625rem;
    object-fit: cover;
}

.hero-brandline-text {
    display: inline-flex;
    align-items: center;
}

.hero-brandline-badge {
    margin-top: -5px;
    display: inline-flex;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-image {
    width: 100%;
    max-height: min(60vh, 530px);
    object-fit: contain;
}

.hero-offer {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    color: black;
    gap: 1rem;
    width: min(100%, 38rem);
    padding: 1rem 1.15rem;
    border: 1px solid rgba(18, 61, 42, 0.12);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(18, 61, 42, 0.1);
}

.hero-offer-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #fdf08a;
    color: #123d2a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(18, 61, 42, 0.1);
}

.hero-offer-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.hero-offer-kicker {
    margin: 0;
    font-size: 0.75rem;
    color: #3b888b;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-offer-title {
    margin: 0;
    font-size: .9rem;
    font-weight: 500;
}

.hero-sectors-wrap {
    margin-top: 0;
    padding: 0.85rem 0;
    background: #072218;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-sectors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-sector {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
}

.hero-sector-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #d9fbe3;
}

.hero-sector-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

@media (max-width: 767px) {
    .hero-sectors-wrap {
        padding: 1rem 0 1.25rem;
    }

    .hero-sectors {
        justify-content: flex-start;
        gap: 0.9rem 1.1rem;
    }

    .hero-sector {
        font-size: 0.875rem;
    }

    .hero-main {
        padding-top: 1.25rem;
        padding-bottom: 1rem;
        gap: 1.5rem;
    }

    .hero-offer {
        grid-template-columns: minmax(4.9rem, auto) minmax(0, 1fr);
        align-items: start;
        gap: 0.8rem;
        padding: 0.95rem 1rem;
    }

    .hero-offer-flag {
        min-width: 4.9rem;
        padding: 0.75rem 0.8rem;
        font-size: 0.92rem;
        letter-spacing: 0.12em;
    }

    .hero-offer-title {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .hero-image {
        max-height: 36vh;
    }
}

@media (min-width: 1024px) {
    .hero-copy {
        max-width: 34rem;
    }
}

.section-kicker {
    padding-left: 1rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eef3f0;
}

.font-highlight {
    color: #3b888b;
}

.start-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
}

.start-grid,
.pricing-grid {
    display: grid;
    gap: 1.2rem;
}

.start-step {
    --step-accent: #3b888b;
    --step-accent-soft: rgba(59, 136, 139, 0.14);
    --step-accent-ink: #206c70;
    --step-accent-glow: rgba(59, 136, 139, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(17, 52, 36, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.start-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--step-accent) 0%, transparent 60%);
}

.start-step::after {
    content: "";
    position: absolute;
    top: -2rem;
    right: -1rem;
    width: 9rem;
    height: 9rem;
    border-radius: 999px;
    background: radial-gradient(circle, var(--step-accent-glow) 0%, transparent 72%);
    pointer-events: none;
}

.start-step--account {
    --step-accent: #3b888b;
    --step-accent-soft: rgba(59, 136, 139, 0.14);
    --step-accent-ink: #206c70;
    --step-accent-glow: rgba(59, 136, 139, 0.2);
}

.start-step--resources {
    --step-accent: #2f6b54;
    --step-accent-soft: rgba(47, 107, 84, 0.14);
    --step-accent-ink: #1d5b45;
    --step-accent-glow: rgba(47, 107, 84, 0.18);
}

.start-step--timetable {
    --step-accent: #78924d;
    --step-accent-soft: rgba(120, 146, 77, 0.16);
    --step-accent-ink: #5d7437;
    --step-accent-glow: rgba(120, 146, 77, 0.2);
}

.start-step--publish {
    --step-accent: #9c7a30;
    --step-accent-soft: rgba(156, 122, 48, 0.14);
    --step-accent-ink: #7d5f1d;
    --step-accent-glow: rgba(156, 122, 48, 0.18);
}

.start-step-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.start-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    height: 2.7rem;
    padding-inline: 0.75rem;
    border-radius: 999px;
    background: var(--step-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 24px var(--step-accent-glow);
}

.start-step-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(17, 52, 36, 0.08);
    border-radius: 999px;
    background: var(--step-accent-soft);
    color: var(--step-accent-ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.start-step-media {
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.start-step-image {
    width: 100%;
    height: auto;
    border: 1px solid rgba(17, 52, 36, 0.1);
    border-radius: 0.7rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.start-step-window {
    overflow: hidden;
    border: 1px solid rgba(17, 52, 36, 0.1);
    border-radius: 0.9rem;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.start-step-window-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.7rem;
    background: rgba(17, 52, 36, 0.05);
    border-bottom: 1px solid rgba(17, 52, 36, 0.08);
}

.start-step-window-bar span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(59, 136, 139, 0.28);
}

.start-step-canvas {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 12.75rem;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.start-step-placeholder-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--step-accent-ink);
}

.start-step-line,
.start-step-button,
.start-step-tile,
.start-step-chip,
.start-step-calendar-cell,
.start-step-phone-card {
    border: 1px solid rgba(17, 52, 36, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.start-step-line {
    display: block;
    width: 100%;
    height: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--step-accent-soft) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.start-step-line--wide {
    width: 88%;
}

.start-step-line--short {
    width: 58%;
}

.start-step-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.start-step-tile {
    display: block;
    height: 3.4rem;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, var(--step-accent-soft) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.start-step-button {
    display: inline-flex;
    align-self: flex-start;
    width: 6.25rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--step-accent) 0%, var(--step-accent-ink) 100%);
}

.start-step-sidebar-layout {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    gap: 0.75rem;
    flex: 1;
}

.start-step-sidebar {
    display: block;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, var(--step-accent-ink) 0%, var(--step-accent) 100%);
}

.start-step-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.start-step-chip-row,
.start-step-calendar-head {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.start-step-chip {
    display: block;
    width: 4rem;
    height: 1.3rem;
    border-radius: 999px;
    background: var(--step-accent-soft);
}

.start-step-chip--short {
    width: 2.6rem;
}

.start-step-calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    flex: 1;
}

.start-step-calendar-cell {
    display: block;
    min-height: 2.6rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
}

.start-step-calendar-cell--active {
    background: linear-gradient(180deg, var(--step-accent-soft) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: inset 0 0 0 1px rgba(17, 52, 36, 0.08), 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.start-step-publish-layout {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 0.85rem;
    align-items: center;
    flex: 1;
}

.start-step-phone {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 8.8rem;
    padding: 0.6rem;
    border: 1px solid rgba(17, 52, 36, 0.1);
    border-radius: 1.3rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 250, 238, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.start-step-phone-notch {
    width: 2.1rem;
    height: 0.35rem;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(17, 52, 36, 0.14);
}

.start-step-phone-card {
    display: block;
    flex: 1;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, var(--step-accent-soft) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.start-step-phone-card--small {
    flex: 0 0 1.8rem;
}

.start-step-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.start-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: #173227;
}

.start-step-copy {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #4d6658;
}

.start-step-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.start-step-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #4d6658;
}

.start-step-list li::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--step-accent);
    box-shadow: 0 0 0 0.22rem var(--step-accent-soft);
}

@media (min-width: 900px) {
    .start-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .start-step {
        padding: 1rem;
    }

    .start-step-canvas {
        min-height: 11.5rem;
        padding: 0.85rem;
    }

    .start-step-publish-layout {
        grid-template-columns: 1fr;
    }

    .start-step-phone {
        max-width: 5.5rem;
    }
}

@media (hover: hover) {
    .start-step:hover {
        transform: translateY(-2px);
        border-color: var(--step-accent);
        box-shadow: 0 20px 36px rgba(15, 23, 42, 0.1), 0 0 0 3px var(--step-accent-soft);
    }
}
.features-section {
    background: #fff;
}
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 0.75rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--input-background);
}

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: rgba(22, 163, 74, 0.1);
    transition: background-color 0.2s ease;
}

.feature-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: color 0.2s ease;
}

.feature-card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.feature-card-copy {
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.feature-card:focus-visible {
    outline: none;
    border-color: #3b888b;
    box-shadow: 0 0 0 3px rgba(59, 136, 139, 0.16), 0 16px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

@media (hover: hover) {
    .feature-card:hover {
        border-color: #3b888b;
        background: linear-gradient(180deg, #ffffff 0%, #f5fff8 100%);
        box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08), 0 0 0 3px rgba(59, 136, 139, 0.12);
        transform: translateY(-2px);
    }

    .feature-card:hover .feature-card-icon {
        background: rgba(59, 136, 139, 0.16);
    }

    .feature-card:hover .feature-card-icon svg,
    .feature-card:hover .feature-card-title {
        color: #206c70;
    }
}

.pricing-section {
    background: #f0fdf4;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}

.pricing-card {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.pricing-card--after-beta {
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf3 100%);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--primary);
    color: var(--primary-foreground);
}

.pricing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
}

.pricing-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(31, 115, 68, 0.1);
}
.pricing-feature-icon-limit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgb(165, 37, 4, 0.3);
}

.pricing-feature-icon svg {
    width: 0.625rem;
    height: 0.625rem;
    color: var(--primary);
}

.pricing-legal-note {
    margin: 1.75rem auto 0;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(31, 115, 68, 0.14);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 253, 245, 0.98) 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.pricing-legal-note__eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2a7664;
}

.pricing-legal-note__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4d6658;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
    z-index: 70;
    max-width: 76rem;
    margin: 0 auto;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(134, 239, 172, 0.35);
    border-radius: 1rem;
    background: #041b12;
    color: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner__content,
.login-modal__body,
.login-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner__notice {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.cookie-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(134, 239, 172, 0.14);
    color: #d9fbe3;
}

.cookie-banner__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cookie-banner__eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #86efac;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1.125rem;
    border: 0;
    border-radius: 0.75rem;
    background: #f3fff7;
    color: #062116;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookie-banner__button:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.cookie-banner__button:focus-visible {
    outline: 3px solid rgba(134, 239, 172, 0.5);
    outline-offset: 2px;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: linear-gradient(180deg, #fff 0%, #dcfce7 90%, #f0fdf4 100%);
}

.login-modal.login-modal--visible,
.feature-modal.feature-modal--visible {
    opacity: 1;
    visibility: visible;
}

.login-modal__dialog {
    position: relative;
    width: min(100%, 30rem);
    padding: 1.5rem;
    border: 1px solid rgba(31, 115, 68, 0.16);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
    transform: translateY(0.75rem);
    transition: transform 0.2s ease;
}

.login-modal--visible .login-modal__dialog,
.feature-modal--visible .feature-modal__dialog {
    transform: translateY(0);
}

.login-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-modal__close:hover {
    background: rgba(15, 23, 42, 0.12);
}

.login-modal__header {
    margin-bottom: 1.25rem;
    padding-right: 2.75rem;
}

.login-modal__eyebrow,
.feature-modal__eyebrow {
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.login-modal__title {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.login-modal__copy {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.login-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.login-modal__button--google {
    border: 1px solid rgb(31, 76, 0);
    background: #fff;
    color: #0f172a;
}

.login-modal__button--google:hover {
    background: #f8fafc;
}

.login-modal__button--submit {
    border: 0;
}

.login-modal__button svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.login-modal__divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.login-modal__divider::before,
.login-modal__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.35);
}

.login-modal__field,
.registration-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.login-modal__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.login-modal__input,
.registration-form__input,
.registration-form__select {
    width: 100%;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.login-modal__input {
    min-height: 3rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 0.85rem;
    color: #0f172a;
}

.login-modal__input:focus,
.registration-form__input:focus,
.registration-form__select:focus {
    background: #fff;
    outline: none;
}

.login-modal__input:focus {
    border-color: rgba(31, 115, 68, 0.65);
    box-shadow: 0 0 0 4px rgba(31, 115, 68, 0.12);
}

.login-modal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.login-modal__link {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--primary);
    font-weight: 600;
}

.login-modal__link:hover {
    text-decoration: underline;
}

.login-modal__legal {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.65;
    text-align: center;
    color: #60786b;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-register-company {
    background: linear-gradient(180deg, #eef7f4 0%, #f7fafc 100%);
}

.page-register-company [hidden] {
    display: none !important;
}

.registration-page {
    padding: calc(var(--site-header-height) + 2rem) 1rem 3rem;
}

.registration-wrap {
    max-width: 46rem;
    margin: 0 auto;
}

.registration-card {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1.6rem;
    background: var(--card);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    padding: 2rem 1.75rem 1.85rem;
}

.registration-title__heading {
    margin: 0 0 1.8rem 0;
    font-size: 2rem;
    line-height: 1.12;
    color: #102a22;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.45rem;
}

.registration-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1rem;
    background: #fff;
}

.registration-step-indicator.is-active {
    border-color: rgba(59, 136, 139, 0.7);
    background: rgba(59, 136, 139, 0.08);
    box-shadow: inset 0 0 0 1px rgba(59, 136, 139, 0.12);
}

.registration-step-indicator.is-complete {
    border-color: rgba(34, 197, 94, 0.24);
    background: rgba(34, 197, 94, 0.08);
}

.registration-step-indicator__index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

.registration-step-indicator.is-active .registration-step-indicator__index {
    background: #3b888b;
    color: #fff;
}

.registration-step-indicator.is-complete .registration-step-indicator__index {
    background: #16a34a;
    color: #fff;
}

.registration-step-indicator__title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #102a22;
}

.registration-step-indicator__copy {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #5f6f7a;
}

.registration-alert {
    margin-bottom: 1.1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.registration-alert--error {
    border: 1px solid rgba(220, 38, 38, 0.2);
    background: #fef2f2;
    color: #991b1b;
}

.registration-step {
    display: grid;
    gap: 1rem;
}

.registration-access-summary {
    padding: .5rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1rem;
    background: #f9fbfd;
}

.registration-auth__panel {
    display: grid;
    gap: 0.9rem;
    padding-top: 0.15rem;
}

.registration-access-summary__copy {
    margin: 0;
    color: var(--primary);
    line-height: 1.65;
}

.registration-access-summary__eyebrow {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3b888b;
}

.registration-access-summary__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.76rem;
}

.registration-google-status {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    color: #5f6f7a;
}

.registration-google-status.is-ready {
    color: #166534;
}

.registration-google-status.is-error {
    color: #991b1b;
}

.registration-form {
    display: grid;
}

.registration-form__label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #102a22;
}

.registration-form__required {
    color: #b91c1c;
}

:is(.registration-form__input, .registration-form__select) {
    min-height: 3.2rem;
    padding: .5rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    border-radius: 0.75rem;
    color: #102a22;
}

:is(.registration-form__input, .registration-form__select):focus {
    border-color: rgba(59, 136, 139, 0.68);
    box-shadow: 0 0 0 4px rgba(59, 136, 139, 0.14);
}

:is(.registration-form__input, .registration-form__select).is-invalid {
    border-color: rgba(220, 38, 38, 0.65);
    background: #fff7f7;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.registration-form__password {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.25rem;
    align-items: center;
}

.registration-form__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: #f8fafc;
    color: #334155;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.registration-form__toggle:hover {
    border-color: rgba(59, 136, 139, 0.68);
    background: #fff;
    color: #0f766e;
}

.registration-form__toggle:focus {
    outline: none;
    border-color: rgba(59, 136, 139, 0.68);
    box-shadow: 0 0 0 4px rgba(59, 136, 139, 0.14);
}

.registration-form__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
}

.registration-form__toggle-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.registration-form__toggle .registration-icon--eye-off {
    display: none;
}

.registration-form__toggle[aria-pressed='true'] .registration-icon--eye {
    display: none;
}

.registration-form__toggle[aria-pressed='true'] .registration-icon--eye-off {
    display: block;
}

.registration-form__error {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #b91c1c;
}

.registration-form__legal {
    margin: 0.15rem 0 0;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: #f7fafc;
    color: var(--primary);
    line-height: 1.65;
}

.registration-form__legal .login-modal__link {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.15em;
}

.registration-actions {
    padding-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
    margin-top: 0.2rem;
    justify-content: flex-end;
}

.registration-actions .button[aria-busy='true'] {
    opacity: 0.82;
}

.registration-success {
    margin-top: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 1.2rem;
    background: #ecfdf3;
}

.registration-success__eyebrow {
    margin: 0 0 1.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #15803d;
}

.registration-success__title {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.15;
    color: #14532d;
}

.registration-success__copy {
    margin: 0.65rem 0 1.5rem;
    color: #22603c;
    line-height: 1.65;
}

.registration-success__status {
    margin: 0.85rem 0 0;
    color: #166534;
    font-size: 0.9rem;
    line-height: 1.5;
}

.registration-success__status.is-error {
    color: #991b1b;
}

.registration-success__code {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.registration-success__actions {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-modal {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(1, 14, 9, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.feature-modal__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 68rem);
    max-height: min(88vh, 56rem);
    padding: 1.5rem;
    border: 1px solid rgba(31, 115, 68, 0.16);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fff9 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
    transform: translateY(0.75rem);
    transition: transform 0.2s ease;
}

.feature-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.feature-modal__close:hover,
.feature-modal__close:focus-visible {
    background: rgba(15, 23, 42, 0.12);
    outline: none;
}

.feature-modal__header {
    margin-bottom: .2rem;
    padding-right: 3rem;
}

.feature-modal__title {
    margin-bottom: 0.45rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.feature-modal__copy {
    max-width: 38rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.feature-modal__frame-shell {
    position: relative;
    flex: 0 0 auto;
    height: min(68vh, 42rem);
    min-height: min(68vh, 42rem);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: .5rem;
    overflow: hidden;
    background: #eef6f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-modal__status {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 249, 245, 0.94) 100%);
    color: #206c70;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.feature-modal__status--hidden {
    opacity: 0;
    visibility: hidden;
}

.feature-modal__frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    background: #fff;
}

body.modal-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .cookie-banner__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-banner__notice {
        max-width: 54rem;
    }

    .cookie-banner__actions {
        flex-shrink: 0;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .registration-card {
        padding: 1.4rem 1.1rem 1.35rem;
        border-radius: 1.3rem;
    }

    .registration-title__heading {
        font-size: 1.68rem;
    }

    .registration-steps {
        grid-template-columns: 1fr;
    }

    :is(.registration-actions, .registration-success__actions) {
        flex-direction: column;
    }

    :is(.registration-actions, .registration-success__actions) .button {
        width: 100%;
        justify-content: center;
    }

    .feature-modal {
        padding: 0.75rem;
    }

    .feature-modal__dialog {
        padding: 1rem;
        max-height: 92vh;
    }

    .feature-modal__header {
        padding-right: 2.75rem;
    }

    .feature-modal__frame-shell {
        height: 62vh;
        min-height: 62vh;
    }
}

.footer-heading {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #86efac;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #86efac;
}

.footer-meta-primary {
    color: rgba(220, 252, 231, 0.4);
}

.footer-meta-secondary {
    color: rgba(220, 252, 231, 0.3);
}

.noscript-screen {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
}

.noscript-title {
    padding: 8px;
    font-size: 24px;
    color: #000;
}

.noscript-copy {
    padding: 8px;
    font-size: 16px;
    color: #00000080;
}

.noscript-form {
    margin-top: 12px;
}

.noscript-button {
    width: 256px;
    height: 32px;
    border: 1px solid #0000001a;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    color: #000;
}

/* Keep the header's responsive visibility utilities ahead of component display rules. */
@media (max-width: 767px) {
    .site-header .hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .site-header .md\:hidden {
        display: none;
    }
}

