/* ---------- Tokens ---------- */
:root {
    --bg: #0b0d17;
    --bg-2: #11141f;
    --surface: #ffffff;
    --surface-soft: #f6f5f1;
    --ink: #0e1018;
    --ink-soft: #2a2d3a;
    --muted: #5b5f70;
    --muted-light: #c9ccd6;
    --line: #e8e6df;

    --accent: #ff4d3d;          /* warm cape red */
    --accent-deep: #d6321f;
    --electric: #38e0ff;         /* hero neon */
    --electric-deep: #0ea5e9;
    --gold: #ffd166;

    --radius: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(10, 12, 24, 0.08);
    --shadow-md: 0 14px 40px rgba(10, 12, 24, 0.12);
    --shadow-lg: 0 30px 80px rgba(10, 12, 24, 0.35);

    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 13, 23, 0.72);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 1.05rem;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 6px 18px rgba(255, 77, 61, 0.45);
}

.brand-accent { color: var(--electric); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-nav a:hover { color: #fff; }

.nav-cta {
    background: #fff;
    color: var(--ink) !important;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255,255,255,0.18);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(56, 224, 255, 0.18), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(255, 77, 61, 0.18), transparent 60%),
        linear-gradient(180deg, #0b0d17 0%, #11141f 100%);
    color: #fff;
    overflow: hidden;
    padding: 72px 0 96px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(56, 224, 255, 0.25), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--electric);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(56, 224, 255, 0.1);
    border: 1px solid rgba(56, 224, 255, 0.25);
    margin-bottom: 22px;
}

.eyebrow.dark {
    color: var(--accent-deep);
    background: rgba(255, 77, 61, 0.08);
    border-color: rgba(255, 77, 61, 0.25);
}

.eyebrow.light {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
}

.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 22px;
}

.gradient-text {
    background: linear-gradient(120deg, var(--electric) 0%, #a78bfa 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tail {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    margin-top: 14px;
    letter-spacing: 0;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 0 32px;
}

.hero-sub strong { color: #fff; font-weight: 600; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 77, 61, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 77, 61, 0.55);
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.15rem;
}

.hero-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-trust li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.hero-trust span {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-art {
    position: relative;
}

.hero-art img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Pitch ---------- */
.pitch {
    background: var(--surface-soft);
    padding: 96px 0;
    position: relative;
}

.pitch-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.pitch-line {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.25;
    margin: 0 0 16px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.pitch-line.one { color: var(--muted); font-weight: 500; }
.pitch-line.two { color: var(--ink); font-weight: 600; }
.pitch-line.three { color: var(--ink); font-weight: 700; margin-top: 32px; }

.strike {
    position: relative;
    color: var(--muted);
}

.strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 55%;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    transform: rotate(-2deg);
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 209, 102, 0.6) 60%);
    padding: 0 4px;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-portrait {
    position: relative;
}

.portrait-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #fff5e8 0%, #ffe0d6 100%);
    box-shadow: var(--shadow-md);
    aspect-ratio: 3 / 4;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    z-index: -1;
    border-radius: var(--radius-lg);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-badge {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: var(--ink);
    color: #fff;
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
}

.badge-top {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--electric);
    font-weight: 700;
}

.badge-name {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2px;
}

.about h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--ink);
}

.about p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    margin: 0 0 16px;
    max-width: 540px;
}

.about p strong { color: var(--ink); }

.signature {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 1.4rem !important;
    color: var(--accent) !important;
    margin-top: 24px !important;
    font-weight: 500;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0b0d17 0%, #1a1430 50%, #0b0d17 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 400px at 50% 0%, rgba(255, 77, 61, 0.25), transparent 60%),
        radial-gradient(600px 400px at 50% 100%, rgba(56, 224, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    max-width: 720px;
}

.cta h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 20px 0 20px;
    font-weight: 700;
}

.cta-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.78);
    margin: 0 auto 40px;
    max-width: 560px;
}

.cta-fineprint {
    margin-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-name {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-tag {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

.footer-copy {
    margin: 0;
    font-size: 0.88rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero { padding: 56px 0 72px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-art { order: -1; }
    .about-inner { grid-template-columns: 1fr; gap: 64px; }
    .about-portrait { max-width: 380px; margin: 0 auto; width: 100%; }
    .pitch { padding: 72px 0; }
    .about { padding: 80px 0; }
    .cta { padding: 88px 0; }
}

@media (max-width: 560px) {
    .site-nav { gap: 16px; }
    .site-nav a:not(.nav-cta) { display: none; }
    .hero-trust { gap: 24px; }
    .hero-trust li { font-size: 0.82rem; }
    .hero-trust span { font-size: 1.4rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .btn-xl { padding: 16px 28px; font-size: 1rem; }
}

/* ---------- Subtle entrance ---------- */
@media (prefers-reduced-motion: no-preference) {
    .hero-copy > * {
        animation: rise 0.8s ease both;
    }
    .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
    .hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
    .hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
    .hero-copy > *:nth-child(5) { animation-delay: 0.45s; }
    .hero-art img { animation: rise 1s ease 0.2s both; }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
