:root {
    /* Sampled directly from RoutrixLogo.png, not eyeballed:
       blue = rgb(0,104,239), text = rgb(25,25,25). */
    --color-bg: #f4f7fc;
    --color-surface: #ffffff;
    --color-border: #e1e7f0;
    --color-text: #191919;
    --color-text-muted: #667085;
    --color-navy: #0b1220;
    --color-blue: #0068ef;
    --color-blue-dark: #0052bf;
    --color-blue-tint: #e8f0ff;
    --shadow: 0 1px 2px rgba(16, 26, 48, 0.06), 0 8px 24px rgba(0, 104, 239, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topbar {
    background: var(--color-navy);
    color: #ffffff;
}

.topbar-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 28px;
    width: auto;
    display: block;
}

.topnav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.topnav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

main {
    flex: 1;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 56px;
}

.hero {
    text-align: center;
    padding: 100px 24px 72px;
    position: relative;
}

/* Soft radial glow in the brand blue behind the headline — the one bit of
   "designed" flourish rather than flat text-on-white. */
.hero::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(0, 104, 239, 0.12) 0%, rgba(0, 104, 239, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.wip-badge {
    display: inline-block;
    background: var(--color-blue-tint);
    color: var(--color-blue-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 20px;
    letter-spacing: -0.6px;
}

.hero-sub {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.55;
}

.btn-primary {
    display: inline-block;
    background: var(--color-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 104, 239, 0.3);
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
    background: var(--color-blue-dark);
    transform: translateY(-1px);
}

.section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.section h2 {
    margin: 0 0 14px;
    font-size: 21px;
    font-weight: 700;
}

.section-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.section-header-row h2 {
    margin: 0;
}

.section-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--color-blue-tint);
    color: var(--color-blue-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tool-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: 999px;
}

.section p {
    line-height: 1.65;
    color: var(--color-text);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-bg);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-blue-tint);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 560px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.app-footer {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 24px 32px;
    color: var(--color-text-muted);
    font-size: 12px;
    text-align: center;
}

.app-footer a {
    color: var(--color-text-muted);
}
