:root {
    --ink: #0a0a0a;
    --paper: #f6f4f0;
    --accent: #1a4fff;
    --accent-light: #e8edff;
    --muted: #6b6560;
    --border: #d8d4cf;
    --card-bg: #fff;
    --section-alt: #edeae5;
    --font-body: 'Noto Sans JP', 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --max-w: 1080px;
    --space-xs: .5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 6rem;
    --space-2xl: 9rem
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

::selection {
    background: var(--accent);
    color: #fff
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-m)
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(246, 244, 240, .85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s
}

nav.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06)
}

nav .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-m);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px
}

nav .logo {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -.02em;
    color: var(--ink);
    text-decoration: none
}

nav .logo span {
    color: var(--accent)
}

nav .nav-links {
    display: flex;
    gap: var(--space-m);
    align-items: center
}

nav .nav-links a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

nav .nav-links a:hover {
    color: var(--ink)
}

nav .nav-cta {
    background: var(--ink);
    color: var(--paper) !important;
    padding: .5rem 1.2rem;
    border-radius: 6px;
    font-size: .8rem !important;
    font-weight: 600 !important;
    transition: transform .2s, box-shadow .2s
}

nav .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    color: var(--paper) !important
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
    transition: .3s
}

@media(max-width:768px) {
    .mobile-menu-btn {
        display: block
    }

    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--border);
        padding: var(--space-m);
        gap: var(--space-s)
    }

    nav .nav-links.open {
        display: flex
    }

    nav .nav-cta {
        text-align: center;
        display: block
    }
}

.hero {
    padding: calc(60px + var(--space-xl)) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
    min-height: 85vh
}

.hero>.container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    min-height: calc(85vh - var(--space-xl) - var(--space-xl) - 60px)
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 180px;
    background: linear-gradient(to right, var(--paper) 0%, transparent 100%);
    z-index: 2
}

.hero-anim {
    position: absolute;
    top: 0;
    left: 60px;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    overflow: hidden
}

.code-stream {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 2.2;
    white-space: nowrap;
    animation: scroll-code linear infinite
}

