/* ============================================================
   Photoshop landing — concept design
   Artwork + icons: Adobe (product page assets, Spectrum icons)
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #0a0b0e;
  --bg-1:      #101218;
  --bg-2:      #15181f;
  --bg-3:      #1c202a;
  --line:      rgba(255, 255, 255, .09);
  --line-2:    rgba(255, 255, 255, .17);

  /* text */
  --ink:       #f2f4f8;
  --ink-2:     #c4cad6;
  --muted:     #868e9f;

  /* brand */
  --ps:        #31a8ff;
  --ps-soft:   #7ec8ff;
  --ps-deep:   #001e36;
  --violet:    #8b5cff;
  --magenta:   #ff4fd8;
  --adobe:     #eb1000;

  /* type */
  --display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --text: "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  /* rhythm */
  --shell: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(76px, 10vw, 140px);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --ease: cubic-bezier(.22, .68, 0, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.035em; line-height: 1.02; margin: 0; }
p { margin: 0; }
::selection { background: var(--ps); color: var(--ps-deep); }

:focus-visible { outline: 2px solid var(--ps); outline-offset: 3px; border-radius: 4px; }

.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: 10px; left: 10px; z-index: 200;
  padding: 10px 16px; border-radius: var(--r-sm);
  background: var(--ps); color: var(--ps-deep); font-weight: 700;
  transform: translateY(-160%); transition: transform .25s var(--ease);
}
.skip-link:focus { transform: none; }

.shell { width: min(var(--shell), 100% - var(--gutter) * 2); margin-inline: auto; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* film grain over the whole page — keeps the flat dark from banding */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- icons ---------- */
.ic { width: 20px; height: 20px; flex: none; fill: currentColor; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--text); font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap; border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
}
.btn .ic { width: 18px; height: 18px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--ps); color: #04121f;
  box-shadow: 0 10px 30px -10px rgba(49, 168, 255, .8);
}
.btn-primary:hover { background: #5cbcff; transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(49, 168, 255, .95); }

.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.05); }

.btn-quiet { color: var(--ink-2); background: rgba(255,255,255,.05); border-color: var(--line); }
.btn-quiet:hover { color: var(--ink); background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(10, 11, 14, .78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { border-radius: 7px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; }

.nav { display: flex; gap: 6px; margin-inline: auto; }
.nav a {
  position: relative; padding: 8px 14px; border-radius: 999px;
  color: var(--muted); font-size: 15px; font-weight: 500;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover, .nav a.is-current { color: var(--ink); background: rgba(255,255,255,.06); }

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

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); }
.nav-toggle span { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2.5px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: grid; gap: 4px; padding: 8px var(--gutter) 22px;
  background: rgba(10,11,14,.96); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.mobile-nav a { padding: 13px 4px; color: var(--ink-2); font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 14px; border: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(40px, 7vw, 78px) 0 clamp(70px, 9vw, 120px); }

.hero-aura { position: absolute; inset: -180px 0 0; pointer-events: none; overflow: hidden; }
.aura { position: absolute; display: block; border-radius: 50%; filter: blur(90px); opacity: .5; }
.aura-1 { width: 720px; height: 720px; top: -220px; left: -180px; background: radial-gradient(circle, rgba(49,168,255,.55), transparent 66%); }
.aura-2 { width: 640px; height: 640px; top: -80px; right: -200px; background: radial-gradient(circle, rgba(139,92,255,.5), transparent 66%); }
.aura-3 { width: 520px; height: 520px; top: 380px; left: 38%; background: radial-gradient(circle, rgba(255,79,216,.32), transparent 68%); }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center; gap: clamp(36px, 5vw, 64px);
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 7px; margin-bottom: 26px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
}
.pill img { border-radius: 5px; }
.pill i { width: 3px; height: 3px; border-radius: 50%; background: var(--ps); }

h1 {
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 800; letter-spacing: -.05em; line-height: .94;
}
h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--ps) 6%, var(--violet) 52%, var(--magenta) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lede { max-width: 36ch; margin-top: 26px; color: var(--ink-2); font-size: clamp(17px, 1.35vw, 19px); line-height: 1.62; }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }

