.dd-home {
  --paper: #fbf3e4;
  --paper-deep: #ead5ad;
  --ink: #281006;
  --muted: #7a563e;
  --line: rgba(58, 25, 8, .16);
  --surface: rgba(255, 249, 235, .78);
  --surface-strong: rgba(255, 252, 241, .94);
  --pink: #ff2fb3;
  --purple: #6635ff;
  --cyan: #20d8f5;
  --brown: #3a1608;
  --max: 1500px;
  --ease: cubic-bezier(.2, .75, .18, 1);
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  color: var(--ink);
}

.dd-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 47, 179, .09), transparent 24rem),
    radial-gradient(circle at 86% 24%, rgba(32, 216, 245, .08), transparent 26rem),
    linear-gradient(122deg, #fcf6eb 0%, #f7ead3 52%, #ead2a8 100%);
}

#home-brand-field,
.paper-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#home-brand-field {
  z-index: -5;
  width: 100vw;
  height: 100vh;
  opacity: .5;
}

.paper-wash {
  z-index: -4;
  opacity: .26;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(115deg, rgba(58, 25, 8, .04) 0 1px, transparent 1px 10px),
    radial-gradient(circle at 42% 42%, rgba(58, 25, 8, .05) 0 1px, transparent 1px 14px);
}

.dd-home h1,
.dd-home h2,
.dd-home h3,
.dd-home p {
  margin-top: 0;
}

.dd-hero {
  display: grid;
  grid-template-columns: minmax(460px, .78fr) minmax(680px, 1.22fr);
  gap: clamp(42px, 5vw, 88px);
  align-items: center;
  min-height: min(740px, calc(100vh - 86px));
  padding: clamp(48px, 6.5vh, 92px) 0 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.studio-mark,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: color-mix(in srgb, var(--pink) 72%, var(--brown));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.studio-mark::after,
.section-kicker::after {
  content: "";
  width: 58px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.studio-mark::before,
.section-kicker::before {
  content: "✦";
  font-size: 13px;
  letter-spacing: 0;
}

.dd-home h1 {
  margin-bottom: 26px;
  max-width: 760px;
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "New York", serif;
  font-size: clamp(66px, 6.25vw, 112px);
  line-height: .9;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.dd-home h1 span {
  background: linear-gradient(100deg, var(--pink), var(--purple) 60%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.52;
}

.hero-actions,
.vibe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button.primary {
  border: 1px solid var(--brown);
  background: var(--brown);
  color: #fff5df;
  box-shadow: 0 14px 34px rgba(58, 22, 8, .2);
}

.button.primary::after {
  content: "→";
  margin-left: 12px;
  font-size: 18px;
}

.button.secondary {
  border: 1px solid rgba(58, 25, 8, .22);
  background: rgba(255, 249, 235, .58);
  color: var(--ink);
}

.studio-stamp {
  display: grid;
  place-items: center;
  width: 176px;
  height: 88px;
  margin-top: 28px;
  border: 1px solid rgba(58, 25, 8, .16);
  border-radius: 50%;
  color: rgba(58, 25, 8, .22);
  transform: rotate(-10deg);
}

.studio-stamp strong {
  font-family: Georgia, "Iowan Old Style", "New York", serif;
  font-size: 28px;
  line-height: .9;
}

.studio-stamp span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
  align-self: center;
}

.product-art {
  position: relative;
  min-height: 528px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 35%, rgba(255, 47, 179, .14), transparent 24rem),
    linear-gradient(145deg, rgba(255, 252, 241, .74), rgba(232, 205, 160, .32));
  box-shadow: inset 0 0 0 1px rgba(58, 25, 8, .08), 0 34px 90px rgba(74, 36, 8, .13);
}

.product-art::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(58, 25, 8, .1);
  border-radius: 28px;
  pointer-events: none;
}

.product-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 235, .9), transparent 22%, transparent 76%, rgba(255, 249, 235, .35)),
    radial-gradient(circle at 24% 48%, rgba(255, 255, 255, .6), transparent 20rem);
  pointer-events: none;
}