.code-stream:nth-child(1) { animation-duration: 28s; opacity: .08; color: #1a4fff }
.code-stream:nth-child(2) { animation-duration: 22s; animation-delay: -5s; opacity: .1; color: #0a0a0a }
.code-stream:nth-child(3) { animation-duration: 32s; animation-delay: -10s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(4) { animation-duration: 18s; animation-delay: -3s; opacity: .1; color: #0a0a0a }
.code-stream:nth-child(5) { animation-duration: 25s; animation-delay: -8s; opacity: .07; color: #1a4fff }
.code-stream:nth-child(6) { animation-duration: 20s; animation-delay: -12s; opacity: .09; color: #0a0a0a }
.code-stream:nth-child(7) { animation-duration: 30s; animation-delay: -2s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(8) { animation-duration: 24s; animation-delay: -7s; opacity: .08; color: #1a4fff }
.code-stream:nth-child(9) { animation-duration: 26s; animation-delay: -4s; opacity: .07; color: #1a4fff }
.code-stream:nth-child(10) { animation-duration: 21s; animation-delay: -9s; opacity: .09; color: #0a0a0a }
.code-stream:nth-child(11) { animation-duration: 29s; animation-delay: -1s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(12) { animation-duration: 19s; animation-delay: -6s; opacity: .1; color: #0a0a0a }
.code-stream:nth-child(13) { animation-duration: 27s; animation-delay: -11s; opacity: .07; color: #1a4fff }
.code-stream:nth-child(14) { animation-duration: 23s; animation-delay: -3s; opacity: .08; color: #0a0a0a }
.code-stream:nth-child(15) { animation-duration: 31s; animation-delay: -8s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(16) { animation-duration: 20s; animation-delay: -13s; opacity: .09; color: #0a0a0a }
.code-stream:nth-child(17) { animation-duration: 25s; animation-delay: -2s; opacity: .07; color: #1a4fff }
.code-stream:nth-child(18) { animation-duration: 22s; animation-delay: -7s; opacity: .1; color: #0a0a0a }
.code-stream:nth-child(19) { animation-duration: 28s; animation-delay: -10s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(20) { animation-duration: 18s; animation-delay: -4s; opacity: .09; color: #0a0a0a }
.code-stream:nth-child(21) { animation-duration: 30s; animation-delay: -6s; opacity: .07; color: #1a4fff }
.code-stream:nth-child(22) { animation-duration: 24s; animation-delay: -9s; opacity: .08; color: #0a0a0a }
.code-stream:nth-child(23) { animation-duration: 26s; animation-delay: -1s; opacity: .06; color: #1a4fff }
.code-stream:nth-child(24) { animation-duration: 21s; animation-delay: -5s; opacity: .09; color: #0a0a0a }

@keyframes scroll-code {
    0% { transform: translateX(0) }
    100% { transform: translateX(-50%) }
}

.hero-float {
    position: absolute;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    border: 1px solid var(--border);
    animation: float-card 6s ease-in-out infinite;
    z-index: 3;
    overflow: hidden
}

.hero-float-1 { top: 12%; right: 8%; width: 220px; height: 150px }
.hero-float-2 { top: 38%; right: 22%; width: 100px; height: 180px; animation-delay: -2s; animation-duration: 7s; border-radius: 18px; border: 3px solid var(--border); background: var(--card-bg) }
.hero-float-3 { top: 65%; right: 5%; width: 200px; height: 130px; animation-delay: -4s; animation-duration: 5.5s }

.hero-float .fl-bar { height: 8px; background: var(--accent-light); margin: 12px; border-radius: 4px }
.hero-float .fl-bar.short { width: 60% }
.hero-float .fl-bar.accent { background: var(--accent); opacity: .3; width: 40% }
.hero-float .fl-row { display: flex; gap: 6px; margin: 0 12px }
.hero-float .fl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border) }
.hero-float .fl-dot.active { background: var(--accent); opacity: .5 }
.hero-float .fl-block { height: 28px; background: var(--section-alt); margin: 8px 12px; border-radius: 6px }
.hero-float .fl-header { height: 24px; background: rgba(10, 10, 10, .05); display: flex; align-items: center; gap: 4px; padding: 0 8px }
.hero-float .fl-header .fl-dot { width: 6px; height: 6px }
.hero-float .fl-btn { height: 20px; width: 60px; background: var(--accent); opacity: .25; margin: 8px 12px; border-radius: 4px }

.phone-notch { width: 40px; height: 6px; background: var(--border); border-radius: 0 0 8px 8px; margin: 0 auto }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 2px 10px; font-family: var(--font-mono); font-size: 7px; color: var(--muted) }
.phone-home { width: 28px; height: 4px; background: var(--border); opacity: .5; border-radius: 2px; margin: auto auto 6px; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) }

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg) }
    50% { transform: translateY(-12px) rotate(.5deg) }
}

.hero-float-4 { top: 20%; right: 38%; width: 140px; height: 90px; animation-delay: -1s; animation-duration: 6.5s }
.hero-float-5 { top: 78%; right: 25%; width: 110px; height: 70px; animation-delay: -3s; animation-duration: 5s }

@media(max-width:900px) {
    .hero-bg { opacity: .35; width: 100%; right: -20% }
    .hero { min-height: auto; position: relative }
    .hero-float-1 { right: 2%; top: 8%; width: 154px; height: 105px }
    .hero-float-2 { right: 30%; top: 30%; width: 70px; height: 126px }
    .hero-float-3 { right: 0%; top: 55%; width: 140px; height: 91px }
    .hero-float-4 { right: 35%; top: 15%; width: 100px; height: 64px }
    .hero-float-5 { right: 20%; top: 72%; width: 80px; height: 50px }
}

@media(max-width:600px) {
    .hero-bg { width: 100%; right: 0; left: 0; opacity: 1; top: 0; bottom: 0 }
    .hero-bg::after { width: 0 }
    .hero-anim { left: 0; top: 0; right: 0; bottom: 0 }
    .hero-float-2 { top: 80%; right: 10% }
    .hero-float-3 { display: none }
    .hero-float-5 { display: none }
    .container { padding: 0 var(--space-s) }
}

.hero-content { max-width: 520px }

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: .08em;
    margin-bottom: var(--space-s);
    font-weight: 500
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: var(--space-m)
}

.hero h1 em { font-style: normal; color: var(--accent) }

.hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: var(--space-l)
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s
}

.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 79, 255, .25) }
.hero-cta svg { width: 16px; height: 16px; transition: transform .2s }
.hero-cta:hover svg { transform: translateX(3px) }

section { padding: var(--space-2xl) 0 }

.section-label {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--accent);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    font-weight: 500
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.3;
    margin-bottom: var(--space-m)
}

.section-lead { font-size: 1rem; color: var(--muted); max-width: 640px; line-height: 1.9 }

.problems { background: var(--ink); color: var(--paper) }
.problems .section-label { color: rgba(255, 255, 255, .4) }
.problems .section-title { color: var(--paper) }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--space-m);
    margin-top: var(--space-l)
}

.problem-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); border-radius: 12px; padding: var(--space-m) }
.problem-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.5; margin-bottom: var(--space-s) }
.problem-card p { font-size: .88rem; color: rgba(255, 255, 255, .55); line-height: 1.8 }

.about-core { background: var(--accent); color: #fff; border-radius: 16px; padding: var(--space-l); margin-bottom: var(--space-l); position: relative; overflow: hidden }
.about-core::after { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255, 255, 255, .08); border-radius: 50% }
.about-core h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.3; margin-bottom: var(--space-m); position: relative; z-index: 1 }
.about-core p { font-size: .95rem; line-height: 2; opacity: .9; max-width: 640px; position: relative; z-index: 1 }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: var(--space-m) }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: var(--space-m) }
.feature-icon { width: 52px; height: 52px; margin-bottom: var(--space-s) }
.feature-icon svg { width: 52px; height: 52px }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-xs) }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.8 }

.plans { background: var(--section-alt) }
.plans-stack { display: flex; flex-direction: column; gap: var(--space-m); margin-top: var(--space-l) }

.plan-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: var(--space-l); transition: box-shadow .2s; position: relative; overflow: hidden }
.plan-card:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, .06) }

