/* ============================================================
   CASE STUDY PAGES
   ============================================================ */

.case-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14,13,11,0.76);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line-2);
}
.case-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  gap: 18px;
}
.case-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-weight: 600;
}
.case-back:hover { color: var(--ink); }
.case-nav-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.case-hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 8vw, 92px);
}
.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.case-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.case-title {
  font-size: clamp(56px, 10vw, 124px);
  margin: 18px 0 24px;
}
.case-title span { color: var(--gold); }
.case-sub {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 54ch;
  line-height: 1.48;
}
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.case-fact {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px;
  background: var(--bg-1);
}
.case-fact span {
  display: block;
  color: var(--ink-4);
  font-size: 10px;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
}
.case-fact b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.case-phone-wrap {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}
.case-phone-wrap::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,216,74,0.16), transparent 68%);
  filter: blur(10px);
}
.case-phone {
  width: min(360px, 82vw);
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(180deg, #2a2620, #15120d);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 48px 110px -44px rgba(0,0,0,0.95);
  position: relative;
  z-index: 1;
}
.case-screen {
  min-height: 610px;
  border-radius: 36px;
  padding: 18px;
  background: #0f0e0c;
  overflow: hidden;
  color: var(--ink);
}
.case-status {
  display: flex;
  justify-content: space-between;
  color: var(--ink-4);
  font-size: 10px;
  margin-bottom: 16px;
}
.plan-card {
  background: linear-gradient(160deg, #242019, #171411);
  border: 1px solid rgba(255,216,74,0.14);
  border-radius: 24px;
  padding: 22px;
}
.plan-card .emoji { font-size: 38px; }
.plan-card h2 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  margin: 12px 0 8px;
}
.plan-card p { color: var(--ink-3); font-size: 14px; }
.case-avatar-row {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.case-avatar-row i {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  background: #332d24;
  border: 2px solid #0f0e0c;
  margin-left: -8px;
}
.case-avatar-row i:first-child { margin-left: 0; }
.case-share-code {
  margin-left: auto;
  color: #ffd84a;
  background: rgba(255,216,74,0.11);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.case-mini-label {
  color: var(--ink-4);
  font-size: 10px;
  letter-spacing: 0.13em;
  margin: 22px 0 10px;
}
.case-vote-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.case-vote {
  display: grid;
  grid-template-columns: 70px 1fr 24px;
  align-items: center;
  gap: 10px;
  background: #1a1714;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 15px;
  padding: 12px;
}
.case-vote b { font-size: 13px; }
.case-vote span {
  height: 7px;
  border-radius: 999px;
  background: rgba(250,246,241,0.08);
  overflow: hidden;
}
.case-vote span i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffa84a, #ffd84a);
}
.case-vote em {
  font-style: normal;
  color: var(--ink-3);
  font-size: 12px;
  text-align: right;
}
.case-lock {
  margin-top: 18px;
  background: #ffd84a;
  color: #1a1409;
  border-radius: 17px;
  padding: 15px;
  text-align: center;
  font-weight: 700;
}

.momentum-page {
  --gold: #F5876B;
  --gold-soft: rgba(245,135,107,0.14);
  --sage: #8FB4E8;
}
.momentum-page .case-phone-wrap::before {
  background: radial-gradient(circle, rgba(143,180,232,0.18), transparent 68%);
}
.momentum-page .case-phone {
  background: linear-gradient(180deg, #242435, #0d0d14);
}
.momentum-page .case-screen {
  background: linear-gradient(180deg, #11111a, #09090e);
}
.momentum-map {
  position: relative;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(143,180,232,0.18);
  background:
    linear-gradient(rgba(143,180,232,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,180,232,0.065) 1px, transparent 1px),
    linear-gradient(135deg, #171824, #222432);
  background-size: 26px 26px, 26px 26px, auto;
}
.momentum-route {
  position: absolute;
  left: 18%;
  top: 58%;
  width: 64%;
  height: 34%;
  border-top: 2px dashed rgba(245,135,107,0.72);
  border-right: 2px dashed rgba(245,135,107,0.72);
  border-radius: 0 48px 0 0;
  transform: rotate(-7deg);
}
.momentum-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,10,14,0.72);
  border: 1px solid rgba(143,180,232,0.28);
  transform: translate(-50%, -50%);
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}
.momentum-map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242,237,227,0.64);
  background: rgba(10,10,14,0.62);
  border-radius: 8px;
  padding: 5px 8px;
}
.momentum-day {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.momentum-strip {
  display: flex;
  height: 32px;
  gap: 4px;
}
.momentum-seg {
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: rgba(242,237,227,0.76);
  font-size: 9px;
  letter-spacing: 0.07em;
}
.momentum-seg.home { background: rgba(143,180,232,0.18); color: #8FB4E8; }
.momentum-seg.out { background: linear-gradient(90deg, rgba(245,135,107,0.34), rgba(232,184,114,0.24)); color: #E8B872; }
.momentum-insight {
  margin-top: 16px;
  border: 1px solid rgba(245,135,107,0.24);
  background: linear-gradient(135deg, rgba(245,135,107,0.14), rgba(143,180,232,0.08));
  border-radius: 18px;
  padding: 16px;
}
.momentum-insight span {
  display: block;
  color: #E8B872;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.momentum-insight p {
  color: rgba(242,237,227,0.84);
  font-size: 13px;
  line-height: 1.5;
}
.momentum-mood {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.momentum-mood i {
  font-style: normal;
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  filter: grayscale(0.55) opacity(0.68);
}
.momentum-mood i.active {
  border: 1px solid rgba(245,135,107,0.52);
  background: rgba(245,135,107,0.15);
  filter: none;
}
.momentum-journal {
  margin-top: 16px;
  border-left: 2px solid rgba(143,180,232,0.45);
  padding-left: 12px;
}
.momentum-journal span {
  color: rgba(242,237,227,0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.momentum-journal p {
  color: rgba(242,237,227,0.78);
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
  margin-top: 5px;
}

.siren-page {
  --gold: #F7931A;
  --gold-soft: rgba(247,147,26,0.14);
  --sage: #4ADEDE;
  --ink: #E8E6E1;
  --ink-2: rgba(232,230,225,0.70);
  --ink-3: rgba(232,230,225,0.46);
}
.siren-page .case-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.siren-page .case-title span {
  color: #F7931A;
}
.siren-console-wrap {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}
.siren-console-wrap::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247,147,26,0.16), transparent 68%);
  filter: blur(12px);
}
.case-siren-console {
  width: min(560px, 92vw);
  border: 1px solid rgba(247,147,26,0.22);
  border-radius: 22px;
  padding: 20px;
  background:
    repeating-linear-gradient(180deg, transparent 0 2px, rgba(255,255,255,0.018) 2px 3px),
    linear-gradient(180deg, #0f0f0e, #070707);
  box-shadow: 0 50px 110px -54px rgba(0,0,0,1), inset 0 0 70px rgba(247,147,26,0.045);
  position: relative;
  z-index: 1;
}
.siren-console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232,230,225,0.48);
  font-size: 11px;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
}
.siren-console-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 10px #ff3b30;
}
.siren-console-top span:last-child {
  margin-left: auto;
  color: #E8C547;
}
.siren-daily {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.siren-disc {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #1a1a1a 28%, #0d0d0d 30%, #1a1a1a 31%, #0d0d0d 46%, #1a1a1a 47%);
  border: 1px solid rgba(247,147,26,0.28);
}
.siren-disc span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F7931A;
}
.siren-track-label {
  color: #F7931A;
  font-size: 10px;
  letter-spacing: 0.13em;
  margin-bottom: 5px;
}
.siren-daily h2 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
}
.siren-daily p {
  color: rgba(232,230,225,0.58);
  font-size: 13px;
}
.siren-play-case {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #080808;
  background: #F7931A;
  font-weight: 800;
}
.siren-wave-case {
  height: 76px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin: 12px 0 18px;
}
.siren-wave-case i {
  flex: 1;
  min-width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #F7931A, rgba(247,147,26,0.22));
  opacity: 0.72;
}
.siren-timeline-case {
  position: relative;
  height: 54px;
  border-top: 1px solid rgba(232,230,225,0.11);
  border-bottom: 1px solid rgba(232,230,225,0.08);
  margin-bottom: 16px;
}
.siren-timeline-case::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 58%;
  height: 3px;
  border-radius: 999px;
  background: #F7931A;
}
.siren-marker {
  position: absolute;
  top: 16px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0A0A0A;
  border: 1px solid rgba(247,147,26,0.4);
  color: #F7931A;
  font-size: 11px;
}
.siren-table {
  display: grid;
  gap: 3px;
}
.siren-table-row {
  display: grid;
  grid-template-columns: 34px 1fr 68px;
  gap: 12px;
  align-items: center;
  border-radius: 9px;
  padding: 10px;
  color: rgba(232,230,225,0.66);
  background: rgba(255,255,255,0.018);
  font-size: 13px;
}
.siren-table-row.active {
  background: rgba(247,147,26,0.12);
  color: #E8E6E1;
}
.siren-table-row .mono {
  color: rgba(232,230,225,0.42);
  font-size: 10px;
}