.trust {
  display: flex; flex-wrap: wrap; gap: clamp(22px, 3vw, 42px);
  margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line);
}
.trust li { display: grid; gap: 2px; }
.trust b { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -.045em; }
.trust b em { font-style: normal; color: var(--muted); font-size: .62em; }
.trust small { color: var(--muted); font-size: 13px; }
.stars { display: flex; gap: 2px; margin-bottom: 5px; color: var(--ps); }
.stars .ic { width: 14px; height: 14px; }

/* ---------- Photoshop window mock ---------- */
.hero-stage { position: relative; }

.ps-window {
  position: relative; z-index: 2; margin: 0;
  border: 1px solid rgba(255,255,255,.13); border-radius: 14px; overflow: hidden;
  background: #1e2027;
  box-shadow: 0 2px 0 rgba(255,255,255,.06) inset, 0 40px 90px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(0,0,0,.5);
  transform: perspective(1800px) rotateY(-7deg) rotateX(2.5deg) translateZ(0);
  transition: transform .9s var(--ease);
}
.hero-stage:hover .ps-window { transform: perspective(1800px) rotateY(-3deg) rotateX(1deg); }

.ps-titlebar {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  height: 38px; padding: 0 12px;
  background: linear-gradient(#2a2d35, #24272e);
  border-bottom: 1px solid rgba(0,0,0,.55);
}
.dots { display: flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: #4b4f59; }
.dots i:first-child { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:last-child { background: #28c840; }
.ps-file { color: #a2a8b5; font-size: 11px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ps-badge { border-radius: 4px; }

.ps-body { display: grid; grid-template-columns: 46px minmax(0, 1fr) 148px; background: #101216; }

.ps-tools {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 0; background: #24272e; border-right: 1px solid rgba(0,0,0,.5);
}
.ps-tools li {
  position: relative; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 7px; color: #9aa1b0;
  transition: color .2s, background .2s;
}
.ps-tools li .ic { width: 17px; height: 17px; }
.ps-tools li:hover { color: #fff; background: rgba(255,255,255,.09); }
.ps-tools li.is-active { color: var(--ps-deep); background: var(--ps); }
.ps-tools span {
  position: absolute; left: calc(100% + 9px); top: 50%; z-index: 5;
  padding: 4px 9px; border-radius: 6px;
  background: #05070b; color: #e9edf5; font-size: 11px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--line-2);
  opacity: 0; transform: translate(-6px, -50%); pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.ps-tools li:hover span { opacity: 1; transform: translate(0, -50%); }

.ps-canvas { position: relative; display: grid; place-items: center; padding: 20px; background: #0b0d11; }
.ps-canvas img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; box-shadow: 0 18px 40px -18px rgba(0,0,0,.9); }

/* marching ants selection */
.ants {
  position: absolute; inset: 20px; pointer-events: none;
  --dash: repeating-linear-gradient(90deg, #fff 0 5px, rgba(0,0,0,.85) 5px 10px);
  --dashv: repeating-linear-gradient(0deg, #fff 0 5px, rgba(0,0,0,.85) 5px 10px);
  background:
    var(--dash) 0 0 / 100% 1.5px repeat-x,
    var(--dash) 0 100% / 100% 1.5px repeat-x,
    var(--dashv) 0 0 / 1.5px 100% repeat-y,
    var(--dashv) 100% 0 / 1.5px 100% repeat-y;
  animation: ants 700ms linear infinite;
}
@keyframes ants {
  to { background-position: 10px 0, -10px 100%, 0 -10px, 100% 10px; }
}

.ps-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 8px;
  background: rgba(6,8,12,.88); color: #fff; font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
}
.ps-chip .ic { width: 15px; height: 15px; color: var(--ps); }
.ps-chip-gen { left: 32px; top: 32px; }

.ps-panel { background: #24272e; border-left: 1px solid rgba(0,0,0,.5); font-size: 11px; }
.ps-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 32px; padding: 0 10px; color: #e6e9f0; font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.45);
}
.ps-panel-head .ic { width: 14px; height: 14px; color: #8a92a1; }
.ps-blend {
  display: flex; justify-content: space-between; padding: 7px 10px;
  color: #8a92a1; border-bottom: 1px solid rgba(0,0,0,.45);
}
.ps-layers li {
  display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 8px;
  padding: 7px 9px; color: #b6bcc9; border-bottom: 1px solid rgba(0,0,0,.35);
}
.ps-layers li.is-active { background: #343945; color: #fff; }
.ps-layers img { width: 30px; height: 23px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.6); }
.ps-layers span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ps-layers .ic { width: 12px; height: 12px; opacity: .55; }

.ps-status {
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  height: 28px; padding: 0 12px;
  background: #24272e; border-top: 1px solid rgba(0,0,0,.5);
  color: #838b9a; font-size: 10.5px;
}
.ps-status-live { display: inline-flex; align-items: center; gap: 6px; color: var(--ps-soft); }
.ps-status-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--ps); box-shadow: 0 0 0 0 rgba(49,168,255,.65); animation: ping 2s var(--ease) infinite; }
@keyframes ping { 70%, 100% { box-shadow: 0 0 0 7px rgba(49,168,255,0); } }

/* floating chips */
.float-chip {
  position: absolute; z-index: 3;
  display: grid; grid-template-columns: auto auto; align-items: center;
  gap: 1px 11px; padding: 11px 16px; border-radius: 13px;
  background: rgba(20, 22, 28, .82);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 50px -20px rgba(0,0,0,.95);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.float-chip .ic { grid-row: span 2; width: 28px; height: 28px; padding: 6px; border-radius: 8px; color: #fff; background: linear-gradient(140deg, var(--ps), var(--violet)); box-sizing: content-box; }
.float-chip b { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.float-chip small { color: var(--muted); font-size: 11.5px; }
.float-harmonize { left: 34px; bottom: -34px; animation: bob 7s ease-in-out infinite; }
.float-select { right: 26px; top: -32px; animation: bob 7s ease-in-out .9s infinite reverse; }
@keyframes bob { 50% { transform: translateY(-11px); } }

/* ============================================================
   APP MARQUEE
   ============================================================ */
.strip { padding: clamp(30px, 4vw, 46px) 0 clamp(38px, 5vw, 58px); border-block: 1px solid var(--line); background: var(--bg-1); }
.strip-label { margin-bottom: 26px; color: var(--muted); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-track li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 22px 13px 14px; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.marquee-track li:hover { border-color: var(--line-2); background: var(--bg-3); color: var(--ink); }
.marquee-track img { width: 34px; height: 34px; border-radius: 8px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 66px); }
.section-label {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  color: var(--ps); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.section-label i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(49,168,255,.14); }
.section-head h2, .everywhere h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 700; letter-spacing: -.045em; }
.section-lede { max-width: 58ch; margin-top: 20px; color: var(--muted); font-size: clamp(16px, 1.25vw, 18px); }

/* ============================================================
   MOTION PLAYER
   ============================================================ */
.motion { padding: var(--section) 0; }

.player {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 10px;
  padding: 10px; border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(49,168,255,.12), rgba(139,92,255,.09) 55%, transparent);
  border: 1px solid var(--line);
}
.player-stage {
  position: relative; overflow: hidden; border-radius: 24px; background: #07080b;
  aspect-ratio: 16 / 10;
}
.player-stage video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .55s var(--ease);
}
.player-stage video.is-active { opacity: 1; }

.player-toggle {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(8,10,14,.7); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px); transition: background .2s, transform .2s var(--ease);
}
.player-toggle:hover { background: rgba(8,10,14,.92); transform: scale(1.06); }
.pp { position: relative; width: 14px; height: 14px; }
.pp::before, .pp::after {
  content: ""; position: absolute; top: 0; width: 4px; height: 14px; border-radius: 1.5px; background: #fff;
  transition: all .25s var(--ease);
}
.pp::before { left: 1px; }
.pp::after { right: 1px; }
.player-toggle.is-paused .pp::before {
  left: 3px; width: 0; height: 0; border-radius: 0;
  background: transparent; border-left: 12px solid #fff;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
}
.player-toggle.is-paused .pp::after { opacity: 0; }

.player-tabs { display: grid; gap: 8px; align-content: start; }
.player-tabs button {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 3px 14px;
  padding: 20px; text-align: left; border-radius: 20px;
  border: 1px solid transparent; color: var(--muted);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.player-tabs button:hover { background: rgba(255,255,255,.04); color: var(--ink-2); }
.player-tabs button[aria-selected="true"] { background: var(--bg-2); border-color: var(--line-2); color: var(--ink); }
.player-tabs .ic { grid-row: span 2; width: 34px; height: 34px; padding: 8px; border-radius: 10px; box-sizing: content-box; background: rgba(255,255,255,.06); color: var(--muted); transition: background .3s, color .3s; }
.player-tabs button[aria-selected="true"] .ic { background: linear-gradient(140deg, var(--ps), var(--violet)); color: #fff; }
.player-tabs b { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.player-tabs small { font-size: 14px; line-height: 1.45; }
/* width is driven by the clip's own currentTime in script.js */
.tab-progress {
  position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--ps), var(--violet));
  transition: width .2s linear;
}

/* ============================================================
   FEATURE BENTO
   ============================================================ */
.features { padding: var(--section) 0; background: var(--bg-1); border-block: 1px solid var(--line); }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card {
  display: flex; flex-direction: column;
  grid-column: span 2; overflow: hidden;
  border-radius: var(--r-lg); background: var(--bg-2); border: 1px solid var(--line);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.card-wide { grid-column: span 3; }

/* full-width banner: art on the left, copy centred beside it */
.card-banner { grid-column: span 6; flex-direction: row; align-items: stretch; }
.card-banner .card-media { flex: 1 1 56%; min-width: 0; }
.card-banner .card-media img { height: 100%; aspect-ratio: auto; }
.card-banner .card-body { flex: 1 1 44%; display: flex; flex-direction: column; justify-content: center; padding: 34px 40px; }
.card-banner p { max-width: 46ch; font-size: 16px; }
.card:hover { border-color: var(--line-2); background: var(--bg-3); transform: translateY(-4px); }

.card-media { overflow: hidden; background: #0d0f13; }
.card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.045); }

.card-body { position: relative; padding: 26px 26px 30px; }
.card-icon {
  display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 18px;
  border-radius: 11px; color: var(--ps); background: rgba(49,168,255,.12); border: 1px solid rgba(49,168,255,.24);
}
.card h3 { font-size: clamp(21px, 1.7vw, 25px); font-weight: 700; letter-spacing: -.03em; }
.card p { margin-top: 11px; color: var(--muted); font-size: 15.5px; line-height: 1.58; }

/* ============================================================
   TOOLS
   ============================================================ */
.tools { padding: var(--section) 0; }
.tool-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.tool-grid li {
  display: grid; justify-items: center; gap: 4px;
  padding: 22px 10px 18px; border-radius: var(--r-md);
  background: var(--bg-1); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.tool-grid li:hover { border-color: rgba(49,168,255,.4); background: var(--bg-2); transform: translateY(-3px); }
.tool-grid .ic { width: 24px; height: 24px; margin-bottom: 10px; color: var(--ink-2); transition: color .25s; }
.tool-grid li:hover .ic { color: var(--ps); }
.tool-grid b { font-size: 13.5px; font-weight: 600; text-align: center; }
.tool-grid small { color: var(--muted); font-size: 11.5px; font-variant-numeric: tabular-nums; }

/* ============================================================
   EVERYWHERE
   ============================================================ */
.everywhere { padding: var(--section) 0; background: var(--bg-1); border-block: 1px solid var(--line); }
.everywhere-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(36px, 5vw, 70px); }

.platforms { display: grid; gap: 10px; margin-top: 34px; }
.platforms li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 2px 14px;
  padding: 15px 18px; border-radius: var(--r-md);
  background: var(--bg-2); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.platforms li:hover { border-color: var(--line-2); transform: translateX(4px); }
.platforms .ic { grid-row: span 2; width: 22px; height: 22px; color: var(--ps); }
.platforms b { font-size: 15.5px; font-weight: 600; }
.platforms small { color: var(--muted); font-size: 13.5px; }

.everywhere-art { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
.everywhere-art img { width: 100%; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 140px) 0; text-align: center; isolation: isolate; }
.cta-art {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(115%);
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 62% 70% at 50% 48%, rgba(6,7,10,.74), rgba(6,7,10,.93) 68%),
    linear-gradient(var(--bg), transparent 24%, transparent 74%, var(--bg));
  backdrop-filter: blur(2px);
}
.cta-inner { display: grid; justify-items: center; }
.cta-inner > img { margin-bottom: 26px; border-radius: 13px; box-shadow: 0 18px 40px -14px rgba(0,0,0,.9); }
.cta h2 { font-size: clamp(36px, 5.4vw, 70px); font-weight: 800; letter-spacing: -.05em; }
.cta > .shell > p { max-width: 46ch; margin-top: 20px; color: var(--ink-2); font-size: clamp(16px, 1.3vw, 19px); }
.cta .hero-cta { justify-content: center; margin-top: 36px; }
.cta-note { color: var(--ink-2); font-size: 13px; font-weight: 600; line-height: 1.45; text-align: left; }
.cta-note small { display: block; color: var(--muted); font-weight: 400; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: clamp(46px, 6vw, 72px) 0 46px; border-top: 1px solid var(--line); background: var(--bg-1); }
.footer-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 34px; align-items: start; }
.footer-brand p { max-width: 34ch; margin-top: 14px; color: var(--muted); font-size: 14.5px; }
.footer-meta { display: grid; gap: 12px; justify-items: start; }
.adobe-mark { height: 20px; width: auto; opacity: .85; }
.footer-meta p { max-width: 62ch; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-meta span { color: #5f6675; font-size: 12.5px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-stage { width: min(100%, 720px); margin-top: 22px; }
  .ps-window { transform: none; }
  .hero-stage:hover .ps-window { transform: none; }
  .lede { max-width: 46ch; }
  .player { grid-template-columns: 1fr; }
  .player-tabs { grid-template-columns: repeat(3, 1fr); }
  .player-tabs button { grid-template-columns: 1fr; padding: 16px; }
  .player-tabs .ic { grid-row: auto; margin-bottom: 8px; }
  .tool-grid { grid-template-columns: repeat(6, 1fr); }
  .everywhere-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header { background: rgba(10,11,14,.8); backdrop-filter: blur(18px); border-bottom-color: var(--line); }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .card, .card-wide { grid-column: span 2; }
  .card-banner { grid-column: span 4; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 76px; }
  .header-inner { height: 64px; }
  .ps-body { grid-template-columns: 40px minmax(0, 1fr); }
  .ps-panel { display: none; }
  .ps-tools li { width: 27px; height: 27px; }
  .ps-tools li:nth-child(n+9) { display: none; }
  .ps-tools span { display: none; }
  .ps-status span:first-child { display: none; }
  .ps-canvas { padding: 12px; }
  .ants { inset: 12px; }
  .ps-chip-gen { left: 16px; top: 16px; bottom: auto; font-size: 11px; padding: 6px 10px; }
  .float-harmonize { left: -12px; bottom: -18px; }
  .float-select { right: -10px; top: -18px; }
  .float-chip { padding: 9px 13px; }
  .float-chip .ic { width: 22px; height: 22px; }
  .float-chip b { font-size: 12.5px; }
  .float-chip small { font-size: 10.5px; }
  .trust { gap: 20px 26px; }
  .player-stage { aspect-ratio: 4 / 3; }
  .player-tabs { grid-template-columns: 1fr; }
  .player-tabs button { grid-template-columns: auto minmax(0,1fr); gap: 2px 12px; }
  .player-tabs .ic { grid-row: span 2; margin-bottom: 0; width: 26px; height: 26px; }
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .card, .card-wide, .card-banner { grid-column: span 1; }
  .card-banner { flex-direction: column; }
  .card-banner .card-media img { aspect-ratio: 16 / 9; }
  .card-banner .card-body { padding: 22px 22px 26px; }
  .card-body { padding: 22px 22px 26px; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-note { text-align: center; }
  .cta .hero-cta { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero-cta .btn { width: 100%; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .trust li:last-child { display: none; }
  .float-select { display: none; }
}

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
