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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

header {
    text-align: center;
    margin-bottom: 48px;
}

.wordmark {
    width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Visually hide text while keeping it available for screen readers and SEO. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    text-align: center;
    margin-bottom: 64px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 480px;
    margin: 0 auto 12px;
}

.hero .hero-lead {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.hero p:nth-of-type(2) {
    margin-bottom: 32px;
}

/* Strike + Storm narrative section */
.duo {
    margin-bottom: 64px;
    text-align: center;
}

.duo-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.duo-card {
    padding: 24px 16px;
    border-radius: 16px;
    background: #111;
    text-align: center;
}

.duo-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.duo-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f5c518;
}

.duo-card p {
    font-size: 14px;
    color: #ccc;
}

.duo-tail {
    font-size: 14px;
    color: #999;
    max-width: 480px;
    margin: 0 auto;
    font-style: italic;
}

/* Tier preview line */
.tiers {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 16px;
}

.tiers-line {
    font-size: 15px;
    color: #ccc;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.tiers-line strong {
    color: #f5c518;
    font-weight: 600;
}


.badge img {
    height: 48px;
    transition: opacity 0.2s;
}

.badge img:hover {
    opacity: 0.8;
}

.coming-soon-wrap {
    display: inline-block;
    position: relative;
}

.coming-soon {
    font-size: 32px;
    font-weight: 900;
    color: #ff3b30 !important;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: #111;
}

.feature .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f5c518;
}

.feature p {
    font-size: 14px;
    color: #999;
}

footer {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 32px;
}

footer nav {
    margin-bottom: 16px;
}

footer nav a {
    color: #999;
    text-decoration: none;
    margin: 0 16px;
    font-size: 14px;
    transition: color 0.2s;
}

footer nav a:hover {
    color: #f5c518;
}

.copyright {
    font-size: 12px;
    color: #555;
}

@media (max-width: 480px) {
    .wordmark { width: 260px; }
    .hero p { font-size: 16px; }
    .hero .hero-lead { font-size: 22px; }
    .duo-title { font-size: 20px; }
    .duo-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    footer nav a { display: block; margin: 8px 0; }
}
