:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #101115;
  --surface-raised: #17181d;
  --surface-soft: #1d1e24;
  --text: #f4f3ef;
  --muted: #96969d;
  --subtle: #68686f;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --accent: #ef334d;
  --accent-soft: #ff5b6c;
  --success: #59c889;
  --cream: #e6e1d8;
  --header-height: 78px;
  --shell: clamp(22px, 6.5vw, 108px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
::selection { color: white; background: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -60px; left: 18px; z-index: 300; padding: 12px 18px; border-radius: 9px; background: white; color: #111; transition: top .2s; }
.skip-link:focus { top: 18px; }
.section-shell { padding-left: var(--shell); padding-right: var(--shell); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); padding: 0 var(--shell); display: flex; align-items: center; justify-content: space-between; background: rgba(8,9,11,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); transition: height .25s, background .25s; }
.site-header.is-scrolled { height: 66px; background: rgba(8,9,11,.96); }
.brand { display: inline-flex; align-items: center; gap: 11px; letter-spacing: -.035em; }
.brand-symbol { width: 40px; height: 40px; display: grid; place-items: center; overflow: hidden; }
.brand-symbol img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 16px rgba(239,51,77,.22)); }
.brand > span:last-child { display: grid; grid-template-columns: auto auto; line-height: 1; font-weight: 500; }
.brand strong { font-weight: 800; }.brand small { grid-column: 1 / -1; margin-top: 5px; color: var(--subtle); font-size: .52rem; text-transform: uppercase; letter-spacing: .17em; }
.desktop-nav { display: flex; align-items: center; gap: 38px; color: #96969c; font-size: .78rem; font-weight: 600; }
.desktop-nav a { position: relative; padding: 30px 0; transition: color .2s; }.desktop-nav a:hover, .desktop-nav a.is-current { color: white; }.desktop-nav a.is-current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search-button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 0; background: transparent; color: #898990; font-size: .75rem; cursor: pointer; }.header-search-button span { font-size: 1.05rem; }
.header-cta { padding: 11px 17px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: .72rem; font-weight: 700; transition: border-color .2s, background .2s; }.header-cta:hover { border-color: var(--accent); background: rgba(239,51,77,.08); }
.menu-button { display: none; width: 42px; height: 42px; padding: 11px 9px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: white; transition: transform .25s; }.menu-button[aria-expanded="true"] > span:first-child { transform: translateY(3px) rotate(45deg); }.menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; left: 0; width: 100%; display: none; gap: 20px; padding: 25px var(--shell) 30px; background: #0c0d10; border-bottom: 1px solid var(--line); }.mobile-menu.is-open { display: grid; }

.hero { position: relative; min-height: 820px; padding-top: calc(var(--header-height) + 72px); padding-bottom: 76px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr); align-items: center; gap: clamp(50px, 8vw, 125px); overflow: hidden; }
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 78%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: 12%; top: 8%; border-radius: 50%; background: var(--accent); filter: blur(180px); opacity: .055; pointer-events: none; }
.hero-copy { position: relative; z-index: 1; }
.preview-label { width: fit-content; margin-bottom: 27px; padding: 7px 11px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; color: #898990; text-transform: uppercase; letter-spacing: .15em; font-size: .55rem; font-weight: 700; }.preview-label span { width: 6px; height: 6px; border-radius: 50%; background: #e5a949; box-shadow: 0 0 10px rgba(229,169,73,.5); }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.055em; font-family: var(--font-display); }
.hero h1 { max-width: 820px; font-size: clamp(3.8rem, 7.4vw, 7.7rem); font-weight: 800; text-transform: uppercase; }
h1 em, h2 em { color: var(--accent-soft); font-family: Georgia, "Times New Roman", serif; font-weight: 400; text-transform: none; }
.hero-copy > p { max-width: 610px; margin: 31px 0 0; color: #a5a5ac; font-size: clamp(.98rem, 1.25vw, 1.16rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 750; cursor: pointer; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }.button:hover { transform: translateY(-2px); }.button-primary { background: var(--accent); box-shadow: 0 15px 35px rgba(239,51,77,.2); }.button-primary:hover { background: var(--accent-soft); box-shadow: 0 18px 42px rgba(239,51,77,.3); }.button-quiet { border-color: var(--line); background: rgba(255,255,255,.025); color: #b2b2b7; }.button-quiet:hover { border-color: var(--line-strong); }.button-secondary { background: white; color: #0c0d10; }.button-light { background: var(--cream); color: #111216; }
.hero-assurances { margin: 47px 0 0; padding: 25px 0 0; display: flex; flex-wrap: wrap; gap: 22px; border-top: 1px solid var(--line); list-style: none; color: #77777f; font-size: .68rem; }.hero-assurances span { color: var(--success); margin-right: 6px; }

.featured-shell { position: relative; z-index: 1; width: min(100%, 530px); justify-self: end; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #111217; box-shadow: 0 40px 100px rgba(0,0,0,.35); overflow: hidden; }
.featured-topline { height: 48px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; color: #6f6f76; text-transform: uppercase; letter-spacing: .16em; font-size: .52rem; border-bottom: 1px solid var(--line); }
.featured-art { position: relative; height: 310px; display: grid; place-items: center; overflow: hidden; }.art-orbit { background: radial-gradient(circle at 50% 52%, #3b1720 0, #1b1117 36%, #101116 72%); }
.android-pill { position: absolute; top: 18px; left: 18px; z-index: 3; padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(8,9,11,.35); color: #bcbcc1; text-transform: uppercase; letter-spacing: .12em; font-size: .5rem; backdrop-filter: blur(10px); }
.featured-icon { position: relative; z-index: 2; width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: linear-gradient(145deg, #ff6475, #a80925); font-size: 4.5rem; font-weight: 850; box-shadow: 0 25px 50px rgba(239,51,77,.28); transform: rotate(-5deg); }
.orbit-system { position: absolute; width: 310px; height: 150px; border: 1px solid rgba(255,91,108,.4); border-radius: 50%; transform: rotate(-13deg); }.orbit-system::before, .orbit-system::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }.orbit-system::after { inset: -38px; }.orbit-system i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: white; box-shadow: 0 0 9px white; }.orbit-system i:first-child { top: 14%; left: 12%; }.orbit-system i:nth-child(2) { right: 3%; bottom: 23%; }.orbit-system i:last-child { left: 38%; bottom: -2px; }
.featured-content { padding: 24px 25px 22px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }.app-category { color: var(--accent-soft); text-transform: uppercase; letter-spacing: .14em; font-size: .55rem; font-weight: 700; }.featured-content h2 { margin-top: 7px; font-size: 2.2rem; }.featured-content p { margin: 9px 0 0; color: #88888f; font-size: .77rem; }.round-action { flex: 0 0 auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.15rem; cursor: pointer; transition: background .2s, border-color .2s; }.round-action:hover { background: var(--accent); border-color: var(--accent); }
.featured-meta { padding: 15px 25px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }.featured-meta span { font-size: .68rem; font-weight: 650; }.featured-meta span + span { padding-left: 18px; border-left: 1px solid var(--line); }.featured-meta small { display: block; margin-bottom: 5px; color: #616168; text-transform: uppercase; letter-spacing: .12em; font-size: .48rem; }

.trust-ribbon { min-height: 120px; padding: 0 var(--shell); display: grid; grid-template-columns: repeat(4,1fr); align-items: center; background: #0c0d10; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.trust-ribbon div { min-height: 60px; padding: 0 28px; display: flex; align-items: center; gap: 16px; }.trust-ribbon div + div { border-left: 1px solid var(--line); }.trust-ribbon strong { color: var(--accent); font-size: .58rem; letter-spacing: .12em; }.trust-ribbon span { color: #97979e; text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; line-height: 1.5; }

.catalog { padding-top: 135px; padding-bottom: 155px; }.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; }.section-index { display: inline-block; margin-bottom: 24px; color: var(--accent-soft); text-transform: uppercase; letter-spacing: .17em; font-size: .58rem; font-weight: 750; }.section-heading h2, .trust-copy h2, .developer-copy h2 { font-size: clamp(3rem, 5.5vw, 6rem); text-transform: uppercase; }.section-heading > p { max-width: 410px; margin: 0 0 3px; color: var(--muted); line-height: 1.7; }
.catalog-toolbar { margin-top: 67px; display: flex; flex-direction: column; gap: 23px; }.catalog-search { position: relative; width: 100%; }.catalog-search > span:first-child { position: absolute; left: 0; top: 13px; color: #77777e; font-size: 1.35rem; }.catalog-search input { width: 100%; padding: 14px 50px 14px 35px; border: 0; border-bottom: 1px solid var(--line-strong); outline: 0; background: transparent; color: white; font-size: clamp(1rem, 1.5vw, 1.2rem); }.catalog-search input:focus { border-color: var(--accent); }.catalog-search kbd { position: absolute; right: 0; top: 10px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; color: #66666d; background: var(--surface); font-size: .65rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }.filter { padding: 9px 14px; border: 1px solid transparent; border-radius: 999px; background: none; color: #77777f; font-size: .72rem; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }.filter span { margin-left: 5px; color: #55555c; }.filter:hover { color: white; }.filter.is-active { color: white; border-color: var(--line); background: rgba(255,255,255,.035); }
.catalog-status { min-height: 24px; display: flex; align-items: center; gap: 9px; color: #77777f; font-size: .68rem; }.catalog-status > span { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #e5a949; box-shadow: 0 0 9px rgba(229,169,73,.35); }.catalog-status p { margin: 0; }.catalog-status button { margin-left: 4px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--accent-soft); cursor: pointer; }.catalog-status[data-kind="live"] > span { background: var(--success); box-shadow: 0 0 9px rgba(89,200,137,.45); }.catalog-status[data-kind="fallback"] > span { background: #e5a949; }.catalog-status[data-kind="loading"] > span { animation: status-pulse 1.2s ease-in-out infinite; }
@keyframes status-pulse { 50% { opacity: .3; transform: scale(.75); } }
.product-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }.product-card { position: relative; min-height: 432px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s; }.product-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.24); box-shadow: 0 24px 60px rgba(0,0,0,.25); }.product-card:focus-within { outline: 2px solid var(--accent); outline-offset: 3px; }.product-open { width: 100%; min-height: 430px; padding: 0; display: flex; flex: 1; flex-direction: column; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.product-cover { position: relative; height: 236px; display: grid; place-items: center; overflow: hidden; }.product-cover::before, .product-cover::after { content: ""; position: absolute; transition: transform .6s cubic-bezier(.2,.7,.2,1); }.product-card:hover .product-cover::before { transform: scale(1.07) rotate(4deg); }.cover-orbit { background: radial-gradient(circle at 50% 50%, #4b1823, #171016 68%); }.cover-orbit::before { width: 180px; height: 85px; border: 1px solid rgba(255,91,108,.5); border-radius: 50%; transform: rotate(-15deg); }.cover-sonora { background: linear-gradient(145deg,#172035,#13141c); }.cover-sonora::before { width: 190px; height: 130px; background: repeating-radial-gradient(ellipse at 50% 105%,transparent 0 13px,rgba(114,137,255,.35) 14px 15px,transparent 16px 28px); }.cover-lume { background: radial-gradient(circle at 50% 48%,rgba(255,190,72,.3),#25170e 45%,#11100e); }.cover-lume::before { width: 92px; height: 92px; border-radius: 50%; background: radial-gradient(circle at 35% 28%,#ffea9f,#ff9d2e 38%,#7c2c0e); box-shadow: 0 0 55px rgba(255,158,46,.5); }.cover-nexo { background: linear-gradient(145deg,#10312f,#101519); }.cover-nexo::before { width: 150px; height: 150px; border: 1px solid rgba(81,218,191,.4); transform: rotate(45deg); box-shadow: 25px 25px 0 rgba(81,218,191,.07),-25px -25px 0 rgba(81,218,191,.07); }.cover-bruma { background: radial-gradient(ellipse at 50% 90%,#747c82,#343940 40%,#17191d 75%); }.cover-bruma::before { width: 190px; height: 80px; border-radius: 50%; background: rgba(220,226,229,.12); filter: blur(16px); }.cover-pulso { background: linear-gradient(145deg,#35143e,#13111b); }.cover-pulso::before { width: 120px; height: 120px; border: 1px solid rgba(227,110,238,.6); border-radius: 50%; box-shadow: 0 0 0 25px rgba(227,110,238,.08),0 0 0 50px rgba(227,110,238,.04); }
.app-icon { position: relative; z-index: 2; width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(12,13,16,.65); box-shadow: 0 18px 35px rgba(0,0,0,.28); backdrop-filter: blur(12px); font-size: 2rem; font-weight: 800; }.product-badge { position: absolute; top: 15px; left: 15px; z-index: 3; padding: 6px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(8,9,11,.47); color: #aaaab0; text-transform: uppercase; letter-spacing: .11em; font-size: .48rem; backdrop-filter: blur(10px); }.favorite-button { position: absolute; top: 13px; right: 13px; z-index: 4; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(8,9,11,.47); cursor: pointer; backdrop-filter: blur(10px); font-size: 1rem; transition: background .2s, transform .2s; }.favorite-button:hover { transform: scale(1.07); }.favorite-button.is-favorite { background: var(--accent); border-color: var(--accent); }
.product-info { flex: 1; padding: 21px 22px 19px; display: flex; flex-direction: column; }.product-heading { display: flex; justify-content: space-between; align-items: start; gap: 15px; }.product-heading h3 { font-size: 1.45rem; }.product-heading > span { padding: 5px 7px; border-radius: 5px; background: rgba(89,200,137,.09); color: #73d49b; text-transform: uppercase; letter-spacing: .09em; font-size: .46rem; white-space: nowrap; }.product-developer { margin: 7px 0 0; color: #6f6f77; font-size: .68rem; }.product-description { margin: 15px 0 20px; color: #94949b; font-size: .8rem; line-height: 1.5; }.product-meta { margin-top: auto; padding-top: 15px; display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); color: #717178; font-size: .6rem; }.product-meta strong { color: #aaaab0; font-weight: 600; }
.empty-state { margin-top: 30px; padding: 75px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); }.empty-state > span { color: var(--accent); font-size: 2rem; }.empty-state h3 { margin-top: 13px; font-size: 1.55rem; }.empty-state p { color: var(--muted); }.empty-state .button { margin-top: 14px; }

.trust { min-height: 900px; padding-top: 120px; padding-bottom: 120px; display: grid; grid-template-columns: minmax(370px,.85fr) minmax(0,1fr); align-items: center; gap: clamp(60px,9vw,150px); background: #0c0d10; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.trust-visual { position: relative; }.scan-window { border: 1px solid var(--line); border-radius: 22px; background: #111217; box-shadow: 0 35px 80px rgba(0,0,0,.3); overflow: hidden; }.scan-header { height: 48px; padding: 0 16px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); }.scan-header > span { width: 6px; height: 6px; border-radius: 50%; background: #3a3b41; }.scan-header small { margin-left: auto; color: #55565d; font-size: .55rem; letter-spacing: .1em; }.scan-icon { width: 80px; height: 80px; margin: 34px auto 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(145deg,#ff5b6c,#9f0b24); box-shadow: 0 17px 40px rgba(239,51,77,.22); font-size: 2.4rem; font-weight: 850; }.scan-status { margin: 0 28px 22px; padding: 14px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .68rem; }.scan-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }.scan-status span { color: #87878e; }.scan-status strong { color: #77d69e; font-size: .62rem; }.scan-window ul { margin: 0; padding: 0 28px 30px; list-style: none; }.scan-window li { padding: 11px 0; display: flex; justify-content: space-between; gap: 15px; color: #74747c; font-size: .65rem; }.scan-window li + li { border-top: 1px solid rgba(255,255,255,.055); }.scan-window li strong { color: #b7b7bc; font-weight: 550; }.visual-caption { display: block; margin-top: 13px; color: #55555c; text-align: center; font-size: .58rem; }.trust-copy > p { max-width: 630px; margin: 32px 0 0; color: #9999a0; line-height: 1.75; }.trust-list { margin-top: 47px; border-top: 1px solid var(--line); }.trust-list article { padding: 22px 0; display: grid; grid-template-columns: 45px 1fr; gap: 15px; }.trust-list article + article { border-top: 1px solid var(--line); }.trust-list article > span { color: var(--accent); font-size: .57rem; letter-spacing: .1em; }.trust-list h3 { font-size: 1rem; letter-spacing: -.02em; }.trust-list p { margin: 7px 0 0; color: #77777e; font-size: .75rem; line-height: 1.55; }

.developers { padding-top: 110px; padding-bottom: 110px; }.developers-inner { min-height: 510px; padding: clamp(35px,6vw,78px); display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; border-radius: var(--radius-lg); background: var(--accent); color: white; overflow: hidden; }.developer-copy .section-index { color: rgba(255,255,255,.65); }.developer-copy h2 em { color: #2a090f; }.developer-copy > p { max-width: 610px; margin: 28px 0 35px; color: rgba(255,255,255,.77); line-height: 1.7; }.pipeline { position: relative; padding-left: 42px; }.pipeline::before { content: ""; position: absolute; top: 15px; bottom: 15px; left: 8px; width: 1px; background: rgba(255,255,255,.35); }.pipeline div { position: relative; min-height: 74px; padding: 0 0 22px 20px; display: grid; grid-template-columns: 45px 1fr; }.pipeline div::before { content: ""; position: absolute; left: -38px; top: 7px; width: 9px; height: 9px; border: 3px solid var(--accent); border-radius: 50%; background: white; }.pipeline span { font-size: .58rem; letter-spacing: .1em; opacity: .7; }.pipeline strong { font-size: .92rem; }.pipeline small { grid-column: 2; margin-top: 5px; color: rgba(255,255,255,.65); font-size: .63rem; }

.site-footer { min-height: 260px; padding-top: 60px; padding-bottom: 35px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 35px; border-top: 1px solid var(--line); }.footer-brand { font-size: .9rem; }.site-footer > p { margin: 0; color: #74747b; font-size: .72rem; line-height: 1.6; }.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; color: #828289; font-size: .7rem; }.site-footer nav a:hover { color: white; }.site-footer > small { grid-column: 1 / -1; align-self: end; color: #505057; font-size: .58rem; letter-spacing: .08em; }

.product-dialog { width: min(900px,calc(100% - 30px)); max-height: 92vh; padding: 0; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: #101115; color: white; box-shadow: 0 40px 100px rgba(0,0,0,.55); overflow: auto; }.product-dialog::backdrop { background: rgba(3,4,6,.8); backdrop-filter: blur(9px); }.dialog-close { position: sticky; top: 16px; z-index: 5; float: right; width: 42px; height: 42px; margin: 16px 16px -58px 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(8,9,11,.65); color: white; font-size: 1.4rem; cursor: pointer; backdrop-filter: blur(10px); }.dialog-hero { min-height: 285px; display: grid; place-items: center; }.dialog-hero .app-icon { width: 105px; height: 105px; border-radius: 27px; font-size: 2.8rem; }.dialog-body { padding: 34px clamp(23px,6vw,58px) 50px; }.dialog-kicker { color: var(--accent-soft); text-transform: uppercase; letter-spacing: .15em; font-size: .56rem; }.dialog-title-row { margin-top: 10px; display: flex; justify-content: space-between; gap: 20px; align-items: end; }.dialog-title-row h2 { font-size: clamp(2.8rem,7vw,5rem); text-transform: uppercase; }.verified-label { padding: 7px 9px; border-radius: 6px; background: rgba(89,200,137,.09); color: #71d399; text-transform: uppercase; letter-spacing: .1em; font-size: .52rem; white-space: nowrap; }.dialog-description { max-width: 670px; margin: 20px 0 30px; color: #a3a3aa; line-height: 1.7; }.download-panel { padding: 19px; display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: #15161b; }.download-panel p { margin: 0; color: #77777e; font-size: .67rem; }.download-panel strong { display: block; margin-bottom: 4px; color: #c6c6ca; font-size: .75rem; }.download-panel button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }.integrity { margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--line); }.integrity-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }.integrity-grid span { padding: 12px 0; color: #77777e; font-size: .58rem; text-transform: uppercase; letter-spacing: .09em; }.integrity-grid strong { display: block; margin-top: 6px; color: #b8b8bd; font-size: .72rem; text-transform: none; letter-spacing: 0; }.hash-row { margin-top: 15px; padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid var(--line); border-radius: 10px; background: #0c0d10; }.hash-row code { min-width: 0; overflow: hidden; text-overflow: ellipsis; color: #8b8b93; font-size: .65rem; white-space: nowrap; }.hash-row button { border: 0; background: none; color: var(--accent-soft); font-size: .67rem; cursor: pointer; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 26px; transform: translate(-50%,28px); padding: 12px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(24,25,30,.94); color: #d0d0d4; box-shadow: 0 20px 50px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; font-size: .72rem; backdrop-filter: blur(14px); }.toast.is-visible { opacity: 1; transform: translate(-50%,0); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; padding: 135px var(--shell) 100px; }.legal-header { max-width: 850px; margin-bottom: 52px; }.legal-header h1 { font-size: clamp(3.5rem,8vw,7rem); text-transform: uppercase; }.legal-header p { color: var(--muted); line-height: 1.7; }.legal-content { max-width: 850px; }.legal-content section { padding: 28px 0; border-top: 1px solid var(--line); }.legal-content h2 { font-size: 1.25rem; letter-spacing: -.025em; }.legal-content p,.legal-content li { color: #a1a1a8; line-height: 1.8; }.legal-back { display: inline-flex; margin-bottom: 38px; color: var(--accent-soft); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 390px; gap: 50px; }.product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.trust { grid-template-columns: .8fr 1.2fr; gap: 65px; }.developers-inner { gap: 45px; }
}
@media (max-width: 780px) {
  :root { --header-height: 68px; }.desktop-nav,.header-search-button,.header-cta { display: none; }.menu-button { display: block; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; grid-template-columns: 1fr; gap: 65px; }.hero h1 { font-size: clamp(3.45rem,16vw,5.8rem); }.hero-assurances { gap: 13px 20px; }.featured-shell { width: 100%; justify-self: center; }.featured-art { height: 270px; }
  .trust-ribbon { grid-template-columns: repeat(2,1fr); padding-top: 18px; padding-bottom: 18px; }.trust-ribbon div { padding: 12px 15px; }.trust-ribbon div:nth-child(3) { border-left: 0; }
  .catalog { padding-top: 95px; padding-bottom: 100px; }.section-heading { display: block; }.section-heading > p { margin-top: 27px; }.product-grid { grid-template-columns: 1fr; }.product-cover { height: 225px; }
  .trust { padding-top: 90px; padding-bottom: 95px; grid-template-columns: 1fr; }.trust-visual { order: 2; }.trust-copy { order: 1; }
  .developers { padding-top: 70px; padding-bottom: 70px; }.developers-inner { grid-template-columns: 1fr; gap: 60px; }.pipeline { padding-left: 32px; }
  .site-footer { grid-template-columns: 1fr; }.site-footer > small { grid-column: auto; margin-top: 30px; }.integrity-grid { grid-template-columns: repeat(2,1fr); }.download-panel { align-items: stretch; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; }
}
