/**
 * Voice PWA — icon-first, near-zero-text UI (docs/22 §5).
 *
 * Design rules this sheet encodes:
 *  - Every control is a shape, not a word: labels live in aria-label only.
 *  - Forums are told apart by hue + mark, never by text.
 *  - Touch targets never below 56px; primary actions 72–96px.
 *  - Light and dark are both first-class; the OS decides.
 *  - Motion is decoration — everything still reads with it switched off.
 */

/* ---------- tokens ---------- */

:root {
  color-scheme: dark light;

  /* Neutral ramp (dark is the default surface) */
  --bg: #080b13;
  --bg-2: #0e1320;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.09);
  --surface-press: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #eef2ff;
  --text-dim: #93a1c0;

  /* Brand + semantics */
  --accent: #5ce1e6;
  --accent-2: #a78bfa;
  --ok: #34d399;
  --warn: #fbbf24;
  --danger: #fb7185;

  /* Forum identity — one hue per room so they are distinguishable at a glance */
  --f2: #f472b6;
  --f3: #f97316;
  --f4: #22d3ee;
  --f5: #c084fc;
  --f6: #facc15;
  --f7: #4ade80;
  --f8: #94a3b8;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-full: 999px;

  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 0 1px var(--line-strong), 0 10px 30px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur: 0.22s;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-synthesis-weight: none;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f6fc;
    --bg-2: #e7ecf8;
    --surface: rgba(14, 20, 40, 0.05);
    --surface-2: rgba(14, 20, 40, 0.09);
    --surface-press: rgba(14, 20, 40, 0.15);
    --line: rgba(14, 20, 40, 0.12);
    --line-strong: rgba(14, 20, 40, 0.2);
    --text: #0d1426;
    --text-dim: #59657f;
    --accent: #0891b2;
    --accent-2: #7c3aed;
    --shadow-1: 0 2px 8px rgba(20, 30, 60, 0.1);
    --shadow-2: 0 12px 32px rgba(20, 30, 60, 0.14);
    --shadow-glow: 0 0 0 1px var(--line-strong), 0 10px 28px rgba(20, 30, 60, 0.16);
  }
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(120% 90% at 50% -20%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 60%),
    radial-gradient(90% 70% at 90% 110%, color-mix(in srgb, var(--accent-2) 12%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 55%);
  background-attachment: fixed;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
}

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

/* Icons inherit colour and keep a consistent optical weight at every size. */
.ico {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.ico-sm {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.ico-lg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}
.ico-xl {
  width: 44px;
  height: 44px;
  stroke-width: 1.6;
}

/* ---------- shell ---------- */

.app {
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding:
    max(14px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.view {
  width: min(460px, 100%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: rise 0.4s var(--ease) both;
}

.view-center {
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.view[hidden] {
  display: none !important;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ---------- ambient halo ---------- */

.halo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, var(--accent), transparent 58%),
    radial-gradient(circle at 70% 72%, var(--accent-2), transparent 55%);
  filter: blur(6px);
  opacity: 0.9;
  animation: breathe 3.6s ease-in-out infinite;
}
.halo-warn {
  background:
    radial-gradient(circle at 34% 30%, var(--warn), transparent 58%),
    radial-gradient(circle at 70% 72%, var(--danger), transparent 55%);
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

.dots {
  display: flex;
  gap: 8px;
}
.dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.4;
  animation: dotpulse 1.4s ease-in-out infinite;
}
.dots i:nth-child(2) {
  animation-delay: 0.18s;
}
.dots i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes dotpulse {
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* ---------- buttons ---------- */

.btn-round {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-1);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}
.btn-round:active {
  transform: scale(0.93);
  background: var(--surface-press);
}
.btn-round:focus-visible,
.btn-tile:focus-visible,
.net-btn:focus-visible,
.btn-chip:focus-visible,
.pad button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn-round[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.btn-ghost {
  width: 58px;
  height: 58px;
  background: transparent;
  border-color: var(--line);
  color: var(--text-dim);
}
.btn-ghost:active {
  color: var(--text);
}

.btn-accent {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--accent) 24%, transparent),
    color-mix(in srgb, var(--accent-2) 18%, transparent)
  );
  color: var(--text);
}

.btn-ok {
  width: 84px;
  height: 84px;
  border-color: color-mix(in srgb, var(--ok) 55%, transparent);
  background: color-mix(in srgb, var(--ok) 22%, transparent);
  color: color-mix(in srgb, var(--ok) 80%, var(--text));
}

.btn-call {
  width: 92px;
  height: 92px;
  border-color: color-mix(in srgb, var(--ok) 50%, transparent);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--ok) 30%, transparent),
    color-mix(in srgb, var(--accent) 22%, transparent)
  );
  color: color-mix(in srgb, var(--ok) 85%, var(--text));
  animation: callpulse 2.4s ease-in-out infinite;
}
@keyframes callpulse {
  0%,
  100% {
    box-shadow: var(--shadow-1), 0 0 0 0 color-mix(in srgb, var(--ok) 40%, transparent);
  }
  55% {
    box-shadow: var(--shadow-1), 0 0 0 16px transparent;
  }
}

