:root {
  --ink: #111816;
  --slate: #51635d;
  --muted: #7c8c86;
  --paper: #ffffff;
  --mist: #f3faf6;
  --mint: #43d6a0;
  --mint-deep: #15976c;
  --cyan: #27b9c8;
  --line: rgba(17, 40, 31, .12);
  --night: #0d1512;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.section-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.home-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1538px, calc(100% - 96px));
  height: 116px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}
.home-brand, .footer-brand { display: inline-flex; width: max-content; }
.home-brand img {
  display: block;
  width: clamp(190px, 16vw, 284px);
  height: auto;
  opacity: 1;
  filter: saturate(1.45) brightness(.74) contrast(1.3) drop-shadow(0 0 .55px rgba(12, 142, 98, .95));
}
.home-links { display: flex; gap: 34px; color: #52645e; font-size: 13px; font-weight: 600; }
.home-links a, .update-link, .wishlist-button { transition: color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease; }
.home-links a:hover { color: var(--ink); }
.home-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.update-link {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}
.update-link:hover { transform: translateY(-1px); background: #fff; }
.wishlist-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 20px;
  color: #073d2a;
  border: 1px solid rgba(8, 113, 76, .16);
  border-radius: 999px;
  background: linear-gradient(135deg, #7aefbd 0%, #43d6a0 55%, #32cfa2 100%);
  box-shadow: 0 11px 28px rgba(32, 181, 126, .22), inset 0 1px 0 rgba(255,255,255,.55);
  font: 750 12px/1 var(--sans);
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: default;
}
.wishlist-button span { font-size: 16px; line-height: .7; transition: transform .2s ease; }
.wishlist-button:hover { transform: translateY(-2px); background: linear-gradient(135deg, #8df4c9 0%, #4bdba7 58%, #35d3a5 100%); box-shadow: 0 15px 32px rgba(32, 181, 126, .28), inset 0 1px 0 rgba(255,255,255,.65); }
.wishlist-button:hover span { transform: translateX(2px); }

.landing-hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #f9fdfb;
}
.landing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.5) 34%, transparent 58%);
}
.hero-scene {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1538px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: clamp(205px, 24vh, 275px);
}
.hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero-copy p {
  width: max-content;
  margin: 30px 0 0;
  color: transparent;
  background: linear-gradient(100deg, #36ad6a 0%, var(--mint) 42%, var(--cyan) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.025em;
}
.scroll-indicator {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  left: 0;
  width: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #52655e;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-indicator i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #0d7654;
  border: 1px solid rgba(21, 151, 108, .25);
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 24px rgba(30, 98, 70, .12);
  font-size: 18px;
  font-style: normal;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

.process-section { padding: 132px 0 146px; background: var(--mist); }
.section-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}
.kicker {
  color: var(--mint-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-intro h2, .remote-heading h2, .essentials h2 {
  margin: 17px 0 0;
  font-size: clamp(52px, 6.6vw, 90px);
  font-weight: 580;
  letter-spacing: -.055em;
  line-height: .98;
}
.section-intro > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 68px;
}
.process-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(30, 74, 57, .075);
  transition: transform .35s ease, box-shadow .35s ease;
}
.process-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(30, 74, 57, .12); }
.process-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: radial-gradient(circle at 64% 42%, #fbfffd 0%, #eef8f3 56%, #e4f1ea 100%); }
.process-media > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.process-play .process-media > img { object-position: center; }
.process-press .process-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 45.35%;
  top: 61.7%;
  width: 9.9%;
  height: 1px;
  transform: rotate(-38deg);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(150,248,211,.72), rgba(116,241,194,.08));
}
.process-copy { min-height: 205px; padding: 25px 28px 29px; }
.step-number { color: var(--mint-deep); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.process-copy h3 { margin: 20px 0 7px; font-size: 27px; font-weight: 620; letter-spacing: -.035em; line-height: 1.15; }
.process-copy p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.55; }

