/* Desk Keeper website — dark theme with an orange glow. */

:root {
    --bg: #060910;
    --text: #ffffff;
    --text-2: #d6d6d6;
    --muted: #9e9e9e;
    --faint: rgba(255, 255, 255, 0.45);
    --orange: #f66f14;
    --orange-light: #ffad75;
    --orange-soft: #f5a067;
    --orange-dark: #ba530e;
    --line: #2b2b2b;
    --line-2: #363636;
    --frame: rgba(209, 170, 215, 0.15);
    --panel: rgba(33, 33, 33, 0.3);
    --glow-inset: inset 0 -9px 24px rgba(246, 112, 20, 0.18);
    --orange-fill: var(--orange) radial-gradient(circle at 50% 100%, var(--orange-light), rgba(246, 111, 20, 0) 80%);
    --heading: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
    --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 400 16px/1.55 var(--body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

h1, h2, h3, h4 { font-family: var(--heading); font-weight: 500; line-height: 1.2; margin: 0 0 0.5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--orange-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
img { max-width: 100%; }
code { font-family: ui-monospace, Consolas, monospace; font-size: 0.9em; background: rgba(255, 255, 255, 0.07); padding: 1px 6px; border-radius: 6px; }
::selection { background: rgba(246, 111, 20, 0.4); }
:focus-visible { outline: 2px solid var(--orange-light); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1248px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.i { width: 1em; height: 1em; flex: none; display: block; }

.gradient-text {
    background: linear-gradient(348deg, rgba(255, 255, 255, 0.34), #fff 54%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scroll-in animation */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.1s; }
.js .reveal.d2 { transition-delay: 0.2s; }
.js .reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--orange-dark);
    border-radius: 14px;
    background: var(--orange-fill);
    box-shadow: 0 0 30px rgba(242, 147, 84, 0.5);
    color: #fff;
    font: 500 15px/1.2 var(--body);
    white-space: nowrap;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.button:hover { color: #fff; box-shadow: 0 0 44px rgba(242, 147, 84, 0.75); transform: translateY(-1px); }
.button .i { width: 16px; height: 16px; transition: transform 0.25s; }
.button:hover .i { transform: translateX(2px); }
.button.secondary { background: var(--panel); border-color: rgba(247, 114, 24, 0.18); box-shadow: var(--glow-inset); }
.button.secondary:hover { border-color: rgba(247, 114, 24, 0.45); box-shadow: var(--glow-inset), 0 0 26px rgba(246, 111, 20, 0.16); }
.button.small { padding: 8px 13px; font-size: 14px; border-radius: 12px; }
.button.wide { width: 100%; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled, .site-header.open {
    background: rgba(6, 9, 16, 0.75);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.brand:hover { color: #fff; }
.brand img { width: 32px; height: 32px; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font: 800 17px/1.1 var(--heading); letter-spacing: 0.01em; }
.brand small { font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.nav a:hover { color: #fff; }
.nav a.current { color: #fff; font-weight: 600; }
.nav .nav-download { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(33, 33, 33, 0.45);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-toggle .i { width: 22px; height: 22px; }
.nav-toggle .icon-close, .site-header.open .nav-toggle .icon-open { display: none; }
.site-header.open .nav-toggle .icon-close { display: block; }

/* Shared surfaces */
.frame { border: 1px solid var(--frame); border-radius: 28px; padding: 6px; }
.panel { position: relative; overflow: hidden; height: 100%; border-radius: 22px; background: var(--panel); box-shadow: var(--glow-inset); }
.box {
    position: relative;
    border: 1px solid var(--line-2);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 -20px 80px rgba(104, 52, 17, 0.37), inset 0 0 30px rgba(255, 255, 255, 0.08);
}
.tile {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
}
.tile .i { width: 22px; height: 22px; }
.tile.hot { background: var(--orange-fill); border-color: var(--orange-dark); color: #fff; box-shadow: 0 0 26px rgba(242, 147, 84, 0.45); }
.pro-tag { display: inline-block; margin-bottom: 12px; padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(246, 111, 20, 0.4); background: rgba(246, 111, 20, 0.12); color: var(--orange-light); font: 600 12px var(--body); letter-spacing: 0.04em; }

.section { position: relative; padding: 110px 0; }
.section-head { max-width: 700px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 48px); }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.section-head .page-title { font-size: clamp(38px, 5vw, 56px); }
.section-tight { padding-top: 0; }
.fine-print { color: var(--faint); font-size: 13px; margin: 18px 0 0; }

/* Hero */
.hero { position: relative; padding: 156px 0 40px; overflow: clip; isolation: isolate; }
.hero-rays {
    position: absolute;
    inset: -120px -10% auto;
    height: 1000px;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(116deg, transparent 6%, rgba(255, 255, 255, 0.05) 12%, transparent 19%),
        linear-gradient(116deg, transparent 17%, rgba(255, 255, 255, 0.035) 23%, transparent 29%),
        linear-gradient(244deg, transparent 10%, rgba(255, 255, 255, 0.025) 15%, transparent 21%),
        radial-gradient(55% 45% at 50% 0%, rgba(246, 111, 20, 0.08), transparent 70%);
    filter: blur(8px);
}
.hero-content { max-width: 780px; margin: 0 auto; text-align: center; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 4px 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(33, 33, 33, 0.55);
    color: #fff;
    font: 500 14px var(--body);
}
.pill:hover { color: #fff; border-color: rgba(246, 111, 20, 0.4); }
.pill .i { width: 15px; height: 15px; }
.pill-tag { padding: 6px 13px; border-radius: 999px; background: var(--orange-fill); box-shadow: 0 0 20px rgba(242, 147, 84, 0.5); }
.hero h1 { font-size: clamp(40px, 6.3vw, 70px); line-height: 1.16; margin: 28px 0 22px; }
.hero .lead { max-width: 580px; margin: 0 auto 34px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.eclipse { position: relative; z-index: -1; height: 580px; margin-top: -140px; overflow: hidden; pointer-events: none; }
.eclipse-planet {
    position: absolute;
    left: 50%;
    top: 230px;
    width: max(1080px, 110vw);
    max-width: 1500px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(closest-side, #05070b 90%, #120c09 97%, #2a1609 100%);
    box-shadow:
        0 -1px 0 1px rgba(255, 246, 238, 0.9),
        0 -6px 16px rgba(255, 196, 150, 0.75),
        0 -26px 60px rgba(246, 111, 20, 0.55),
        0 -80px 180px rgba(246, 111, 20, 0.28);
}
.eclipse-planet::before {
    content: "";
    position: absolute;
    left: 20%;
    width: 42%;
    top: -50px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 110, 30, 0.9), rgba(246, 111, 20, 0));
    filter: blur(26px);
}
.eclipse-planet::after {
    content: "";
    position: absolute;
    inset: 90px 70px auto;
    aspect-ratio: 1;
    border-radius: 50%;
    border-top: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 -14px 40px rgba(246, 111, 20, 0.16);
}
.eclipse::after { content: ""; position: absolute; inset: auto 0 0; height: 260px; background: linear-gradient(rgba(6, 9, 16, 0), var(--bg)); }

/* App mock-up */
.app-window { position: relative; z-index: 2; margin-top: -230px; background: rgba(6, 9, 16, 0.55); }
.app { background: rgba(10, 12, 18, 0.92); border-radius: 22px; }
.app-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}
.app-brand { display: flex; align-items: center; gap: 9px; font: 800 15px var(--heading); }
.app-tabs { display: flex; gap: 28px; }
.app-tabs span { display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.55); font-size: 13px; }
.app-tabs span.on { color: #fff; font-weight: 600; }
.app-tabs .i { width: 16px; height: 16px; }
.app-bar-end { display: flex; align-items: center; gap: 14px; }
.pro-badge { padding: 3px 9px; border-radius: 8px; background: var(--orange-fill); font: 700 11px var(--body); letter-spacing: 0.08em; box-shadow: 0 0 14px rgba(242, 147, 84, 0.4); }
.app-body { padding: 28px 30px 30px; }
.app-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.app-head h3 { font-size: 28px; margin: 0; }
.app-head p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.week-headline { margin: 0 0 14px; font: 600 14px var(--heading); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 15px 16px;
    border: 1px solid rgba(246, 111, 20, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    box-shadow: inset 0 -10px 26px rgba(246, 112, 20, 0.13);
}
.stat small { color: var(--muted); font-size: 12px; }
.stat strong { font: 600 22px var(--heading); }
.app-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.app-card {
    display: flex;
    flex-direction: column;
    padding: 20px 22px 8px;
    border: 1px solid rgba(246, 111, 20, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.012);
    box-shadow: inset 0 -16px 40px rgba(246, 112, 20, 0.12);
}
.app-card h4 { font-size: 16px; margin: 0 0 4px; }
.folder-list { list-style: none; margin: 0; padding: 0; flex: 1; }
.folder-list li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.folder-list li:last-child { border-bottom: 0; }
.folder-list li > span:nth-child(2) { flex: 1; min-width: 0; }
.folder-list strong { display: block; font: 600 14px var(--heading); }
.folder-list small { display: block; color: var(--muted); font-size: 12px; }
.folder-list small.dim { color: rgba(255, 255, 255, 0.4); font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.folder-tile { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; }
.folder-tile .i { width: 19px; height: 19px; }
.ft-1 { background: linear-gradient(135deg, #ff9a52, #e2560a); }
.ft-2 { background: linear-gradient(135deg, #3c83f6, #2649b8); }
.ft-3 { background: linear-gradient(135deg, #a974ff, #6a3fd4); }
.ghost { padding: 6px 12px; border-radius: 9px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85); font-size: 12px; white-space: nowrap; }
.drive-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 18px; }
.drive-list li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 4px 12px; }
.drive-list strong { font: 600 14px var(--heading); }
.drive-list small { grid-column: 2; color: var(--muted); font-size: 12px; }
.drive-bar { height: 10px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.drive-bar i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.drive-note { margin: 22px 0 12px; color: var(--muted); font-size: 12px; }
.mock-caption { margin: 14px 0 0; text-align: center; color: var(--faint); font-size: 13px; }

/* File types strip */
.strip { padding: 80px 0 20px; text-align: center; }
.strip-title { color: var(--muted); font-size: 17px; margin: 0 0 30px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 12px; padding-right: 70px; color: rgba(255, 255, 255, 0.38); font: 700 28px var(--heading); white-space: nowrap; }
.marquee-item .i { width: 32px; height: 32px; stroke-width: 2; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Highlights grid */
.bento-section { padding-top: 70px; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(340px, auto); gap: 18px; }
.bento .tall { grid-column: 3; grid-row: 1 / span 2; }
.bento .wide { grid-column: 1 / span 2; }
.bento-card .panel { padding: 30px 28px; }
.bento-text { position: relative; z-index: 2; text-align: center; max-width: 290px; margin: 0 auto; }
.bento-text h3 { font-size: 24px; margin-bottom: 8px; }
.bento-text p { color: var(--muted); font-size: 15px; margin: 0; }
.bento-text.left { text-align: left; margin: 0; }
.bento-text.bottom { position: absolute; left: 28px; right: 28px; bottom: 30px; text-align: left; max-width: none; }
.chips { position: absolute; left: 26px; right: -60px; bottom: 26px; display: grid; gap: 9px; }
.chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(40, 40, 46, 0.6);
    font-size: 13px;
    white-space: nowrap;
}
.chip .i { width: 16px; height: 16px; color: var(--orange-light); }
.chip b { font-weight: 600; }
.chip span { color: var(--muted); }
.chip.hot { background: var(--orange-fill); border-color: var(--orange-dark); box-shadow: 0 0 30px rgba(242, 147, 84, 0.45); transform: translateX(-10px); }
.chip.hot .i, .chip.hot span { color: #fff; }
.chip.dim { opacity: 0.45; }
.stack { position: absolute; left: 36px; right: 36px; bottom: -8px; height: 128px; }
.stack-back { position: absolute; inset: 0 22px auto; height: 60px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); }
.stack-front {
    position: absolute;
    inset: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    background: rgba(40, 42, 50, 0.92);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}
.stack-front small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.stack-front strong { font: 600 20px var(--heading); }
.beam { position: absolute; left: 50%; top: -6px; width: 78%; height: 58%; transform: translateX(-50%); }
.beam::before, .beam span {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 100% 0, 64% 100%, 36% 100%);
}
.beam::before {
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 9%, rgba(255, 214, 180, 0.28) 11%, rgba(255, 255, 255, 0) 13%),
        linear-gradient(180deg, #ff7a1f, #ff9447 55%, rgba(255, 140, 60, 0.35));
}
.beam span { background: linear-gradient(180deg, #ff8a3a, rgba(246, 111, 20, 0.6)); filter: blur(30px); opacity: 0.9; transform: scaleX(1.2); }
.beam-tile {
    position: absolute;
    left: 50%;
    top: 58%;
    width: 104px;
    height: 104px;
    transform: translate(-50%, -54%);
    display: grid;
    place-items: center;
    border-radius: 26px;
    border: 1px solid rgba(255, 190, 140, 0.35);
    background: linear-gradient(160deg, #3a3334, #17171c);
    box-shadow: 0 0 60px rgba(246, 111, 20, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #efe7ff;
}
.beam-tile .i { width: 48px; height: 48px; stroke-width: 2.2; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35)); }
.wide-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; }
.kind-menu { position: relative; display: grid; gap: 4px; padding: 10px; margin: -10px -40px -60px 0; border-radius: 16px 0 0 0; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(22, 23, 28, 0.9); }
.kind { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.kind .i { width: 17px; height: 17px; }
.kind.on { background: rgba(255, 255, 255, 0.06); color: #fff; font-weight: 600; }
.kind.on > .i { margin-left: auto; color: var(--muted); }
.kind-icon { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--orange-fill); }
.kind-icon .i { width: 15px; height: 15px; }
.sparkles { position: absolute; top: -34px; right: 30px; width: 110px; height: 100px; pointer-events: none; }
.sparkles .i { position: absolute; fill: #fff; stroke: none; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7)); animation: twinkle 3s ease-in-out infinite; }
.sparkles .s1 { width: 50px; height: 50px; right: 0; top: 28px; }
.sparkles .s2 { width: 26px; height: 26px; right: 58px; top: 6px; animation-delay: 0.8s; }
.sparkles .s3 { width: 12px; height: 12px; right: 44px; top: 68px; animation-delay: 1.6s; }
@keyframes twinkle { 50% { transform: scale(0.8) rotate(12deg); opacity: 0.7; } }

/* Feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 80px; }
.feature-row + .feature-row { margin-top: 130px; }
.feature-row.flip .feature-text { order: 2; }
.feature-text h3 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 18px; }
.feature-text > p { color: var(--muted); font-size: 16.5px; }
.feature-text .button { margin: 10px 0 34px; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); font-size: 15px; }
.check {
    flex: none;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    border: 1px solid var(--orange-dark);
    background: var(--orange-fill);
    box-shadow: 0 0 14px rgba(242, 147, 84, 0.35);
    color: #fff;
}
.check .i { width: 14px; height: 14px; stroke-width: 2.8; }
.visual { min-height: 470px; padding: 40px; }
.menu-stack { position: relative; z-index: 2; display: grid; gap: 14px; }
.menu-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}
.menu-item > span:nth-child(2) { flex: 1; min-width: 0; }
.menu-item b { display: block; font: 600 16px var(--heading); color: #fff; }
.menu-item small { color: var(--muted); font-size: 13px; }
.menu-item.on { border-color: rgba(255, 255, 255, 0.14); background: rgba(40, 42, 50, 0.7); }
.menu-item.faded { opacity: 0.5; }
.menu-item.fainter { opacity: 0.22; }
.orb {
    position: absolute;
    right: -150px;
    bottom: -190px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 22px solid transparent;
    background: linear-gradient(#0b0d13, #0b0d13) padding-box, conic-gradient(from 180deg, #3a1d0b, #f66f14, #ffd2b0, #fff3ea, #ffb27a, #f66f14, #3a1d0b) border-box;
    box-shadow: 0 0 80px rgba(246, 111, 20, 0.45), inset 0 0 60px rgba(246, 111, 20, 0.3);
    animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.shield-art { position: absolute; z-index: 3; right: 70px; bottom: 60px; width: 150px; height: 175px; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.12)); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
.schedule-visual { perspective: 1200px; }
.float-chip { position: relative; z-index: 3; display: flex; align-items: center; gap: 14px; max-width: 360px; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(40, 42, 50, 0.8); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.float-chip b { display: block; font: 600 16px var(--heading); }
.float-chip small { color: var(--muted); font-size: 13px; }
.tilt {
    position: absolute;
    left: -8%;
    right: -30%;
    top: 34%;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transform: rotateX(48deg) rotateZ(-24deg);
    transform-origin: 30% 30%;
}
.tilt-tabs { display: flex; gap: 26px; margin-bottom: 22px; color: rgba(255, 255, 255, 0.35); font-size: 15px; }
.tilt-tabs span { display: flex; align-items: center; gap: 8px; }
.tilt-tabs .i { width: 18px; height: 18px; }
.tilt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tilt-tile { padding: 18px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.025); color: rgba(255, 255, 255, 0.4); }
.tilt-tile small { display: block; font-size: 12px; }
.tilt-tile b { display: block; font: 600 22px var(--heading); }
.tilt-tile.hot { position: relative; color: #fff; background: var(--orange-fill); border-color: var(--orange-dark); box-shadow: 0 30px 60px rgba(246, 111, 20, 0.45), 0 0 50px rgba(242, 147, 84, 0.5); transform: translate(-10px, -18px) scale(1.12); }
.tilt-lines { display: grid; gap: 10px; margin-top: 22px; }
.tilt-lines i { display: block; height: 10px; border-radius: 6px; background: rgba(255, 255, 255, 0.04); }
.tilt-lines i:nth-child(2) { width: 70%; }
.tilt-lines i:nth-child(3) { width: 45%; }
.schedule-visual::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(rgba(12, 13, 19, 0), rgba(12, 13, 19, 0.9)); z-index: 2; pointer-events: none; }
.rules-visual { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.rules-visual::before { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(closest-side, rgba(246, 111, 20, 0.28), transparent); pointer-events: none; }
.type-box { position: relative; padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(246, 111, 20, 0.45); background: rgba(20, 21, 27, 0.85); box-shadow: 0 0 0 4px rgba(246, 111, 20, 0.08), 0 0 40px rgba(246, 111, 20, 0.15); }
.type-box small { display: block; color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.type-input { font: 500 17px var(--body); color: #fff; }
.caret { display: inline-block; width: 2px; height: 20px; margin-left: 2px; vertical-align: -4px; background: var(--orange); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.rule-arrow { display: grid; place-items: center; color: var(--orange-light); }
.rule-arrow .i { width: 22px; height: 22px; }
.switch { flex: none; position: relative; width: 40px; height: 22px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 14px rgba(246, 111, 20, 0.45); }
.switch::after { content: ""; position: absolute; top: 3px; right: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; }
.menu-item.suggestion { border-style: dashed; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 22px; max-width: 900px; margin: 0 auto 34px; }
.plan-top { padding: 32px 28px 28px; }
.plan-price { display: flex; align-items: baseline; gap: 10px; height: 46px; margin-bottom: 20px; font: 600 46px/1 var(--heading); }
.plan-price small { color: var(--muted); font: 500 15px/1 var(--body); }
.plan-top h3 { font-size: 21px; margin-bottom: 8px; }
.plan-top p { min-height: 50px; color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.plan .checks { padding: 28px 10px 0; }
.plan.featured { transform: translateY(-18px); }
.plan.featured .frame { border-color: rgba(246, 111, 20, 0.5); box-shadow: 0 0 70px rgba(246, 111, 20, 0.14); }
.plan.featured .panel { background: rgba(33, 33, 33, 0.3) radial-gradient(120% 60% at 50% 110%, rgba(246, 111, 20, 0.22), transparent 70%); }
.plan-badge { position: absolute; top: 22px; right: 22px; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(246, 111, 20, 0.4); background: rgba(246, 111, 20, 0.14); color: var(--orange-light); font-size: 12px; font-weight: 600; }

/* Who it's for */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { position: relative; display: block; height: 400px; padding: 6px; border-radius: 26px; border: 1px solid var(--frame); color: #fff; }
.audience-card:hover { color: #fff; }
.art { position: absolute; inset: 6px; overflow: hidden; border-radius: 20px; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.audience-card:hover .art { transform: scale(1.02); }
.art span, .art i, .art b { position: absolute; display: block; }
.corner { position: absolute; top: 22px; right: 22px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(24, 24, 28, 0.55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: transform 0.3s; }
.corner .i { width: 20px; height: 20px; }
.audience-card:hover .corner { transform: rotate(45deg); }
.glass { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; padding: 18px 20px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(24, 24, 28, 0.58); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.glass h3 { font-size: 22px; margin-bottom: 6px; }
.glass p { color: rgba(255, 255, 255, 0.75); font-size: 14px; margin: 0; }
.art-office { background: linear-gradient(160deg, #f4f0ea, #cbc2b6); }
.art-office .sheet { width: 44%; height: 50%; border-radius: 10px; background: #fff; box-shadow: 0 24px 40px rgba(70, 50, 30, 0.2); }
.art-office .sheet::before { content: ""; position: absolute; inset: 34px 18px 18px; background: repeating-linear-gradient(#e6e0d8 0 4px, transparent 4px 17px); }
.art-office .s1 { left: 10%; top: 10%; transform: rotate(-14deg); }
.art-office .s2 { left: 30%; top: 5%; transform: rotate(3deg); }
.art-office .s3 { left: 46%; top: 12%; transform: rotate(15deg); }
.art-office .s3::after { content: ""; position: absolute; left: 18px; right: 40%; top: 14px; height: 10px; border-radius: 5px; background: var(--orange); }
.folder-shape { left: 16%; right: 16%; top: 40%; height: 30%; border-radius: 6px 16px 16px 16px; background: linear-gradient(180deg, #ff9a52, #ef6410); box-shadow: 0 30px 50px rgba(180, 70, 10, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.folder-shape::before { content: ""; position: absolute; left: 0; top: -16px; width: 40%; height: 22px; border-radius: 10px 12px 0 0; background: #f17a2c; }
.art-dev { background: linear-gradient(160deg, #f8dccb, #e39c7c); }
.code-win { left: 12%; top: 11%; width: 68%; height: 50%; padding: 34px 20px; border-radius: 14px; background: #16181f; box-shadow: 0 30px 50px rgba(90, 40, 20, 0.35); transform: rotate(-6deg); }
.code-win i { top: 13px; width: 9px; height: 9px; border-radius: 50%; background: #555; }
.code-win i:nth-child(1) { left: 16px; background: #f07070; }
.code-win i:nth-child(2) { left: 31px; background: #f5b85c; }
.code-win i:nth-child(3) { left: 46px; background: #5ad17e; }
.code-win b { left: 20px; height: 8px; border-radius: 4px; }
.code-win b:nth-of-type(1) { top: 42px; width: 45%; background: var(--orange); }
.code-win b:nth-of-type(2) { top: 62px; left: 38px; width: 55%; background: #6b7280; }
.code-win b:nth-of-type(3) { top: 82px; left: 38px; width: 35%; background: #a78bfa; }
.code-win b:nth-of-type(4) { top: 102px; width: 25%; background: #6b7280; }
.zip-cube { right: 12%; top: 38%; width: 34%; aspect-ratio: 1; border-radius: 22px; background: linear-gradient(145deg, #ffb07a, #f25f0a); box-shadow: 0 30px 50px rgba(160, 60, 10, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.45); transform: rotate(10deg); }
.zip-cube::before { content: ""; position: absolute; left: 44%; top: 0; bottom: 0; width: 12%; background: repeating-linear-gradient(#fff5 0 6px, transparent 6px 12px); }
.bubble { left: 8%; top: 58%; width: 18%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, #e8b6a0); box-shadow: 0 20px 30px rgba(120, 50, 20, 0.25); }
.art-it { background: linear-gradient(160deg, #e9edf1, #b3bec8); }
.monitors { left: 10%; right: 10%; top: 16%; display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 16px; transform: rotate(-8deg); }
.monitors i { position: relative !important; aspect-ratio: 4 / 3; border-radius: 10px; border: 5px solid #1b1d24; background: linear-gradient(160deg, #ffb07a, #f25f0a); box-shadow: 0 16px 24px rgba(40, 50, 60, 0.3); }
.monitors i:nth-child(2n) { background: linear-gradient(160deg, #3a3f4c, #1e2129); }
.monitors i::after { content: ""; position: absolute; left: 50%; bottom: -14px; width: 30%; height: 9px; transform: translateX(-50%); border-radius: 0 0 4px 4px; background: #1b1d24; }
.monitors i::before { content: ""; position: absolute; left: 50%; top: 50%; width: 30%; height: 16%; transform: translate(-50%, -70%) rotate(-45deg); border-left: 3px solid #fff; border-bottom: 3px solid #fff; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details { padding: 5px; border: 1px solid var(--frame); border-radius: 22px; }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 17px;
    background: var(--panel);
    box-shadow: var(--glow-inset);
    font: 600 17px var(--heading);
    list-style: none;
    cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { width: 20px; height: 20px; color: var(--orange-light); transition: transform 0.3s; }
.faq details[open] summary .i { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 16px 22px 12px; color: var(--muted); }

/* Call to action */
.cta-section { padding: 30px 0 110px; }
.cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    padding: 60px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2) radial-gradient(circle at 100% 100%, rgba(246, 111, 20, 0.95) 4%, rgba(246, 111, 20, 0) 45%);
}
.cta-text { position: relative; z-index: 2; max-width: 460px; }
.cta-text h2 { font-size: clamp(30px, 3.8vw, 44px); }
.cta-text > p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.cta-text .hero-actions { justify-content: flex-start; }
.cta-app { position: absolute; left: 50%; bottom: -70px; width: 780px; background: rgba(6, 9, 16, 0.5); }
.cta-app .panel { padding: 18px; background: rgba(10, 12, 18, 0.92); }

/* Other pages */
.page { position: relative; }
.page::before { content: ""; position: absolute; top: -200px; left: 50%; width: min(1000px, 100%); height: 520px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(246, 111, 20, 0.2), transparent); pointer-events: none; }
.page .section:first-child { padding-top: 160px; }
.card {
    position: relative;
    padding: 38px;
    border: 1px solid var(--line-2);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.015);
    box-shadow: inset 0 -20px 80px rgba(104, 52, 17, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.06);
}
.card h1 { font-size: clamp(28px, 4vw, 38px); }
.card h2 { font-size: 22px; margin-top: 30px; }
.card > h2:first-child { margin-top: 0; }
.card ol, .card ul { color: var(--text-2); padding-left: 22px; }
.card li { margin: 6px 0; }
.summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; margin-bottom: 10px; border-bottom: 1px solid var(--line); }
.summary .price { font: 600 36px var(--heading); color: #fff; }
.form label { display: block; margin: 20px 0 8px; color: var(--text-2); font-size: 14px; font-weight: 500; }
.form input[type=text], .form input[type=email] {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font: 16px var(--body);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(246, 111, 20, 0.18); }
.form .check-row { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.form .check-row input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--orange); }
.form .button { margin-top: 26px; }
.message { margin: 18px 0; padding: 13px 16px; border: 1px solid; border-radius: 12px; }
.message.error { border-color: rgba(240, 112, 112, 0.4); background: rgba(240, 112, 112, 0.08); color: #fecaca; }
.message.warning { border-color: rgba(246, 111, 20, 0.4); background: rgba(246, 111, 20, 0.08); color: #fed7aa; }
.message.success { border-color: rgba(90, 209, 126, 0.35); background: rgba(90, 209, 126, 0.08); color: #bbf7d0; }
.license-key {
    margin: 22px 0 14px;
    padding: 22px;
    border: 1px dashed rgba(246, 111, 20, 0.55);
    border-radius: 14px;
    background: rgba(246, 111, 20, 0.07);
    font: 600 clamp(17px, 3.4vw, 26px) ui-monospace, Consolas, monospace;
    letter-spacing: 0.06em;
    text-align: center;
    word-break: break-all;
}
.prose h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 8px; }
.prose h2 { font-size: 23px; margin: 40px 0 12px; }
.prose p, .prose li { color: #c2c2c2; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 7px 0; }
.prose strong { color: #fff; }

/* Receipts: a white page that prints cleanly */
.key-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.receipt-wrap { max-width: 880px; }
.receipt-actions { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.receipt { padding: 44px; border-radius: 18px; background: #fff; color: #1b2430; font-size: 14.5px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.receipt-test { margin: -14px 0 24px; padding: 10px 14px; border-radius: 10px; background: #fff4e5; color: #8a4b00; font-weight: 600; text-align: center; }
.receipt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 26px; border-bottom: 2px solid var(--orange); }
.receipt-seller { display: flex; gap: 14px; }
.receipt-seller img { width: 44px; height: 44px; border-radius: 10px; }
.receipt-seller div { display: flex; flex-direction: column; gap: 2px; color: #5f6b7d; font-size: 13px; }
.receipt-seller strong { color: #1b2430; font: 700 17px var(--heading); }
.receipt-title { text-align: right; }
.receipt-title h1 { margin: 0 0 8px; color: #1b2430; font: 700 30px var(--heading); }
.receipt-status { display: inline-block; padding: 3px 12px; border-radius: 999px; font: 700 12px var(--body); letter-spacing: 0.08em; text-transform: uppercase; }
.receipt-status.paid { background: #e7f6ee; color: #15784a; }
.receipt-status.refunded { background: #fdecec; color: #b42318; }
.receipt-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 26px 0; }
.receipt-meta dt { margin-bottom: 4px; color: #5f6b7d; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.receipt-meta dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.receipt-table { width: 100%; border-collapse: collapse; }
.receipt-table th, .receipt-table td { padding: 12px 0; text-align: left; vertical-align: top; }
.receipt-table thead th { border-bottom: 1px solid #e3e7ee; color: #5f6b7d; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.receipt-table tbody td { border-bottom: 1px solid #e3e7ee; }
.receipt-table td span { display: block; max-width: 480px; margin-top: 3px; color: #5f6b7d; font-size: 13px; }
.receipt-table .num { padding-left: 16px; text-align: right; white-space: nowrap; }
.receipt-table tfoot th, .receipt-table tfoot td { padding-top: 16px; font: 700 16px var(--heading); }
.receipt-table tfoot th { text-align: right; }
.receipt-table .refund-row th, .receipt-table .refund-row td { padding-top: 4px; color: #b42318; font-size: 14px; }
.receipt-foot { margin-top: 8px; padding-top: 18px; border-top: 1px solid #e3e7ee; color: #5f6b7d; font-size: 12.5px; }
.receipt-foot p { margin: 0 0 6px; }

@media print {
    @page { margin: 14mm; }
    body { background: #fff; }
    .site-header, .site-footer, .cursor-light, .receipt-actions, .page::before { display: none !important; }
    .page .section:first-child { padding: 0; }
    .receipt { padding: 0; border-radius: 0; box-shadow: none; }
    .receipt-test { margin-top: 0; }
    .js .reveal { opacity: 1; transform: none; }
    * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* Footer */
.site-footer { position: relative; padding: 40px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand h2 { max-width: 460px; margin: 26px 0 14px; font-size: clamp(28px, 3.4vw, 40px); }
.footer-brand p { max-width: 420px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 8px; }
.footer-cols h3 { margin-bottom: 18px; font: 600 14px var(--body); }
.footer-cols a { display: block; margin-bottom: 11px; color: var(--muted); font-size: 14px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: #fff; }

.cursor-light {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 60;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(246, 111, 20, 0.09), rgba(246, 111, 20, 0));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.cursor-light.on { opacity: 1; }

/* Tablet */
@media (max-width: 1020px) {
    .nav-toggle { display: inline-flex; }
    .nav {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        border: 1px solid var(--frame);
        border-radius: 18px;
        background: rgba(12, 14, 20, 0.97);
    }
    .site-header.open .nav { display: flex; }
    .nav a { padding: 12px 14px; border-radius: 10px; font-size: 16px; }
    .nav a:hover { background: rgba(255, 255, 255, 0.04); }
    .app-tabs { gap: 18px; }
    .app-tabs span:not(.on) { font-size: 0; gap: 0; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento .tall { grid-column: 2; grid-row: 1 / span 2; }
    .bento .wide { grid-column: 1 / span 2; }
    .feature-row { grid-template-columns: minmax(0, 1fr); gap: 44px; }
    .feature-row.flip .feature-text { order: 0; }
    .feature-row + .feature-row { margin-top: 100px; }
    .pricing { grid-template-columns: minmax(0, 1fr); max-width: 520px; margin-left: auto; margin-right: auto; }
    .plan.featured { transform: none; }
    .plan-top p { min-height: 0; }
    .audience { grid-template-columns: minmax(0, 1fr); max-width: 520px; margin: 0 auto; }
    .cta { grid-template-columns: minmax(0, 1fr); padding: 44px 36px 0; min-height: 0; }
    .cta-app { position: relative; left: auto; bottom: auto; width: 720px; margin: 44px 0 -60px; }
    .footer-top { grid-template-columns: minmax(0, 1fr); }
}

/* Phone */
@media (max-width: 700px) {
    .wrap { padding: 0 16px; }
    .header-row { height: 68px; }
    .nav { top: 64px; }
    .header-button { display: none; }
    .nav .nav-download { display: block; color: var(--orange-light); }
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 44px; }
    .hero { padding-top: 124px; }
    .hero h1 br { display: none; }
    .eclipse { height: 440px; margin-top: -140px; }
    .eclipse-planet { top: 210px; width: 900px; }
    .app-window { margin-top: -170px; }
    .app-bar { padding: 12px 16px; }
    .app-tabs { display: none; }
    .app-body { padding: 18px 16px; }
    .app-head h3 { font-size: 22px; }
    .stats { gap: 10px; }
    .stat { padding: 12px; }
    .stat strong { font-size: 18px; }
    .app-head .button { display: none; }
    .app-panels { grid-template-columns: minmax(0, 1fr); }
    .marquee-item { font-size: 22px; padding-right: 44px; }
    .marquee-item .i { width: 26px; height: 26px; }
    .bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
    .bento .tall, .bento .wide { grid-column: auto; grid-row: auto; }
    .bento-card .panel { min-height: 300px; }
    .bento .tall .panel { min-height: 400px; }
    .wide-panel { grid-template-columns: minmax(0, 1fr); }
    .kind-menu { margin: 10px -40px -40px 0; }
    .visual { min-height: 420px; padding: 24px; }
    .shield-art { right: 30px; bottom: 30px; width: 120px; height: 140px; }
    .orb { width: 340px; height: 340px; right: -140px; bottom: -160px; }
    .tilt { top: 38%; left: -20%; right: -50%; }
    .card { padding: 26px 20px; }
    .summary { flex-direction: column; align-items: flex-start; }
    .receipt { padding: 24px 18px; }
    .receipt-head { flex-direction: column; }
    .receipt-title { text-align: left; }
    .receipt-meta { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .cta { padding: 34px 22px 0; }
    .cta-app { width: 620px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .audience-card { height: 360px; }
}