.neon-backplate {
  position: absolute;
  left: 9%;
  top: 18%;
  width: 74%;
  height: 180px;
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(-1.8deg);
  box-shadow: 0 24px 58px rgba(255, 47, 179, .18);
}

.neon-backplate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
  opacity: .88;
}

.phone-shell {
  position: absolute;
  z-index: 3;
  left: 23%;
  top: 26px;
  width: min(300px, 42%);
  aspect-ratio: 9 / 18.8;
  border: 10px solid #111018;
  border-radius: 46px;
  background: #08050d;
  box-shadow:
    0 30px 82px rgba(16, 8, 4, .3),
    inset 0 0 0 1px rgba(255, 255, 255, .2);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 102px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #050308;
  z-index: 5;
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 35px;
  padding: 42px 24px 24px;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--active-accent, var(--pink)) 52%, transparent), transparent 19rem),
    radial-gradient(circle at 92% 48%, rgba(32, 216, 245, .5), transparent 17rem),
    linear-gradient(180deg, #130820, #07040b 72%);
  color: white;
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.screen-top img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
}

.screen-top span {
  font-size: 13px;
  font-weight: 850;
}

.screen-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-top: 90px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--active-accent, var(--pink)) 46%, transparent), rgba(255, 255, 255, .1));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.screen-card small {
  font-size: 12px;
  font-weight: 850;
  color: rgba(255, 255, 255, .78);
}

.screen-card strong {
  max-width: 235px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .96;
  letter-spacing: -0.04em;
}

.screen-card span {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.screen-list {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: grid;
  gap: 10px;
}

.screen-list span,
.side-panel li {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 820;
}

.side-panel {
  position: absolute;
  z-index: 2;
  right: 5%;
  top: 94px;
  width: 38%;
  min-height: 330px;
  padding: 88px 28px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 35% 45%, color-mix(in srgb, var(--active-accent, var(--pink)) 35%, transparent), transparent 13rem),
    linear-gradient(135deg, #14072d, #062735);
  box-shadow: 0 28px 70px rgba(26, 9, 31, .25);
}

.radar-graphic {
  position: absolute;
  top: 34px;
  right: 38px;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .24) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(255, 255, 255, .13) 0 1px, transparent 1px 30px);
}

.radar-graphic span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--active-accent, var(--pink));
  box-shadow: 0 0 18px currentColor;
}

.radar-graphic span:nth-child(1) { left: 34px; top: 42px; }
.radar-graphic span:nth-child(2) { right: 26px; top: 26px; background: var(--cyan); }
.radar-graphic span:nth-child(3) { right: 42px; bottom: 36px; background: var(--purple); }

.side-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-dock {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 12px;
  width: calc(100% - 74px);
  margin: -74px auto 0;
  padding: 14px;
  border: 1px solid rgba(58, 25, 8, .1);
  border-radius: 24px;
  background: rgba(255, 250, 239, .78);
  box-shadow: 0 18px 48px rgba(66, 33, 8, .16);
  backdrop-filter: blur(18px);
}

.product-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(58, 25, 8, .1);
  border-radius: 18px;
  background: rgba(255, 253, 245, .82);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(51, 24, 8, .08);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.product-tab:hover,
.product-tab.active {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tab-accent, var(--pink)) 72%, rgba(58, 25, 8, .18));
}

.product-tab img {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(58, 25, 8, .18);
}

.product-tab span {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
}

.product-tab small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.product-brief {
  position: absolute;
  z-index: 7;
  right: 6%;
  bottom: 26px;
  width: min(430px, 50%);
  padding: 24px;
  border: 1px solid rgba(58, 25, 8, .1);
  border-radius: 22px;
  background: rgba(255, 250, 239, .88);
  box-shadow: 0 18px 50px rgba(58, 25, 8, .13);
  backdrop-filter: blur(18px);
  display: none;
}

.product-brief > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-brief h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Iowan Old Style", "New York", serif;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: .96;
  letter-spacing: -0.035em;
}

