@import url("style.css");

:root {
    --g-font: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --apple-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', var(--g-font);
    --g-text-primary: #202124;
    --g-text-secondary: #5f6368;
    --g-text-tertiary: #80868b;
	--g-text-tagline: #000000;
    --g-border: #dadce0;
    --g-surface: #ffffff;
    --g-surface-variant: #f8f9fa;
    --g-primary: var(--figma-navy, #000052);
    --g-primary-hover: var(--figma-navy-dark, #000029);
    --g-link: #1a73e8;
    --g-chip-bg: #e8f0fe;
    --g-chip-text: #1967d2;
    --g-elevation-1: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --g-elevation-2: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    --g-radius-card: 12px;
    --g-radius-btn: 24px;
    --g-max-width: 100rem;
    --g-gutter: 24px;
    --pricing-content-max: 80rem;
}

/* --- Page layout ---------------------------------------------------------- */

.express-page {
    background: var(--g-surface);
    font-family: var(--g-font);
    color: var(--g-text-primary);
    /* padding: 48px 0 64px; */
    padding: 25px 0 0;
    -webkit-font-smoothing: antialiased;
}

.express-page__inner {
    width: 100%;
    max-width: var(--g-max-width);
    margin: 0 auto;
    padding: 0 var(--g-gutter);
}

/* --- Hero (Google headline hierarchy) ------------------------------------- */

.express-hero {
    text-align: center;
    width: 100%;
    /* margin: 0 0 48px;
    padding: 0 0 48px; */
    margin: 0 0 1rem !important;
    padding: 0 0 1rem !important;
    border-bottom: 1px solid var(--g-border);
}

.express-hero__title {
    margin: 0 0 8px;
    font-family: var(--apple-font);
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--g-text-primary);
}

.express-hero__title a {
    color: inherit;
    text-decoration: none;
}

.express-hero__subtitle {
    /* margin: 0 0 16px; */
    margin: 0;
    font-family: var(--g-font);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.00625em;
    color: var(--g-text-primary);
}

.express-hero__intro {
    /* margin: 0 auto;
    max-width: 40rem; */
    width: 85%;
    font-family: var(--g-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.00625em;
    color: var(--g-text-secondary);
    margin: 0.7rem 0;
}

/*added on 6/7/2026*/

.express-desc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* --- Section header (Title Large / Body) ---------------------------------- */

.pricing-section {
    /* margin-bottom: 48px; */
    /* width: 100vw; */
    /* margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw); */
    /* padding-left: max(var(--g-gutter), calc((100vw - var(--pricing-content-max)) / 2));
    padding-right: max(var(--g-gutter), calc((100vw - var(--pricing-content-max)) / 2)); */
    box-sizing: border-box;
    margin-bottom: 1.2rem !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-section__header {
    text-align: center;
    /* margin-bottom: 32px; */
    margin-bottom: var(--space-3) !important;
}

.pricing-section__title {
    margin: 0 0 8px;
    font-family: var(--g-font);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: var(--g-text-primary);
    letter-spacing: 0;
}

.pricing-section__subtitle {
    margin: 0;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
    color: var(--g-text-secondary);
}

/* --- Step indicator (Material stepper) ------------------------------------ */

.pricing-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    margin: 0 auto 32px;
    padding: 0;
    max-width: 32rem;
    gap: 0;
}

.pricing-steps__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--g-font);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: 0.0333333333em;
    color: var(--g-text-secondary);
    text-align: center;
    position: relative;
}

.pricing-steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    background: var(--g-border);
    z-index: 0;
}

.pricing-steps__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 500;
    background: var(--g-surface);
    color: var(--g-text-secondary);
    border: 2px solid var(--g-border);
    position: relative;
    z-index: 1;
}

.pricing-steps__item--active {
    color: var(--g-primary);
}

.pricing-steps__item--active .pricing-steps__num {
    background: var(--g-primary);
    color: #fff;
    border-color: var(--g-primary);
}

.pricing-steps__item--active:not(:last-child)::after {
    background: var(--g-primary);
    opacity: 0.35;
}