.plan-deco-wrap { position: absolute; top: 0; right: 0; width: 300px; height: 200px; pointer-events: none; z-index: 0; overflow: visible }
.plan-deco-wrap>* { position: absolute }
.plan-deco-wrap .glow-1, .plan-deco-wrap .glow-2 { border-radius: 50% }

.plan-card:nth-child(1) .glow-1 { width: 320px; height: 320px; top: -120px; right: -80px; background: conic-gradient(from 120deg, rgba(255, 80, 40, .12), rgba(255, 160, 40, .08), transparent 60%) }
.plan-card:nth-child(1) .glow-2 { width: 180px; height: 180px; top: 60px; right: 140px; background: radial-gradient(circle, rgba(255, 120, 50, .06) 0%, transparent 70%) }
.plan-card:nth-child(1) .deco-1 { top: -12px; right: 32px; width: 72px; height: 72px; border: 2.5px solid rgba(255, 100, 50, .15); border-radius: 50%; transform: rotate(-15deg) }
.plan-card:nth-child(1) .deco-2 { top: -20px; right: 8px; width: 110px; height: 110px; border: 1.5px dashed rgba(255, 140, 60, .08); border-radius: 50% }
.plan-card:nth-child(1) .deco-3 { top: 24px; right: 120px; width: 40px; height: 3px; background: rgba(255, 100, 50, .12); border-radius: 2px; transform: rotate(-30deg) }
.plan-card:nth-child(1) .deco-4 { top: 36px; right: 108px; width: 28px; height: 3px; background: rgba(255, 140, 60, .1); border-radius: 2px; transform: rotate(-30deg) }
.plan-card:nth-child(1) .deco-5 { top: 48px; right: 96px; width: 16px; height: 3px; background: rgba(255, 160, 70, .08); border-radius: 2px; transform: rotate(-30deg) }