.product-brief p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.brief-chips,
.guardrail-row,
.privacy-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-chips span,
.guardrail-row span,
.privacy-choice span {
  padding: 8px 11px;
  border: 1px solid rgba(58, 25, 8, .12);
  border-radius: 999px;
  background: rgba(255, 248, 235, .68);
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.studio-proof,
.vibe-section,
.release-section,
.site-system,
.catalog-section {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
}

.catalog-section {
  padding: clamp(64px, 6vw, 84px) 0 48px;
}

.dd-home ~ footer.site {
  position: relative;
  z-index: 1;
  background: rgba(246, 237, 220, .9);
  backdrop-filter: saturate(130%) blur(12px);
  -webkit-backdrop-filter: saturate(130%) blur(12px);
}

.studio-proof {
  display: grid;
  grid-template-columns: 1.28fr repeat(3, 1fr);
  gap: 0;
  padding-top: 48px;
}

.studio-proof > div,
.studio-proof article {
  min-height: 180px;
  padding: 0 clamp(24px, 3vw, 46px) 0 0;
}

.studio-proof article {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 46px);
}

.studio-proof h2,
.section-heading h2,
.vibe-copy h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Iowan Old Style", "New York", serif;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .94;
  letter-spacing: -0.04em;
}

.studio-proof > div h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.studio-proof p,
.release-card p,
.release-card small,
.surface-list p,
.catalog-section p,
.vibe-copy p,
.vibe-pillar-board p {
  color: var(--muted);
  line-height: 1.5;
}

.studio-proof article span,
.vibe-pillar-board article span,
.release-card div > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.studio-proof h3 {
  margin: 16px 0 9px;
  font-size: 18px;
  line-height: 1.15;
}

.vibe-section {
  display: grid;
  grid-template-columns: minmax(420px, .76fr) minmax(620px, 1.24fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.vibe-copy {
  position: sticky;
  top: 110px;
}

.vibe-copy h2 {
  max-width: 780px;
}

.vibe-copy p {
  max-width: 650px;
  font-size: 20px;
}

.guardrail-row {
  margin: 24px 0 30px;
}

.vibe-ui {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.vibe-device {
  min-height: 560px;
  padding: 36px 28px;
  border: 10px solid #0a0710;
  border-radius: 46px;
  background:
    radial-gradient(circle at 26% 15%, rgba(255, 47, 179, .55), transparent 16rem),
    radial-gradient(circle at 88% 54%, rgba(32, 216, 245, .4), transparent 17rem),
    linear-gradient(180deg, #12051c, #07040a 78%);
  color: white;
  box-shadow: 0 26px 70px rgba(36, 8, 42, .22);
}

.vibie-composer {
  display: grid;
  gap: 8px;
  margin-top: 92px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 47, 179, .4), rgba(32, 216, 245, .16));
}

.vibie-composer small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 850;
}

.vibie-composer strong {
  font-size: 42px;
  line-height: .95;
  letter-spacing: -0.04em;
}

.vibie-composer span {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 760;
}

.privacy-choice {
  margin-top: 24px;
}

.privacy-choice span {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .78);
}

.vibe-pillar-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vibe-pillar-board article {
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(58, 25, 8, .1);
  border-radius: 20px;
  background: rgba(255, 251, 241, .7);
  box-shadow: 0 16px 42px rgba(58, 25, 8, .06);
}

.vibe-pillar-board article:first-child {
  grid-column: 1 / -1;
  min-height: 176px;
  border-color: rgba(255, 47, 179, .32);
  background:
    radial-gradient(circle at 80% 20%, rgba(32, 216, 245, .14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 47, 179, .12), rgba(255, 251, 241, .76));
}

.vibe-pillar-board h3 {
  margin: 22px 0 8px;
  font-size: 24px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.release-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 340px;
  padding: 24px;
  border: 1px solid rgba(58, 25, 8, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 14rem),
    rgba(255, 250, 239, .74);
  box-shadow: 0 18px 46px rgba(58, 25, 8, .08);
}

.release-card.featured {
  min-height: 390px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 179, .2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 250, 239, .86), rgba(255, 236, 247, .58));
}

.release-card img {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  object-fit: cover;
  margin-bottom: 28px;
  box-shadow: 0 14px 28px rgba(58, 25, 8, .16);
}

.release-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: .98;
  letter-spacing: -0.035em;
}

