:root {
    --bg: #101512;
    --surface: #171d19;
    --text: #e8ece8;
    --primary: #b86a2f;
    --primary-hover: #c8783b;
    --secondary: #4f6b5b;
    --border: #29332d;
}

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

.feature-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
    text-align: center;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: rgba(224, 224, 224, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
}

header {
    background: var(--bg);
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logoimage{
    max-width: 30px;
    max-height: 30px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    opacity: 0.7;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), rgba(247, 127, 0, 0.3));
    color: var(--text);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background: rgba(247, 127, 0, 0.8);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    background: rgba(224, 224, 224, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.benefits {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border: 1px solid rgba(224, 224, 224, 0.15);
    border-radius: 0.5rem;
    text-align: center;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.video-section {
    padding: 4rem 2rem;
    background: rgba(224, 224, 224, 0.03);
    text-align: center;
}

.video-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.video-section p {
    margin-bottom: 2rem;
    color: rgba(224, 224, 224, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.signup-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg);
}

.signup-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.signup-section p {
    margin-bottom: 2rem;
    color: rgba(224, 224, 224, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper iframe {
    width: 100%;
    height: 800px;
    border: 1px solid rgba(224, 224, 224, 0.15);
    border-radius: 0.5rem;
}

.temp-notice {
    background: rgba(247, 127, 0, 0.12);
    color: var(--primary);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(247, 127, 0, 0.25);
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    color: rgba(224, 224, 224, 0.4);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    padding: 2rem;
    border: 1px solid rgba(224, 224, 224, 0.15);
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.2s;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(247, 127, 0, 0.15);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.card p {
    color: rgba(224, 224, 224, 0.7);
    margin-bottom: 1.5rem;
}

.card.highlight {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 0 1px var(--primary), 0 4px 12px rgba(247, 127, 0, 0.15);
    position: relative;
}

.card.highlight::before {
    content: "Indie Dev Plan";
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card .btn {
    background: var(--primary);
    color: var(--bg);
}

.card .btn:hover {
    background: rgba(247, 127, 0, 0.8);
}

.notice {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.notice p {
    color: rgba(224, 224, 224, 0.4);
    font-size: 0.9rem;
}

.comparison {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.comparison > p {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(224, 224, 224, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table thead th {
    background: var(--surface);
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

.comparison-table thead th:first-child {
    background: transparent;
    border-top: none;
    border-left: none;
}

.comparison-table thead th.highlight {
    background: var(--primary);
    color: var(--bg);
}

.comparison-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
    min-width: 140px;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td.highlight {
    background: rgba(184, 106, 47, 0.08);
    border-color: var(--primary);
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.legal-date {
    color: rgba(224, 224, 224, 0.4);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(224, 224, 224, 0.85);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: rgba(224, 224, 224, 0.85);
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-hover);
}

.faq {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-item {
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
    background: var(--surface);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(247, 127, 0, 0.15);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: rgba(224, 224, 224, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(224, 224, 224, 0.5);
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}
