@font-face {
  font-family: 'Arbutus';
  src: url('@fonts/arbutus.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Clock';
  src: url('@fonts/clock.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Fredoka';
  src: url('@fonts/fredoka.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Gula';
  src: url('@fonts/gula.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Maiandra';
  src: url('@fonts/maiandra.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('@fonts/roboto.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Sour Gummy';
  src: url('@fonts/sour-gummy.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Thickword';
  src: url('@fonts/thickword.woff2') format('woff2');
  font-display: swap;
}

:root {
  --app-theme: #121212;
  --app-color: #fff;
  --app-accent: #ffda66;
  --app-blue: #7ba8ff;
  --app-red: #ff806f;
  --app-green: #83d79a;
  --app-purple: #47386b;
  --app-font: 'DM Sans', sans-serif;
  --dimmer: #00000050;
  --app-muted: #ffffff94;
  --app-line: #ffffff1a;
  --font-editorial: 'Fraunces', serif;
  --font-rounded: 'Nunito', sans-serif;
  --slider-mid: 0%;
  --slider-fill: 0%;
  --surface: #ffffff0a;
  --hero-height: 131.25vw;
  --squircle-displacement: 10vw;
  --squircle: shape(from 0 var(--squircle-displacement), curve to var(--squircle-displacement) 0 with 0 0 / 0 0, hline to calc(100% - var(--squircle-displacement)), curve to 100% var(--squircle-displacement) with 100% 0 / 100% 0, vline to calc(100% - var(--squircle-displacement)), curve to calc(100% - var(--squircle-displacement)) 100% with 100% 100% / 100% 100%, hline to var(--squircle-displacement), curve to 0 calc(100% - var(--squircle-displacement)) with 0 100% / 0 100%, close);

  --widget-icon-color: #b0a890;
  --icon-color: var(--widget-icon-color);

  --special-toast-color: #ff6c00;


  --theme-background-image: none;
  --theme-background-opacity: 0;
  --bubbles-fill: #ffffff;

  --squircle-displacement-small: 8.125vw;
  --squircle-small: shape(from 0 var(--squircle-displacement-small), curve to var(--squircle-displacement-small) 0 with 0 0 / 0 0, hline to calc(100% - var(--squircle-displacement-small)), curve to 100% var(--squircle-displacement-small) with 100% 0 / 100% 0, vline to calc(100% - var(--squircle-displacement-small)), curve to calc(100% - var(--squircle-displacement-small)) 100% with 100% 100% / 100% 100%, hline to var(--squircle-displacement-small), curve to 0 calc(100% - var(--squircle-displacement-small)) with 0 100% / 0 100%, close);
}

svg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  fill: var(--icon-color);
  filter: drop-shadow(0.3125vw 0.3125vw 0.3125vw rgba(0,0,0,0.6));
}

body *::-webkit-scrollbar { display: none; }
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; background: var(--app-theme); }
input::-webkit-slider-thumb, input[type="range"] { -webkit-appearance: none; }
input { top: 0; left: 0; border: none; color: inherit; outline: none; font-family: inherit; background: #0000; }
.-body {
  top: 0; left: 0; margin: 0; width: 100%; height: 100%; display: flex; user-select: none; overflow: hidden;
  position: absolute; isolation: isolate; flex-flow: column; align-items: center; flex-direction: column; justify-content: center;
  color: var(--app-color); font-family: var(--app-font); background: var(--app-theme); -webkit-tap-highlight-color: #0000;
}
.-home { width: 100%; height: 100%; display: flex; overflow: hidden; position: relative; flex-flow: column; }
.-home-above {
  inset: 0; z-index: 2; width: 100%; height: 100%; display: flex; overflow: hidden; position: absolute; pointer-events: none;
  scroll-behavior: smooth; scroll-snap-type: x mandatory;
}
.---horizontal-scroll { overflow: auto hidden; }
.-left-panel-overlay, .-right-panel-overlay {
  height: 100%; display: flex; flex: 0 0 87.5vw; pointer-events: none; scroll-snap-stop: always; scroll-snap-align: center;
}

.-center-panel-parent {
  width: 100%;
  height: 100%;
  display: flex;
  flex: 0 0 100vw;
  position: relative;
  overflow: visible;
  pointer-events: none;
  scroll-snap-stop: always;
  scroll-snap-align: center;
}
.-center-panel-parent::before, .-center-panel-parent::after {
top: auto;
  opacity: 0;
  content: "";
  z-index: 40;
  height: 9.375vw;
  min-width: 2.5vw;
  position: absolute;
  align-self: center;
  pointer-events: auto;
  border-radius: 6.25vw;
  transition: opacity 0.3s;
  background: var(--app-accent);
}

.-home-above.---horizontal-scroll .-center-panel-parent::before, .-home-above.---horizontal-scroll .-center-panel-parent::after {
  opacity: 1;
}

.-center-panel-parent::before {
  left: -1.25vw;
  box-shadow: -0.3125vw -0.3125vw 0.9375vw #00000055;
}
.-center-panel-parent::after {
  right: -1.25vw;
  box-shadow: 0.3125vw -0.3125vw 0.9375vw #00000055;
}

.-center-panel {
  width: 100vw; height: 100%; display: flex; flex: 0 0 100vw; position: relative; flex-flow: column; align-items: center;
  pointer-events: auto; overflow: hidden auto; scroll-snap-stop: always; scroll-snap-align: center; justify-content: flex-start;
  background: var(--app-theme);
  box-shadow: -0.3125vw -0.3125vw 0.9375vw rgb(0 0 0 / 60%), 0.3125vw 0.3125vw 0.9375vw rgb(0 0 0 / 60%);

  isolation: isolate;
}
.-hero {
width: 100%;
display: flex;
overflow: hidden;
position: absolute;
transition: height 0.3s;
height: var(--hero-height);
}
.-hero-above {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto hidden;
  position: absolute;
  pointer-events: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
}
.-hero-left-panel-overlay, .-hero-right-panel-overlay {
  height: 100%;
  display: flex;
  flex: 0 0 87.5vw;
  pointer-events: none;
  scroll-snap-stop: always;
  scroll-snap-align: center;
}

.-foot-snap-left .-foot-snap-hold {
  padding: 0 0 0 3.125vw;
}
.-foot-snap-right .-foot-snap-hold {
  padding: 0 4.6875vw 0 0;
}

.-foot-snap-hold, .-play-snap-hold {
  width: 100%; height: 100%; display: flex; position: relative; align-items: center; justify-content: center;
}
.-spring-dot {
  top: 1.25vw;
  position: relative;
  min-width: 1.875vw;
  border-radius: 50%;
  animation: 0.8s ease var(--dot-delay) infinite normal none running tap;
}
@keyframes tap {
  0% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-3.125vw); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.5; }
}
.-hero-center {
width: 100vw;
  min-width: 100vw;
  height: 100%;
  display: flex;
  flex: 0 0 100vw;
  position: relative;
  overflow: hidden;
  flex-flow: column;
  isolation: isolate;
  pointer-events: auto;
  min-height: fit-content;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  background: var(--app-theme);
  box-shadow: -0.3125vw -0.3125vw 0.9375vw rgb(0 0 0 / 60%), 0.3125vw 0.3125vw 0.9375vw rgb(0 0 0 / 60%);
}

.-hero-below {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  flex-flow: column;
  background: inherit;
}
.-hero-below-panels {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.-hero-left-panel, .-hero-right-panel {
  width: 87.5vw;
  height: 100%;
  display: flex;
  position: absolute;
  flex-flow: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s;
}
.-hero-left-panel {
  left: 0;
}
.-hero-right-panel {
  right: 0;
}
.-hero-left-panel.---show-widget-panel, .-hero-right-panel.---show-widget-panel {
  opacity: 1;
  visibility: visible;
}
.-hero-left-panel-box, .-hero-right-panel-box {
flex: 1;
  min-height: 0;
  gap: 3.125vw;
  display: flex;
  position: relative;
  flex-flow: column;
  margin: 0 0 1.5625vw;
  padding: 0 0 1.5625vw;
  overflow: hidden auto;
}
.-hero-left-panel-box.---widgets >:first-child, .-hero-right-panel-box.---widgets >:first-child {
  margin-top: 3.125vw;
}

.-hero-blog {
  flex: 1; z-index: 1; width: 100%; overflow: hidden auto; scroll-behavior: smooth; scroll-snap-type: y mandatory;
  min-height: -webkit-fill-available; overscroll-behavior-block: contain;
}
.-story { width: 100%; height: 100%; display: flex; position: relative; scroll-snap-stop: always; scroll-snap-align: start; }
.-story-card { width: 100%; height: 100%; display: flex; overflow: hidden; position: relative; flex-flow: column; }
.-story-media { flex: 1; min-height: 0; position: relative; background-position: center; background-size: cover; background-repeat: no-repeat; }
.-story-media::after { inset: 0; content: ''; position: absolute; background: linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 16%) 35%, rgb(0 0 0 / 88%) 100%); }



.-push-slider-box {
  width: -webkit-fill-available;
  display: flex;
  position: relative;
  align-items: center;
  min-height: 6.25vw;
  margin: 0 3.125vw;
  justify-content: center;
}
.-push-slider {
  z-index: 1;
  height: 0.9375vw;
  position: relative;
  margin: 0;
  overflow: visible;
  border-radius: 6.25vw;
  width: -webkit-fill-available;
  background: linear-gradient(90deg, #0000 0%, var(--app-accent) var(--slider-mid), #fff var(--slider-fill), var(--dimmer) var(--slider-fill), var(--dimmer) 100%);
}
.-push-slider::-webkit-slider-runnable-track {
  height: 0.9375vw;
  background: #0000;
  border-radius: 6.25vw;
}
.-push-slider::-webkit-slider-thumb {
  width: 4.6875vw;
  height: 4.6875vw;
  border-radius: 50%;
  margin: -1.875vw 0 0;
  -webkit-appearance: none;
  border: 0.625vw solid #fff;
  background: var(--app-accent);
  box-shadow: 0 0 0 0.625vw #ffda6622, 0 0 1.875vw 0.3125vw #ffda6633;
}

.-widget-quota-slider {
  display: flex;
  gap: 3.125vw;
  position: relative;
  flex-flow: column;
  margin: 0 3.125vw;
}
.-widget-quota-value {
  color: var(--app-accent);
  font-size: 3.4375vw;
  margin: 0 0 3.125vw;
}
.-widget-switch-slab {
  display: flex;
  gap: 3.125vw;
  color: #b0a890;
  font-size: 3.75vw;
  margin: 0 3.125vw;
  align-items: center;
  min-height: 14.0625vw;
  clip-path: var(--squircle);
  width: -webkit-fill-available;
  background: var(--surface);
  justify-content: space-between;
}
.-widget-switch {
  height: 8.75vw;
  width: 15.625vw;
  display: flex;
  position: relative;
  align-items: center;
  min-width: 15.625vw;
  margin-right: 3.125vw;
  border-radius: 6.25vw;
  touch-action: manipulation;
  background: var(--dimmer);
  border: 0.625vw solid #0000;
  transition: background 0.3s, transform 0.3s, filter 0.3s;
}
.---switch-on .-widget-switch {
  background: color-mix(in srgb, var(--switch-color) 42%, var(--dimmer));
}
.-widget-switch::before {
  content: "";
  width: 6.25vw;
  height: 6.25vw;
  margin: 0.625vw;
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.625vw 1.875vw #00000099;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}
.---switch-on .-widget-switch::before {
  transform: translateX(6.875vw);
  background: var(--switch-color);
  box-shadow: 0 0.625vw 1.875vw #00000099, 0 0 2.8125vw var(--switch-color);
}
.---switch-on .material-symbols-rounded,
.-widget-switch-slab.---switch-on .-widget-label {
  color: var(--switch-color);
}


.-widget-divider {
  height: 0;
  z-index: 3;
  display: flex;
  position: relative;
  overflow: visible;
  min-height: 0.625vw;
  align-items: center;
  justify-content: center;
  margin: 3.125vw 4.6875vw;
  width: -webkit-fill-available;
  transition: margin 0.3s, min-height 0.3s;
  background: linear-gradient(90deg, #0000, #383220, #0000);
}
.-widget-divider::before {
top: 0;
content: "";
z-index: 40;
width: 7.5vw;
position: relative;
aspect-ratio: 1/1;
border-radius: 50%;
pointer-events: auto;
background: #383220;
border: 1.5625vw solid var(--app-theme);
}
.-story-social-tools {
right: 0;
z-index: 3;
width: 25vw;
height: 100%;
display: flex;
align-items: end;
position: absolute;
flex-flow: column;
pointer-events: none;
justify-content: center;
}
.-story-social-stack {
gap: 0.625vw;
display: flex;
flex-flow: column;
align-items: flex-end;
}

.-story-social-circle-box {
display: flex;
gap: 0.9375vw;
position: relative;
flex-flow: column;
align-items: center;
margin: 0 3.125vw 0 0;
}
.---tool-opposite .-story-social-circle-count {
  order: 1;
}

.-story-social-circle-count {
z-index: 2;
  color: #fff;
  display: flex;
  min-width: 9.375vw;
  font-size: 3.125vw;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}

.-story-social-circle {
width: 10vw;
  height: auto;
  color: #fff;
  display: flex;
  position: relative;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  pointer-events: auto;
  justify-content: center;
  background: var(--dimmer);
  border: 0.9375vw solid #0000;
  text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}


#-svg-sprite {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}
/* existing custom svg shell */
.-story-social-circle .material-symbols-rounded {
height: 100%;
  display: flex;
  font-size: 6.25vw;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: rgb(255 255 255 / 20%);
}

.-vibes-parent {
display: flex;
gap: 1.5625vw;
height: 18.75vw;
width: 20.3125vw;
position: relative;
flex-flow: column;
pointer-events: auto;
overflow: hidden auto;
scroll-behavior: smooth;
align-items: flex-start;
margin: 0 1.5625vw 0 0;
scroll-snap-type: y mandatory;
}
.-vibes-snap {
display: flex;
min-width: 18.75vw;
position: relative;
align-items: center;
aspect-ratio: 1/1;
border-radius: 50%;
margin: 0 3.125vw 0 0;
justify-content: center;
background: var(--dimmer);
border: 1.5625vw solid #0000;
}

.-vibes {
display: flex;
position: relative;
min-width: 18.75vw;
aspect-ratio: 1/1;
align-items: center;
border-radius: 50%;
pointer-events: auto;
justify-content: center;
scroll-snap-align: center;
color: var(--app-accent);
background: var(--dimmer);
}

.-vibes-snap .material-symbols-rounded {
width: 100%;
height: 100%;
display: flex;
font-size: 9.375vw;
align-items: center;
border-radius: 50%;
justify-content: center;
background: rgb(255 255 255 / 10%);
text-shadow: rgba(0, 0, 0, 0.5) 0.15625vw 0.15625vw 0.9375vw;
}
.-vibes-snap-preview {
z-index: 5;
width: 8.75vw;
display: flex;
right: -3.125vw;
bottom: -1.5625vw;
position: absolute;
aspect-ratio: 1/1;
border-radius: 50%;
align-items: center;
justify-content: center;
border: 0.9375vw solid var(--dimmer);
text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}

.-vibes-score {
  bottom: 0;
  z-index: 5;
  width: 8.75vw;
  right: -0.9375vw;
  display: flex;
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 0.9375vw solid var(--dimmer);
}
.-vibes-score::before {
  content: '';
  width: 100%;
  position: absolute;
  aspect-ratio: 1/1;
  background: #4a452d;
  border-radius: inherit;
  transition: background 0.3s;
}

.-vibes.---reacted .-vibes-score::before {
  background: #df4a00;
}

.-vibes-icon {
  position: relative;
}
.-vibes-lottie {
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  pointer-events: none;
  justify-content: center;
}
.-vibes-lottie svg {
  width: 100% !important;
  height: 100% !important;
}

.-vibe-annotation {
z-index: 9600;
gap: 1.5625vw;
display: flex;
position: fixed;
align-items: center;
padding: 1.5625vw;
flex-flow: row;
clip-path: var(--squircle);
background: var(--surface);
}

.-vibe-annotation-hole {
  width: 10vw;
  height: 10vw;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background: var(--dimmer);
  border: 0.9375vw solid rgb(0 0 0 / 18%);
}
.-vibe-annotation-hole .material-symbols-rounded {
  font-size: 6.25vw;
}

.-vibe-token-spend {
  z-index: 9500;
  color: #fff2a8;
  position: fixed;
  pointer-events: none;
  font-family: 'Slackey', sans-serif;
  font-weight: 900;
  font-size: 9.375vw;
  line-height: 1;
  text-shadow: 0.3125vw 0.3125vw 1.25vw #000, 0 0 1.875vw rgb(255 218 102 / 45%);
  filter: drop-shadow(0 0 0.9375vw rgb(255 218 102 / 30%));
  transform: translate(-50%, -50%);
  will-change: left, top, opacity, transform;
}

.-vibe-flight {
  z-index: 700;
  display: flex;
  position: fixed;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  font-size: 10vw;
  transform: translate(-50%, -50%);
  will-change: left, top, transform, opacity;
}

.-vibes-score-count {
  z-index: 1;
  color: #e3dabc;
  font-weight: 800;
  font-size: 3.4375vw;
  text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}
.-progress-ring {
  height: auto;
  inset: 0.625vw;
  position: absolute;
  aspect-ratio: 1/1;
  pointer-events: none;
  transform: rotate(-90deg);
  width: -webkit-fill-available;
}
.-progress-ring-rail {
  fill: none;
  opacity: 0.2;
  stroke-width: 1.875vw;
  stroke: var(--app-accent);
}
.-progress-ring-live {
  fill: none;
  stroke-width: 1.875vw;
  stroke-linecap: round;
  stroke: var(--app-accent);
  transition: stroke-dashoffset .25s linear, stroke .35s;
}
.-vibes-icon {
  width: 100%;
  height: auto;
  display: flex;
  margin: 3.125vw;
  font-size: 8.75vw;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}

.-vibes-icon .material-symbols-rounded {
  color: #fff;
  font-size: 8.75vw;
}

.-vibe-dial {
z-index: 500;
display: flex;
position: fixed;
touch-action: none;
aspect-ratio: 1/1;
border-radius: 50%;
pointer-events: none;
transform-origin: 50% 50%;
transform: translate(-50%, -50%) scale(0.001);
transition: transform 0.36s cubic-bezier(.2,.85,.2,1);
}
.-vibe-dial.---open {
pointer-events: auto;
transform: translate(-50%, -50%) scale(1);
}
.-vibe-candidate {
top: 50%;
left: 50%;
opacity: 0;
display: flex;
width: 18.75vw;
font-size: 10vw;
position: absolute;
aspect-ratio: 1/1;
align-items: center;
border-radius: 50%;
justify-content: center;
transform-origin: 50% 50%;
transition: opacity 0.8s;
background: var(--dimmer);
will-change: transform, opacity;
transform: translate(-50%,-50%);
text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
}
.-vibe-dial.---open .-vibe-candidate.---dial-visible {
opacity: 1;
}
.-vibes-icon.---wow { animation: vibes-wow .48s cubic-bezier(.2,.8,.2,1); }
.-vibe-spark {
  position: fixed;
  z-index: 600;
  pointer-events: none;
  font-size: 7vw;
  animation: vibe-spark .7s ease-out forwards;
}
@keyframes vibes-wow {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.35) rotate(-12deg); }
  70% { transform: scale(.9) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes vibe-spark {
  0% { opacity: 1; transform: translate(0,0) scale(.7); }
  100% { opacity: 0; transform: translate(var(--spark-x),var(--spark-y)) scale(1.3); }
}


.-create-modal-layer {
  inset: 0;
  z-index: 9000;
  opacity: 0;
  display: flex;
  position: fixed;
  visibility: hidden;
  align-items: center;
  pointer-events: none;
  justify-content: center;
  background: rgb(0 0 0 / 58%);
  backdrop-filter: blur(3.125vw);
  transition: opacity .25s, visibility .25s;
}
.-create-modal-layer.---show-create-modal { opacity:1; visibility:visible; pointer-events:auto; }
.-create-modal {
  width: 87.5vw;
  display: flex;
  max-height: 87.5vh;
  overflow: hidden auto;
  position: relative;
  flex-flow: column;
  clip-path: var(--squircle);
  background: var(--surface);
}
.-create-modal-head { display:flex; gap:3.125vw; min-height:15.625vw; align-items:center; margin:0 4.6875vw; }
.-create-modal-title { flex:1; color:#e3dabc; font-size:4.375vw; font-weight:800; }
.-create-modal-close { width:9.375vw; height:9.375vw; display:flex; align-items:center; justify-content:center; clip-path:var(--squircle); background:var(--dimmer); }
.-create-modal-close .material-symbols-rounded { font-size:6.25vw; }
.-create-modal-copy { color:#b0a890; font-size:3.75vw; line-height:5.625vw; margin:0 4.6875vw 3.125vw; }
.-create-modal-steps { display:flex; gap:1.5625vw; flex-flow:column; margin:0 4.6875vw 3.125vw; }
.-create-modal-step { color:#b0a890; font-size:3.4375vw; line-height:5vw; }
.-create-modal-input { min-height:14.0625vw; color:#fff; font:inherit; font-size:3.75vw; outline:none; border:0; padding:0 4.6875vw; margin:0 4.6875vw 3.125vw; clip-path:var(--squircle); background:var(--dimmer); }
.-create-modal-status { min-height:5.625vw; color:#b0a890; font-size:3.125vw; line-height:4.6875vw; margin:0 4.6875vw 3.125vw; }
.-create-modal-status.---error { color:#ff806f; }
.-create-modal-status.---success { color:#96ff36; }
.-create-modal-action { min-height:14.0625vw; color:#121212; display:flex; font-size:3.75vw; font-weight:800; align-items:center; justify-content:center; margin:0 4.6875vw 4.6875vw; clip-path:var(--squircle); background:var(--app-accent); }
.-story-media.---youtube { overflow:hidden; }

.-story-youtube-hit {
  inset: 0;
  z-index: 2;
  position: absolute;
  pointer-events: auto;
}
.-story-media.---youtube .-story-topline,
.-story-media.---youtube .-story-copy {
  z-index: 3;
  pointer-events: none;
}
.-story-media.---youtube .-story-social-tools {
  z-index: 4;
}

.-story-youtube-player { inset:0; z-index:0; width:100%; height:100%; position:absolute; }
.-story-youtube-player iframe { width:100%; height:100%; border:0; }
.-story-youtube-play { left:50%; top:50%; z-index:5; width:18.75vw; height:18.75vw; opacity:0; display:flex; position:absolute; align-items:center; justify-content:center; pointer-events:none; border-radius:50%; color:#fff; background:rgb(0 0 0 / 58%); transform:translate(-50%,-50%); transition:opacity .2s; }
.-story-media.---show-youtube-control .-story-youtube-play { opacity:1; }
.-story-youtube-play .material-symbols-rounded { font-size:10vw; }


.-story-media.---playing .-story-copy {
  opacity: 0;
  pointer-events: none;
}
.-story-copy {
  transition: opacity 0.32s;
}

.-story-media.---video {
  overflow: hidden;
}
.-story-video {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  object-fit: cover;
}
.-story-video-control {
left: 50%;
  top: 50%;
  z-index: 5;
  width: 18.75vw;
  height: 18.75vw;
  opacity: 0;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 50%;
  color: #fff;
  background: rgb(0 0 0 / 58%);
  backdrop-filter: blur(1.5625vw);
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.18s, transform 0.22s;
}
.-story-media.---show-video-control .-story-video-control {
opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
}
.-story-video-control .material-symbols-rounded {
  font-size: 10vw;
}
.-foot-push-slide.---video-seek-mode {
  background: linear-gradient(90deg, #0000 0%, #ff806f var(--slider-mid), #fff var(--slider-fill), rgb(255 128 111 / 22%) var(--slider-fill), var(--dimmer) 100%);
}
.-foot-push-slide.---video-seek-mode::-webkit-slider-thumb {
  background: #ff806f;
}

.-story-topline { top: 5vw; left: 5vw; right: 5vw; z-index: 2; display: flex; position: absolute; align-items: center; justify-content: space-between; }
.-story-brand {
  gap: 2.1875vw; display: flex; position: relative; align-items: center; font-family: var(--font-rounded);
}
.-story-brand-face {
  width: 9.375vw; aspect-ratio: 1/1; position: relative; border-radius: 50%; background-size: cover; background-position: center;
}
.-story-brand-copy { gap: 0.3125vw; display: flex; flex-flow: column; }
.-story-brand-name { color: #fff; font-size: 3.125vw; font-weight: 800; letter-spacing: 0.078125vw; }
.-story-brand-label { color: #ffffffa8; font-size: 2.8125vw; }
.-story-creator {
  color: #fff; display: flex; min-height: 8.125vw; align-items: center; padding: 0 3.125vw; font-size: 2.8125vw;
  clip-path: var(--squircle); background: rgb(0 0 0 / 62%); backdrop-filter: blur(1.25vw);
}
.-story-copy {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  gap: 2.5vw;
  display: flex;
  position: absolute;
  flex-flow: column;
  padding: 0 5vw 5vw;
}
.-story-kicker {
  color: #fff;
  font-weight: 800;
  font-size: 3.125vw;
  letter-spacing: 0.15625vw;
  text-transform: uppercase;
  font-family: var(--font-rounded);
}
.-story-title { max-width: 93.75vw; font-family: var(--font-editorial); font-size: 9.375vw; font-weight: 650; line-height: 0.95; letter-spacing: -0.3125vw; }
.-story-deck { max-width: 90vw; color: var(--app-muted); font-size: 3.75vw; line-height: 1.35; }
.-story-footer { gap: 3.125vw; display: flex; align-items: center; }
.-story-meta { color: var(--app-muted); font-size: 3.125vw; }
.-hero-tools {
  flex: 1; width: 100%; position: absolute; overflow: hidden auto; scroll-behavior: smooth; scroll-snap-type: y mandatory;
  min-height: -webkit-fill-available; overscroll-behavior-block: contain;
}
.-tray {
  flex: 1; inset: 0; width: 100%; height: 100%; display: flex; min-height: 0; position: relative; flex-flow: column; pointer-events: none;
  align-items: stretch; overflow: hidden auto; scroll-behavior: smooth; scroll-snap-type: y mandatory;
}
.---disable-scroll { overflow: hidden; }
.-tray-hero-overlay {
  width: 100%; display: flex; position: relative; pointer-events: none; scroll-behavior: smooth; scroll-snap-stop: always;
  scroll-snap-align: center; min-height: var(--hero-height); overscroll-behavior-inline: contain;
}

.---hero-full .-tray-hero-overlay {
  min-height: 100%;
}
.---hero-full .-tray-surface .-horizontal-divider {
  display: none;
}

.---hero-full .-foot-toolbar {
height: 0;
opacity: 0;
min-height: 0;
display: flex;
align-items: end;
position: relative;
max-height: 18.75vw;
pointer-events: auto;
overflow: auto hidden;
scroll-behavior: smooth;
width: -webkit-fill-available;
scroll-snap-type: x mandatory;
transition: min-height 0.3s, opacity 0.3s;
}
.-foot-search::-webkit-input-placeholder {
  color: #fff;
}

.-tray-surface {
  z-index: 2;
  width: 100%;
  display: flex;
  min-height: 100%;
  position: relative;
  pointer-events: auto;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  scroll-snap-type: x mandatory;
  background: var(--app-theme);

  isolation: isolate;
}

.-horizontal-divider {
  height: 0;
  z-index: 3;
  display: flex;
  position: absolute;
  overflow: visible;
  min-height: 0.625vw;
  align-items: center;
  margin: 0 4.6875vw;
  justify-content: center;
  width: -webkit-fill-available;
  transition: margin 0.3s, min-height 0.3s;
  background: linear-gradient(90deg, #0000, rgb(60 160 255 / 50%), #0000);
}
.-tray-surface .-horizontal-divider::before {
top: 0;
  content: "";
  z-index: 40;
  height: 2.5vw;
  width: 9.375vw;
  position: relative;
  pointer-events: auto;
  margin: -1.25vw auto;
  background: #155797;
  border-radius: 6.25vw;
  box-shadow: -0.3125vw -0.3125vw 0.9375vw #00000055;
}

.-tray-surface-box {
  width: 100%;
  gap: 3.125vw;
  display: flex;
  position: relative;
  align-items: center;
  padding: 3.125vw 0 0;
  flex-direction: column;
  overflow: hidden auto;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  justify-content: flex-start;
  height: -webkit-fill-available;
}
.-tray-placeholder {
  width: 93.75vw; display: flex; position: relative; align-items: center; aspect-ratio: 1/1; justify-content: center;
  clip-path: var(--squircle); background: var(--surface);
}
.-tray-placeholder .material-symbols-rounded { color: var(--app-muted); font-size: 15vw; }
.-play {
width: 0;
height: 0;
left: 50%;
opacity: 0;
z-index: 700;
bottom: 25vw;
margin: auto;
display: flex;
position: absolute;
pointer-events: none;
overflow: auto hidden;
scroll-behavior: smooth;
backdrop-filter: blur(0);
clip-path: var(--squircle);
transform-origin: 50% 100%;
transform: translateX(-50%);
background: var(--dimmer);
scroll-snap-type: x mandatory;
transition: width 0.35s, height 0.35s, opacity 0.2s, backdrop-filter 0.3s;
}
.-play.---show-player {
  opacity: 1;
  height: 25vw;
  width: 93.75vw;
  pointer-events: auto;
  backdrop-filter: blur(1.5625vw);
}
.-play-snap-left, .-play-snap-right {
  display: flex;
  min-width: 12.5vw;
  position: relative;
  height: -webkit-fill-available;
}
.-play-center-bar {
  display: flex;
  margin: 1.5625vw;
  position: relative;
  clip-path: inherit;
  align-items: center;
  scroll-snap-align: center;
  height: -webkit-fill-available;
  background: var(--surface);
  min-width: -webkit-fill-available;
}
.-player-tool-runtime, .-player-tool-shuffle, .-player-tool-previous, .-player-tool-play, .-player-tool-next, .-player-tool-loop, .-player-tool-timer {
  display: flex; align-items: center; justify-content: center;
}
.-player-tool-previous, .-player-tool-next {
  color: #78d9ff;
  max-width: 11.25vw;
  width: auto;
  height: 12.5vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--dimmer);
}
.-player-tool-previous { margin: 0 0 0 1.5625vw; }
.-player-tool-next { margin: 0 1.5625vw 0 0; }
.-player-tool-previous .material-symbols-rounded, .-player-tool-next .material-symbols-rounded { font-size: 7.5vw; }
.-player-tool-play {
  width: auto;
  height: 18.75vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 1.5625vw;
  color: var(--app-accent);
  background: var(--dimmer);
}
.-player-tool-play .material-symbols-rounded {
  width: 100%;
  display: flex;
  font-size: 12.5vw;
  margin: 1.5625vw;
  align-items: center;
  aspect-ratio: 1/1;
  justify-content: center;
  border-radius: inherit;
  background: var(--surface);
}
.-player-tool-shuffle, .-player-tool-loop {
  height: 6.25vw;
  max-width: 6.25vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.-player-tool-shuffle .material-symbols-rounded, .-player-tool-loop .material-symbols-rounded { font-size: 5vw; }
.-player-tool-runtime, .-player-tool-timer {
  min-width: 14.0625vw;
  font-size: 3.125vw;
  letter-spacing: 0.15625vw;
}
.-player-tool-timer { color: #ffda66; }
.-player-tool-runtime { color: #78d9ff; }
.-foot {
width: 100%;
z-index: 100;
display: flex;
position: sticky;
flex-flow: column;
height: fit-content;
pointer-events: none;
justify-content: end;
}
.-foot-lever {
z-index: 10;
bottom: 100%;
display: flex;
height: 9.375vw;
position: absolute;
min-width: 9.375vw;
aspect-ratio: 1/1;
align-items: center;
pointer-events: auto;
justify-content: center;
transition: opacity 0.3s;
margin: auto calc((100% - 9.375vw)/2);
}
.-foot-lever::before { content: ""; height: 1.25vw; position: relative; min-width: 6.875vw; margin: auto 1.25vw; border-radius: 6.25vw; background: var(--app-accent); }
.-foot-toolbar {
height: 0;
opacity: 0;
min-height: 0;
display: flex;
align-items: end;
position: relative;
max-height: 18.75vw;
pointer-events: auto;
overflow: auto hidden;
scroll-behavior: smooth;
width: -webkit-fill-available;
scroll-snap-type: x mandatory;
transition: min-height 0.3s, opacity 0.3s;
}
.-foot-snap-left, .-foot-snap-right {
  height: 12.5vw;
  display: flex;
  min-width: 12.5vw;
  position: relative;
}
.---show-foot-toolbar {
opacity: 1;
min-height: 18.75vw;
}
.-foot-tool {
height: 100%;
min-width: 100%;
display: flex;
position: relative;
align-items: center;
padding: 0 3.125vw;
scroll-snap-align: center;
}
.-foot-find {
  width: 100%; display: flex; height: 12.5vw; position: relative; text-align: center; align-items: center;
  font-size: 3.4375vw; letter-spacing: 0.09375vw; clip-path: var(--squircle); background: var(--dimmer); border: 0.9375vw solid #0000;
}
.-foot-plus {
display: flex;
min-width: 12.5vw;
position: relative;
border-radius: 50%;
aspect-ratio: 1/1;
align-items: center;
justify-content: center;
border: 0.9375vw solid #0000;
transition: opacity 0.3s, margin 0.3s, width 0.3s, border 0.3s;
}
.material-symbols-rounded {
  line-height: 1; direction: ltr; font-size: 6.25vw; word-wrap: normal; font-style: normal; font-weight: normal; text-transform: none;
  white-space: nowrap; display: inline-block; letter-spacing: normal; -webkit-font-smoothing: antialiased; -webkit-font-feature-settings: 'liga';
  font-family: 'Material Symbols Rounded'; font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}
.-foot-go {
width: 12.5vw;
display: flex;
height: 12.5vw;
gap: 1.5625vw;
min-width: 12.5vw;
position: relative;
flex-flow: column;
margin: 0 0 0 auto;
border-radius: 50%;
overflow: hidden auto;
scroll-behavior: smooth;
background: var(--dimmer);
scroll-snap-type: y mandatory;
border: 1.25vw solid #0000;
}
.-foot-go-snap {
  width: 100%;
  display: flex;
  margin: auto;
  position: relative;
  align-items: center;
  aspect-ratio: 1/1;
  justify-content: center;
  border-radius: inherit;
  background: #1e6590;
  text-shadow: 0.15625vw 0.15625vw 0.46875vw #000;
}
.-foot-go-circle {
  width: auto; display: flex; position: relative; flex-flow: column; aspect-ratio: 1/1; background: #326d10; border-radius: inherit;
  scroll-snap-align: center; border: 1.25vw solid #0000; text-shadow: 0.15625vw 0.15625vw 0.46875vw #000; align-items: center; justify-content: center;
}
.-foot-plus .material-symbols-rounded { font-size: 6.875vw; transition: transform 0.18s cubic-bezier(.2,.9,.25,1.35); }
.-foot-plus.---pressed .material-symbols-rounded { transform: scale(0.72) rotate(-8deg); }
.-plus-smartie {
  z-index: 120;
  width: var(--smartie-size);
  height: var(--smartie-size);
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: var(--smartie-color);
  transform: translate(-50%, -50%) scale(0.25);
  animation: smartie-burst 0.62s cubic-bezier(.15,.75,.2,1) var(--smartie-delay) forwards;
}
@keyframes smartie-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
  }
  14% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
  34% {
    opacity: 1;
    transform: translate(calc(-50% + (var(--smartie-x) * .28)), calc(-50% + (var(--smartie-y) * .28))) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--smartie-x)), calc(-50% + var(--smartie-y))) scale(0.72);
  }
}
.-foot-go-circle .material-symbols-rounded { font-size: 8.125vw; }
.-panel-foot .-foot-go-snap { background: #bb6213; }
.-panel-foot .-foot-go-circle { background: var(--app-purple); }
.-foot-menu {
  height: 100%; display: flex; font-size: 7.5vw; position: relative; min-height: 8.75vw; min-width: 10.625vw; align-items: center;
  aspect-ratio: 1/1; justify-content: center; margin: 0 0.9375vw 0 0; clip-path: var(--squircle); background: var(--surface); border: 0.9375vw solid #0000;
}
.-foot-menu .material-symbols-rounded {
  color: #81e9dc;
  font-size: 8.75vw;
  text-shadow: 0.15625vw 0.15625vw 0.46875vw #000;
}
.-foot-lens {
  z-index: 1; width: 100%; height: 100%; display: flex; position: relative; clip-path: var(--squircle); background: var(--surface);
  transition: width 0.3s, transform 0.2s, background 0.2s;
}
.-foot-lens:focus-within { background: linear-gradient(45deg, rgb(93 150 185 / 15%), rgb(200 109 201 / 15%)); }
.-foot-phantom:empty { opacity: 0; }
.-foot-phantom {
  top: 0; bottom: 0; z-index: 1; width: 100%; display: flex; font-size: 3.75vw; overflow: hidden; white-space: pre;
  position: absolute; color: #ffffff40; align-items: center; pointer-events: none; letter-spacing: 0.09375vw;
  font-family: var(--app-font); padding: 0 10.9375vw 0 3.75vw;
}
.-foot-search {
  z-index: 2; width: 100%; display: flex; font-size: 3.75vw; letter-spacing: 0.09375vw; color: var(--app-accent);
  padding: 0 10.9375vw 0 3.75vw; transition: width 0.3s, opacity 0.3s;
}
.-foot-more {
  right: 0; z-index: 2; height: auto; display: flex; min-width: 8.75vw; margin: 0.9375vw; position: absolute; aspect-ratio: 1/1;
  align-items: center; border-radius: 50%; justify-content: center; color: var(--app-accent); background: var(--dimmer); border: 1.25vw solid #0000;
}
.-foot-more .material-symbols-rounded { font-size: 5.625vw; padding: 0.625vw 0 0; transition: transform 0.3s; }
.-foot-push {
width: 100%;
display: flex;
position: relative;
align-items: center;
min-height: 4.6875vw;
pointer-events: auto;
justify-content: center;
}
.-foot-push-slide {
  z-index: 1; height: 0.9375vw; position: relative; margin: 0 3.125vw; overflow: visible; border-radius: 6.25vw;
  width: -webkit-fill-available; background: linear-gradient(90deg, #0000 0%, var(--app-accent) var(--slider-mid), #fff var(--slider-fill),var(--dimmer) var(--slider-fill),var(--dimmer) 100%);
}
.-foot-push-slide::-webkit-slider-runnable-track { height: 0.9375vw; background: #0000; border-radius: 6.25vw; }
.-foot-push-slide.---seek-mode {
  background: linear-gradient(90deg, #0000 0%, #78d9ff var(--slider-mid), #fff var(--slider-fill), var(--dimmer) var(--slider-fill), var(--dimmer) 100%);
}
.-foot-push-slide.---seek-mode::-webkit-slider-thumb { background: #78d9ff; }
.-foot-push-slide::-webkit-slider-thumb {
  width: 4.6875vw; height: 4.6875vw; border-radius: 50%; margin: -1.875vw 0 0; -webkit-appearance: none; border: 0.625vw solid #fff;
  background: var(--app-accent); box-shadow: 0 0 0 0.625vw #ffda6622, 0 0 1.875vw 0.3125vw #ffda6633;
}
.-foot-go-keys {
  inset: 0; z-index: 110; width: 100%; height: 100%; display: flex; position: fixed; flex-flow: column; pointer-events: none;
  background: var(--app-theme); transform: translateY(100%); transition: transform 0.35s; 
}
.-foot-go-keys.---show-go { pointer-events: auto; transform: translateY(0); }
.-go-keys { flex: 1; }
.-go-keys-tools { min-height: 0; }
.-go-emoji-grid { min-height: 0; }
.-home-below {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  flex-flow: column;
  background: inherit;

  isolation: isolate;
}
.-home-below-panels {
  width: 100%;
  display: flex;
  position: relative;
  flex-flow: column;
  height: -webkit-fill-available;
}
.-left-panel, .-right-panel {
  height: 100%;
  width: 87.5vw;
  display: flex;
  position: absolute;
  flex-flow: column;
}


.-left-panel, .-right-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s;
}
.-left-panel.---show-feed-panel, .-right-panel.---show-feed-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.-left-panel {
  left: 0;
}

.-right-panel {
  right: 0;
}
.-left-panel-box, .-right-panel-box {
flex: 1;
min-height: 0;
gap: 3.125vw;
display: flex;
position: relative;
flex-flow: column;
overflow: hidden auto;
padding: 0 0 4.6875vw;
}

.-right-panel-box.---widgets >:first-child {
  margin-top: 3.125vw;
}

.-widget {
z-index: 1;
  display: flex;
  flex: 0 0 auto;
  color: #b0a890;
  position: relative;
  isolation: isolate;
  flex-flow: column;
  margin: 0 3.125vw;
  clip-path: var(--squircle);
  width: -webkit-fill-available;
  background: var(--surface);
}
.-widget-head.---pressed {
  transform: none;
}
.-widget-head {
display: flex;
  gap: 3.125vw;
  position: relative;
  align-items: center;
  min-height: 14.0625vw;
  touch-action: manipulation;
  width: -webkit-fill-available;
  justify-content: space-between;
}
.-widget-icon {
display: flex;
  width: 9.375vw;
  height: 9.375vw;
  min-width: 9.375vw;
  position: relative;
  align-items: center;
  margin: 0 0 0 3.125vw;
  justify-content: center;
  transition: color 0.25s;
  clip-path: var(--squircle);
  background: var(--dimmer);

  color: var(--widget-icon-color);
  --icon-color: var(--widget-icon-color);
}
.-widget.---open > .-widget-head .-widget-label,
.-widget.---open > .-widget-head .-widget-icon {
  color: var(--widget-color, var(--app-accent));

  --icon-color: var(--widget-color, var(--app-accent));
}
.-widget.---open .-widget-icon {
  color: var(--widget-color, var(--app-accent));
}
.-widget-icon .material-symbols-rounded {
width: 100%;
  height: 100%;
  display: flex;
  font-size: 6.25vw;
  align-items: center;
  justify-content: center;
}
.-widget-label {
flex: 1;
  min-width: 0;
  color: #b0a890;
  font-size: 3.75vw;
  white-space: pre;
  overflow: hidden;
  align-items: center;
  line-height: 4.6875vw;
  text-overflow: ellipsis;
}
.-widget-count {
display: flex;
  height: 9.375vw;
  position: relative;
  width: fit-content;
  min-width: 9.375vw;
  align-items: center;
  font-size: 3.4375vw;
  padding: 0 3.125vw;
  justify-content: center;
  color: var(--app-accent);
  clip-path: var(--squircle);
  background: var(--dimmer);
}
.-widget-chevron {
display: flex;
  width: 9.375vw;
  height: 9.375vw;
  position: relative;
  align-items: center;
  margin: 0 3.125vw 0 0;
  justify-content: center;
  clip-path: var(--squircle);
}
.-widget-chevron .material-symbols-rounded {
  font-size: 6.25vw;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.-widget.---open .-widget-chevron .material-symbols-rounded {
  transform: rotate(180deg);
}


.-widget-body-divider {
  position: relative;
  flex: 0 0 auto;
  width: -webkit-fill-available;
  margin: 0 4.6875vw;
  min-height: 0.625vw;
}

.-widget-body > .-horizontal-divider {
  position: relative;
  flex: 0 0 auto;
  width: -webkit-fill-available;
  margin: 0 4.6875vw;
  min-height: 0.625vw;
}

.-widget-body {
height: 0;
  opacity: 0;
  padding: 0;
  display: flex;
  min-height: 0;
  gap: 3.125vw;
  overflow: hidden;
  position: relative;
  flex-flow: column;
  max-height: fit-content;
  transition: height 0.32s cubic-bezier(.4,0,.2,1), opacity 0.22s, margin 0.32s, padding 0.28s cubic-bezier(.4,0,.2,1);
}
.-widget-items {
opacity: 0;
  min-height: 0;
  gap: 3.125vw;
  display: flex;
  position: relative;
  flex-flow: column;
  overflow: hidden auto;
  transition: opacity 0.4s;
}


.-widget-nest > .-widget-body > .-widget-items {
  padding-bottom: 3.125vw;
}

.-widget-item {
gap: 3.125vw;
  display: flex;
  position: relative;
  margin: 0 3.125vw;
  align-items: center;
  min-height: 14.0625vw;
  clip-path: var(--squircle);
  background: var(--dimmer);
  transition: transform 0.14s cubic-bezier(.2,.8,.2,1);
}
.-widget-explainer {
text-align: left;
  color: #b0a890;
  font-size: 3.75vw;
  padding: 4.6875vw;
  margin: 0 3.125vw;
  line-height: 5.625vw;
  clip-path: var(--squircle);
  background: var(--surface);
}

.-widget-chevron-point {
  display: flex;
  width: 9.375vw;
  height: 9.375vw;
  min-width: 9.375vw;
  align-items: center;
  margin-right: 3.125vw;
  justify-content: center;
  clip-path: var(--squircle);
  background: var(--dimmer);
}
.-widget-chevron-point .material-symbols-rounded {
  font-size: 6.25vw;
}
.-widget-item.---active .-widget-label,
.-widget-item.---active .-widget-icon,
.-widget-item.---active .-widget-chevron-point {
  color: #96ff36;
}
.-widget-item.---active .-widget-chevron-point {
  color: #96ff36;
}
.-widget-item.---active .-widget-chevron-point .material-symbols-rounded {
  font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24;
}
.-widget-item.---pressed {
  transform: scale(0.965);
}
.-widget-nest {
z-index: 1;
  display: flex;
  flex: 0 0 auto;
  color: #b0a890;
  position: relative;
  isolation: isolate;
  flex-flow: column;
  margin: 0 3.125vw;
  clip-path: var(--squircle);
  width: -webkit-fill-available;
}
.-widget-nest > .-widget-item .-widget-chevron-point .material-symbols-rounded {
  transition: transform 0.3s ease;
}
.-widget-nest.---open > .-widget-item .-widget-chevron-point .material-symbols-rounded {
  transform: rotate(90deg);
}
.-widget-nest > .-widget-item {
  margin: 0;
}
.-widget-nest .-widget-items {
  margin-top: 3.125vw;
  clip-path: var(--squircle);
  background: var(--dimmer);
}
.-widget-nest .-widget-items >:first-child {
  margin-top: 3.125vw;
}
.-widget-nest > .-widget-body {
  margin: 0;
}
.-widget-nest.---open > .-widget-body {
  opacity: 1;
}
.-widget-nest.---open > .-widget-body > .-widget-items {
  opacity: 1;
  min-height: var(--scroll-height);
}
.-widget.---open .-widget-body {
  opacity: 1;
}
.-widget.---open .-widget-items {
  opacity: 1;
  min-height: var(--scroll-height);
}

.-widget.---open > .-widget-body {
  margin-bottom: 3.125vw;
}

.-panel-foot {
  z-index: 100;
  width: 87.5vw;
  display: flex;
  position: relative;
  flex-flow: column;
  height: fit-content;
}
.---shift-right {
  margin: 0 0 0 auto;
}
[data-click].---pressed { transform: scale(0.9); }

.-special-toast {
left: 50%;
opacity: 0;
top: 4.6875vw;
z-index: 9200;
color: #fff;
display: flex;
position: fixed;
font-weight: 600;
white-space: pre;
min-height: 12.5vw;
font-size: 4.0625vw;
font-family: Delius;
align-items: center;
pointer-events: none;
padding: 0 4.6875vw;
min-width: fit-content;
justify-content: center;
letter-spacing: 0.15625vw;
transform: translate(-50%, -6.25vw) scale(.92);
text-shadow: 0.15625vw 0.15625vw 0.9375vw #00000080;
transition: opacity .22s, transform .32s cubic-bezier(.2,.85,.2,1);
}

.-special-toast::before {
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  border-radius: 9.375vw;
  box-shadow: 0 0.625vw 3.125vw #000000aa;
}
.-special-toast::after {
content: '';
z-index: -1;
width: 100%;
height: 100%;
position: absolute;
clip-path: var(--squircle);
background: var(--special-toast-color);
}

.-special-toast.---show-special-toast {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.-toast {
  left: 50%;
  bottom: 0;
  opacity: 0;
  z-index: 300;
  display: flex;
  position: fixed;
  color: #e9e6de;
  height: 14.0625vw;
  white-space: pre;
  font-size: 4.0625vw;
  align-items: center;
  pointer-events: none;
  background: #000;
  padding: 0 4.6875vw;
  min-width: fit-content;
  clip-path: var(--squircle);
  transition: opacity 0.18s, transform 0.22s;
  transform: translate(-50%, 0) scale(0.80);
}
.-toast.---show-toast {
  opacity: 1;
  transform: translate(-50%, -18.75vw) scale(1);
}
.-overlay-ads, .-overlay-apps, .-overlay-blur { display: none; }
.-modal-card { display: none; }
.-overlay-blur.---show-bottom-drawer {
  inset: 0; z-index: 250; display: flex; position: fixed; align-items: flex-end; background: rgb(0 0 0 / 45%);
}
.-bottom-drawer {
  width: 100%; display: flex; position: relative; padding: 6.25vw 3.125vw 8.125vw; flex-flow: column; background: var(--app-theme);
  clip-path: var(--squircle);
}
.-bottom-drawer-title { font-weight: 800; font-size: 5vw; padding: 0 1.5625vw 3.125vw; }
.-bottom-drawer-media {
  gap: 1.5625vw; width: 100%; display: flex; overflow: auto hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory;
}
.-bottom-drawer-media-item {
  gap: 1.5625vw; min-width: 25vw; display: flex; position: relative; align-items: center; padding: 3.125vw; flex-flow: column;
  justify-content: center; aspect-ratio: 1/1; clip-path: var(--squircle); background: var(--surface); scroll-snap-align: center;
}
.-bottom-drawer-media-item .material-symbols-rounded { font-size: 7.5vw; }
.-bottom-drawer-media-item div:last-child { font-size: 3.125vw; }
@media (min-width: 431px) { .-body { width: 430px; left: 50%; transform: translateX(-50%); } }
.-widget-divider.---show-divider-toast::before {
background: var(--special-toast-color);
}

.-center-panel,
.-tray-surface,
.-home-below {
  position: relative;
}
.-center-panel::before,
.-tray-surface::before,
.-home-below::before {
  content: '';
  inset: 0;
  opacity: var(--theme-background-opacity);
  z-index: -1;
  position: absolute;
  pointer-events: none;
  background-image: var(--theme-background-image);
  transition: opacity .28s;
}

.---expand-notepad .-foot-plus {
  width: 0;
  opacity: 0;
  min-width: 0;
  border-width: 0;
  margin: 0 0 0 3.125vw;
}
.---show-notepad .-foot-find {
  display: none;
}
.-foot-note {
margin: 0;
z-index: 10;
width: 100%;
display: none;
height: 12.5vw;
position: relative;
min-height: 12.5vw;
flex-flow: column;
align-items: center;
clip-path: var(--squircle);
background: var(--dimmer);
transition: min-height 0.3s cubic-bezier(.4,0,.2,1), margin 0.3s cubic-bezier(.4,0,.2,1);
}
.---show-notepad .-foot-note {
  display: flex;

  pointer-events: auto;
}
.---expand-notepad .-foot-note {
z-index: 100;
gap: 1.5625vw;
width: 78.125vw;
clip-path: unset;
position: absolute;
background: unset;
overflow: inherit;
min-width: 78.125vw;
min-height: 71.875vw;
pointer-events: auto;
margin: -56.25vw 0 0;
}
.---show-notepad .-foot-note::before {
inset: 0;
content: "";
z-index: -1;
position: absolute;
backdrop-filter: blur(0);
clip-path: var(--squircle);
transition: backdrop-filter 0.3s;
}
.---expand-notepad .-foot-note::before {
background: var(--surface);
backdrop-filter: blur(3.125vw);
}
.-foot-note-tool {
width: 100%;
display: flex;
height: 12.5vw;
position: relative;
text-align: center;
align-items: center;
font-size: 3.4375vw;
letter-spacing: 0.09375vw;
border: 0.9375vw solid #0000;
}
.---expand-notepad .-foot-note-tool {
max-height: 75vw;
border-width: 0;
margin: 0 3.125vw;
min-height: 46.875vw;
width: -webkit-fill-available;
}
.-foot-note-sticker {
  height: 100%;
  display: flex;
  font-size: 7.5vw;
  position: relative;
  min-height: 8.75vw;
  min-width: 10.625vw;
  align-items: center;
  aspect-ratio: 1/1;
  justify-content: center;
  margin: 0 0.9375vw 0 0;
  clip-path: var(--squircle);
  background: var(--surface);
  border: 0.9375vw solid #0000;
  transition: border 0.3s, min-width 0.3s, margin 0.3s, opacity 0.3s;
}
.-foot-note-sticker .material-symbols-rounded {
  color: #ffd179;
  text-shadow: 0.15625vw 0.15625vw 0.46875vw #000;
}
.---expand-notepad .-foot-note-sticker {
  width: 0;
  opacity: 0;
  margin: 0;
  min-width: 0;
  border-width: 0;
}
.-foot-note-area {
z-index: 1;
width: 100%;
height: 100%;
display: flex;
position: relative;
clip-path: var(--squircle);
background: var(--surface);
transition: width 0.3s, transform 0.2s, background 0.2s;
}
.-foot-note-phantom {
top: 0;
bottom: 0;
z-index: 1;
width: 100%;
display: flex;
overflow: hidden;
white-space: pre;
position: absolute;
color: #ffffff99;
align-items: center;
font-size: 4.0625vw;
pointer-events: none;
font-family: Maiandra;
letter-spacing: 0.09375vw;
transition: padding 0.3s;
padding: 0 10.9375vw 0 3.75vw;
}
.-foot-note-phantom:empty {
  opacity: 0;
}
.-foot-note-text {
border: 0;
outline: 0;
display: flex;
color: #fff;
min-height: 100%;
text-align: left;
line-height: 5vw;
font-size: 3.75vw;
position: relative;
align-items: center;
font-family: 'Nunito';
word-break: break-word;
white-space: pre-wrap;
transition: padding 0.3s;
width: -webkit-fill-available;
padding: 0 10.9375vw 0 3.75vw;
}
.-foot-note-vibe {
  right: 0;
  z-index: 2;
  height: auto;
  display: flex;
  min-width: 8.75vw;
  margin: 0.9375vw;
  position: absolute;
  aspect-ratio: 1/1;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  color: var(--app-accent);
  background: var(--dimmer);
  border: 1.25vw solid #0000;
}
.---expand-notepad .-foot-note-vibe {
  display: none;
}
.-foot-note-vibe .material-symbols-rounded {
  font-size: 5.625vw;
  padding: 0.625vw 0 0;
  transition: transform 0.3s;
}
.-foot-note::after {
content: "";
z-index: -1;
width: 100%;
height: 100%;
box-shadow: unset;
position: absolute;
backdrop-filter: unset;
border-radius: 3.75vw;
transition: box-shadow 0.3s, backdrop-filter 0.3s;
}
.---expand-notepad .-foot-note::after {
box-shadow: 0 0 1.5625vw rgb(0 0 0 / 60%);
}
.-foot-go-circle.---voice-note-mode {
  background: #8b3e76;
}
.-foot-go-circle.---recording {
  background: #b63b3b;
}


.---expand-notepad .-foot-toolbar {
  overflow: visible;
}

.---expand-notepad .-foot-snap-left, .---expand-notepad .-foot-snap-left {
  display: none;
}

.---expand-notepad .-foot-note-text {
align-items: flex-start;
padding: 3.125vw 4.6875vw;
justify-content: flex-start;
}

.---expand-notepad .-foot-note-phantom {
align-items: flex-start;
padding: 3.125vw 4.6875vw;
}
.---expand-notepad .-foot-note-tool::before {
content: '';
width: 100%;
height: 100%;
position: absolute;
border-radius: 3.75vw;
}
.---expand-notepad .-foot-note-tool::after {
content: '';
width: 100%;
height: 100%;
position: absolute;
clip-path: var(--squircle);
box-shadow: inset 0 0 0.9375vw rgb(255 255 255 / 20%);
background: linear-gradient(-45deg, rgb(93 150 185 / 20%), rgb(200 109 201 / 20%));
}
.---expand-notepad .-foot-note-area {
clip-path: unset;
background: #0000;
}
.-foot-note-cogs {
display: flex;
position: relative;
align-items: center;
min-height: fit-content;
margin: 1.5625vw 1.5625vw 0;
width: -webkit-fill-available;
justify-content: space-between;
}
.-foot-note-cogs > :first-child {
min-width: 31.25vw;
margin-left: 1.5625vw;
}
.-foot-note-cogs-hold {
height: 100%;
display: flex;
gap: 1.5625vw;
position: relative;
align-items: center;
}
.-punch-hole-box {
display: flex;
position: relative;
align-items: center;
justify-content: center;
color: var(--hole-color);
}
.-punch-hole {
height: auto;
display: flex;
width: 9.375vw;
position: relative;
min-width: 8.125vw;
border-radius: 50%;
aspect-ratio: 1 / 1;
align-items: center;
justify-content: center;
background: rgb(0 0 0 / 20%);
border: 0.9375vw solid #0000;
}
.-punch-hole .material-symbols-rounded {
width: 100%;
height: 100%;
display: flex;
align-items: center;
border-radius: 50%;
justify-content: center;
}
.-foot-note-count {
display: flex;
width: 9.375vw;
height: 9.375vw;
min-width: 9.375vw;
position: relative;
align-items: center;
font-size: 3.4375vw;
font-family: 'Delius';
justify-content: center;
transition: color 0.25s;
background: rgb(0 0 0 / 20%);
clip-path: var(--squircle-small);
}
.-foot-note-plus {
width: 9.375vw;
height: 9.375vw;
display: flex;
align-items: center;
justify-content: center;
}
.-foot-note-draft-label {
flex: 1;
min-width: 0;
display: flex;
color: #91c980;
overflow: hidden;
font-size: 3.4375vw;
white-space: nowrap;
align-items: center;
text-overflow: ellipsis;
padding: 0 0 0 0.625vw;
height: -webkit-fill-available;
text-shadow: 0.15625vw 0.15625vw 0.9375vw #000;
}
.-foot-note-lever {
z-index: 10;
display: flex;
height: 9.375vw;
position: relative;
min-width: 9.375vw;
aspect-ratio: 1/1;
align-items: center;
pointer-events: auto;
justify-content: center;
}
.-foot-note-lever::before {
content: "";
height: 1.25vw;
position: relative;
min-width: 6.875vw;
border-radius: 6.25vw;
background: var(--app-accent);
}
.-foot-note > :last-child {
margin: 0 1.5625vw 1.5625vw;
}
.-foot-go-circle.---send-note-mode {
background: #26658b;
}
.-foot:not(.---expand-notepad) .-foot-note-cogs {
display: none;
}
.-foot-note-plus .material-symbols-rounded {
font-size: 6.875vw;
}
.-create-modal-range {
width: auto;
height: 12.5vw;
margin: 0 4.6875vw;
position: relative;
}
.-create-modal-range-slide {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
appearance: none;
background: transparent;
}
.-create-modal-range-slide::-webkit-slider-runnable-track {
height: 1.25vw;
border-radius: 6.25vw;
background: linear-gradient(90deg, var(--app-accent) var(--slider-fill), var(--dimmer) var(--slider-fill));
}
.-create-modal-range-slide::-webkit-slider-thumb {
width: 8.125vw;
height: 8.125vw;
margin-top: -3.4375vw;
appearance: none;
border-radius: 50%;
background: var(--app-accent);
border: 1.25vw solid var(--app-theme);
}


/* Hiver identity ------------------------------------------------------------ */

.-foot-go-circle.---hiver-identity {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.-foot-go-circle.---hiver-identity > .material-symbols-rounded,
.-foot-go-circle.---hiver-identity > svg[data-hivergo-svg] {
  display: none;
}

/* Mandatory Google sign-in gate -------------------------------------------- */

.---auth-locked .-create-modal-close {
  display: none;
}

.---auth-locked .-create-modal-layer {
  z-index: 12000;
}

.-create-modal-action.---auth-action {
  color: #121212;
  background: #fff;
}

.-create-modal-action.---auth-working {
  opacity: .6;
  pointer-events: none;
}