/* --- Plan cards (Material elevated surfaces) ------------------------------ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: var(--pricing-content-max);
    margin: 0 auto;
}

.pricing-grid__column {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
    gap: 1.2rem;
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    --price-num-size: 3rem;
    --price-suffix-size: 1.25rem;
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius-card);
    padding: 24px 28px;
    position: relative;
    box-shadow: var(--g-elevation-1);
    transition: box-shadow 0.2s ease;
}

.plan-card:hover {
    box-shadow: var(--g-elevation-2);
}

.plan-card--featured {
    border: 2px solid var(--g-primary);
    padding-top: 28px;
}

.plan-card__badge {
    position: absolute;
    top: -12px;
    left: 28px;
    padding: 4px 12px;
    background: var(--g-chip-bg);
    color: var(--g-chip-text);
    font-family: var(--g-font);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
}

.plan-card__name {
    margin: 0 0 4px;
    font-family: var(--g-font);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 0.00625em;
    text-transform: none;
    color: var(--g-text-primary);
}

.plan-card__asterisk {
    font-weight: 400;
    color: var(--g-text-secondary);
}

.filing-types-footnote {
    margin: 0;
    padding: 0 4px;
    font-family: var(--g-font);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--g-text-secondary);
}

.filing-types-footnote__intro {
    margin: 0 0 8px;
}

.filing-types-footnote__list {
    margin: 0;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.filing-types-footnote__list li+li {
    margin-top: 2px;
}

.filing-types-footnote__star {
    color: var(--g-text-secondary);
}

.plan-card__tagline {
    margin: 0 0 16px;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.0107142857em;
    color: var(--g-text-secondary);
    min-height: 2.7rem;
}

.plan-card__tagline--two-line {
    min-height: 2.7rem;
}

.plan-card__tagline-line {
    display: block;
}

.plan-card__price {
    margin-bottom: 8px;
}

.plan-card__amount {
    display: block;
    line-height: 1.35;
    color: var(--g-text-primary);
}

.plan-card__price-num {
    font-family: var(--g-font);
    font-size: var(--price-num-size, 2rem);
    font-weight: 700;
    letter-spacing: 0;
}

.plan-card__price-suffix {
    font-family: var(--g-font);
    font-size: var(--price-suffix-size, 0.875rem);
    font-weight: 400;
    color: var(--g-text-secondary);
}

.plan-card__period {
    display: block;
    margin-top: 2px;
    margin-bottom: 0;
    font-family: var(--g-font);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: var(--g-text-tagline);
}

/* Material filled button */
.plan-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 24px;
    text-align: center;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.0107142857em;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    background: var(--g-primary);
    border: none;
    border-radius: var(--g-radius-btn);
    box-shadow: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.plan-card__cta:hover,
.plan-card__cta:focus-visible {
    background: var(--g-primary-hover);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--g-elevation-1);
}

.plan-card__highlight {
    margin-top: 8px;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border: none;
}

.plan-card__highlight--with-icon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-card__highlight-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 38px;
    margin-top: 2px;
    color: #11365a;
}

.plan-card__highlight-text {
    margin: 0;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.0107142857em;
    color: var(--g-text-secondary);
}

.plan-card__highlight-text strong {
    font-weight: 500;
    color: var(--g-text-primary);
}

.plan-card__highlight-text a {
    color: var(--g-link);
    text-decoration: none;
}

.plan-card__highlight-text a:hover,
.plan-card__highlight-text a:focus-visible {
    text-decoration: underline;
}

.plan-card__features {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--g-border);
}

.plan-card__features-label {
    margin: 0 0 8px;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
    color: var(--g-text-primary);
}

.plan-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-card__list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
    color: var(--g-text-secondary);
}

.plan-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g-text-tertiary);
}

/* --- Summary / disclaimer ------------------------------------------------- */

.express-summary {
    width: 100%;
    margin: 0;
    /* padding: 40px 0 24px; */
    padding: 1rem 0 !important;
    border-top: 1px solid var(--g-border);
    text-align: center;
}

.express-disclaimer {
    /* max-width: 42rem;
    margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.express-disclaimer div {
    /* margin: 0 0 16px; */
    width: 85%;
    font-family: var(--g-font);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.0178571429em;
    color: var(--g-text-secondary);
}

.express-disclaimer p:last-child {
    margin-bottom: 0;
}

/* --- Snackbar-style notice ------------------------------------------------ */

.express-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 42rem;
    background: #323232;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.express-notice[hidden] {
    display: none;
}

.express-notice__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.express-notice__text {
    margin: 0;
    flex: 1;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
    color: rgba(255, 255, 255, 0.87);
}

.express-notice__dismiss {
    flex-shrink: 0;
    padding: 8px 12px;
    font-family: var(--g-font);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.0892857143em;
    text-transform: uppercase;
    color: #8ab4f8;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.express-notice__dismiss:hover,
.express-notice__dismiss:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 1024px) {
    .pricing-section {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 40rem;
        margin: 0 auto;
    }

    .plan-card--featured {
        order: -1;
    }

    .plan-card__tagline {
        min-height: auto;
    }

    .pricing-steps__item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .express-page {
        padding: 30px 0 48px;
    }

    .express-page__inner {
        padding: 0 16px;
    }

    .express-hero {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .pricing-steps {
        flex-direction: column;
        gap: 12px;
    }

    .express-notice {
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .express-notice__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .express-notice__dismiss {
        align-self: flex-end;
    }
}

.type-h5 {
    margin: 0;
    font-family: var(--figma-font-nav);
    font-weight: 500;
    font-size: var(--figma-banner-xs);
    line-height: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
}

.type-body-2 {
    margin: 0;
    font-family: var(--figma-font);
    font-size: var(--figma-banner-md);
    line-height: 1.43;
    color: inherit;
}

.visually-hidden {
    margin-bottom: 1rem;
}

#container {
    overflow-y: hidden;
}

.flex-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.express-filing-container .express-hero__title {
    padding: 0 !important;
    padding-top: 1.5rem;
}

.pricing-section__subtitle {
    margin-bottom: 1.5rem !important;
}

.express-filing-container .pricing-section__title {
    padding: 0 !important;
}

.express-filing-container #content {
    margin: 0 !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}