.release-card a,
.surface-list a,
.mini-catalog a {
  color: inherit;
  text-decoration: none;
}

.release-card > a {
  justify-self: start;
  margin-top: 24px;
  padding: 10px 13px;
  border: 1px solid rgba(58, 25, 8, .16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.surface-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-list a {
  min-height: 190px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.surface-list a + a {
  padding-left: 28px;
}

.surface-list a:last-child {
  border-right: 0;
}

.surface-list span {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Iowan Old Style", "New York", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.mini-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-catalog a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 16px;
  border: 1px solid rgba(58, 25, 8, .12);
  border-radius: 18px;
  background: rgba(255, 250, 239, .7);
}

.mini-catalog img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-catalog span {
  font-weight: 850;
}

.mini-catalog small {
  margin-left: auto;
  color: var(--muted);
  font-weight: 760;
}

@media (max-width: 1220px) {
  .dd-hero,
  .vibe-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .vibe-copy {
    position: relative;
    top: auto;
    max-width: 820px;
  }

  .product-art {
    min-height: 560px;
  }

  .studio-proof,
  .release-grid,
  .surface-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-proof > div,
  .studio-proof article,
  .surface-list a,
  .surface-list a + a {
    padding: 24px;
    border: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .dd-home {
    width: min(100% - 32px, var(--max));
  }

  .dd-hero {
    min-height: 0;
    gap: 34px;
    padding: 38px 0 30px;
  }

  .studio-mark,
  .section-kicker {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .15em;
  }

  .studio-mark::after,
  .section-kicker::after {
    width: 52px;
  }

  .dd-home h1 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: clamp(48px, 14.2vw, 64px);
    line-height: .92;
    letter-spacing: -0.04em;
  }

  .hero-lede,
  .vibe-copy p {
    font-size: 16px;
    line-height: 1.46;
  }

  .hero-lede {
    margin-bottom: 24px;
  }

  .hero-actions,
  .vibe-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 13px;
    white-space: nowrap;
  }

  .button.secondary {
    min-width: 130px;
  }

  .studio-stamp {
    display: none;
  }

  .product-art {
    min-height: 455px;
    border-radius: 24px;
  }

  .product-art::before {
    inset: 18px;
    border-radius: 20px;
  }

  .neon-backplate {
    left: 8%;
    top: 8%;
    width: 86%;
    height: 108px;
    border-radius: 20px;
  }

  .phone-shell {
    left: 50%;
    top: 44px;
    width: min(250px, 70%);
    border-width: 8px;
    border-radius: 38px;
    transform: translateX(-50%);
  }

  .phone-shell::before {
    top: 9px;
    width: 82px;
    height: 21px;
  }

  .phone-screen {
    border-radius: 29px;
    padding: 36px 18px 18px;
  }

  .screen-card {
    margin-top: 64px;
    padding: 18px;
    border-radius: 18px;
  }

  .screen-card strong {
    font-size: clamp(28px, 8vw, 34px);
  }

  .screen-card span {
    font-size: 12px;
  }

  .screen-list {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }

  .screen-list span,
  .side-panel li {
    min-height: 34px;
    font-size: 11px;
  }

  .side-panel {
    display: none;
  }

  .product-dock {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 20px);
    margin-top: -58px;
    padding: 10px;
    gap: 9px;
    border-radius: 20px;
  }

  .product-tab {
    min-height: 68px;
    gap: 9px;
    padding: 10px;
    border-radius: 15px;
  }

  .product-tab img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .product-tab span {
    font-size: 11px;
    line-height: 1.08;
  }

  .product-tab small,
  .product-brief {
    display: none;
  }

  .studio-proof,
  .release-grid,
  .surface-list,
  .vibe-ui,
  .vibe-pillar-board {
    grid-template-columns: 1fr;
  }

  .studio-proof,
  .vibe-section,
  .release-section,
  .site-system,
  .catalog-section {
    padding: 58px 0;
  }

  .studio-proof > div,
  .studio-proof article,
  .surface-list a,
  .surface-list a + a {
    min-height: 0;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .vibe-device {
    min-height: 470px;
  }

  .release-card,
  .release-card.featured {
    min-height: 280px;
  }
}

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