.peakdex-page {
  --gold: #D45F28;
  --gold-soft: rgba(212,95,40,0.13);
  --sage: #2F6B4F;
  --bg: #F4F0E7;
  --bg-1: #FFFDF7;
  --bg-2: #E6EFE9;
  --ink: #17231E;
  --ink-2: rgba(23,35,30,0.72);
  --ink-3: rgba(23,35,30,0.52);
  --ink-4: rgba(23,35,30,0.38);
  --line: rgba(23,35,30,0.12);
  --line-2: rgba(23,35,30,0.09);
  background: #F4F0E7;
  color: #17231E;
}
.peakdex-page {
  overflow-x: hidden;
}
.peakdex-page .case-nav {
  background: rgba(244,240,231,0.82);
}
.peakdex-page .case-title span {
  color: #2F6B4F;
}
.mobile-break {
  display: none;
}
.peakdex-page .case-hero-grid > * {
  min-width: 0;
}
.peakdex-page .btn-primary {
  background: #2F6B4F;
  color: #FFFDF7;
  box-shadow: 0 18px 42px -26px rgba(47,107,79,0.9);
}
.peakdex-page .btn-primary:hover {
  background: #285A43;
}
.peakdex-page .btn-ghost {
  color: #17231E;
  border-color: rgba(23,35,30,0.16);
}
.peakdex-phone-wrap {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}
.peakdex-phone-wrap::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 72%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(94,151,132,0.22), transparent 58%),
    radial-gradient(circle at 28% 72%, rgba(212,95,40,0.15), transparent 48%);
  filter: blur(12px);
}
.peakdex-device {
  width: min(380px, 84vw);
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(180deg, #315E49, #142821);
  border: 1px solid rgba(23,35,30,0.18);
  box-shadow: 0 44px 95px -46px rgba(23,35,30,0.66);
  position: relative;
  z-index: 1;
}
.peakdex-screen {
  min-height: 610px;
  border-radius: 36px;
  padding: 18px;
  color: #17231E;
  background:
    linear-gradient(rgba(47,107,79,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,107,79,0.07) 1px, transparent 1px),
    linear-gradient(180deg, #FFFDF7, #E7EFE9);
  background-size: 28px 28px, 28px 28px, auto;
  overflow: hidden;
}
.peakdex-top {
  display: flex;
  justify-content: space-between;
  color: rgba(23,35,30,0.48);
  font-size: 10px;
  margin-bottom: 16px;
}
.peakdex-summit-card {
  display: grid;
  grid-template-columns: 1fr 82px;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, #315E49, #608E77);
  color: #FFFDF7;
  box-shadow: 0 22px 42px -30px rgba(23,35,30,0.75);
}
.peakdex-summit-card span {
  display: block;
  color: rgba(255,253,247,0.62);
  font-size: 10px;
  letter-spacing: 0.13em;
  margin-bottom: 7px;
}
.peakdex-summit-card h2 {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 6px;
}
.peakdex-summit-card p {
  color: rgba(255,253,247,0.72);
  font-size: 13px;
}
.peakdex-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #315E49 55%, transparent 56%),
    conic-gradient(#F2B84B 0 83%, rgba(255,253,247,0.22) 83% 100%);
}
.peakdex-ring span {
  margin: 0;
  color: #FFFDF7;
  font: 700 16px var(--mono);
  letter-spacing: 0;
}
.peakdex-trophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.peakdex-trophy {
  min-height: 106px;
  border-radius: 19px;
  padding: 13px;
  display: grid;
  gap: 6px;
  align-content: start;
  border: 1px solid rgba(23,35,30,0.11);
  background: rgba(255,253,247,0.74);
}
.peakdex-trophy span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #FFFDF7;
  background: #2F6B4F;
}
.peakdex-trophy b {
  font-size: 13px;
  line-height: 1.1;
}
.peakdex-trophy em {
  color: rgba(23,35,30,0.48);
  font: 600 9px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.peakdex-trophy.legendary span { background: #D45F28; }
.peakdex-trophy.epic span { background: #4E6DA8; }
.peakdex-trophy.rare span { background: #2F6B4F; }
.peakdex-trophy.uncommon span { background: #8B7447; }
.peakdex-quest {
  margin-top: 14px;
  border-radius: 20px;
  padding: 16px;
  background: #FFFDF7;
  border: 1px solid rgba(23,35,30,0.1);
}
.peakdex-quest span {
  color: rgba(23,35,30,0.42);
  font-size: 10px;
  letter-spacing: 0.13em;
}
.peakdex-quest h3 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  margin: 8px 0 6px;
}
.peakdex-quest p {
  color: rgba(23,35,30,0.58);
  font-size: 12px;
  margin-bottom: 12px;
}
.peakdex-quest div {
  height: 8px;
  border-radius: 999px;
  background: rgba(47,107,79,0.12);
  overflow: hidden;
}
.peakdex-quest i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2F6B4F, #F2B84B);
}
.peakdex-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.peakdex-stats div {
  border-radius: 15px;
  padding: 12px 8px;
  text-align: center;
  background: rgba(47,107,79,0.11);
}
.peakdex-stats b {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}
.peakdex-stats span {
  color: rgba(23,35,30,0.52);
  font-size: 10px;
}

.case-section {
  padding: clamp(56px, 8vw, 106px) 0;
  border-top: 1px solid var(--line-2);
}
.case-section-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.case-section h2 {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.case-section .lede {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 58ch;
}
.case-copy {
  display: grid;
  gap: 18px;
}
.case-copy p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case-card {
  min-height: 210px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.case-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.case-card h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.08;
  margin-bottom: 12px;
}
.case-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.flow-step {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.flow-step b {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.flow-step h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.flow-step p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.case-split-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-list-block {
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: 18px;
  padding: 24px;
}
.case-list-block h3 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 16px;
}
.case-list-block ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.case-list-block li {
  color: var(--ink-2);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.case-list-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.case-cta {
  padding: clamp(64px, 10vw, 120px) 0;
  border-top: 1px solid var(--line-2);
}
.case-cta-box {
  background: linear-gradient(145deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 6vw, 64px);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-end;
}
.case-cta-box h2 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.case-cta-box p {
  color: var(--ink-2);
  max-width: 54ch;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .case-hero-grid,
  .case-section-grid {
    grid-template-columns: 1fr;
  }
  .case-phone-wrap {
    min-height: auto;
  }
  .case-cards,
  .flow,
  .case-facts {
    grid-template-columns: 1fr;
  }
  .case-split-list {
    grid-template-columns: 1fr;
  }
  .case-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .case-nav-meta { display: none; }
  .case-screen { min-height: 560px; }
  .peakdex-page .case-hero {
    padding-top: 72px;
  }
  .peakdex-page .case-title {
    font-size: clamp(36px, 10.4vw, 42px);
    letter-spacing: 0;
  }
  .peakdex-page .mobile-break {
    display: inline;
  }
  .peakdex-page .case-sub,
  .peakdex-page .case-fact b {
    overflow-wrap: anywhere;
  }
  .peakdex-page .case-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .peakdex-page .case-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .peakdex-phone-wrap {
    min-height: auto;
    margin-top: 10px;
  }
  .peakdex-device {
    width: min(326px, 100%);
  }
  .peakdex-screen {
    min-height: 560px;
    padding: 14px;
  }
  .peakdex-summit-card {
    grid-template-columns: 1fr 64px;
    padding: 16px;
  }
  .peakdex-ring {
    width: 62px;
    height: 62px;
  }
  .peakdex-trophy {
    min-height: 96px;
    padding: 11px;
  }
  .peakdex-stats b {
    font-size: 21px;
  }
}