.btn-hangup {
  width: 84px;
  height: 84px;
  border-color: color-mix(in srgb, var(--danger) 55%, transparent);
  background: color-mix(in srgb, var(--danger) 26%, transparent);
  color: color-mix(in srgb, var(--danger) 85%, var(--text));
}

/* Record button: a soft square inside a ring that swells with mic level. */
.btn-rec {
  width: 88px;
  height: 88px;
  border-color: color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 14%, transparent);
}
.rec-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 18px color-mix(in srgb, var(--danger) 70%, transparent);
}
.btn-stop {
  width: 88px;
  height: 88px;
  border-color: color-mix(in srgb, var(--danger) 55%, transparent);
  background: color-mix(in srgb, var(--danger) 22%, transparent);
  color: color-mix(in srgb, var(--danger) 88%, var(--text));
  animation: recording 1.4s ease-in-out infinite;
}
@keyframes recording {
  0%,
  100% {
    box-shadow: var(--shadow-1), 0 0 0 0 color-mix(in srgb, var(--danger) 45%, transparent);
  }
  60% {
    box-shadow: var(--shadow-1), 0 0 0 18px transparent;
  }
}

.btn-chip {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-dim);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-chip:active {
  transform: scale(0.92);
  color: var(--text);
}
.btn-danger {
  color: color-mix(in srgb, var(--danger) 75%, var(--text-dim));
  border-color: color-mix(in srgb, var(--danger) 30%, transparent);
}

.btn-pill {
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.btn-pill-danger {
  border-color: color-mix(in srgb, var(--danger) 45%, transparent);
  color: color-mix(in srgb, var(--danger) 85%, var(--text));
}

/* ---------- 18+ gate ---------- */

.gate-btn {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow);
  transition: transform var(--dur) var(--ease);
}
.gate-btn:active {
  transform: scale(0.94);
}
.gate-num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.gate-num sup {
  font-size: 0.5em;
  vertical-align: super;
}

/* ---------- pairing ---------- */

.ring-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}
.ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: var(--line);
  stroke-width: 5;
}
.ring-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.25s linear, stroke 0.3s var(--ease);
}
.ring-fg.urgent {
  stroke: var(--danger);
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px;
}
.digits {
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}
.digits.access {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.digits.temp {
  font-size: 2.1rem;
  letter-spacing: 0.14em;
  color: var(--text);
  text-shadow: 0 0 24px color-mix(in srgb, var(--accent) 40%, transparent);
}
.countdown {
  font-size: 0.85rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.pair-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.qr {
  border-radius: var(--r-md);
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-2);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.status-dot.pulse {
  animation: dotpulse 1.5s ease-in-out infinite;
}

/* ---------- live shell ---------- */

.live {
  gap: 16px;
}

.top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 2px;
}
.top-spacer {
  flex: 1;
}
.photo-btn {
  cursor: pointer;
}
.conn-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px color-mix(in srgb, var(--ok) 60%, transparent);
  transition: background var(--dur) var(--ease);
}
.conn-dot.warn {
  background: var(--warn);
  box-shadow: 0 0 12px color-mix(in srgb, var(--warn) 60%, transparent);
}
.conn-dot.down {
  background: var(--danger);
  box-shadow: 0 0 12px color-mix(in srgb, var(--danger) 60%, transparent);
  animation: dotpulse 1s ease-in-out infinite;
}

.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  animation: rise 0.3s var(--ease) both;
}
.phase[hidden] {
  display: none !important;
}

/* ---------- netlist ---------- */

.net-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transition: opacity var(--dur) var(--ease);
}
.net-grid.busy,
.net-grid.not-ready {
  opacity: 0.45;
  pointer-events: none;
}

