/* ValueIX Public Site Framework (brand-agnostic)
   - Update the :root tokens to match your colors + fonts
   - Rounded CTAs, top nav, 3-column sections, pricing cards */
:root {
    /* ---- Brand tokens (edit these) ---- */
    --brand: #2A0E4D;

    /* primary */
    --brand-2: #5B2B82;

    /* hover / secondary */
    --accent: #fd883f;

    /* optional accent */
    --bg: #0B0B12;
    --surface: #111225;
    --surface-2: #151733;
    --text: #FD883F;
    --muted: #B7B7C8;
    --border: rgba(255,255,255,0.10);
    --maxw: 1180px;
    --radius: 14px;
    --radius-pill: 999px;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
    --shadow-soft: 0 8px 18px rgba(0,0,0,0.25);
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --h1: clamp(2.1rem, 4vw, 3.2rem);
    --h2: clamp(1.5rem, 2.5vw, 2.1rem);
    --h3: 1.15rem;
    --body: 1.02rem;
    --small: 0.92rem;
    --pad: 24px;
    --gap: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background: radial-gradient(1200px 600px at 15% -5%, rgba(91,43,130,0.35), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(34,197,94,0.10), transparent 60%),
              var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.92;
}

.container {
    width: min(var(--maxw), calc(100% - 2*var(--pad)));
    margin: 0 auto;
}

.muted {
    color: var(--muted);
}

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: var(--small);
    color: var(--muted);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
}

/* ---- Header / Nav ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(11,11,18,0.65);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: var(--shadow-soft);
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.navlinks a {
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--muted);
}

.navlinks a:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta .login {
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 10px;
}

.nav-cta .login:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: var(--radius-pill);
    font-weight: 650;
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .08s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    box-shadow: var(--shadow);
}

.btn-outline {
    background: rgba(255,255,255,0.02);
    border-color: var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.18);
}

/* Mobile nav */
.menu-btn {
    display: none;
}

@media (max-width: 900px){
    .navlinks {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }
}

/* ---- Sections ---- */
.section {
    padding: 70px 0;
}

.section-tight {
    padding: 48px 0;
}

.hero {
    padding: 72px 0 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero h1 {
    font-size: var(--h1);
    line-height: 1.15;
    margin: 14px 0 10px;
}

.hero p {
    font-size: 1.08rem;
    color: var(--muted);
    margin: 0 0 18px;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.hero-card .frame {
    border-radius: 12px;
    background: radial-gradient(650px 320px at 20% 10%, rgba(91,43,130,0.35), transparent 60%),
              radial-gradient(650px 320px at 90% 0%, rgba(34,197,94,0.12), transparent 60%),
              rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.18);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-family: var(--mono);
    font-size: 0.95rem;
}

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

    .hero {
        padding-top: 46px;
    }
}

/* 3-column blocks */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

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

.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin: 2px 0 8px;
    font-size: var(--h3);
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: var(--body);
}

.card .tag {
    display: inline-flex;
    font-size: 0.85rem;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

/* Split feature sections */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.split .visual {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-family: var(--mono);
}

.split ul {
    margin: 10px 0 0 18px;
    color: var(--muted);
}

.split h2 {
    font-size: var(--h2);
    margin: 0 0 8px;
}

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

    .split .visual {
        height: 240px;
    }
}

/* Pricing cards */
.pricing {
    margin-top: 18px;
}

.price {
    font-size: 2.0rem;
    font-weight: 800;
    margin: 6px 0 0;
}

.price small {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
}

.list {
    margin: 12px 0 16px;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.list li:last-child {
    border-bottom: none;
}

.recommended {
    border-color: rgba(34,197,94,0.35);
    box-shadow: 0 12px 36px rgba(34,197,94,0.10);
}

.recommended .tag {
    border-color: rgba(34,197,94,0.35);
    color: rgba(255,255,255,0.9);
    background: rgba(34,197,94,0.10);
}

/* Trust strip */
.logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.9;
}

.logo-pill {
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 12px;
    color: rgba(255,255,255,0.70);
    background: rgba(255,255,255,0.02);
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, rgba(91,43,130,0.35), rgba(34,197,94,0.10));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 34px 0;
}

.cta-band h2 {
    margin: 0;
    font-size: var(--h2);
}

@media (max-width: 900px){
    .cta-band .inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer */
.footer {
    padding: 44px 0;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 16px;
}

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

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

.footer h4 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 0.98rem;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    padding: 6px 0;
}

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

/* Utilities */
.hr {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 24px 0;
}