.press-point {
  position: absolute;
  left: 45.35%;
  top: 61.7%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.press-point {
  z-index: 2;
  width: 7px;
  height: 7px;
  background: #c8ffea;
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 0 0 4px rgba(92,235,181,.11), 0 0 13px rgba(92,235,181,.58);
  animation: pressContact 2.55s cubic-bezier(.45,0,.22,1) infinite;
}
.press-point::before {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(137,247,205,.56);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(79,225,170,.09);
  animation: pressHalo 2.55s cubic-bezier(.2,.72,.24,1) infinite;
}
.press-arrow {
  position: absolute;
  top: 47%;
  left: 53.2%;
  display: flex;
  align-items: center;
  padding: 7px 10px 6px;
  color: #c7ffe9;
  border: 1px solid rgba(138, 242, 203, .24);
  border-radius: 999px;
  background: rgba(8, 15, 13, .7);
  box-shadow: 0 8px 24px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.34));
}
.press-arrow::before {
  content: none;
}
.press-arrow b { font-size: 8px; font-weight: 750; letter-spacing: .15em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.voice-orbit {
  position: absolute;
  left: 60%;
  top: 51.5%;
  width: 21%;
  aspect-ratio: 1;
  border: 2px solid rgba(67, 214, 160, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: listenPulse 2.4s ease-out infinite;
}
.voice-orbit.orbit-b { animation-delay: 1.2s; }

.remote-section { padding: 144px 0 152px; background: #fff; }
.remote-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.remote-heading h2 { font-size: clamp(54px, 6.2vw, 86px); }
.remote-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--slate); font-size: 17px; line-height: 1.7; }
.product-story-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; align-items: start; margin-top: 70px; }
.product-story { overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: 0 22px 58px rgba(30, 74, 57, .085); }
.story-media { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 3; background: #f3f8f5; }
.story-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.device-states-media { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; padding: 14px; background: linear-gradient(145deg, #f4faf7, #ecf6f1); }
.device-state { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(17,40,31,.08); border-radius: 21px; background: radial-gradient(circle at 50% 42%, #fff, #edf5f1 78%); }
.device-state img { object-fit: cover; object-position: center 49%; }
.state-closed img { object-position: center 55%; }
.device-state span { position: absolute; bottom: 12px; left: 13px; padding: 7px 10px 6px; color: #335349; border: 1px solid rgba(24,94,69,.12); border-radius: 999px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.story-copy { min-height: 215px; padding: 29px 31px 32px; border-top: 1px solid var(--line); }
.story-index { color: var(--mint-deep); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.story-copy h3 { margin: 18px 0 8px; font-size: clamp(25px, 2.25vw, 34px); font-weight: 620; letter-spacing: -.04em; line-height: 1.08; }
.story-copy p { max-width: 560px; margin: 0; color: var(--slate); font-size: 14px; line-height: 1.6; }
.rotation-arcs {
  position: absolute;
  left: 45.7%;
  top: 61.15%;
  width: 13.6%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .52));
}
.rotation-arcs::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(133, 243, 201, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(82, 225, 173, .025), inset 0 0 8px rgba(87, 232, 177, .05);
}
.rotation-indicator {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
  animation: remoteDial 3.1s cubic-bezier(.42,0,.18,1) infinite;
  filter: drop-shadow(0 0 3px rgba(82, 231, 175, .42));
  will-change: transform;
}
.rotation-indicator::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -36deg, #91f6d0 0deg 78deg, transparent 78deg 198deg, rgba(145,246,208,.72) 198deg 276deg, transparent 276deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.8px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.8px));
}
.rotation-tip {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: #91f6d0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.tip-primary { top: 8%; right: 11%; transform: rotate(42deg); }
.tip-secondary { bottom: 20%; left: 2%; opacity: .76; transform: rotate(240deg); }

.essentials { position: relative; overflow: hidden; padding: 138px 0 148px; color: #f0f8f4; background: #0a110f; }
.essentials::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(720px 440px at 8% 8%, rgba(57,208,154,.13), transparent 68%), radial-gradient(620px 420px at 94% 84%, rgba(38,166,180,.08), transparent 70%); }
.essentials-layout { position: relative; }
.essentials-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 86px; align-items: end; }
.essentials-head .kicker { grid-column: 1 / -1; margin-bottom: -64px; }
.kicker-light { color: #72cea9; }
.essentials h2 { font-size: clamp(48px, 6vw, 82px); }
.essentials-head > p { max-width: 480px; margin: 0 0 8px; color: #90a39a; font-size: 16px; line-height: 1.7; }
.essentials-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 9px; margin-top: 56px; }
.essential-card { position: relative; min-height: 174px; overflow: hidden; padding: 21px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.085); border-radius: 21px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.essential-card::after { content: ""; position: absolute; right: -54px; top: -58px; width: 150px; height: 150px; border-radius: 50%; background: rgba(69,222,163,.055); filter: blur(4px); }
.essential-card:hover { transform: translateY(-5px); border-color: rgba(109,235,188,.2); background: linear-gradient(145deg, rgba(54,159,119,.11), rgba(255,255,255,.025)); }
.essential-playlists, .essential-tuner, .essential-metronome, .essential-practice { grid-column: span 3; }
.essential-looper, .essential-record, .essential-more { grid-column: span 4; }
.essential-index { position: absolute; top: 20px; left: 21px; color: #5cd9aa; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.essential-card h3 { position: relative; margin: 48px 0 5px; font-size: 19px; font-weight: 620; letter-spacing: -.025em; }
.essential-card p { position: relative; max-width: 320px; margin: 0; color: #879a91; font-size: 12px; line-height: 1.55; }
.essential-abstract { position: absolute; z-index: 1; top: 19px; right: 19px; width: 82px; height: 58px; color: #65e5b3; transform: scale(.86); transform-origin: top right; }
.essential-abstract i { position: absolute; display: block; }
.essential-playlists .essential-abstract i { right: 0; height: 2px; border-radius: 2px; background: currentColor; box-shadow: -9px 8px 0 rgba(101,229,179,.26); }
.essential-playlists .essential-abstract i:nth-child(1) { top: 8px; width: 76px; }.essential-playlists .essential-abstract i:nth-child(2) { top: 27px; width: 58px; opacity: .65; }.essential-playlists .essential-abstract i:nth-child(3) { top: 46px; width: 38px; opacity: .38; }
.essential-tuner .essential-abstract i:nth-child(1) { right: 6px; top: 2px; width: 58px; height: 58px; border: 1px solid rgba(101,229,179,.38); border-right-color: transparent; border-radius: 50%; transform: rotate(-24deg); }
.essential-tuner .essential-abstract i:nth-child(2) { right: 34px; top: 17px; width: 1px; height: 26px; background: currentColor; transform: rotate(34deg); transform-origin: bottom; box-shadow: 0 0 10px rgba(101,229,179,.35); }
.essential-tuner .essential-abstract i:nth-child(3) { right: 31px; top: 40px; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.essential-metronome .essential-abstract i:nth-child(1) { right: 13px; top: 5px; width: 48px; height: 55px; border: 1px solid rgba(101,229,179,.34); border-radius: 8px 8px 17px 17px; transform: perspective(70px) rotateX(-7deg); }
.essential-metronome .essential-abstract i:nth-child(2) { right: 36px; top: 13px; width: 2px; height: 37px; border-radius: 2px; background: currentColor; transform: rotate(-18deg); transform-origin: bottom; }
.essential-metronome .essential-abstract i:nth-child(3) { right: 42px; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px rgba(101,229,179,.32); }
.essential-practice .essential-abstract i:nth-child(1), .essential-practice .essential-abstract i:nth-child(2) { right: 5px; top: 0; width: 61px; height: 61px; border: 1px solid rgba(101,229,179,.36); border-right-color: transparent; border-radius: 50%; }
.essential-practice .essential-abstract i:nth-child(2) { right: 15px; top: 10px; width: 41px; height: 41px; opacity: .5; transform: rotate(170deg); }
.essential-practice .essential-abstract i:nth-child(3) { right: 29px; top: 23px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid currentColor; }
.essential-looper .essential-abstract i { bottom: 9px; width: 4px; border-radius: 4px; background: currentColor; box-shadow: 10px -10px 0 rgba(101,229,179,.75), 20px 5px 0 rgba(101,229,179,.52), 30px -20px 0 rgba(101,229,179,.8), 40px -5px 0 rgba(101,229,179,.43); }
.essential-looper .essential-abstract i:nth-child(1) { right: 49px; height: 19px; }.essential-looper .essential-abstract i:nth-child(2) { right: 39px; height: 39px; opacity: .5; }.essential-looper .essential-abstract i:nth-child(3) { right: 29px; height: 28px; opacity: .3; }
.essential-record .essential-abstract i:nth-child(1) { right: 6px; top: 1px; width: 58px; height: 58px; border: 1px solid rgba(101,229,179,.34); border-radius: 50%; }
.essential-record .essential-abstract i:nth-child(2) { right: 22px; top: 17px; width: 26px; height: 26px; border-radius: 50%; background: currentColor; box-shadow: 0 0 18px rgba(101,229,179,.22); }
.essential-record .essential-abstract i:nth-child(3) { right: 31px; top: 26px; width: 8px; height: 8px; border-radius: 50%; background: #0a110f; }
.essential-more .essential-abstract i { right: 44px; top: 29px; width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 14px 0 0 rgba(101,229,179,.72), 28px 0 0 rgba(101,229,179,.42), 0 14px 0 rgba(101,229,179,.72), 14px 14px 0 rgba(101,229,179,.42), 28px 14px 0 rgba(101,229,179,.22); }
.essential-more .essential-abstract i:nth-child(2) { opacity: .38; transform: translate(-14px,-14px); }.essential-more .essential-abstract i:nth-child(3) { opacity: .16; transform: translate(14px,-14px); }

.wishlist-close {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(111, 235, 188, .17);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(71,214,161,.115), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}
.wishlist-close::after { content: ""; position: absolute; right: 5%; bottom: -130px; width: 260px; height: 220px; border-radius: 50%; background: rgba(59,214,158,.1); filter: blur(45px); pointer-events: none; }
.wishlist-close > * { position: relative; z-index: 1; }
.wishlist-close h3 { margin: 10px 0 2px; color: #f2faf6; font-size: clamp(27px, 3vw, 38px); font-weight: 590; letter-spacing: -.04em; line-height: 1.05; }
.wishlist-close p { margin: 8px 0 0; color: #8ea198; font-size: 13px; }
.wishlist-button-end { min-width: 176px; padding: 17px 25px; font-size: 14px; }

.home-footer {
  min-height: 116px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: #74847c;
  border-top: 1px solid rgba(255,255,255,.07);
  background: var(--night);
  font-size: 11px;
}
.footer-brand img { display: block; width: 135px; height: auto; filter: saturate(1.25) brightness(1.18) drop-shadow(0 0 .45px rgba(75,222,165,.8)); }
.home-footer p { margin: 0; color: #9aaba2; }
.home-footer > span { justify-self: end; }

@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes pressHalo {
  0%, 18% { opacity: 0; transform: scale(.58); }
  34% { opacity: .92; }
  76%, 100% { opacity: 0; transform: scale(1.48); }
}
@keyframes pressContact {
  0%, 26%, 100% { transform: translate(-50%, -50%) scale(1); }
  40%, 62% { transform: translate(-50%, -50%) scale(.7); box-shadow: 0 0 0 6px rgba(92,235,181,.15), 0 0 18px rgba(92,235,181,.7); }
}
@keyframes listenPulse { 0% { opacity: .55; transform: translate(-50%, -50%) scale(.55); } 80%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.38); } }
@keyframes remoteDial {
  0%, 16%, 100% { transform: rotate(-8deg); }
  48%, 64% { transform: rotate(9deg); }
}

@media (max-width: 980px) {
  .home-nav { width: calc(100% - 48px); grid-template-columns: 1fr auto; }
  .home-links { display: none; }
  .hero-copy { width: calc(100% - 56px); }
  .section-intro, .remote-heading, .essentials-head { grid-template-columns: 1fr; gap: 34px; }
  .section-intro > p, .remote-heading > p { max-width: 660px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { display: grid; grid-template-columns: 1.15fr .85fr; }
  .process-copy { min-height: 0; display: flex; flex-direction: column; justify-content: center; }
  .product-story-grid { grid-template-columns: 1fr; }
  .essentials-head .kicker { grid-column: auto; margin-bottom: -8px; }
  .essential-playlists, .essential-tuner, .essential-metronome, .essential-practice, .essential-looper, .essential-record { grid-column: span 6; }
  .essential-more { grid-column: span 12; }
}

@media (max-width: 680px) {
  .section-shell { width: calc(100% - 32px); }
  .home-nav { width: calc(100% - 32px); height: 84px; gap: 12px; }
  .home-brand img { width: 146px; filter: saturate(1.5) brightness(.68) contrast(1.35) drop-shadow(0 0 .55px rgba(12,142,98,.95)); }
  .home-actions .update-link { display: none; }
  .wishlist-button-nav { gap: 7px; padding: 10px 13px; font-size: 10px; }
  .wishlist-button-nav span { font-size: 13px; }
  .landing-hero { min-height: 720px; height: min(820px, 100svh); background: linear-gradient(180deg, #fff 0%, #f9fdfb 66%, #edf8f3 100%); }
  .landing-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 26%, rgba(255,255,255,.32) 43%, transparent 60%); }
  .hero-scene { inset: 300px 0 auto; width: 100%; height: auto; object-fit: contain; object-position: center top; }
  .hero-copy { width: calc(100% - 32px); padding-top: 116px; }
  .hero-copy h1 { font-size: clamp(48px, 13.8vw, 64px); line-height: .98; }
  .hero-copy p { margin-top: 18px; font-size: 17px; }
  .scroll-indicator { bottom: 16px; }
  .scroll-indicator span { display: none; }
  .process-section, .remote-section { padding: 92px 0 100px; }
  .section-intro h2, .remote-heading h2, .essentials h2 { font-size: 49px; }
  .section-intro > p { font-size: 16px; }
  .process-grid { margin-top: 45px; }
  .process-card { display: block; border-radius: 25px; }
  .process-copy { min-height: 180px; padding: 24px; }
  .process-copy h3 { font-size: 25px; }
  .product-story-grid { margin-top: 46px; }
  .product-story { border-radius: 25px; }
  .story-copy { min-height: 0; padding: 25px 24px 28px; }
  .essentials { padding: 94px 0; }
  .essentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 40px; }
  .essential-playlists, .essential-tuner, .essential-metronome, .essential-practice, .essential-looper, .essential-record { grid-column: auto; }
  .essential-more { grid-column: span 2; }
  .essential-card { min-height: 148px; padding: 17px; border-radius: 18px; }
  .essential-index { top: 16px; left: 17px; }
  .essential-abstract { top: 15px; right: 14px; transform: scale(.66); }
  .essential-card h3 { margin-top: 42px; font-size: 18px; }
  .essential-card p { font-size: 11px; line-height: 1.45; }
  .wishlist-close { margin-top: 40px; padding: 26px 22px; grid-template-columns: 1fr; gap: 23px; border-radius: 21px; }
  .wishlist-close h3 { font-size: 29px; }
  .wishlist-close p { max-width: 280px; font-size: 12px; }
  .wishlist-button-end { width: 100%; min-width: 0; }
  .home-footer { min-height: 104px; padding: 22px 18px; grid-template-columns: 1fr auto; }
  .home-footer p { display: none; }
}

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

:focus-visible { outline: 3px solid rgba(39, 185, 200, .42); outline-offset: 4px; }