.plan-card:nth-child(2) .glow-1 { width: 360px; height: 360px; top: -140px; right: -100px; background: conic-gradient(from 80deg, rgba(0, 184, 148, .1), rgba(85, 239, 196, .06), transparent 55%) }
.plan-card:nth-child(2) .glow-2 { width: 200px; height: 200px; top: 40px; right: 160px; background: radial-gradient(circle, rgba(0, 184, 148, .05) 0%, transparent 70%) }
.plan-card:nth-child(2) .deco-1 { top: -8px; right: 24px; width: 88px; height: 44px; border: 2px solid rgba(0, 184, 148, .12); border-radius: 40px; transform: rotate(8deg) }
.plan-card:nth-child(2) .deco-2 { top: -16px; right: 10px; width: 88px; height: 44px; border: 2px solid rgba(0, 184, 148, .08); border-radius: 40px; transform: rotate(8deg) }
.plan-card:nth-child(2) .deco-3 { top: 44px; right: 120px; width: 6px; height: 6px; background: rgba(0, 184, 148, .15); border-radius: 50% }
.plan-card:nth-child(2) .deco-4 { top: 32px; right: 140px; width: 4px; height: 4px; background: rgba(0, 184, 148, .1); border-radius: 50% }
.plan-card:nth-child(2) .deco-5 { top: 20px; right: 108px; width: 8px; height: 8px; background: rgba(0, 184, 148, .08); border-radius: 50% }

.plan-card:nth-child(3) .glow-1 { width: 300px; height: 300px; top: -100px; right: -60px; background: conic-gradient(from 100deg, rgba(26, 79, 255, .1), rgba(107, 155, 255, .06), transparent 55%) }
.plan-card:nth-child(3) .glow-2 { width: 160px; height: 160px; top: 60px; right: 120px; background: radial-gradient(circle, rgba(26, 79, 255, .05) 0%, transparent 70%) }
.plan-card:nth-child(3) .deco-1 { top: -10px; right: 24px; width: 60px; height: 60px; border: 2px solid rgba(26, 79, 255, .12); border-radius: 12px; transform: rotate(12deg) }
.plan-card:nth-child(3) .deco-2 { top: -18px; right: 8px; width: 88px; height: 88px; border: 1.5px solid rgba(26, 79, 255, .06); border-radius: 16px; transform: rotate(12deg) }
.plan-card:nth-child(3) .deco-3 { top: 50px; right: 100px; width: 24px; height: 24px; border: 1.5px solid rgba(26, 79, 255, .1); border-radius: 6px; transform: rotate(-8deg) }
.plan-card:nth-child(3) .deco-4 { top: 40px; right: 132px; width: 12px; height: 12px; background: rgba(26, 79, 255, .06); border-radius: 3px; transform: rotate(20deg) }
.plan-card:nth-child(3) .deco-5 { top: 28px; right: 80px; width: 32px; height: 1.5px; background: rgba(26, 79, 255, .08); transform: rotate(45deg) }

.plan-header { margin-bottom: var(--space-m) }
.plan-name { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: .4rem }
.plan-desc { font-size: .9rem; color: var(--muted); line-height: 1.8 }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m) }

@media(max-width:700px) {
    .plan-grid { grid-template-columns: 1fr }
}

.plan-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: var(--space-xs) }
.plan-col p { font-size: .88rem; color: var(--ink); line-height: 1.85 }
.plan-col ul { list-style: disc; padding-left: 1.2em }
.plan-col ul li { font-size: .86rem; line-height: 1.7; padding: .2rem 0; color: var(--ink) }
.plan-col ul li::marker { color: var(--accent); font-size: .7em }

.timeline { width: 100%; margin: var(--space-xs) 0; border-collapse: collapse }
.timeline th, .timeline td { text-align: left; padding: .45rem .5rem; font-size: .82rem; line-height: 1.6; vertical-align: top }
.timeline th { font-weight: 600; color: var(--ink); white-space: nowrap; width: 80px }
.timeline td { color: var(--muted) }
.timeline tr { border-bottom: 1px solid var(--border) }
.timeline tr:last-child { border: none }

