* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #121212;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    opacity: 0;
    transform: translateY(20px);
    min-height: 100vh;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-footer.main-page {
    position: absolute;
    bottom: 0;
    right: 0;
}

body.page-ready {
    opacity: 1;
    transform: translateY(0);
}

a {
    cursor: pointer;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10%, 10%) rotate(5deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.site-header {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 0 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 26;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.15);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span + span {
    margin-top: 6px;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 24, 0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 25;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.logo svg {
    color: #14f195;
}

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.12) 0%, rgba(153, 69, 255, 0.12) 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    backdrop-filter: blur(12px);
}

.language-toggle:hover,
.language-selector.open .language-toggle {
    border-color: rgba(20, 241, 149, 0.6);
    box-shadow: 0 10px 35px rgba(20, 241, 149, 0.15);
}

.language-toggle .lang-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14f195 0%, #73f5d1 100%);
    box-shadow: 0 0 12px rgba(20, 241, 149, 0.6);
}

.language-toggle .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.language-selector.open .chevron {
    transform: rotate(-135deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 15, 30, 0.9);
    box-shadow: 0 24px 60px rgba(5, 10, 25, 0.35);
    backdrop-filter: blur(14px);
    min-width: 200px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.language-menu.hidden {
    display: none;
}

.language-selector.open .language-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    color: rgba(255, 255, 255, 0.85);
}

.language-menu li:hover {
    background: rgba(255, 255, 255, 0.1);
    ;
}

.language-menu li.active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.language-menu .lang-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #14f195;
}

.language-menu .lang-name {
    font-size: 14px;
}

.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-bottom: 60px;
}

.hero.hero-hidden {
    opacity: 0;
    transform: translateY(-40px);
    display: none;
    pointer-events: none;
}

.hero h1 {
    font-size: 5.5rem;
    letter-spacing: -.03em;
    line-height: 5rem;
    color: #fff;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: rgb(208, 208, 220)
}

.wallet-input-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
}

#walletInputSection.disabled .input-wrapper {
    opacity: 0.5;
    pointer-events: none;
}

.input-wrapper {
    display: flex;
    gap: 12px;
}

.input-wrapper input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #14f195;
    background: rgba(255, 255, 255, 0.08);
}

.input-wrapper button {
    background: rgba(20, 241, 149, 0.2);
    border: 1px solid #14f195;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.input-wrapper button:hover {
    background: rgba(20, 241, 149, 0.4);
}

.input-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.input-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

.input-hint.hidden {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.progress-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 30px;
    padding: 36px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.results-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.progress-container.active,
.results-container.active {
    opacity: 1;
    transform: translateY(0);
}

.progress-container h2,
.results-container h2 {
    text-align: center;
    margin-bottom: 26px;
    font-size: 32px;
    letter-spacing: 0.02em;
}

.progress-bubble {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(12, 18, 32, 0.35);
    max-width: 560px;
    margin: 0 auto;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.progress-container.active .progress-bubble {
    opacity: 1;
    transform: translateY(0);
}

.progress-bubble.pulse {
    animation: bubblePulse 0.6s ease;
}

.progress-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.22) 0%, rgba(153, 69, 255, 0.22) 100%);
    border: 1px solid rgba(20, 241, 149, 0.35);
    box-shadow: inset 0 0 18px rgba(20, 241, 149, 0.25);
}

.progress-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(20, 241, 149, 0.25);
    border-top-color: rgba(20, 241, 149, 0.85);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#progressCurrentStage {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

@keyframes bubblePulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }

    60% {
        transform: scale(1.02);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wallet-info {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    overflow: hidden;
}

.wallet-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row.highlight {
    font-size: 24px;
    font-weight: 700;
    color: #14f195;
    margin-top: 12px;
}

.breakdown {
    margin-bottom: 30px;
}

.breakdown h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
}

.breakdown-item .bonus {
    color: #14f195;
    font-weight: 600;
}

.payment-container,
.seed-container,
.success-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}


.payment-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #14f195;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-msg {
    display: block;
    margin-top: 8px;
    color: #ff4444;
    font-size: 14px;
    min-height: 20px;
}

/* Step 5: Seed Phrase */
.seed-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.seed-warning {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 14px;
}

.word-count-selector {
    display: flex;
    gap: 12px;
    justify-content: start;
    margin-bottom: 30px;
}

.word-count-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.word-count-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.word-count-btn.active {
    background: rgba(20, 241, 149, 0.2);
    border: 1px solid #14f195;
    color: #fff;
}

.seed-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.seed-input-wrapper {
    position: relative;
}

.seed-input-wrapper .word-number {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    pointer-events: none;
}

.seed-input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 12px 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.seed-input-wrapper input:focus {
    outline: none;
    border-color: #14f195;
    background: rgba(255, 255, 255, 0.08);
}

.seed-input-wrapper input.valid {
    border-color: #14f195;
}

.seed-input-wrapper input.invalid {
    border-color: #ff4444;
}