.net-btn {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--tint, var(--text));
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
/* Tinted wash so each room reads as its own place, not a numbered slot. */
.net-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 50% 118%,
    color-mix(in srgb, var(--tint, var(--accent)) 34%, transparent),
    transparent 70%
  );
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease);
}
.net-btn:active {
  transform: scale(0.95);
  border-color: color-mix(in srgb, var(--tint, var(--accent)) 60%, transparent);
}
.net-btn .ico {
  position: relative;
  width: 38px;
  height: 38px;
  stroke-width: 1.7;
}
.net-btn .net-num {
  position: absolute;
  right: 10px;
  bottom: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.net-btn.micro {
  --tint: var(--accent);
}
.net-btn.private {
  --tint: var(--accent-2);
}
.net-btn.f2 { --tint: var(--f2); }
.net-btn.f3 { --tint: var(--f3); }
.net-btn.f4 { --tint: var(--f4); }
.net-btn.f5 { --tint: var(--f5); }
.net-btn.f6 { --tint: var(--f6); }
.net-btn.f7 { --tint: var(--f7); }
.net-btn.f8 { --tint: var(--f8); }

/* The primary call to action is bigger and brighter than the rest. */
.net-btn.cta-primary {
  grid-column: span 3;
  aspect-ratio: 3 / 1.15;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: var(--shadow-2), 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}
.net-btn.cta-primary::before {
  opacity: 1;
}
.net-btn.cta-primary .ico {
  width: 50px;
  height: 50px;
}

.net-btn.closed {
  opacity: 0.28;
  cursor: default;
  filter: grayscale(1);
}
.net-btn.closed::before {
  opacity: 0.2;
}

.net-btn.waiting {
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer {
  50% {
    opacity: 0.55;
  }
}

.net-hint {
  margin: 0;
  min-height: 1.1em;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ---------- cards ---------- */

.card {
  position: relative;
  width: min(300px, 80vw);
  /* Slightly landscape: a square card left a lot of dead space under the face. */
  aspect-ratio: 1 / 0.82;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.avatar {
  width: 148px;
  height: 148px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  background:
    radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 62%),
    var(--surface-2);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}
.avatar.has-photo {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}
.avatar.has-photo .ico {
  display: none;
}
.avatar.live-mic {
  animation: breathe 2.4s ease-in-out infinite;
  border-color: color-mix(in srgb, var(--ok) 45%, transparent);
}

/* Level meter — bars are driven from JS via --lv on each bar. */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 40px;
  pointer-events: none;
}
.wave[hidden] {
  display: none;
}
.wave i {
  width: 5px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--accent) 78%, transparent);
  height: calc(7px + var(--lv, 0.12) * 33px);
  transition: height 90ms linear;
}
.wave-live i {
  background: color-mix(in srgb, var(--ok) 70%, transparent);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--r-full);
  background: var(--danger);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px color-mix(in srgb, var(--danger) 60%, transparent);
  animation: dotpulse 1.2s ease-in-out infinite;
}
.badge[hidden] {
  display: none;
}

.swipe-card {
  touch-action: pan-y;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.swipe-card.swipe-left {
  transform: translateX(-58%) rotate(-6deg);
  opacity: 0;
}
.swipe-card.swipe-right {
  transform: translateX(58%) rotate(6deg);
  opacity: 0;
}

/* ---------- action rows ---------- */

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.browse-actions {
  gap: 10px;
}
.admin-actions {
  gap: 8px;
}
.admin-actions[hidden] {
  display: none !important;
}

.leave-net {
  align-self: center;
}

/* ---------- forum talk / listen ---------- */

.forum-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(320px, 84vw);
}
.btn-tile {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-dim);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-tile:active {
  transform: scale(0.95);
}
.btn-tile-talk {
  color: color-mix(in srgb, var(--ok) 80%, var(--text));
  border-color: color-mix(in srgb, var(--ok) 40%, transparent);
  background: linear-gradient(160deg, color-mix(in srgb, var(--ok) 18%, transparent), transparent);
}

/* ---------- PIN pad ---------- */

.pin-display {
  display: flex;
  gap: 16px;
}
.pin-display i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pin-display i.filled {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(300px, 80vw);
}
.pad button {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.pad button:active {
  transform: scale(0.92);
  background: var(--surface-press);
}

/* ---------- capacity / misc ---------- */

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 46px;
}
.signal-bars span {
  width: 9px;
  border-radius: var(--r-full);
  background: var(--text-dim);
  opacity: 0.4;
}
.signal-bars span:nth-child(1) { height: 30%; }
.signal-bars span:nth-child(2) { height: 55%; }
.signal-bars span:nth-child(3) { height: 80%; }
.signal-bars span:nth-child(4) {
  height: 100%;
  background: var(--danger);
  opacity: 1;
}

.time-warn {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: 46px;
  height: 5px;
  border-radius: var(--r-full);
  background: var(--warn);
  box-shadow: 0 0 18px color-mix(in srgb, var(--warn) 70%, transparent);
  animation: dotpulse 1s ease-in-out infinite;
}
.time-warn[hidden] {
  display: none;
}

/* ---------- accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .swipe-card.swipe-left,
  .swipe-card.swipe-right {
    transform: none;
    opacity: 0.25;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(255, 255, 255, 0.3);
    --line-strong: rgba(255, 255, 255, 0.5);
    --text-dim: #c2cde4;
  }
}

/* Small phones: keep the grid reachable with one thumb. */
@media (max-height: 680px) {
  .card {
    width: min(236px, 64vw);
  }
  .avatar {
    width: 106px;
    height: 106px;
    margin-bottom: 12px;
  }
  .btn-round {
    width: 62px;
    height: 62px;
  }
  .btn-ghost {
    width: 52px;
    height: 52px;
  }
  .net-btn.cta-primary {
    aspect-ratio: 3 / 0.95;
  }
}