.pricing-table-wrap { margin-top: var(--space-l); background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden }
.pricing-table { width: 100%; border-collapse: collapse }
.pricing-table th, .pricing-table td { padding: 1rem 1.2rem; text-align: left; font-size: .9rem; border-bottom: 1px solid var(--border) }
.pricing-table thead th { background: var(--ink); color: var(--paper); font-weight: 600; font-size: .8rem; letter-spacing: .04em }
.pricing-table tbody tr:last-child td { border-bottom: none }
.pricing-table .plan-name-cell { font-weight: 700 }
.pricing-table .price-cell { font-family: var(--font-mono); font-weight: 500; color: var(--accent) }
.pricing-note { font-size: .85rem; color: var(--muted); margin-top: var(--space-m); line-height: 1.8 }

@media(max-width:600px) {
    .pricing-table th, .pricing-table td { padding: .7rem .6rem; font-size: .78rem }
    .about-core { padding: var(--space-m) }
    .plan-card { padding: var(--space-m) }
    .plan-name { font-size: 1.5rem }
    .plan-deco-wrap { opacity: .4 }
}

.members { background: var(--section-alt) }
.members-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: var(--space-s); margin-top: var(--space-l) }
.member-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: var(--space-m) }

.member-x { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; line-height: 1; color: var(--muted); text-decoration: none; margin-top: var(--space-s); transition: color .2s }
.member-x:hover { color: var(--ink) }
.member-x svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; position: relative; top: .5px }

.member-top { display: flex; align-items: flex-start; gap: var(--space-s); margin-bottom: var(--space-s) }
.member-avatar { width: 64px; height: 64px; border-radius: 14px; flex-shrink: 0; object-fit: cover; background: var(--section-alt) }
.member-name { font-size: 1.05rem; font-weight: 700 }
.member-tagline { font-size: .78rem; color: var(--accent); font-weight: 500; margin-top: .15rem }
.member-titles { font-size: .78rem; color: var(--muted); margin-top: .25rem; line-height: 1.5 }
.member-bio { font-size: .84rem; color: var(--muted); line-height: 1.85; margin-bottom: var(--space-s) }
.member-tags { display: flex; flex-wrap: wrap; gap: .35rem }
.member-tag { font-size: .7rem; font-weight: 500; background: var(--section-alt); color: var(--muted); padding: .2rem .6rem; border-radius: 4px }

.faq-list { margin-top: var(--space-l); max-width: 720px }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--space-m) 0 }
.faq-item:first-child { border-top: 1px solid var(--border) }

.faq-q { font-weight: 700; font-size: .95rem; cursor: pointer; display: flex; align-items: flex-start; gap: var(--space-s); line-height: 1.6; user-select: none }
.faq-q::before { content: 'Q'; font-family: var(--font-mono); font-size: .75rem; font-weight: 700; color: var(--accent); background: var(--accent-light); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; flex-shrink: 0; margin-top: -.1rem }
.faq-toggle { margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; position: relative; margin-top: .15rem }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--muted); transition: transform .3s }
.faq-toggle::before { width: 12px; height: 2px; top: 9px; left: 4px }
.faq-toggle::after { width: 2px; height: 12px; top: 4px; left: 9px }
.faq-item.open .faq-toggle::after { transform: rotate(90deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding-left: calc(28px + var(--space-s)) }
.faq-item.open .faq-a { max-height: 400px; padding-top: var(--space-s) }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.85 }

.cta-section { background: var(--ink); color: var(--paper); text-align: center; padding: var(--space-2xl) 0 }
.cta-section .section-title { color: var(--paper); margin-bottom: var(--space-s) }
.cta-section p { color: rgba(255, 255, 255, .55); font-size: .95rem; margin-bottom: var(--space-l); line-height: 1.8 }

.cta-btn { display: inline-flex; align-items: center; gap: .6rem; background: var(--accent); color: #fff; padding: 1.1rem 2.5rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: transform .2s, box-shadow .2s }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 79, 255, .35) }
.cta-btn svg { width: 16px; height: 16px }

footer { padding: var(--space-l) 0; border-top: 1px solid var(--border) }
footer .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-s) }
footer .footer-copy { font-size: .78rem; color: var(--muted) }
footer .footer-links { display: flex; gap: var(--space-m) }
footer .footer-links a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s }
footer .footer-links a:hover { color: var(--ink) }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease }
.fade-in.visible { opacity: 1; transform: translateY(0) }