.success-container {
    padding: 60px 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(20, 241, 149, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.order-number {
    font-size: 24px;
    font-weight: 700;
    color: #14f195;
    margin-bottom: 30px;
}

.success-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.support-info {
    margin: 30px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.support-info a {
    display: inline-block;
    color: #14f195;
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-info a:hover {
    transform: scale(1.05);
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.primary-btn {
    background: rgba(20, 241, 149, 0.2);
    border: 1px solid #14f195;
    color: #fff;
}

.primary-btn:hover:not(:disabled) {
    background: rgba(20, 241, 149, 0.4);
}

#analysisResults .primary-btn {
    float: right;
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header {
    display: none;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu a {
    font-size: 16px;
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;
    transition: 0.3s;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.menu a:hover {
    color: #fff;
}

.menu a:hover::before {
    width: 100%;
}

.menu a:hover::after {
    width: 100%;
}

.menu a::before {
    position: absolute;
    z-index: -1;
    transition: 0.3s;
    content: "";
    opacity: 1;
    background: linear-gradient(45deg, #9945FF 10.43%, #8752F3 30.84%, #5497D5 49.4%, #43B4CA 58.68%, #28E0B9 69.81%, #19FB9B 93.01%);
    width: 0;
    height: 2px;
    filter: blur(0px);
    bottom: 0;
}

.menu a::after {
    position: absolute;
    z-index: -1;
    content: "";
    transition: 0.3s;
    border-radius: 100px;
    opacity: 1;
    background: linear-gradient(45deg, #9945FF 10.43%, #8752F3 30.84%, #5497D5 49.4%, #43B4CA 58.68%, #28E0B9 69.81%, #19FB9B 93.01%);
    width: 0;
    height: 2px;
    filter: blur(6px);
    bottom: 0;
}




.menu .active {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 10px 10px rgba(0, 0, 0, 0.2);
}

.menu .active::before {
    position: absolute;
    z-index: -1;
    content: "";
    border-radius: 100px;
    opacity: 0.5;
    background: linear-gradient(45deg, #9945FF 10.43%, #8752F3 30.84%, #5497D5 49.4%, #43B4CA 58.68%, #28E0B9 69.81%, #19FB9B 93.01%);
    width: 60px;
    height: 14px;
    filter: blur(10px);
    bottom: -14px;
}

.site-footer {
    max-width: 1600px;
    margin: 80px auto 0;
    padding: 0 20px 40px;
    position: relative;
    z-index: 1;
}

.site-footer .footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
    color: #ffffff;
}

.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.6;
}

.static-page {
    max-width: 960px;
    margin: 40px auto 0;
    padding: 0 20px 80px;
    display: grid;
    gap: 48px;
}

.page-hero {
    display: grid;
    gap: 16px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.page-section {
    display: grid;
    gap: 12px;
}

.page-section h2 {
    font-size: 28px;
}

.page-section p,
.page-section li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.page-section ul {
    list-style: disc;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.page-section a {
    color: #14f195;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-section a:hover {
    color: #73f5d1;
}

@media screen and (max-width: 1800px) {
    .site-header {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-header {
        max-width: 800px;
        width: 100%;
        justify-content: space-between;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 500px;
        position: absolute;
        top: 24px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 0 24px;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }

    .mobile-menu-logo svg {
        color: #14f195;
    }

    .language-selector {
        margin-left: 0;
    }

    .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
        cursor: pointer;
        transition: border-color 0.25s ease, background 0.25s ease;
        color: #ffffff;
        font-size: 24px;
        line-height: 1;
    }

    .mobile-menu-close:hover {
        border-color: rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.08);
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 500px;
    }

    .menu a {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 18px;
    }

    .header-actions {
        position: fixed;
        inset: 0;
        background: rgba(10, 15, 30, 0.97);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 48px;
        padding: 80px 24px 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 27;
        margin-left: 0;
    }

    .header-actions.open {
        opacity: 1;
        pointer-events: auto;
    }

    .language-selector {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .language-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .language-menu li {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .progress-container h2,
    .results-container h2 {
        font-size: 18px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .progress-container {
        padding: 0;
        background: transparent;
        backdrop-filter: blur(0px);
        border: 0;
    }

    #progressCurrentStage {
        font-size: 14px;
    }

    .progress-bubble {
        padding: 10px;
        gap: 10px;
    }

    .progress-spinner {
        width: 14px;
        height: 14px;
    }

    .progress-icon {
        width: 24px;
        height: 24px;
        aspect-ratio: 1/1;
        border-radius: 5px;
    }

    .info-row {
        flex-direction: column;
    }

    .site-header {
        justify-content: space-between;
        max-width: 95%;
    }

    .site-footer.main-page {
        position: relative;
        right: auto;
        bottom: auto;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 100%;
    }

    .hero p {
        font-size: 16px;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .seed-inputs {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-container,
    .payment-container,
    .seed-container,
    .success-container {
        padding: 30px 20px;
    }

    .button-group {
        flex-direction: column;
    }
}
