/* ═══════════════════════════════════════════════════════════
   landing.css — Landing page specific styles
   Hero · Stats · Comparison · Bento · Timeline · CTA
═══════════════════════════════════════════════════════════ */

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(0, 232, 157, .07) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Hero Text ── */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 5px 14px 5px 10px;
    border-radius: 99px;
    border: 1px solid var(--accent-20);
    background: var(--accent-10);
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--accent);
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: badgePulse 2s infinite;
}

.hero-text h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.hero-text>p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.install-cmd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-2);
    min-width: 0;
    flex: 1 1 auto;
    max-width: 420px;
}

.cmd-prefix {
    color: var(--accent);
    flex-shrink: 0;
}

.cmd-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.cmd-text strong {
    color: var(--text);
}

.cmd-copy {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-3);
    display: flex;
    align-items: center;
    padding: 2px;
    transition: color .2s;
}

.cmd-copy:hover {
    color: var(--accent);
}

.hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-versions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-version {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--accent-10);
    border: 1px solid var(--accent-20);
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}

.hero-version:hover {
    background: var(--bg-3);
    border-color: var(--border-2);
    color: var(--text);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--text-3);
}

.hero-meta svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ── Dashboard Mockup ── */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 232, 157, .10) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}

.mockup-window {
    width: 100%;
    max-width: 520px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .03),
        0 32px 64px rgba(0, 0, 0, .5),
        0 0 80px rgba(0, 232, 157, .06);
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
}

.titlebar-dots {
    display: flex;
    gap: 6px;
}

.titlebar-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.titlebar-dots span:nth-child(1) {
    background: #ff5f57;
}

.titlebar-dots span:nth-child(2) {
    background: #febc2e;
}

.titlebar-dots span:nth-child(3) {
    background: #28c840;
}

.titlebar-name {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    flex: 1;
    text-align: center;
}

.titlebar-session {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
}

.session-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: badgePulse 2s infinite;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    background: rgba(13, 13, 24, .6);
    gap: 8px;
    flex-wrap: wrap;
}

.metric-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.m-chip {
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid var(--border-2);
    background: var(--bg-4);
    font-family: var(--font-mono);
    font-size: 10px;
}

.m-key {
    color: var(--text-3);
}

.m-val {
    color: var(--accent);
    margin-left: 2px;
}

.mockup-actions {
    display: flex;
    gap: 6px;
}

.m-btn {
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid var(--border);
    font-size: 10px;
    color: var(--text-3);
    cursor: default;
}

.m-btn.danger {
    border-color: rgba(248, 113, 113, .3);
    color: rgba(248, 113, 113, .6);
}

.mockup-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 260px;
}

.mockup-entry {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(-12px);
}

.mockup-entry.e1 {
    animation: entryIn .4s ease .8s forwards;
}

.mockup-entry.e2 {
    animation: entryIn .4s ease 1.2s forwards;
}

.mockup-entry.e3 {
    animation: entryIn .4s ease 1.6s forwards;
}

.mockup-entry.e4 {
    animation: entryIn .4s ease 2.0s forwards;
}

.mockup-entry.e5 {
    animation: entryIn .4s ease 2.4s forwards;
}

.mockup-entry.e6 {
    animation: entryIn .4s ease 2.8s forwards;
}

@keyframes entryIn {
    to {
        opacity: 1;
        transform: none;
    }
}

.e-bar {
    width: 3px;
    min-height: 28px;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    align-self: stretch;
}

.c-blue {
    background: var(--blue);
}

.c-purple {
    background: var(--purple);
}

.c-orange {
    background: var(--orange);
}

.c-green {
    background: var(--green);
}

.c-red {
    background: var(--red);
}

.e-content {
    flex: 1;
    min-width: 0;
}

.e-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 3px;
}

.e-label {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1px 6px;
    border-radius: 3px;
}

.l-info {
    background: rgba(96, 165, 250, .15);
    color: var(--blue);
}

.l-sql {
    background: rgba(167, 139, 250, .15);
    color: var(--purple);
}

.l-timer {
    background: rgba(251, 191, 36, .15);
    color: var(--yellow);
}

.l-success {
    background: rgba(0, 232, 157, .12);
    color: var(--accent);
}

.l-error {
    background: rgba(248, 113, 113, .15);
    color: var(--red);
}

.e-time {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--text-3);
    margin-left: auto;
}

.e-data {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-kw {
    color: var(--blue);
}

.t-str {
    color: var(--accent);
}

.t-num {
    color: var(--orange);
}

.t-cls {
    color: var(--yellow);
}

.t-exc {
    color: var(--red);
    font-weight: 600;
}

.t-bool {
    color: var(--purple);
}

.t-dim {
    color: var(--text-3);
}

.mockup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: 1px solid var(--border);
    background: var(--bg-3);
}

.mf-count {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
}

.mf-count strong {
    color: var(--text);
}

.mf-sse {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--accent);
}

.sse-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: badgePulse 2s infinite;
}

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 28px 16px;
    text-align: center;
}

.stat-val {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -.02em;
}

.stat-label {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: .01em;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 16px 0;
}

/* ─── Section Helpers ────────────────────────────────────── */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 56px;
}

/* ─── Comparison Table ───────────────────────────────────── */
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-2);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead tr {
    background: var(--bg-3);
}

.comparison-table th {
    padding: 14px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    border-bottom: 1px solid var(--border-2);
    white-space: nowrap;
}

