* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    padding: 1.5rem 0;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 24px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-right: auto;
    margin-left: 2rem;
}

.nav-item {
    color: #4d4d4d;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item:hover {
    color: #1a1a1a;
}

.changelog {
    padding-left: 0;
}

.fluent-icon {
    color: #666666;
    margin-top: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login {
    color: #4d4d4d;
    font-size: 0.95rem;
    font-weight: 600;
}

.login:hover {
    color: #1a1a1a;
}

.signup {
    background-color: #2b509f;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.signup:hover {
    background-color: #203c78;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #4d4d4d;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f2f2f2;
        gap: 1.5rem;
    }

    .nav-wrapper.active {
        display: flex;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        gap: 1.25rem;
        width: 100%;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 1rem;
    }

    .login {
        text-align: center;
        padding: 0.5rem;
    }
}

.main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    width: 100%;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    text-align: center;
    padding: 0 1rem;
}

.description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    padding: 0 1rem;
}

.get-started {
    background-color: #ffffff;
    color: #333333;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
    flex-shrink: 0;
}

.get-started:hover {
    background-color: #f9f9f9;
}

.rocket {
    color: #4d4d4d;
}

.mockup-wrap {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 0 1rem;
    margin-bottom: 5rem;
    perspective: 1200px;
}

.mockup {
    max-width: 100%;
    height: auto;
    object-fit: contain;

    transform-origin: bottom center;
    transform-style: preserve-3d;
    opacity: 0;
    animation: rotateMockup 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes rotateMockup {
    0% {
        opacity: 0;
        transform: rotateX(25deg) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg) translateY(0);
    }
}

.features {
    width: 100%;
    padding: 6rem 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid #f2f2f2;
}

.features-inner {
    max-width: 1150px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4.5rem;
}

.features-subtitle {
    display: block;
    color: #2b509f;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.features-desc {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #2b509f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.feature-icon iconify-icon,
.get-started iconify-icon {
    stroke: currentColor !important;
    stroke-width: 0.6px !important;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2rem;
    }
}

@media (max-width: 650px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .title {
        font-size: 2.5rem;
    }
}

.footer {
    width: 100%;
    flex-shrink: 0;
    margin-top: 2rem;
    background: #ffffff;
    border-top: 1px solid #f2f2f2;
}

.footer-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
    gap: 2rem;
    width: 100%;
}

.footer-logo {
    height: 28px;
    display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #4d4d4d;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e6e6e6;
    width: 100%;
}

.copyright {
    color: #999999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-subtitle {
    color: #2b509f;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.pricing-desc {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    max-width: 1150px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.most-popular-wrapper {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-10%);
    color: #2b509f;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    pointer-events: none;
}
.most-popular-wrapper svg {
    margin-top: 5px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-billing {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
    text-align: left;
    flex: 1;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #e6f6ec;
    border-radius: 50%;
    color: #12b76a;
    font-size: 14px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    background-color: #2b509f;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.plan-btn:hover {
    background-color: #203c78;
}

/* Feature Table Section */
.pricing-features-table-section {
    max-width: 1150px;
    margin: 6rem auto 0;
    width: 100%;
}

.features-table-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
}

.features-table th, .features-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
}

.features-table th {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1a1a;
    width: 20%;
}

.features-table th:first-child {
    text-align: left;
    width: 40%;
}

.features-table td:first-child {
    text-align: left;
    color: #4d4d4d;
    font-weight: 500;
}

.features-table .check {
    color: #12b76a;
    font-size: 1.25rem;
}
.features-table .dash {
    color: #cccccc;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .features-table th {
        font-size: 0.95rem;
    }
    
    .features-table th, .features-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Privacy Section */
.privacy-section {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    width: 100%;
}

.privacy-date {
    color: #2b509f;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.privacy-desc {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-toggles {
    display: inline-flex;
    background: #f9f9f9;
    padding: 0.35rem;
    border-radius: 8px;
    gap: 0.5rem;
}

.privacy-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    color: #666666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.privacy-toggle.active {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-weight: 600;
}

.privacy-content {
    max-width: 800px;
    width: 100%;
    color: #4d4d4d;
    line-height: 1.7;
    font-size: 1rem;
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem 0;
    letter-spacing: -0.01em;
}

.privacy-content p {
    margin-bottom: 1.25rem;
}

.privacy-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* Changelog Section */
.changelog-section {
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.changelog-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    width: 100%;
}

.changelog-subtitle {
    color: #2b509f;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.changelog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.changelog-desc {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.changelog-list {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.changelog-entry {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f2f2f2;
}

.changelog-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.changelog-meta {
    flex-shrink: 0;
    width: 150px;
}

.changelog-date {
    display: block;
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.25rem;
}

.changelog-version {
    display: inline-block;
    background: #f2f2f2;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.changelog-content {
    flex: 1;
}

.changelog-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.changelog-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-content li {
    font-size: 1rem;
    color: #4d4d4d;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.changelog-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
}

.changelog-badge.added {
    background-color: #e6f6ec;
    color: #12b76a;
}

.changelog-badge.fixed {
    background-color: #fef3f2;
    color: #f04438;
}

.changelog-badge.changed {
    background-color: #eff6ff;
    color: #2b509f;
}

@media (max-width: 600px) {
    .changelog-entry {
        flex-direction: column;
        gap: 1rem;
    }
    .changelog-meta {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .changelog-date {
        margin-bottom: 0;
    }
}
