body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #263140;
    background: hsl(0 0% 100%);
}

.afec-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.afec2-root {
    --background: hsl(0 0% 100%);
    --foreground: hsl(215 25% 20%);
    --primary: hsl(213 70% 20%);
    --primary-foreground: hsl(0 0% 100%);
    --primary-foreground-10: hsla(0, 0%, 100%, .1);
    --primary-foreground-15: hsla(0, 0%, 100%, .15);
    --primary-foreground-20: hsla(0, 0%, 100%, .2);
    --primary-foreground-30: hsla(0, 0%, 100%, .3);
    --primary-foreground-40: hsla(0, 0%, 100%, .4);
    --primary-foreground-50: hsla(0, 0%, 100%, .5);
    --primary-foreground-60: hsla(0, 0%, 100%, .6);
    --primary-foreground-70: hsla(0, 0%, 100%, .7);
    --secondary: hsl(45 95% 55%);
    --secondary-foreground: hsl(215 25% 15%);
    --muted: hsl(210 15% 95%);
    --muted-foreground: hsl(215 12% 46%);
    --accent: hsl(213 65% 35%);
    --border: hsl(214 20% 88%);
    --cta: hsl(145 65% 38%);
    --cta-foreground: hsl(0 0% 100%);
    --cta-foreground-40: hsla(0, 0%, 100%, .4);
    --cta-foreground-70: hsla(0, 0%, 100%, .7);
    --cta-hover: hsl(145 65% 32%);
    background: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter,-apple-system,BlinkMacSystemFont,sans-serif
}

.afec2-nav {
    width: 100%;
    background: var(--primary);
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px #0000001a
}

.afec2-nav-inner {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.afec2-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.afec2-brand-logo {
    width: 36px;
    height: 36px
}

.afec2-brand-name {
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -.01em;
    line-height: 1.15
}

.afec2-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s,box-shadow .2s,transform .1s;
    box-shadow: 0 1px 2px #0000000d
}

.afec2-nav-cta:hover {
    background: hsl(45 95% 50%);
    box-shadow: 0 4px 6px -1px #0000001a
}

.afec2-nav-cta:active {
    transform: scale(.97)
}

.afec2-nav-cta-label {
    display: none
}

.afec2-hero {
    background: var(--background);
    padding: 40px 0;
    text-align: center
}

.afec2-hero-inner {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 20px
}

.afec2-hero-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--foreground);
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0
}

.afec2-hero-title .afec2-accent {
    color: var(--accent)
}

.afec2-benefits {
    background: var(--primary);
    padding: 40px 0
}

.afec2-benefits-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px
}

.afec2-benefits-sub {
    color: var(--primary-foreground);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.55
}

.afec2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px
}

.afec2-benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--primary-foreground-10);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--primary-foreground-20);
    text-align: center;
    transition: background .2s,border-color .2s
}

.afec2-benefit-card:hover {
    background: hsla(0,0%,100%,.15);
    border-color: var(--primary-foreground-30)
}

.afec2-benefit-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: var(--primary-foreground-10);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-foreground-20);
    color: var(--secondary)
}

.afec2-benefit-title {
    font-weight: 700;
    color: var(--primary-foreground);
    font-size: 12px;
    line-height: 1.25;
    margin: 0
}

.afec2-benefit-desc {
    color: var(--primary-foreground-70);
    font-size: 11px;
    line-height: 1.5;
    margin: 0
}

.afec2-cta-wrap {
    margin-top: 32px;
    text-align: center
}

.afec2-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cta);
    color: var(--cta-foreground);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s,box-shadow .2s,transform .1s;
    box-shadow: 0 10px 25px #0003;
    width: 100%;
    max-width: 448px
}

.afec2-cta-button:hover {
    background: var(--cta-hover);
    box-shadow: 0 15px 30px #00000040
}

.afec2-cta-button:active {
    transform: scale(.97)
}

.afec2-cta-pulse {
    position: relative;
    display: inline-flex;
    height: 12px;
    width: 12px;
    flex-shrink: 0
}

.afec2-cta-pulse-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background: var(--cta-foreground-40);
    opacity: .75;
    animation: afec2-ping 1s cubic-bezier(0,0,.2,1) infinite
}

.afec2-cta-pulse-dot {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 12px;
    width: 12px;
    background: var(--cta-foreground-70)
}

@keyframes afec2-ping {
    75%,to {
        transform: scale(2);
        opacity: 0
    }
}

.afec2-cta-avg {
    margin-top: 12px;
    font-size: 12px;
    color: var(--primary-foreground-50);
    font-style: italic
}

.afec2-footer {
    background: var(--background);
    padding: 32px 0;
    margin-top: auto;
    border-top: 1px solid var(--border)
}

.afec2-footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px
}

.afec2-footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted-foreground);
    font-size: 12px;
    line-height: 1.55
}

.afec2-footer-disclaimer {
    max-width: 512px
}

.afec2-footer-disclaimer strong {
    font-weight: 600;
    color: var(--foreground)
}

.afec2-footer-disclaimer p {
    margin: 0
}

.afec2-footer-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.afec2-footer-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s
}

.afec2-footer-link:hover {
    color: var(--accent);
    text-decoration: underline
}

.afec2-footer-copyright {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 16px;
    color: var(--muted-foreground);
    font-size: 12px;
    text-align: center
}

@media (min-width: 640px) {
    .afec2-nav {
        padding:12px 24px
    }

    .afec2-brand-logo {
        width: 40px;
        height: 40px
    }

    .afec2-brand-name {
        font-size: 16px
    }

    .afec2-nav-cta {
        padding: 8px 16px;
        font-size: 14px
    }

    .afec2-nav-cta-label {
        display: inline
    }

    .afec2-hero {
        padding: 64px 0
    }

    .afec2-hero-title {
        font-size: 40px
    }

    .afec2-benefits {
        padding: 64px 0
    }

    .afec2-benefits-sub {
        font-size: 20px;
        margin-bottom: 40px
    }

    .afec2-benefits-grid {
        gap: 16px
    }

    .afec2-benefit-card {
        padding: 20px;
        gap: 12px
    }

    .afec2-benefit-icon-wrap {
        width: 56px;
        height: 56px
    }

    .afec2-benefit-title {
        font-size: 14px
    }

    .afec2-benefit-desc {
        font-size: 12px
    }

    .afec2-cta-wrap {
        margin-top: 48px
    }

    .afec2-cta-button {
        font-size: 16px;
        padding: 16px 32px;
        gap: 12px;
        width: auto
    }

    .afec2-footer {
        padding: 40px 0
    }
}

@media (min-width: 768px) {
    .afec2-brand-name {
        font-size:18px
    }

    .afec2-hero-title {
        font-size: 48px
    }

    .afec2-cta-button {
        font-size: 18px
    }
}

@media (min-width: 1024px) {
    .afec2-hero-title {
        font-size:56px
    }

    .afec2-benefits-grid {
        grid-template-columns: repeat(4,1fr)
    }
}

*,*:before,*:after {
    box-sizing: border-box
}

html,body,#root {
    margin: 0;
    padding: 0;
    min-height: 100%
}

body {
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #263140;
    background: hsl(0 0% 100%)
}

a {
    color: inherit
}

button {
    font-family: inherit
}

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

.dialog-close {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

dialog {
    border: 1px solid white;
    border-radius: 8px;
}

.dialog-content {
    flex-direction:column;
    display:flex;
}