.comparison-table th:first-child {
    text-align: left;
    color: var(--text-3);
    font-weight: 500;
    position: sticky;
    left: 0;
    background: var(--bg-3);
    z-index: 1;
}

.th-highlight {
    color: var(--accent) !important;
    background: var(--accent-10);
    border-left: 1px solid var(--accent-20);
    border-right: 1px solid var(--accent-20);
}

.th-price {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    background: rgba(248, 113, 113, .12);
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: 400;
}

.comparison-table td {
    padding: 13px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    transition: background .15s;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
    position: sticky;
    left: 0;
    background: var(--bg);
    z-index: 1;
}

.comparison-table tbody tr:hover td {
    background: var(--bg-2);
}

.comparison-table tbody tr:hover td:first-child {
    background: var(--bg-2);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.td-highlight {
    background: var(--accent-10);
    border-left: 1px solid var(--accent-20);
    border-right: 1px solid var(--accent-20);
}

.ct-yes {
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
}

.ct-no {
    color: var(--text-3);
    font-size: 15px;
}

.ct-partial {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}

/* ─── Bento Grid ─────────────────────────────────────────── */
.features-section {
    border-top: 1px solid var(--border);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(0, 232, 157, .05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.bento-card:hover {
    border-color: rgba(0, 232, 157, .25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 232, 157, .08);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-big {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 3;
}

.bento-card-inner {
    padding: 28px 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-10);
    border: 1px solid var(--accent-20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.bento-card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    flex: 1;
}

.bento-demo-entries {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.bde {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-2);
    opacity: 0;
    transform: translateX(-10px);
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bde-1 {
    animation: bdeIn .3s ease 3.2s forwards;
}

.bde-2 {
    animation: bdeIn .3s ease 3.5s forwards;
}

.bde-3 {
    animation: bdeIn .3s ease 3.8s forwards;
}

.bde-4 {
    animation: bdeIn .3s ease 4.1s forwards;
}

@keyframes bdeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

.bde-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bento-code {
    margin-top: 4px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.85;
    color: var(--text-2);
}

.bento-code code,
.tl-code-block code {
    padding: 0;
}

.label-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.lc {
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lc-sql {
    background: rgba(167, 139, 250, .15);
    color: var(--purple);
}

.lc-error {
    background: rgba(248, 113, 113, .15);
    color: var(--red);
}

.lc-timer {
    background: rgba(251, 191, 36, .12);
    color: var(--yellow);
}

.lc-success {
    background: rgba(0, 232, 157, .12);
    color: var(--accent);
}

.lc-info {
    background: rgba(96, 165, 250, .15);
    color: var(--blue);
}

.metric-strip {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ms-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid var(--border-2);
    background: var(--bg-4);
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
}

.ms-chip b {
    color: var(--accent);
}

.dump-preview {
    margin-top: 8px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 2;
    color: var(--text-2);
    overflow-x: auto;
}

/* ─── How It Works Timeline ──────────────────────────────── */
.howto-section {
    border-top: 1px solid var(--border);
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 28px;
}

.timeline-line {
    position: absolute;
    left: 14px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-40), transparent);
}

.tl-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    padding: 12px 0 48px;
}

.tl-step:last-child {
    padding-bottom: 0;
}

.tl-marker {
    display: flex;
    justify-content: center;
}

.tl-marker span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--accent-40);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.tl-body {
    padding-top: 4px;
}

.tl-body h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}

.tl-body p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 16px;
}

.tl-code {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-2);
    max-width: 100%;
    overflow-x: auto;
}

.tl-code strong {
    color: var(--text);
}

.tl-session-chip {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-3);
    border: 1px solid var(--accent-20);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-2);
    max-width: 100%;
}

.tl-session-chip strong {
    color: var(--accent);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: badgePulse 2s infinite;
    flex-shrink: 0;
}

.chip-copy {
    font-size: 10.5px;
    color: var(--text-3);
    border-left: 1px solid var(--border-2);
    padding-left: 8px;
}

.tl-code-block {
    display: inline-flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.9;
    color: var(--text-2);
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
    padding: 120px 40px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 232, 157, .08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 99px;
    border: 1px solid var(--accent-20);
    background: var(--accent-10);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: .04em;
}

.cta-inner h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -.03em;
}

.cta-inner h2 code {
    font-size: inherit;
    color: var(--accent);
    background: none;
    padding: 0;
}

.cta-inner p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1000px: hero stacks, bento 2-col
═══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 40px;
    }

    [data-reveal-right] {
        transform: translateY(28px);
    }

    .mockup-window {
        max-width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-big {
        grid-column: span 2;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 720px
═══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
    .hero-inner {
        padding: 48px 20px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text>p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .install-cmd {
        max-width: 100%;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

    .section {
        padding: 72px 20px;
    }

    .stats-inner {
        padding: 0 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 calc(50% - 20px);
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bento-big {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-card-inner {
        padding: 20px 20px 18px;
    }

    .timeline {
        padding-left: 16px;
    }

    .tl-step {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .tl-body h3 {
        font-size: 17px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary.btn-large,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px: single column everything
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-inner {
        display: block;
    }

    .hero-mockup,
    .tl-code-block {
        display: none;
    }

    .hero-badge {
        font-size: 10.5px;
        padding: 4px 10px 4px 8px;
    }

    .stat-item {
        flex: 1 1 100%;
        padding: 18px 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-big {
        grid-column: span 1;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .tl-step {
        grid-template-columns: 30px 1fr;
        gap: 10px;
    }

    .tl-marker span {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .timeline-line {
        left: 11px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}