@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #17201f;
  --ink-soft: #56605d;
  --paper: #f5f4f0;
  --paper-bright: #fbfaf8;
  --line: rgba(23, 32, 31, .12);
  --lime: #d8f35b;
  --lime-deep: #b8d632;
  --pink: #ff79ba;
  --purple: #b8a7ff;
  --dark: #101514;
  --dark-soft: #1e2725;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 70px rgba(20, 27, 26, .08);
  --shadow-card: 0 18px 45px rgba(20, 27, 26, .16);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', 'Noto Sans SC', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open { overflow: hidden; }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; }
img, video { display: block; max-width: 100%; }

.site-shell { overflow-x: clip; }
.section-wrap { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0 18px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { display: grid; width: 37px; height: 37px; place-items: center; overflow: hidden; border-radius: 11px; background: #e8e5df; box-shadow: 0 5px 15px rgba(30, 40, 38, .13); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 17px; letter-spacing: -.04em; line-height: 1; }
.brand-copy small { color: var(--ink-soft); font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .04em; line-height: 1; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; margin-right: 24px; color: #6d7673; font-size: 13px; }
.main-nav a { position: relative; padding: 8px 0; transition: color .2s ease; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; border-radius: 2px; background: var(--ink); content: ''; opacity: 0; transform: scaleX(0); transition: transform .2s ease, opacity .2s ease; }
.main-nav a:hover, .main-nav a.is-current { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-current::after { opacity: 1; transform: scaleX(1); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 49px; padding: 0 21px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-arrow { font-size: 17px; font-weight: 400; line-height: 1; }
.button-dark { min-height: 41px; padding-inline: 17px; background: var(--dark); color: #fff; }
.button-dark:hover { background: #27302e; box-shadow: 0 8px 20px rgba(16, 21, 20, .14); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 13px 26px rgba(185, 214, 50, .2); }
.button-primary:hover { background: #e4ff70; box-shadow: 0 17px 28px rgba(185, 214, 50, .3); }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { background: var(--lime); box-shadow: 0 15px 28px rgba(0, 0, 0, .15); }
.button-outline { border: 1px solid rgba(23, 32, 31, .22); color: var(--ink); }
.button-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.page { min-height: 400px; }
.page[hidden] { display: none; }

.hero { display: grid; grid-template-columns: minmax(0, .86fr) minmax(530px, 1.14fr); align-items: center; min-height: 660px; padding-top: 54px; padding-bottom: 82px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 10px; }
.product-subtitle { margin: 0 0 19px; color: #9aa59f; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .04em; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0; color: #77807c; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .05em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(255, 121, 186, .13); }
.hero h1 { max-width: 620px; margin: 23px 0 23px; font-size: clamp(49px, 6vw, 80px); font-weight: 700; letter-spacing: -.075em; line-height: .98; }
h1 em, h2 em { color: #8aa51b; font-style: normal; }
.hero-description { max-width: 430px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 35px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 12px; font-weight: 700; }
.text-link span { font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 65px; color: #8b9490; font-size: 10px; }
.avatar-stack { display: flex; padding-left: 4px; }
.avatar { display: grid; width: 25px; height: 25px; margin-left: -4px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; color: #fff; font-size: 10px; font-weight: 700; }
.avatar-one { background: var(--dark); }
.avatar-two { background: var(--pink); }
.avatar-three { background: #8fa9a0; }

.hero-visual { position: relative; min-height: 554px; }
.visual-glow { position: absolute; top: 12%; right: -9%; width: 560px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(216, 243, 91, .46), rgba(216, 243, 91, 0) 68%); filter: blur(5px); }
.visual-orbit { position: absolute; border: 1px solid rgba(23, 32, 31, .08); border-radius: 50%; transform: rotate(-16deg); }
.orbit-one { top: 10%; left: 3%; width: 620px; height: 335px; }
.orbit-two { top: 24%; left: 7%; width: 575px; height: 278px; border-color: rgba(23, 32, 31, .05); transform: rotate(13deg); }
.hero-screenshot { position: absolute; top: 58px; right: 2%; width: min(680px, 100%); overflow: hidden; box-shadow: 0 31px 65px rgba(37, 54, 46, .22); }
.hero-screenshot img { width: 100%; height: auto; }
.app-window { position: absolute; top: 58px; right: 2%; width: min(628px, 100%); padding: 8px; border: 1px solid rgba(255,255,255,.68); border-radius: 20px; background: rgba(249, 249, 246, .68); box-shadow: 0 31px 65px rgba(37, 54, 46, .2), 0 0 0 11px rgba(255,255,255,.26); transform: rotate(3.5deg); }
.app-window-topbar { display: flex; align-items: center; justify-content: space-between; height: 30px; padding: 0 12px; color: #8e9792; font-family: 'DM Mono', monospace; font-size: 8px; }
.window-dots { display: flex; gap: 4px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #d6d9d5; }
.window-status { display: flex; align-items: center; gap: 4px; color: #8ca20f; }
.window-status b { width: 5px; height: 5px; border-radius: 50%; background: var(--lime-deep); }
.app-window-content { display: grid; grid-template-columns: 90px 1fr; overflow: hidden; min-height: 340px; border-radius: 13px; background: #f1f0ed; }
.mini-sidebar { display: flex; flex-direction: column; gap: 12px; padding: 14px 9px 10px; background: #e7e6e2; color: #727a76; font-size: 7px; }
.mini-logo { display: grid; width: 22px; height: 22px; margin: 0 auto 17px; overflow: hidden; border-radius: 6px; }
.mini-logo img { width: 100%; height: 100%; object-fit: cover; }
.mini-side-item { display: flex; align-items: center; gap: 6px; padding: 7px 5px; border-radius: 6px; }
.mini-side-item b { color: #9b9e96; font-size: 10px; }
.mini-side-item.active { background: #fafaf8; color: var(--ink); box-shadow: 0 2px 7px rgba(44, 52, 46, .06); }
.mini-side-user { display: grid; width: 22px; height: 22px; margin: auto auto 0; place-items: center; border-radius: 50%; background: var(--pink); color: #fff; font-size: 9px; font-weight: 700; }
.mini-discover { padding: 12px; }
.mini-toolbar { display: flex; align-items: center; gap: 5px; height: 30px; margin-bottom: 10px; color: #777e79; font-size: 7px; white-space: nowrap; }
.mini-pill { padding: 6px 8px; border-radius: 5px; }
.mini-pill.active { background: #fff; color: var(--ink); box-shadow: 0 2px 6px rgba(50, 55, 50, .08); }
.mini-search { margin-left: auto; padding: 6px 8px; border: 1px solid rgba(23,32,31,.08); border-radius: 5px; color: #a3aaa5; }
.mini-wallpaper-grid { display: grid; grid-template-columns: 1.24fr .76fr; gap: 7px; height: 284px; }
.mini-wallpaper { position: relative; overflow: hidden; border-radius: 8px; background: #d7dbd0; }
.mini-wallpaper img { width: 100%; height: 100%; object-fit: cover; }
.mini-wallpaper-main img { object-position: left top; }
.mini-wallpaper-secondary img { object-position: 55% top; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.7); border-radius: 13px; background: rgba(251, 251, 248, .82); box-shadow: 0 14px 32px rgba(45, 59, 53, .14); backdrop-filter: blur(12px); }
.float-card b, .float-card small { display: block; }
.float-card b { font-size: 10px; letter-spacing: -.03em; }
.float-card small { margin-top: 3px; color: #84908a; font-size: 8px; }
.float-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: var(--pink); color: #fff; font-size: 13px; }
.float-card-top { top: 12px; right: -10px; transform: rotate(8deg); }
.float-card-bottom { right: 23px; bottom: 50px; transform: rotate(-4deg); }
.pulse-ring { position: relative; display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(138,165,27,.3); border-radius: 50%; }
.pulse-ring::before { position: absolute; width: 19px; height: 19px; border: 1px solid rgba(138,165,27,.4); border-radius: 50%; content: ''; }
.pulse-ring i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-deep); }
.visual-caption { position: absolute; bottom: 3px; left: 11px; color: #929995; font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .04em; line-height: 1.7; transform: rotate(-7deg); }
.visual-caption strong { color: var(--ink); font-size: 10px; }

.marquee-band { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--lime); color: var(--ink); }
.marquee-track { display: flex; align-items: center; justify-content: space-around; min-width: 1100px; height: 58px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .11em; white-space: nowrap; }
.marquee-track i { color: var(--pink); font-size: 16px; font-style: normal; }

.feature-section { padding-top: 128px; padding-bottom: 130px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading h2, .showcase-copy h2 { margin: 17px 0 0; font-size: clamp(34px, 4.4vw, 57px); letter-spacing: -.07em; line-height: 1.05; }
.section-heading > p:last-child { max-width: 300px; margin: 0 0 4px; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 330px; padding: 27px; overflow: hidden; border-radius: var(--radius-md); }
.feature-card-dark { background: var(--dark); color: #fff; }
.feature-card-lilac { background: var(--purple); }
.feature-card-pink { background: var(--pink); }
.feature-number { position: absolute; top: 25px; right: 27px; color: rgba(255,255,255,.45); font-family: 'DM Mono', monospace; font-size: 10px; }
.feature-card-lilac .feature-number, .feature-card-pink .feature-number { color: rgba(23,32,31,.42); }
.feature-icon { display: grid; width: 55px; height: 55px; margin-bottom: 77px; place-items: center; border-radius: 16px; background: rgba(255,255,255,.13); font-size: 25px; }
.feature-card-lilac .feature-icon, .feature-card-pink .feature-icon { background: rgba(255,255,255,.34); }
.feature-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.05em; }
.feature-card p { max-width: 235px; margin: 0; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.8; }
.feature-card-lilac p, .feature-card-pink p { color: rgba(23,32,31,.68); }
.feature-tag { position: absolute; bottom: 27px; left: 27px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .06em; opacity: .55; }

.product-showcase { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; padding-bottom: 140px; }
.showcase-copy > p:not(.eyebrow) { max-width: 330px; margin: 25px 0 30px; color: var(--ink-soft); font-size: 13px; line-height: 1.9; }
.showcase-screens { position: relative; min-height: 390px; }
.screen-card { position: absolute; overflow: hidden; border-radius: 14px; background: #ddd; box-shadow: var(--shadow-card); aspect-ratio: 1024 / 700; }
.screen-card img { width: 100%; height: 100%; object-fit: contain; }
.screen-card-back { top: 40px; left: 12%; width: 64%; }
.screen-card-front { top: 7px; right: 8%; width: 73%; }
.screen-label { position: absolute; right: 1%; bottom: 3px; color: var(--ink); font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .07em; line-height: 1.6; transform: rotate(-5deg); }
.screen-label b { color: #92a81d; font-size: 11px; }

.download-banner { display: flex; align-items: center; justify-content: space-between; min-height: 245px; margin-bottom: 100px; padding: 45px 66px; overflow: hidden; border-radius: var(--radius-lg); background: var(--dark); color: #fff; }
.eyebrow-light { color: rgba(255,255,255,.52); }
.download-banner h2 { margin: 19px 0 0; font-size: clamp(33px, 4vw, 52px); letter-spacing: -.07em; line-height: 1; }
.download-banner h2 em { color: var(--lime); }
.download-banner::after { width: 260px; height: 260px; margin-right: -40px; border: 1px solid rgba(216,243,91,.13); border-radius: 50%; content: ''; box-shadow: 0 0 0 34px rgba(216,243,91,.04), 0 0 0 68px rgba(216,243,91,.03); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 25px; padding-bottom: 34px; border-top: 1px solid var(--line); color: #8b9490; font-family: 'DM Mono', monospace; font-size: 9px; }
.footer-brand .brand-copy strong { font-family: 'Manrope', sans-serif; color: var(--ink); font-size: 15px; }
.footer-brand .brand-mark { width: 31px; height: 31px; border-radius: 9px; }
.site-footer > a:last-child { color: var(--ink); }

.browse-hero { background: var(--dark); color: #fff; }
.browse-intro { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 397px; padding-top: 46px; padding-bottom: 47px; }
.browse-intro h1 { position: relative; z-index: 1; margin: 20px 0 15px; font-size: clamp(48px, 6vw, 74px); letter-spacing: -.08em; line-height: .98; }
.browse-intro h1 em { color: var(--lime); }
.browse-intro > div:first-child > p:last-child { max-width: 395px; margin: 0; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.8; }
.browse-orbit-art { position: relative; width: 300px; height: 300px; margin-right: 90px; border: 1px solid rgba(216,243,91,.28); border-radius: 50%; transform: rotate(-15deg); }
.browse-orbit-art::before, .browse-orbit-art::after { position: absolute; border: 1px solid rgba(255,121,186,.23); border-radius: 50%; content: ''; }
.browse-orbit-art::before { inset: 33px -18px; transform: rotate(32deg); }
.browse-orbit-art::after { inset: -18px 33px; transform: rotate(-33deg); }
.browse-orbit-art span { position: absolute; top: 74px; left: 115px; color: var(--lime); font-size: 105px; font-weight: 800; letter-spacing: -.13em; transform: rotate(15deg); }
.browse-orbit-art i { position: absolute; top: 15px; right: 25px; color: var(--pink); font-size: 27px; font-style: normal; }
.browse-orbit-art b { position: absolute; right: -35px; bottom: 45px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.62); font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: .12em; transform: rotate(-11deg); }
.browse-content { padding-top: 64px; padding-bottom: 100px; }
.browse-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.browse-toolbar-heading { display: grid; gap: 13px; }
.browse-toolbar-heading strong { font-size: 26px; letter-spacing: -.06em; }
.search-box { display: flex; align-items: center; width: min(310px, 100%); height: 46px; padding-left: 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); }
.search-box:focus-within { border-color: var(--ink); background: #fff; box-shadow: 0 6px 17px rgba(23,32,31,.06); }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.search-box input::placeholder { color: #9ba29e; }
.search-box button { width: 45px; height: 45px; background: transparent; color: #87918c; font-size: 20px; }
.category-sticky { position: sticky; z-index: 12; top: 0; margin-top: 31px; padding: 14px 0; background: rgba(245,244,240,.93); box-shadow: 0 1px 0 rgba(23,32,31,.08); backdrop-filter: blur(12px); }
.category-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.category-row::-webkit-scrollbar { display: none; }
.category-chip { flex: 0 0 auto; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #77817c; font-size: 11px; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.category-chip:hover, .category-chip.is-active { border-color: var(--dark); background: var(--dark); color: #fff; }
.wallpaper-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 25px; }
.wallpaper-card { position: relative; min-width: 0; padding: 0; overflow: hidden; border-radius: 18px; background: #dce0da; text-align: left; transform: translateZ(0); transition: transform .25s ease, box-shadow .25s ease; }
.wallpaper-card:hover, .wallpaper-card:focus-visible { outline: 0; box-shadow: 0 22px 38px rgba(23,32,31,.18); transform: translateY(-5px); }
.card-media { position: relative; aspect-ratio: 1.35 / 1; overflow: hidden; background: linear-gradient(135deg, #cbd5d1, #e4cbd4); }
.media-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg, #b6c0bb, #d6bfd0); color: rgba(255,255,255,.78); font-size: clamp(45px, 8vw, 100px); font-weight: 800; letter-spacing: -.15em; }
.card-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03) 45%, rgba(0,0,0,.48)); content: ''; pointer-events: none; }
.card-media img, .card-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.2,1), opacity .3s ease; }
.card-media video { opacity: 0; }
.wallpaper-card:hover .card-media img, .wallpaper-card:focus-visible .card-media img { transform: scale(1.045); }
.wallpaper-card.is-video-playing .card-media video { opacity: 1; }
.wallpaper-card.is-video-playing .card-media img { opacity: .05; }
.card-badge { position: absolute; z-index: 1; top: 13px; left: 13px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(23,32,31,.34); color: #fff; backdrop-filter: blur(8px); font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .04em; }
.card-badge .live-dot, .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(216,243,91,.15); }
.card-content { position: absolute; z-index: 2; right: 15px; bottom: 14px; left: 15px; display: flex; align-items: end; justify-content: space-between; gap: 10px; color: #fff; }
.card-content h3 { overflow: hidden; margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }
.card-content p { max-width: 120px; overflow: hidden; margin: 4px 0 0; color: rgba(255,255,255,.7); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.card-open { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; font-size: 17px; font-weight: 300; }
.gallery-status { display: grid; min-height: 260px; margin-top: 25px; place-items: center; border: 1px dashed rgba(23,32,31,.18); border-radius: 18px; color: #8b9490; font-size: 12px; }
.gallery-status[hidden] { display: none; }
.gallery-status.is-error { color: #9a6464; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 36px; }
.pagination[hidden] { display: none; }
.pagination-button { min-width: 98px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: 10px; transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease; }
.pagination-button:hover:not(:disabled) { border-color: var(--dark); background: var(--dark); color: #fff; }
.pagination-button:disabled { cursor: default; opacity: .35; }
.pagination-page { min-width: 62px; color: #7d8782; font-family: 'DM Mono', monospace; font-size: 10px; text-align: center; }
.skeleton-card { overflow: hidden; border-radius: 18px; background: #e7e6e1; }
.skeleton-media { aspect-ratio: 1.35 / 1; background: linear-gradient(100deg, #e5e4df 20%, #f1f0eb 42%, #e5e4df 62%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

.modal-backdrop { position: fixed; z-index: 30; inset: 0; display: grid; padding: 24px; place-items: center; background: rgba(9,13,12,.7); backdrop-filter: blur(12px); }
.modal-backdrop[hidden] { display: none; }
.modal { position: relative; width: min(870px, 100%); max-height: min(720px, calc(100vh - 48px)); overflow: auto; border-radius: 25px; background: var(--paper-bright); box-shadow: 0 30px 80px rgba(0,0,0,.3); animation: modal-in .25s ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.75); color: var(--ink); font-size: 22px; font-weight: 300; line-height: 1; }
.modal-close:hover { background: #fff; }
.wallpaper-detail-modal { display: grid; grid-template-columns: 1.13fr .87fr; overflow: hidden; }
.detail-preview { min-height: 465px; background: #d7ded9; }
.detail-preview img, .detail-preview video { width: 100%; height: 100%; min-height: 465px; object-fit: cover; }
.detail-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 53px 43px; }
.detail-kicker { display: flex; align-items: center; gap: 9px; color: #86908b; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .05em; }
.detail-content h2 { margin: 18px 0 13px; font-size: 31px; letter-spacing: -.065em; line-height: 1.1; }
.detail-content > p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.85; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 34px; }
.detail-tag { padding: 6px 9px; border-radius: 999px; background: #e9e8e2; color: #69736e; font-size: 9px; }
.download-modal { width: min(495px, 100%); padding: 54px 53px 47px; text-align: center; }
.download-modal .eyebrow { justify-content: center; }
.download-mark { display: grid; width: 65px; height: 65px; margin: 0 auto 24px; place-items: center; overflow: hidden; border-radius: 19px; box-shadow: 0 13px 28px rgba(30,40,38,.16); }
.download-mark img { width: 100%; height: 100%; object-fit: cover; }
.download-modal h2 { margin: 18px 0 15px; font-size: 31px; letter-spacing: -.07em; line-height: 1.12; }
.download-modal h2 em { color: #8ba61d; }
.download-modal > p:not(.eyebrow) { margin: 0 auto; color: var(--ink-soft); font-size: 12px; line-height: 1.9; }
.download-actions { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 31px; }
.text-link-muted { color: #8b9490; font-size: 11px; font-weight: 500; }
.text-link-muted:hover { color: var(--ink); }
.download-note { display: block; margin-top: 27px; color: #a0a8a3; font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .04em; }
.toast { position: fixed; z-index: 50; top: 50%; left: 50%; max-width: min(390px, calc(100% - 48px)); padding: 18px 24px; border: 1px solid rgba(216,243,91,.25); border-radius: 16px; background: var(--dark); color: #fff; box-shadow: 0 22px 55px rgba(0,0,0,.28); font-size: 13px; font-weight: 600; line-height: 1.5; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, calc(-50% + 12px)); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, -50%); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; clip-path: inset(50%); }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; gap: 18px; padding-top: 67px; }
  .hero-copy { max-width: 620px; }
  .hero-visual { width: min(700px, 100%); margin: 0 auto; }
  .product-showcase { gap: 35px; }
  .browse-orbit-art { margin-right: 0; transform: scale(.84) rotate(-15deg); }
}

@media (max-width: 760px) {
  .section-wrap, .site-header { width: min(100% - 36px, 620px); }
  .site-header { flex-wrap: wrap; padding-top: 18px; }
  .main-nav { order: 3; width: 100%; justify-content: space-between; gap: 10px; margin: 0; border-top: 1px solid var(--line); }
  .main-nav a { padding: 13px 0 5px; }
  .header-download { min-height: 37px; }
  .hero { min-height: auto; padding-top: 55px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(46px, 13vw, 67px); }
  .hero-description { font-size: 13px; }
  .hero-proof { margin-top: 43px; }
  .hero-visual { min-height: 380px; margin-top: 24px; }
  .hero-screenshot { top: 35px; right: 2%; width: 94%; }
  .app-window-content { grid-template-columns: 62px 1fr; min-height: 250px; }
  .mini-sidebar { padding: 10px 6px; font-size: 6px; }
  .mini-sidebar .mini-side-item { gap: 4px; padding-inline: 3px; }
  .mini-discover { padding: 7px; }
  .mini-toolbar { gap: 2px; overflow: hidden; }
  .mini-pill { padding: 5px 6px; }
  .mini-search { display: none; }
  .mini-wallpaper-grid { height: 210px; }
  .float-card { transform: scale(.82); }
  .float-card-top { top: 2px; right: -14px; }
  .float-card-bottom { right: 4px; bottom: 8px; }
  .visual-caption { bottom: 0; left: 0; }
  .feature-section { padding-top: 82px; padding-bottom: 83px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading h2 { margin-bottom: 18px; }
  .feature-grid { grid-template-columns: 1fr; gap: 11px; }
  .feature-card { min-height: 260px; }
  .feature-icon { margin-bottom: 42px; }
  .product-showcase { display: flex; flex-direction: column; align-items: stretch; gap: 42px; padding-bottom: 90px; }
  .showcase-screens { min-height: 280px; }
  .screen-card-back { height: auto; }
  .screen-card-front { height: auto; }
  .download-banner { display: block; min-height: 0; margin-bottom: 65px; padding: 38px 28px; }
  .download-banner .button { margin-top: 28px; }
  .download-banner::after { display: none; }
  .site-footer { flex-wrap: wrap; padding-bottom: 25px; }
  .site-footer > span { order: 3; width: 100%; }
  .browse-intro { min-height: 430px; padding-top: 65px; }
  .browse-orbit-art { position: absolute; right: -76px; bottom: -42px; opacity: .65; }
  .browse-intro h1 { font-size: clamp(48px, 13vw, 70px); }
  .browse-toolbar { display: block; }
  .search-box { width: 100%; margin-top: 27px; }
  .wallpaper-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-content { right: 10px; bottom: 10px; left: 10px; }
  .card-content h3 { font-size: 12px; }
  .card-open { width: 25px; height: 25px; }
  .wallpaper-detail-modal { display: block; max-height: calc(100vh - 30px); }
  .detail-preview, .detail-preview img, .detail-preview video { min-height: 270px; max-height: 44vh; }
  .detail-content { padding: 28px 25px 32px; }
  .detail-content h2 { font-size: 26px; }
  .download-modal { padding: 45px 26px 38px; }
}

@media (max-width: 410px) {
  .header-download { padding-inline: 13px; font-size: 10px; }
  .brand-copy small { display: none; }
  .main-nav { font-size: 11px; }
  .wallpaper-grid { grid-template-columns: 1fr; }
  .card-media { aspect-ratio: 1.5 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
