* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f4fa;
    font-family: 'Inter', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    color: #1e2a3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.aetheris-invest-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 100px;
}

.aetheris-invest-hero {
    background: linear-gradient(135deg, #0b2d24 0%, #1e6a44 100%);
    border-radius: 40px;
    padding: 48px 32px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 40px -14px rgba(0, 32, 16, 0.35);
}

.aetheris-invest-hero::after {
    content: "⚡";
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 160px;
    opacity: 0.08;
    pointer-events: none;
}

.aetheris-invest-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.aetheris-invest-hero-sub {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 600px;
    padding-left: 20px;
    margin-top: 8px;
    border-left: 0px solid #f9b84a;
}

.aetheris-invest-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 28px;
    margin-bottom: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e8edf4;
}

.aetheris-invest-card:hover {
    box-shadow: 0 22px 35px -14px rgba(0, 0, 0, 0.08);
}

.aetheris-invest-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e6a44;
    margin-bottom: 28px;
    padding-left: 20px;
}

.aetheris-invest-section-title i {
    font-size: 1.7rem;
    color: #f5a623;
}

.aetheris-invest-profile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-start;
}

.aetheris-invest-profile-image {
    flex-shrink: 0;
}

.aetheris-invest-profile-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 36px;
    box-shadow: 0 18px 34px -12px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    border: 4px solid #ffffff;
    transition: 0.2s;
}

.aetheris-invest-profile-desc {
    flex: 1;
}

.aetheris-invest-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3328;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.aetheris-invest-badge {
    display: inline-block;
    background: #edf6f0;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e6a44;
    margin-bottom: 20px;
}

.aetheris-invest-quote-block {
    background: linear-gradient(105deg, #fef7e8 0%, #f7efdb 100%);
    border-radius: 32px;
    padding: 28px 32px;
    margin: 28px 0;
    position: relative;
}

.aetheris-invest-quote-block p {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2d3e2b;
    font-style: normal;
}

.aetheris-invest-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.aetheris-invest-method-item {
    background: #fcfdff;
    border-radius: 28px;
    padding: 28px 20px;
    transition: all 0.2s ease;
    border: 1px solid #eef3f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.aetheris-invest-method-item:hover {
    transform: translateY(-5px);
    border-color: #f5c27b;
    box-shadow: 0 22px 30px -14px rgba(28, 110, 67, 0.15);
}

.aetheris-invest-method-icon {
    font-size: 2.3rem;
    color: #1e6a44;
    margin-bottom: 18px;
}

.aetheris-invest-method-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a3328;
}

.aetheris-invest-feature-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 20px;
}

.aetheris-invest-feature-card {
    flex: 1;
    min-width: 200px;
    background: #fefefe;
    border-radius: 32px;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #edf2f9;
    transition: 0.2s;
}

.aetheris-invest-feature-card:hover {
    background: #fcf8f0;
}

.aetheris-invest-feature-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #ffe4c4, #fdd6a5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #b46a25;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.05);
}

.aetheris-invest-cta {
    background: linear-gradient(115deg, #0e3a2a 0%, #2a6b47 100%);
    border-radius: 36px;
    padding: 56px 32px;
    text-align: center;
    color: #fff;
    margin: 48px 0 36px;
    position: relative;
    box-shadow: 0 22px 36px -12px rgba(0, 0, 0, 0.25);
}

.aetheris-invest-cta--alt {
    background: linear-gradient(115deg, #233d2e, #3c7352);
    margin-bottom: 20px;
}

.aetheris-invest-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.aetheris-invest-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 28px;
}

.aetheris-invest-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fcc85a;
    color: #1e3a2f;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.aetheris-invest-button i {
    font-size: 1.2rem;
}

.aetheris-invest-button:hover {
    background: #fbbf3a;
    transform: translateY(-3px);
    box-shadow: 0 18px 30px -8px rgba(0, 0, 0, 0.3);
}

.aetheris-invest-button-fixed {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    text-align: center;
    z-index: 100;
}

.aetheris-invest-testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.aetheris-invest-testimonial-item {
    flex: 1;
    min-width: 200px;
    background: #f6fbf7;
    padding: 20px;
    border-radius: 24px;
}

.aetheris-invest-community-note {
    margin-top: 20px;
    background: #fcf3e2;
    border-radius: 28px;
    padding: 14px 20px;
}

.aetheris-invest-method-note {
    margin-top: 20px;
    background: #f3f9f2;
    padding: 12px 20px;
    border-radius: 24px;
}

.aetheris-invest-footer {
    text-align: center;
    padding-top: 32px;
    margin-top: 20px;
    border-top: 1px solid #dce3ec;
    color: #4b5e77;
    font-size: 0.85rem;
}

.aetheris-invest-footer-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.aetheris-invest-footer-link {
    color: #2f6b47;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.aetheris-invest-footer-link:hover {
    color: #e07c3e;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .aetheris-invest-wrapper {
        padding: 16px 16px 100px;
    }
    .aetheris-invest-hero-title {
        font-size: 2rem;
    }
    .aetheris-invest-section-title {
        font-size: 1.5rem;
    }
    .aetheris-invest-cta h2 {
        font-size: 1.6rem;
    }
    .aetheris-invest-profile-image img {
        width: 100%;
    }
}

/* Legal pages */
.legal-page {
    background: #f0f4fa;
    min-height: 100vh;
}

.legal-header {
    background: linear-gradient(135deg, #0b2d24 0%, #1e6a44 100%);
    padding: 48px 20px 32px;
    color: #fff;
}

.legal-header .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 16px;
}

.legal-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
}

.legal-header a:hover {
    color: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin-top: -20px;
    position: relative;
}

.legal-content h2,
.legal-content h3 {
    font-size: 1.2rem;
    margin: 24px 0 8px;
    color: #1e6a44;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #4a627a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content .note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #4a5f72;
}

.legal-wrapper {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
